diff --git a/fm2prof/data_import.py b/fm2prof/data_import.py index 1a501430..85a1ba40 100644 --- a/fm2prof/data_import.py +++ b/fm2prof/data_import.py @@ -7,286 +7,11 @@ # import from dependencies import numpy as np -import pandas as pd -import xarray as xr -from netCDF4 import Dataset # import from package from fm2prof.common import FM2ProfBase -class FMDataImporter(FM2ProfBase): - """FM Data importer class.""" - - def __init__(self, file_path: Path | str) -> None: - """Initialize the FMDataImporter.""" - super().__init__() - self.set_logger_message("FMDataImporter initialized", "debug") - self.file_path = Path(file_path) - - @property - def file_path(self) -> Path: - """Return the file path.""" - return self._file_path - - @file_path.setter - def file_path(self, value: Path | str) -> None: - """Set the file path.""" - if isinstance(value, str): - value = Path(value) - if not value.exists(): - raise FileNotFoundError(f"The file {value} does not exist.") - self._file_path = value - - @property - def dflow2d_face_keys(self) -> dict: - """Mapping with dflow2d face keys.""" - return { - "x": "mesh2d_face_x", - "y": "mesh2d_face_y", - "area": "mesh2d_flowelem_ba", - "bedlevel": "mesh2d_flowelem_bl", - } - - @property - def dflow2d_edge_keys(self) -> dict: - """Mapping with dflow2d edge keys.""" - return { - "x": "mesh2d_edge_x", - "y": "mesh2d_edge_y", - "edge_faces": "mesh2d_edge_faces", - "edge_nodes": "mesh2d_edge_nodes", - } - - @property - def dflow2d_result_keys(self) -> dict: - """Mapping with dflow2d_result_keys.""" - return { - "waterdepth": "mesh2d_waterdepth", - "waterlevel": "mesh2d_s1", - "chezy_mean": "mesh2d_czs", # not used anymore! - "chezy_edge": "mesh2d_czu", - "velocity_x": "mesh2d_ucx", - "velocity_y": "mesh2d_ucy", - "velocity_edge": "mesh2d_u1", - } - - def get_variable(self, var_name: str) -> np.ndarray: - """Get a variable from the netCDF file.""" - grid = xr.open_dataset(self.file_path, engine="netcdf4") - return grid[var_name].to_numpy() - - def import_dflow2d(self) -> tuple[pd.DataFrame | None, dict, pd.DataFrame, dict]: - """Read input from a dflow2d output file. - - Args: - file_path: path to *_map.nc file - - Results: - tid_face - DataFrame with time-independent data on faces (e.g. section allocation) - tid_edge - DataFrame with time-independent data on flow links - node_coordinates - - td - DataFrame with time-dependent data (e.g. water levels, ..) - - """ - self.set_logger_message("hello from dflow2d importer") - - # Open results file for reading, within context manager to ensure garbage collection - with Dataset(self.file_path, "r") as map_file: - # Time-invariant variables from FM 2D at faces - # ----------------------------------------------- - tid_face = None - for key, nckey in self.dflow2d_face_keys.items(): - if tid_face is None: - tid_face = pd.DataFrame(columns=[key], data=np.array(map_file.variables[nckey])) - else: - tid_face[key] = np.array(map_file.variables[nckey]) - - # These variables are preallocated with the correct size for later use - tid_face["region"] = [""] * len(tid_face["y"]) # region id (see RegionPolygon). By default, no regions - tid_face["section"] = ["main"] * len( - tid_face["y"], - ) # section id (see SectionPolygon). By default, all sections are 'main' - tid_face["sclass"] = [""] * len(tid_face["y"]) # cross-section id - tid_face["islake"] = [False] * len( - tid_face["y"], - ) # whether or not cell is in a lake. By default, nothing is a lake - - # Time-invariant variables from FM 2D at edges - # ----------------------------------------------- - internal_edges = map_file.variables["mesh2d_edge_type"][:] == 1 # edgetype 1 = 'internal' - - tid_edge = {} - for key, nckey in self.dflow2d_edge_keys.items(): - try: - tid_edge[key] = np.array(map_file.variables[nckey])[internal_edges] - except KeyError: - # 'edge_faces' does not always seem to exist in the file - probably - # due to changes in dflow2d output - self.set_logger_message( - f"during reading of dflow2d input, it was found that {key} was not present in the file", - "warning", - ) - - tid_edge["sclass"] = np.array([""] * np.sum(internal_edges), dtype="U99") - tid_edge["section"] = np.array(["main"] * np.sum(internal_edges), dtype="U99") - tid_edge["region"] = np.array([""] * np.sum(internal_edges), dtype="U99") - - # node data (- Is this data still used??) - # ---------------------------------------------- - node_coordinates = pd.DataFrame(columns=["x"], data=np.array(map_file.variables["mesh2d_node_x"])) - node_coordinates["y"] = np.array(map_file.variables["mesh2d_node_y"]) - - # Time-variant variables - # ---------------------------------------------- - td = {} - for key, nckey in self.dflow2d_result_keys.items(): - if key == "chezy_edge": - # this one we treat slightly differently: - # because is it edge_data, we need to filter on [internal_edges] - # also - older dflow2d versions (before december 2020) do not have - # the 'mesh2d_czu' keyword, so we need to default back to 'mesh2d_cftrt' - try: - td[key] = pd.DataFrame( - data=np.array(map_file.variables[nckey]).T[internal_edges], - columns=map_file.variables["time"], - ) - except KeyError: - td[key] = pd.DataFrame( - data=np.array(map_file.variables["mesh2d_cftrt"]).T[internal_edges], - columns=map_file.variables["time"], - ) - self.set_logger_message( - "The Dflow2D output does not have the 'mesh2d_czu' key. Reverting to mesh2d_cftrt. " - "Make sure that the UnifFrictType is set to 0 (Cheyz) in the Dflow2d mdu file.", - "warning", - ) - else: - td[key] = pd.DataFrame( - data=np.array(map_file.variables[nckey]).T, - columns=map_file.variables["time"], - ) - - return tid_face, tid_edge, node_coordinates, td - - -class FmModelData: - """Used to read and store data from the 2D model.""" - - time_dependent_data = None - time_independent_data = None - edge_data = None - node_coordinates = None - css_data_list = None - - def __init__( - self, - time_dependent_data: pd.DataFrame, - time_independent_data: pd.DataFrame, - edge_data: dict, - node_coordinates: pd.DataFrame, - css_data_dictionary: dict, - ) -> None: - """Instantiate a FmModelData object. - - Args: - time_dependent_data (pd.DataFrame): _description_ - time_independent_data (pd.DataFrame): _description_ - edge_data (dict): _description_ - node_coordinates (pd.DataFrame): _description_ - css_data_dictionary (dict): _description_ - - """ - self.time_dependent_data = time_dependent_data - self.time_independent_data = time_independent_data - self.edge_data = edge_data - self.node_coordinates = node_coordinates - self.css_data_list = self.get_ordered_css_list(css_data_dictionary) - - @staticmethod - def get_ordered_css_list(css_data_dict: dict[str, str]) -> list[dict[str, str]]: - """Return an ordered list where every element represents a Cross Section structure. - - Args: - css_data_dict (dict[str, str]): Dictionary ordered by the keys - - Returns: - (list): List where every element contains a dictionary - to create a Cross Section. - - """ - if not css_data_dict or not isinstance(css_data_dict, dict): - return [] - - number_of_css = len(css_data_dict[next(iter(css_data_dict))]) - css_dict_keys = css_data_dict.keys() - css_dict_values = css_data_dict.values() - return [ - dict( - zip( - css_dict_keys, - [value[idx] for value in css_dict_values if idx < len(value)], - ), - ) - for idx in range(number_of_css) - ] - - def get_selection(self, css_name: str) -> dict: - """Create a dictionary that holds all the 2D data for the cross-section with name 'css_name'. - - Args: - css_name (str): name of the cross-section - - """ - dti = self.time_independent_data - dtd = self.time_dependent_data - edge_data = self.edge_data - - x = dti["x"][dti["sclass"] == css_name] - y = dti["y"][dti["sclass"] == css_name] - area = dti["area"][dti["sclass"] == css_name] - region = dti["region"][dti["sclass"] == css_name] - islake = dti["islake"][dti["sclass"] == css_name] - waterdepth = dtd["waterdepth"][dti["sclass"] == css_name] - waterlevel = dtd["waterlevel"][dti["sclass"] == css_name] - vx = dtd["velocity_x"][dti["sclass"] == css_name] - vy = dtd["velocity_y"][dti["sclass"] == css_name] - face_section = dti["section"][dti["sclass"] == css_name] - # find all chezy values for this cross section, note that edge coordinates are used - chezy = dtd["chezy_edge"][edge_data["sclass"] == css_name] - try: - edge_faces = edge_data["edge_faces"][edge_data["sclass"] == css_name] - except KeyError: - edge_faces = None - - edge_x = edge_data["x"][edge_data["sclass"] == css_name] - edge_y = edge_data["y"][edge_data["sclass"] == css_name] - edge_section = np.array(edge_data["section"])[edge_data["sclass"] == css_name] # roughness section number - - bedlevel = dti["bedlevel"][dti["sclass"] == css_name] - - velocity = (vx**2 + vy**2) ** 0.5 - waterlevel[waterdepth == 0] = np.nan - - return { - "x": x, - "y": y, - "area": area, - "bedlevel": bedlevel, - "waterdepth": waterdepth, - "waterlevel": waterlevel, - "velocity": velocity, - "section": face_section, - "chezy": chezy, - "region": region, - "islake": islake, - "edge_faces": edge_faces, - "edge_x": edge_x, - "edge_y": edge_y, - "edge_section": edge_section, - } - - class ImportInputFiles(FM2ProfBase): """Contains all functions related to the import of files.""" diff --git a/fm2prof/fm2prof_runner.py b/fm2prof/fm2prof_runner.py index ff11ef46..c5c71673 100644 --- a/fm2prof/fm2prof_runner.py +++ b/fm2prof/fm2prof_runner.py @@ -58,8 +58,9 @@ from fm2prof import mask_output_file, nearest_neighbour from fm2prof.common import FM2ProfBase, get_version from fm2prof.cross_section import CrossSection, CrossSectionHelpers -from fm2prof.data_import import FMDataImporter, FmModelData, ImportInputFiles +from fm2prof.data_import import ImportInputFiles from fm2prof.export import ExporterFactory +from fm2prof.imports import ImporterFactory, ModelData from fm2prof.ini_file import ConfigurationFileError, IniFile from fm2prof.polygon_file import GridPointsInPolygonResults, PolygonError, RegionPolygon, SectionPolygon @@ -90,7 +91,7 @@ def __init__(self, ini_file_path: Path | str = "") -> None: """ self.version: str = get_version() - self.fm_model_data: FmModelData = None + self.fm_model_data: ModelData = None self.set_logger(self.create_logger()) @@ -417,12 +418,11 @@ def _set_fm_model_data( # Read FM map file self.set_logger_message("Reading FM Map file") - ( - time_independent_data, - edge_data, - node_coordinates, - time_dependent_data, - ) = FMDataImporter(res_file).import_dflow2d() + fm_model_data = ImporterFactory.create("dflowfm", res_file).import_data() + time_independent_data = fm_model_data.time_independent_data + edge_data = fm_model_data.edge_data + node_coordinates = fm_model_data.node_coordinates + time_dependent_data = fm_model_data.time_dependent_data # Load locations and names of cross-sections self.set_logger_message("Reading css file") @@ -486,12 +486,13 @@ def _set_fm_model_data( time_independent_data["section"] = gridpoints_in_sections.faces_in_polygon edge_data["section"] = gridpoints_in_sections.edges_in_polygon - self.fm_model_data = FmModelData( + self.fm_model_data = ModelData( time_dependent_data=time_dependent_data, time_independent_data=time_independent_data, edge_data=edge_data, node_coordinates=node_coordinates, css_data_dictionary=cssdata, + source="dflowfm", ) @@ -625,7 +626,7 @@ def _get_css_range(self, number_of_css: int) -> np.array: def _generate_cross_section( self, css_data: dict, - fm_model_data: FmModelData, + fm_model_data: ModelData, ) -> CrossSection: """Generate a cross section and configures its values based. diff --git a/fm2prof/imports/__init__.py b/fm2prof/imports/__init__.py new file mode 100644 index 00000000..c384db6e --- /dev/null +++ b/fm2prof/imports/__init__.py @@ -0,0 +1,16 @@ +"""FM2PROF import module. + +Provides importers for reading 2D model data from various formats. + +Example: + >>> from fm2prof.imports import ImporterFactory + >>> importer = ImporterFactory.create("dflowfm", "path/to/map.nc") + >>> data = importer.import_data() + >>> selection = data.get_selection("css_001") + +""" + +from fm2prof.imports.base import BaseImporter, ModelData +from fm2prof.imports.factory import ImporterFactory + +__all__ = ["BaseImporter", "ImporterFactory", "ModelData"] diff --git a/fm2prof/imports/base.py b/fm2prof/imports/base.py new file mode 100644 index 00000000..96bec3e8 --- /dev/null +++ b/fm2prof/imports/base.py @@ -0,0 +1,184 @@ +"""Base importer class and generalized ModelData for all import formats.""" + +from __future__ import annotations + +from abc import ABC, abstractmethod +from pathlib import Path +from typing import TYPE_CHECKING + +import numpy as np +import pandas as pd + +from fm2prof.common import FM2ProfBase + +if TYPE_CHECKING: + pass + + +class ModelData: + """Generalized model data container, source-agnostic. + + Stores all data read from a 2D model, regardless of the source format. + Replaces the format-specific FmModelData class. + """ + + time_dependent_data: dict | None = None + time_independent_data: pd.DataFrame | None = None + edge_data: dict | None = None + node_coordinates: pd.DataFrame | None = None + css_data_list: list | None = None + source: str = "" + + def __init__( + self, + time_dependent_data: dict, + time_independent_data: pd.DataFrame, + edge_data: dict, + node_coordinates: pd.DataFrame, + css_data_dictionary: dict, + source: str = "", + ) -> None: + """Instantiate a ModelData object. + + Args: + time_dependent_data: Time-dependent data (e.g. water levels, velocities). + time_independent_data: Time-independent data on faces (e.g. section allocation). + edge_data: Time-independent data on flow links. + node_coordinates: Node coordinates. + css_data_dictionary: Cross-section data dictionary. + source: Identifier of the source format (e.g. 'dflowfm'). + + """ + self.time_dependent_data = time_dependent_data + self.time_independent_data = time_independent_data + self.edge_data = edge_data + self.node_coordinates = node_coordinates + self.css_data_list = self.get_ordered_css_list(css_data_dictionary) + self.source = source + + @staticmethod + def get_ordered_css_list(css_data_dict: dict[str, str]) -> list[dict[str, str]]: + """Return an ordered list where every element represents a Cross Section structure. + + Args: + css_data_dict: Dictionary ordered by the keys. + + Returns: + List where every element contains a dictionary to create a Cross Section. + + """ + if not css_data_dict or not isinstance(css_data_dict, dict): + return [] + + number_of_css = len(css_data_dict[next(iter(css_data_dict))]) + css_dict_keys = css_data_dict.keys() + css_dict_values = css_data_dict.values() + return [ + dict( + zip( + css_dict_keys, + [value[idx] for value in css_dict_values if idx < len(value)], + ), + ) + for idx in range(number_of_css) + ] + + def get_selection(self, css_name: str) -> dict: + """Create a dictionary that holds all the 2D data for the cross-section with name 'css_name'. + + Args: + css_name: Name of the cross-section. + + Returns: + Dictionary with all 2D data for the given cross-section. + + """ + dti = self.time_independent_data + dtd = self.time_dependent_data + edge_data = self.edge_data + + x = dti["x"][dti["sclass"] == css_name] + y = dti["y"][dti["sclass"] == css_name] + area = dti["area"][dti["sclass"] == css_name] + region = dti["region"][dti["sclass"] == css_name] + islake = dti["islake"][dti["sclass"] == css_name] + waterdepth = dtd["waterdepth"][dti["sclass"] == css_name] + waterlevel = dtd["waterlevel"][dti["sclass"] == css_name] + vx = dtd["velocity_x"][dti["sclass"] == css_name] + vy = dtd["velocity_y"][dti["sclass"] == css_name] + face_section = dti["section"][dti["sclass"] == css_name] + chezy = dtd["chezy_edge"][edge_data["sclass"] == css_name] + + try: + edge_faces = edge_data["edge_faces"][edge_data["sclass"] == css_name] + except KeyError: + edge_faces = None + + edge_x = edge_data["x"][edge_data["sclass"] == css_name] + edge_y = edge_data["y"][edge_data["sclass"] == css_name] + edge_section = np.array(edge_data["section"])[edge_data["sclass"] == css_name] + + bedlevel = dti["bedlevel"][dti["sclass"] == css_name] + + velocity = (vx**2 + vy**2) ** 0.5 + waterlevel[waterdepth == 0] = np.nan + + return { + "x": x, + "y": y, + "area": area, + "bedlevel": bedlevel, + "waterdepth": waterdepth, + "waterlevel": waterlevel, + "velocity": velocity, + "section": face_section, + "chezy": chezy, + "region": region, + "islake": islake, + "edge_faces": edge_faces, + "edge_x": edge_x, + "edge_y": edge_y, + "edge_section": edge_section, + } + + +class BaseImporter(FM2ProfBase, ABC): + """Abstract base class for all format-specific importers. + + All importers must implement the import_data method, which returns + a ModelData object regardless of the source format. + """ + + def __init__(self, file_path: Path | str) -> None: + """Initialize the importer. + + Args: + file_path: Path to the input file. + + """ + super().__init__() + self.file_path = Path(file_path) + + @property + def file_path(self) -> Path: + """Return the file path.""" + return self._file_path + + @file_path.setter + def file_path(self, value: Path | str) -> None: + """Set and validate the file path.""" + if isinstance(value, str): + value = Path(value) + if not value.exists(): + raise FileNotFoundError(f"The file {value} does not exist.") + self._file_path = value + + @abstractmethod + def import_data(self) -> ModelData: + """Import data and return a ModelData object. + + Returns: + ModelData object containing all imported data. + + """ + ... diff --git a/fm2prof/imports/dflowfm.py b/fm2prof/imports/dflowfm.py new file mode 100644 index 00000000..b75bcc21 --- /dev/null +++ b/fm2prof/imports/dflowfm.py @@ -0,0 +1,162 @@ +"""DFlowFM-specific importer, migrated from data_import.py.""" + +from __future__ import annotations + +from pathlib import Path +from typing import TYPE_CHECKING + +import numpy as np +import pandas as pd +import xarray as xr +from netCDF4 import Dataset + +from fm2prof.imports.base import BaseImporter, ModelData + +if TYPE_CHECKING: + pass + + +class DFlowFMImporter(BaseImporter): + """Importer for D-Flow FM 2D map output files (*_map.nc). + + Migrated from FMDataImporter in fm2prof.data_import. + """ + + SOURCE = "dflowfm" + + @property + def dflow2d_face_keys(self) -> dict: + """Mapping with dflow2d face keys.""" + return { + "x": "mesh2d_face_x", + "y": "mesh2d_face_y", + "area": "mesh2d_flowelem_ba", + "bedlevel": "mesh2d_flowelem_bl", + } + + @property + def dflow2d_edge_keys(self) -> dict: + """Mapping with dflow2d edge keys.""" + return { + "x": "mesh2d_edge_x", + "y": "mesh2d_edge_y", + "edge_faces": "mesh2d_edge_faces", + "edge_nodes": "mesh2d_edge_nodes", + } + + @property + def dflow2d_result_keys(self) -> dict: + """Mapping with dflow2d result keys.""" + return { + "waterdepth": "mesh2d_waterdepth", + "waterlevel": "mesh2d_s1", + "chezy_mean": "mesh2d_czs", # not used anymore! + "chezy_edge": "mesh2d_czu", + "velocity_x": "mesh2d_ucx", + "velocity_y": "mesh2d_ucy", + "velocity_edge": "mesh2d_u1", + } + + def get_variable(self, var_name: str) -> np.ndarray: + """Get a variable from the netCDF file. + + Args: + var_name: Name of the variable to retrieve. + + Returns: + Variable data as numpy array. + + """ + grid = xr.open_dataset(self.file_path, engine="netcdf4") + return grid[var_name].to_numpy() + + def import_data(self) -> ModelData: + """Import data from a D-Flow FM map file and return a ModelData object. + + Returns: + ModelData object containing all imported data. + + """ + tid_face, tid_edge, node_coordinates, td = self._import_dflow2d() + return ModelData( + time_dependent_data=td, + time_independent_data=tid_face, + edge_data=tid_edge, + node_coordinates=node_coordinates, + css_data_dictionary={}, + source=self.SOURCE, + ) + + def _import_dflow2d(self) -> tuple[pd.DataFrame | None, dict, pd.DataFrame, dict]: + """Read input from a dflow2d output file. + + Returns: + tid_face: DataFrame with time-independent data on faces (e.g. section allocation). + tid_edge: Dictionary with time-independent data on flow links. + node_coordinates: DataFrame with node coordinates. + td: Dictionary with time-dependent data (e.g. water levels). + + """ + self.set_logger_message("hello from dflow2d importer") + + with Dataset(self.file_path, "r") as map_file: + # Time-invariant variables from FM 2D at faces + tid_face = None + for key, nckey in self.dflow2d_face_keys.items(): + if tid_face is None: + tid_face = pd.DataFrame(columns=[key], data=np.array(map_file.variables[nckey])) + else: + tid_face[key] = np.array(map_file.variables[nckey]) + + tid_face["region"] = [""] * len(tid_face["y"]) + tid_face["section"] = ["main"] * len(tid_face["y"]) + tid_face["sclass"] = [""] * len(tid_face["y"]) + tid_face["islake"] = [False] * len(tid_face["y"]) + + # Time-invariant variables from FM 2D at edges + internal_edges = map_file.variables["mesh2d_edge_type"][:] == 1 + + tid_edge = {} + for key, nckey in self.dflow2d_edge_keys.items(): + try: + tid_edge[key] = np.array(map_file.variables[nckey])[internal_edges] + except KeyError: + self.set_logger_message( + f"during reading of dflow2d input, it was found that {key} was not present in the file", + "warning", + ) + + tid_edge["sclass"] = np.array([""] * np.sum(internal_edges), dtype="U99") + tid_edge["section"] = np.array(["main"] * np.sum(internal_edges), dtype="U99") + tid_edge["region"] = np.array([""] * np.sum(internal_edges), dtype="U99") + + # Node coordinates + node_coordinates = pd.DataFrame(columns=["x"], data=np.array(map_file.variables["mesh2d_node_x"])) + node_coordinates["y"] = np.array(map_file.variables["mesh2d_node_y"]) + + # Time-variant variables + td = {} + for key, nckey in self.dflow2d_result_keys.items(): + if key == "chezy_edge": + try: + td[key] = pd.DataFrame( + data=np.array(map_file.variables[nckey]).T[internal_edges], + columns=map_file.variables["time"], + ) + except KeyError: + td[key] = pd.DataFrame( + data=np.array(map_file.variables["mesh2d_cftrt"]).T[internal_edges], + columns=map_file.variables["time"], + ) + self.set_logger_message( + "The Dflow2D output does not have the 'mesh2d_czu' key. Reverting to mesh2d_cftrt. " + "Make sure that the UnifFrictType is set to 0 (Cheyz) in the Dflow2d mdu file.", + "warning", + ) + else: + td[key] = pd.DataFrame( + data=np.array(map_file.variables[nckey]).T, + columns=map_file.variables["time"], + ) + + return tid_face, tid_edge, node_coordinates, td diff --git a/fm2prof/imports/factory.py b/fm2prof/imports/factory.py new file mode 100644 index 00000000..bfd8e26b --- /dev/null +++ b/fm2prof/imports/factory.py @@ -0,0 +1,49 @@ +"""Importer factory for creating format-specific importers.""" + +from __future__ import annotations + +from pathlib import Path + +from fm2prof.imports.base import BaseImporter + + +class ImporterFactory: + """Factory for creating format-specific importers. + + Example: + >>> importer = ImporterFactory.create("dflowfm", "path/to/map.nc") + >>> data = importer.import_data() + + """ + + _supported_sources = ("dflowfm",) + + @staticmethod + def create(source: str, file_path: Path | str) -> BaseImporter: + """Create an importer for the given source format. + + Args: + source: Source format identifier (case-insensitive). Supported: 'dflowfm'. + file_path: Path to the input file. + + Returns: + A format-specific importer instance. + + Raises: + NotImplementedError: If the source format is not supported. + + """ + from fm2prof.imports.dflowfm import DFlowFMImporter # noqa: PLC0415 - avoid circular imports + + source_lower = source.lower() + + importers = { + "dflowfm": DFlowFMImporter, + } + + if source_lower not in importers: + supported = ", ".join(f"'{s}'" for s in importers) + msg = f"Unknown import source '{source}'. Supported sources are: {supported}" + raise NotImplementedError(msg) + + return importers[source_lower](file_path) diff --git a/fm2prof/polygon_file.py b/fm2prof/polygon_file.py index 78274b61..3ea9ca89 100644 --- a/fm2prof/polygon_file.py +++ b/fm2prof/polygon_file.py @@ -38,7 +38,7 @@ from meshkernel import GeometryList, MeshKernel, ProjectionType from fm2prof.common import FM2ProfBase -from fm2prof.data_import import FMDataImporter +from fm2prof.imports import ImporterFactory if TYPE_CHECKING: from logging import Logger @@ -289,7 +289,7 @@ def meshkernel_inpolygon(self, mk = MeshKernel(projection=ProjectionType.CARTESIAN) mesh2d_input = mk.mesh2d_get() - fmdata = FMDataImporter(res_file) + fmdata = ImporterFactory.create("dflowfm", res_file) mesh2d_input.node_x = fmdata.get_variable("mesh2d_node_x") mesh2d_input.node_y = fmdata.get_variable("mesh2d_node_y") mesh2d_input.edge_nodes = fmdata.get_variable("mesh2d_edge_nodes").flatten() - 1 diff --git a/tests/test_data/cases/case_20_only_elevation/data/mlnbk_points.csv b/tests/test_data/cases/case_20_only_elevation/data/mlnbk_points.csv new file mode 100644 index 00000000..e607b719 --- /dev/null +++ b/tests/test_data/cases/case_20_only_elevation/data/mlnbk_points.csv @@ -0,0 +1,25442 @@ +OID,Node_Index,POINT_X,POINT_Y,POINT_Z +1,3351,179797.500399999,373617.500700004,22 +2,3347,179802.500399999,373612.500600003,22.2599999999948 +3,3352,179802.5009,373617.500799999,22.1699999999983 +4,3348,179797.500500001,373612.500799999,21.9600000000064 +5,3345,179797.500300005,373607.500599999,21.9600000000064 +6,3368,179792.500999998,373612.500399999,22.3000000000029 +7,3344,179792.500700001,373607.500399999,22.3999999999942 +8,3316,179787.002300002,373608.388000004,22.4499999999971 +9,3315,179787.700300001,373602.423,22.3099999999977 +10,3338,179792.500200007,373602.500100005,22.4700000000012 +11,21032,179787.840187501,373601.307625003,22.2899999999936 +12,9489,179787.980075002,373600.192250002,22.2700000000041 +13,3335,179792.500400003,373597.500599999,22.4400000000023 +14,21026,179788.176003806,373598.630036887,22.2419999999984 +15,21030,179788.335018076,373597.362157006,22.219299999997 +16,21028,179788.494032357,373596.094277121,22.1965000000055 +17,3324,179788.819400005,373593.5,22.1499999999942 +18,3318,179788.719999999,373593.489,25 +19,21029,179788.287630919,373596.936360978,25 +20,3325,179786.565000005,373601.499000005,28.4400000000023 +21,21018,179789.083008125,373589.725620136,25 +22,21020,179789.206142757,373588.44905816,25 +23,3312,179789.486000001,373584.500000004,28.070000000007 +24,3304,179789.104000006,373570.434000004,28.4670000000042 +25,3426,179780.636999998,373633.821000002,28.320000000007 +26,131,179785.401999999,373611.057000004,28.4199999999983 +27,3322,179783.825000003,373621.900000002,28.2799999999988 +28,3425,179781.952,373629.850000001,28.2799999999988 +29,3323,179783.108000003,373625.607000001,28.3000000000029 +30,21049,179785.106624838,373622.75021629,25 +31,3321,179784.668000009,373626.260000002,25 +32,3421,179784.490000002,373626.788000003,25 +33,3417,179784.587900002,373626.810700003,22.6199999999953 +34,3317,179784.765999999,373626.282400005,22.6199999999953 +35,3407,179787.500300001,373627.5002,22.5899999999965 +36,21054,179784.362849019,373628.537790574,22.6230999999971 +37,21051,179784.137798041,373630.264881153,22.626099999994 +38,3408,179787.500400003,373632.500300005,22.5200000000041 +39,21052,179783.998637851,373631.332826931,22.627999999997 +40,9492,179783.859477665,373632.400772702,22.6298999999999 +41,21059,179783.732333999,373633.376501072,22.6315999999933 +42,21058,179783.605190337,373634.352229439,22.6334000000061 +43,3409,179787.500500005,373637.500399999,22.3500000000058 +44,21062,179783.411053795,373635.842075773,22.6359999999986 +45,21064,179783.264626905,373636.965787888,22.6380000000063 +46,3418,179783.118200004,373638.089499999,22.6399999999994 +47,21072,179782.75303277,373641.091124631,22.5895000000019 +48,3410,179787.500400003,373642.500400003,22.2799999999988 +49,21070,179782.561051041,373642.669188175,22.5629000000044 +50,21067,179782.380781632,373644.150977999,22.5380000000005 +51,21068,179782.274450582,373645.0250047,22.5233000000007 +52,3429,179787.500800002,373647.500300001,22.2700000000041 +53,3383,179792.500300009,373642.500900008,22.3399999999965 +54,3378,179792.500200007,373637.5,22.320000000007 +55,3379,179797.5009,373637.500500001,22.179999999993 +56,3382,179797.5009,373642.500700001,22.2200000000012 +57,3381,179802.500100009,373642.500500005,22.679999999993 +58,3380,179802.500500001,373637.500700004,22.6900000000023 +59,24277,179807.404901769,373640.714395232,23.0378999999957 +60,12778,179807.267396227,373641.970003434,23.0178000000014 +61,12780,179807.099608306,373643.502129894,22.9931999999972 +62,12782,179806.951904159,373644.850864951,22.9716000000044 +63,3385,179802.500500001,373647.500400003,22.7200000000012 +64,3397,179806.804200005,373646.1996,22.9499999999971 +65,12775,179806.684523907,373647.292324577,22.9324999999953 +66,8847,179806.564847808,373648.385049149,22.9149999999936 +67,12774,179806.706778638,373648.006763097,25.0200000000041 +68,24263,179806.779937141,373647.33875265,25.0200000000041 +69,12776,179806.853095651,373646.670742203,25.0200000000041 +70,24260,179808.944075003,373649.046575002,27.9275000000052 +71,42,179809.4135,373644.730500001,27.929999999993 +72,3400,179806.903500002,373646.210500002,25.0200000000041 +73,12783,179807.055064324,373644.826565929,25.0200000000041 +74,12781,179807.175380778,373643.727956191,25.0200000000041 +75,12779,179807.321654286,373642.392332524,25.0200000000041 +76,24275,179809.845041107,373640.762978446,27.929999999993 +77,12777,179807.393311433,373641.738031026,25.0200000000041 +78,24276,179807.524055921,373640.544202935,25.0200000000041 +79,12784,179807.654800404,373639.350374844,25.0200000000041 +80,24282,179807.737831015,373638.592222154,25.0200000000041 +81,24274,179810.276582219,373636.795456879,27.929999999993 +82,24284,179811.854000006,373638.524999999,27.9375 +83,24273,179811.732999995,373639.971000005,27.9372000000003 +84,24285,179813.914000001,373620.548000004,27.9780000000028 +85,3356,179812.895,373622.576000001,27.9210000000021 +86,3402,179811.291300006,373627.4663,27.929999999993 +87,23115,179811.705551114,373623.657515086,27.9321999999956 +88,12795,179809.199648924,373624.769312765,25.0200000000041 +89,12790,179809.014113177,373626.58523709,25.0200000000041 +90,12792,179808.929079212,373627.417503871,25.0200000000041 +91,12791,179808.876111351,373626.952167101,22.9404000000068 +92,8849,179809.10332153,373624.728181176,22.8313999999955 +93,3374,179802.500700004,373627.500500005,22.5200000000041 +94,12793,179808.690430444,373628.769654877,23.0293999999994 +95,3398,179808.376600005,373631.841500003,23.179999999993 +96,3377,179802.500500001,373632.500500001,22.679999999993 +97,12789,179808.272325918,373632.793660883,23.1646999999939 +98,12787,179808.168051828,373633.745821763,23.1494999999995 +99,12785,179807.959503658,373635.650143515,23.1190000000061 +100,24279,179807.779346775,373637.29521504,23.0926000000036 +101,24281,179807.660877045,373638.377001032,23.0752999999968 +102,8848,179807.542407311,373639.458787035,23.0580000000045 +103,24280,179807.820861634,373637.834069468,25.0200000000041 +104,24278,179807.931642972,373636.822524901,25.0200000000041 +105,12786,179808.080232993,373635.465749167,25.0200000000041 +106,24283,179808.225670833,373634.13775599,25.0200000000041 +107,12788,179808.371108685,373632.809762813,25.0200000000041 +108,3401,179808.476000004,373631.852000002,25.0200000000041 +109,12794,179808.77391237,373628.936193626,25.0200000000041 +110,3375,179797.500799999,373627.500599999,22.1100000000006 +111,3406,179797.500200003,373632.500700004,22.1300000000047 +112,3373,179792.500900004,373627.500500005,22.320000000007 +113,3376,179792.500200007,373632.500100002,22.3399999999965 +114,3353,179792.500900004,373622.5002,22.3300000000017 +115,3314,179787.500300001,373622.5002,22.4799999999959 +116,3349,179792.500500005,373617.500300005,22.3500000000058 +117,21039,179785.60805114,373619.54448472,22.5559999999969 +118,21040,179785.480360433,373620.566238802,22.5657000000065 +119,9491,179785.352669723,373621.58799288,22.5754000000015 +120,21048,179785.211525116,373622.717402156,22.5861000000004 +121,21047,179785.222766317,373621.820876595,25 +122,21046,179785.313756883,373621.092789263,25 +123,21038,179785.43300895,373620.138559256,25 +124,21041,179785.5601243,373619.121408999,25 +125,21043,179785.791196309,373617.272419367,25 +126,21042,179785.869869348,373617.449470796,22.5360999999975 +127,21044,179786.128827389,373615.377343256,22.5163999999932 +128,21045,179786.010424986,373615.518197611,25 +129,21037,179786.303198446,373613.175485957,25 +130,9490,179786.387785438,373613.305215713,22.4967000000033 +131,21034,179786.527677856,373611.379248857,25 +132,21036,179786.593413595,373610.85324534,25 +133,21035,179786.664807573,373611.088543102,22.4756999999954 +134,3320,179786.903000005,373608.375999998,25 +135,3355,179797.500399999,373622.500700001,22.070000000007 +136,3354,179802.500399999,373622.5002,22.2599999999948 +137,3358,179809.397999998,373621.843800005,22.6900000000023 +138,3350,179807.500800002,373617.500600003,22.6300000000047 +139,3346,179807.500500005,373612.500399999,22.6600000000035 +140,23111,179810.678304192,373615.652213611,22.4569000000047 +141,12804,179810.925317839,373614.45764881,22.4119000000064 +142,3359,179811.210499998,373613.078499999,22.3600000000006 +143,23113,179811.388652556,373612.383055646,22.3025000000052 +144,3361,179811.307999998,373613.101000004,25.0200000000041 +145,23112,179811.501322556,373612.346298493,25.0200000000041 +146,23109,179812.884840716,373612.814670406,27.9385000000038 +147,12810,179811.694645111,373611.591596991,25.0200000000041 +148,12809,179811.566805117,373611.6876113,22.2449000000051 +149,12808,179811.965639684,373610.533675846,25.0200000000041 +150,12806,179811.923110235,373610.296722591,22.1297999999952 +151,12805,179812.132438187,373609.882520184,25.0200000000041 +152,3371,179813.169,373610.202000003,27.9400000000023 +153,12811,179812.333264068,373609.098526828,25.0200000000041 +154,3366,179812.706,373608.051000003,27.6499999999942 +155,3362,179812.607999999,373608.026000004,25.0200000000041 +156,24305,179813.109773811,373605.88990476,25.0200000000041 +157,24313,179814.502500005,373607.624749999,27.8950000000041 +158,24301,179814.823999997,373604.634500001,27.8899999999994 +159,24302,179813.598356213,373603.809966531,25.0200000000041 +160,24306,179814.018318295,373602.022150982,25.0200000000041 +161,24316,179815.145500001,373601.644250002,27.8849999999948 +162,24318,179818.390384305,373604.180927873,28.1923999999999 +163,24315,179817.761827964,373606.688887633,28.0899999999965 +164,24258,179810.679000001,373650.236000005,27.9223000000056 +165,24221,179805.261,373722.979000002,27.9658000000054 +166,24222,179803.778499998,373718.166500002,27.7550000000047 +167,24223,179805.660680186,373715.072119415,27.9539999999979 +168,3523,179803.138000004,373723.894000001,27.6699999999983 +169,24220,179802.497500002,373729.6215,27.5800000000017 +170,6646,179799.159268558,373727.544275347,25.803700000004 +171,3510,179798.777000003,373730.743000004,25.8070000000007 +172,9414,179797.672454596,373728.226220526,25.3911999999982 +173,9409,179797.493170358,373729.764883198,25.3087999999989 +174,9400,179797.383161232,373730.709009282,25.2581999999966 +175,9408,179797.357950855,373730.92537111,25.2465999999986 +176,9401,179797.208606549,373731.343145154,22.7753999999986 +177,8839,179797.388037384,373729.80319671,22.7856999999931 +178,3504,179792.500100002,373732.500400003,22.4600000000064 +179,9407,179797.108047977,373732.206179768,22.7695999999996 +180,9403,179797.007489406,373733.069214392,22.7639000000054 +181,3527,179796.766300004,373735.139199998,22.75 +182,9405,179797.089542463,373733.228919804,25.1232000000018 +183,9406,179797.192889895,373732.341966022,25.1707000000024 +184,9404,179798.3935,373733.163500004,25.7854999999981 +185,9402,179797.269938067,373731.680719152,25.2062000000005 +186,3521,179796.865000002,373735.155999999,25.0200000000041 +187,3511,179798.010000005,373735.584000003,25.7639999999956 +188,3520,179796.714000002,373735.825000007,25.0200000000041 +189,3512,179797.514000002,373736.967000004,25.5430000000051 +190,41,179801.857000005,373735.348999999,27.4900000000052 +191,3524,179800.781000003,373741.270000003,27.3300000000017 +192,24218,179804.048000004,373738.574000001,27.9651000000013 +193,24219,179804.173999999,373735.756999999,27.9599000000017 +194,24058,179732.739000004,374366.782000005,26.8877000000066 +195,4431,179732.044000003,374350.221500006,26.7899999999936 +196,24065,179736.397,374332.965999998,26.9615000000049 +197,24059,179731.1011522,374359.03052849,26.8000000000029 +198,15394,179729.456552118,374352.006551847,25.4689999999973 +199,15396,179728.871499501,374357.132298723,25.4630000000034 +200,8460,179728.280444309,374355.323112778,25 +201,15399,179728.209743444,374355.955976717,25 +202,8461,179728.184405282,374355.281880286,22.3608999999997 +203,15398,179728.063206606,374356.366777383,22.3619999999937 +204,4408,179722.500700001,374357.500500005,22.3099999999977 +205,8457,179727.942007929,374357.451674476,22.3631000000023 +206,15397,179728.139042582,374356.588840652,25 +207,6560,179728.033788368,374357.531001631,25 +208,4429,179728.651700001,374359.057999998,25.460699999996 +209,4425,179727.826499999,374359.386500005,25 +210,4427,179727.7271,374359.375399999,22.3650000000052 +211,8455,179727.682670377,374359.773125362,22.3653999999951 +212,4411,179722.500300001,374362.5002,22.3099999999977 +213,8453,179727.549381513,374360.966301437,22.3665999999939 +214,24063,179727.457720112,374361.786836505,22.3674000000028 +215,8451,179727.366058715,374362.607371561,22.3683000000019 +216,24062,179727.523916885,374362.095165364,25 +217,24064,179727.577325534,374361.617061485,25 +218,24061,179728.337778993,374361.808135331,25.4575000000041 +219,8452,179727.630734187,374361.138957616,25 +220,8454,179727.728617094,374360.262728814,25 +221,8456,179727.777558543,374359.824614409,25 +222,24060,179730.633076105,374363.40376424,26.804999999993 +223,15400,179728.023857988,374364.558270663,25.4541999999929 +224,151,179730.165000003,374367.777000003,26.8099999999977 +225,24047,179729.549874105,374373.111210212,26.8181999999942 +226,15405,179727.390941676,374370.102995254,25.4477000000043 +227,4430,179727.130000003,374372.388999999,25.445000000007 +228,24049,179726.883762065,374374.608781148,25.4535000000033 +229,8435,179726.269971326,374373.320242725,25 +230,24050,179726.17667849,374374.155382045,25 +231,8437,179726.083385669,374374.990521371,25 +232,24048,179726.637524135,374376.828562286,25.4621000000043 +233,4424,179725.8968,374376.660799999,25 +234,24057,179725.840385783,374377.16578006,25 +235,24054,179725.783971559,374377.670760121,25 +236,24052,179726.391286206,374379.048343427,25.4706000000006 +237,24055,179725.727557346,374378.175740182,25 +238,15412,179725.671143122,374378.680720244,25 +239,24053,179725.595140778,374379.3610393,25 +240,6557,179725.519138429,374380.041358348,25 +241,15409,179726.145048276,374381.268124569,25.4792000000016 +242,24046,179728.934748217,374378.445420418,26.8264000000054 +243,4456,179727.916799996,374387.272799999,26.8399999999965 +244,24045,179731.485482506,374378.103644021,26.8613000000041 +245,34,179725.668600004,374406.768599998,26.8600000000006 +246,15422,179724.699699514,374394.297139406,25.5292999999947 +247,15418,179725.262400411,374389.224835582,25.5097999999998 +248,8424,179724.199411221,374391.854619741,25 +249,4446,179723.967,374393.935000006,25 +250,15425,179723.904148161,374394.506858006,25 +251,15423,179723.841296319,374395.078716014,25 +252,8416,179723.715592638,374396.222432025,25 +253,15426,179723.589888945,374397.366148032,25 +254,8415,179723.469726201,374397.544058017,22.3680000000022 +255,8414,179723.464185257,374398.509864043,25 +256,4449,179723.977300003,374400.809000004,25.5543000000034 +257,8412,179723.328677543,374399.742782146,25 +258,6555,179723.23422784,374400.602133524,25 +259,8410,179723.091498327,374401.90075912,25 +260,8406,179722.948768824,374403.199384723,25 +261,15427,179723.538833238,374404.761682022,25.5694999999978 +262,15429,179722.871929951,374403.898503844,25 +263,8407,179722.795091074,374404.597622968,25 +264,15428,179722.729200441,374405.19712944,25 +265,6554,179722.663309801,374405.796635922,25 +266,15430,179723.26902052,374407.193984725,25.5788999999932 +267,15434,179722.909503568,374410.434951507,25.5914000000048 +268,24033,179724.544500005,374416.516500004,26.875 +269,24044,179722.655251782,374412.72697575,25.6002000000008 +270,4450,179722.401000001,374415.019000001,25.6089999999967 +271,24038,179722.210418876,374416.758990746,25.6061000000045 +272,8395,179721.565375004,374415.786204685,25 +273,24039,179721.353130639,374417.717311762,25 +274,8394,179721.468713284,374415.750276815,22.2069000000047 +275,24040,179721.244890768,374417.786717154,22.1888000000035 +276,4442,179717.500300001,374412.500600003,22.2299999999959 +277,4443,179712.500500001,374417.500200003,22.3000000000029 +278,4453,179712.500700004,374412.500399999,22.2599999999948 +279,4464,179707.500999998,374412.501000002,22.4900000000052 +280,4465,179707.500700008,374417.500200003,22.4799999999959 +281,4444,179712.500399999,374422.500500005,22.320000000007 +282,8393,179721.021068256,374419.823157497,22.1708000000071 +283,24042,179721.132979516,374418.804937325,22.1797999999981 +284,24043,179721.197789025,374419.130688716,25 +285,6552,179721.140886273,374419.648418844,25 +286,24036,179721.829256635,374420.238972235,25.6002000000008 +287,24035,179722.019837756,374418.498981491,25.603099999993 +288,24041,179721.254691772,374418.612958584,25 +289,24034,179723.982450005,374421.390450001,26.882500000007 +290,24032,179726.532000002,374422.842999998,26.8010000000068 +291,4455,179723.420400001,374426.264400002,26.8899999999994 +292,24025,179724.604749117,374440.055414602,26.7771999999968 +293,24026,179722.272604343,374436.217782564,26.9052999999985 +294,24027,179721.722402174,374440.988991287,26.9127000000008 +295,17,179721.172200006,374445.760200005,26.9199999999983 +296,24018,179722.488942973,374458.951829657,26.8029999999999 +297,24019,179720.033711523,374455.632873137,26.9352000000072 +298,24023,179718.372631818,374451.797786348,25.5469000000012 +299,15460,179718.028452728,374454.940114543,25.5415000000066 +300,4517,179717.799000002,374457.035000004,25.5380000000005 +301,24020,179719.478855763,374460.444436569,26.9425999999949 +302,24021,179717.498969447,374459.739206348,25.5384000000049 +303,8353,179716.816215869,374458.34163354,25 +304,24022,179716.74460138,374458.97717936,25 +305,8356,179716.672986899,374459.612725157,25 +306,8355,179716.529757932,374460.883816775,25 +307,15465,179717.19893888,374462.443412688,25.5387999999948 +308,15466,179716.386528969,374462.154908385,25 +309,4511,179716.243300002,374463.425999999,25 +310,15468,179716.905372247,374465.089359012,25.5391999999993 +311,4521,179718.924000002,374465.256000005,26.9499999999971 +312,24015,179720.874000009,374473.375000004,26.8159000000014 +313,23708,179689.463546064,374926.827297296,26.5782000000036 +314,23693,179689.479730915,374926.855895903,26.5853999999963 +315,23718,179688.532052293,374925.554350361,26.5914000000048 +316,23719,179688.508194663,374925.526275702,26.5950000000012 +317,23720,179688.483502381,374925.497218855,26.5979999999981 +318,170,179666.554000001,374933.180300005,26.6199999999953 +319,23703,179665.756500002,374940.315000001,26.5899999999965 +320,5108,179664.959000003,374947.449700002,26.5599999999977 +321,5115,179663.364000004,374961.719000004,26.4900000000052 +322,9218,179662.454248145,374953.05900196,25.4438999999984 +323,9221,179661.904343791,374956.895370264,25.4337999999989 +324,9225,179661.625407211,374958.841351323,25.428700000004 +325,5104,179661.532000002,374959.493000008,25.426999999996 +326,7777,179661.363529149,374960.114789788,25 +327,5099,179661.432,374959.483000003,25 +328,5101,179661.332600005,374959.472200003,22.2899999999936 +329,7776,179661.225995973,374960.45581248,22.2964999999967 +330,5085,179657.5002,374957.500100002,22.2899999999936 +331,5111,179657.500500005,374962.500700001,22.2400000000052 +332,5088,179652.5009,374957.500700004,22.25 +333,5084,179652.500799999,374952.500700004,22.25 +334,5087,179647.500700004,374957.500600003,22.5099999999948 +335,5090,179647.500500001,374962.500300001,22.4799999999959 +336,5089,179642.500800002,374962.5002,22.5099999999948 +337,5092,179647.500200003,374967.500599999,22.4499999999971 +338,5091,179652.500400007,374967.500400003,22.2700000000041 +339,5095,179652.500300001,374972.500300005,22.3899999999994 +340,5094,179657.500400003,374967.500700001,22.3600000000006 +341,5119,179652.500799999,374962.500800006,22.179999999993 +342,7768,179660.675359022,374965.5364215,22.3298000000068 +343,7770,179660.826052453,374964.146005508,22.3206999999966 +344,7772,179660.955622748,374962.950488236,22.3127999999997 +345,7773,179661.084444743,374961.761875328,22.304999999993 +346,6469,179661.158116601,374962.010159153,25 +347,7775,179661.226587452,374961.378369365,25 +348,7774,179661.295058306,374960.746579576,25 +349,7771,179661.029799774,374963.194155831,25 +350,7769,179660.901482947,374964.378152512,25 +351,7763,179660.694497898,374966.288031489,25 +352,5109,179662.602000002,374970.569000002,26.3999999999942 +353,23692,179682.997066021,374988.470957067,26.5356000000029 +354,23649,179678.235472918,374989.489396881,26.5703999999969 +355,23648,179678.001177598,374989.507562179,26.5715999999957 +356,23579,179681.859088507,374997.916540772,26.5286000000051 +357,23577,179681.922809664,374997.959239908,26.5323999999964 +358,23576,179681.925560325,374997.963023227,26.5338999999949 +359,23575,179681.926649973,374997.964521956,26.5341000000044 +360,23574,179681.927756518,374997.966043919,26.5350999999937 +361,23573,179681.947215497,374997.992808249,26.531799999997 +362,23571,179681.980886057,374998.039119519,26.5271999999968 +363,23581,179681.852326132,374997.912312653,26.5295000000042 +364,23572,179681.955016501,374998.003537919,26.5290999999997 +365,23550,179681.615780488,374998.713398475,26.5243000000046 +366,23549,179681.602596756,374998.713201776,26.5247999999992 +367,172,179678.535,374998.087000001,26.5280000000057 +368,23538,179681.468752395,374998.900718775,26.5296999999991 +369,23537,179681.483857546,374998.936393693,26.5290999999997 +370,23539,179681.407578912,374998.756240923,26.5369999999966 +371,23540,179681.388000004,374998.710000008,26.5387999999948 +372,23607,179680.688635409,374997.1847235,26.5727000000043 +373,23542,179681.480602074,374998.711381625,26.5298999999941 +374,23541,179681.410137873,374998.710330307,26.5371000000014 +375,23585,179681.69726089,374997.815359235,26.5240999999951 +376,23584,179681.732996557,374997.837702703,26.5250999999989 +377,23543,179681.498310175,374998.711645834,26.5292999999947 +378,23544,179681.514710777,374998.711890526,26.5286999999953 +379,23545,179681.529943641,374998.712117799,26.5280999999959 +380,23583,179681.818123657,374997.890927803,26.5302999999985 +381,23546,179681.544127014,374998.71232941,26.5276000000013 +382,23547,179681.573489524,374998.712767497,26.5262999999977 +383,23548,179681.588530339,374998.712991904,26.5255999999936 +384,23582,179681.825156599,374997.895325102,26.5310999999929 +385,23587,179681.670672216,374997.798734859,26.5252999999939 +386,23536,179681.497753289,374998.96921226,26.5285000000003 +387,23568,179681.989177395,374998.050523601,26.527900000001 +388,23552,179681.662639245,374998.7140976,26.5246000000043 +389,23551,179681.628162101,374998.713583212,26.5237000000052 +390,23553,179681.745312441,374998.715331081,26.5295000000042 +391,23554,179681.752177168,374998.715433504,26.5301999999938 +392,23534,179681.522452932,374999.027547203,26.5274000000063 +393,23533,179681.546824992,374999.085108463,26.5261000000028 +394,23535,179681.510579385,374998.999504585,26.527900000001 +395,23532,179681.559201725,374999.114339497,26.5252999999939 +396,23557,179681.785372004,374998.715928763,26.527900000001 +397,23556,179681.782115165,374998.715880174,26.5283999999956 +398,23555,179681.778746657,374998.715829913,26.5286999999953 +399,23558,179681.848305948,374998.716867734,26.5314999999973 +400,23559,179681.851211302,374998.716911081,26.5329000000056 +401,23560,179681.852362774,374998.716928259,26.5331000000006 +402,23561,179681.853532419,374998.716945715,26.5339999999997 +403,23562,179681.874153178,374998.717253372,26.5310000000027 +404,23563,179681.882447738,374998.717377126,26.5285000000003 +405,23564,179681.910068713,374998.717789229,26.5267000000022 +406,23565,179681.91479937,374998.717859808,26.5258000000031 +407,23566,179681.916558694,374998.71788606,26.5264000000025 +408,23529,179681.591469921,374999.190549605,26.5234999999957 +409,23528,179681.619142644,374999.255906262,26.5243000000046 +410,23530,179681.58144192,374999.166865744,26.5240999999951 +411,23531,179681.570711359,374999.141522616,26.5246000000043 +412,23527,179681.684033263,374999.409163143,26.5286999999953 +413,23526,179681.689330544,374999.421674121,26.5293999999994 +414,23525,179681.70970488,374999.469793651,26.5280000000057 +415,23524,179681.712273475,374999.475860089,26.527700000006 +416,23523,179681.714753848,374999.481718153,26.5273000000016 +417,23522,179681.762096524,374999.593530774,26.5304000000033 +418,23521,179681.764255494,374999.598629784,26.5317000000068 +419,23520,179681.765110519,374999.600649152,26.531799999997 +420,23519,179681.765978653,374999.602699492,26.5326999999961 +421,23518,179681.781222504,374999.638701994,26.5298999999941 +422,23517,179681.787321649,374999.653106771,26.5276000000013 +423,23516,179681.807498399,374999.700759675,26.525999999998 +424,23515,179681.810933653,374999.708872966,26.5252000000037 +425,23513,179681.81220971,374999.711886708,26.5256999999983 +426,23514,179681.813949239,374999.715995081,26.5265000000072 +427,25158,180038.322566289,371611.248349644,29.2646999999997 +428,9,180058.896000002,371414.945999999,29.429999999993 +429,262,180059.84,371406.734000001,29.429999999993 +430,372,180048.081000004,371512.758000001,28.6100000000006 +431,67,180049.200000007,371499.624499999,28.3099999999977 +432,367,180047.000999998,371502.48,27.7854999999981 +433,23290,180047.315236181,371500.417872619,27.7912999999971 +434,19703,180047.629472364,371498.355745237,27.7970999999961 +435,23285,180045.354499545,371498.795315892,27.5399999999936 +436,23291,180045.236672439,371499.860685103,27.5399999999936 +437,23286,180045.163696032,371499.242369071,27.1999999999971 +438,19499,180045.114882305,371499.682316344,27.1999999999971 +439,19501,180045.051453285,371499.347217843,24.5158999999985 +440,19497,180045.082734935,371499.065283228,24.5126000000018 +441,334,180042.500400003,371497.500599999,24.3699999999953 +442,19502,180045.211828206,371497.901794069,24.4992000000057 +443,19505,180045.317794409,371496.946744002,24.4882000000071 +444,19506,180045.443967726,371495.809571728,24.475099999996 +445,19503,180045.512687165,371496.096988861,27.1999999999971 +446,23281,180045.582851272,371495.464615252,27.1999999999971 +447,23280,180045.748991951,371495.228394352,27.5399999999936 +448,23271,180045.653015375,371494.832241647,27.1999999999971 +449,23270,180045.948560994,371493.423930958,27.5399999999936 +450,19507,180045.793343581,371493.567494433,27.1999999999971 +451,23272,180045.564922892,371494.719429452,24.4624999999942 +452,19508,180045.685878068,371493.62928718,24.4499999999971 +453,330,180042.5009,371492.500599999,24.3099999999977 +454,23276,180045.758058548,371492.978740387,24.4425000000047 +455,23275,180045.830239031,371492.328193597,24.4349999999977 +456,365,180045.974600002,371491.027100001,24.4199999999983 +457,23266,180046.094785798,371489.921508301,24.4357000000018 +458,327,180042.500700004,371487.5002,24.1399999999994 +459,19512,180046.214971598,371488.815916598,24.4514000000054 +460,19513,180046.361563582,371487.467413813,24.4704999999958 +461,19509,180046.422931738,371486.902886815,24.4784999999974 +462,19514,180046.573910486,371485.514030125,24.4982000000018 +463,325,180042.500400003,371482.500400003,24.1600000000035 +464,19516,180046.717473365,371484.193392161,24.5169000000024 +465,19518,180046.84809022,371482.991844933,24.5339999999997 +466,19520,180046.992722448,371481.661370039,24.5528999999951 +467,19519,180047.063022945,371481.939956985,27.1999999999971 +468,22752,180047.136792343,371481.261350714,27.1999999999971 +469,22755,180047.121316835,371480.478427529,24.5696999999927 +470,22756,180047.216088139,371480.531907029,27.1999999999971 +471,22751,180047.307633173,371481.121015739,27.5369000000064 +472,22759,180047.445309512,371479.872380219,27.5360999999975 +473,370,180050.318999998,371486.491,28.0099999999948 +474,22747,180047.826306138,371476.41698673,27.5338000000047 +475,22753,180047.37164617,371479.100925352,27.1999999999971 +476,22761,180047.336715952,371479.422249217,27.1999999999971 +477,22754,180047.249911223,371479.29548502,24.5864000000001 +478,22758,180047.201850068,371479.737600636,24.5801999999967 +479,310,180042.501000002,371477.5009,24.2200000000012 +480,308,180037.500600003,371477.500500001,24.1399999999994 +481,304,180042.500700004,371472.500600003,24.25 +482,303,180037.500100002,371472.500600003,24.1399999999994 +483,300,180042.5002,371467.5002,24.1999999999971 +484,302,180037.500100002,371467.500500001,24.179999999993 +485,319,180032.500700008,371467.500100002,24.3099999999977 +486,306,180032.500300005,371472.5009,24.320000000007 +487,305,180027.500800002,371472.500799999,24.7400000000052 +488,301,180027.500100005,371467.500399999,24.6900000000023 +489,20254,180024.166138336,371472.03274614,24.8460999999952 +490,309,180027.500700001,371477.500599999,24.6699999999983 +491,20255,180023.353930332,371479.371403717,24.9165000000066 +492,322,180027.500400003,371482.500400003,24.6499999999942 +493,323,180032.500300005,371482.500400003,24.3300000000017 +494,328,180027.500900004,371487.500599999,24.6199999999953 +495,354,180032.500700008,371487.500599999,24.2899999999936 +496,324,180037.500399999,371482.500400003,24.1100000000006 +497,307,180032.500600003,371477.500399999,24.3399999999965 +498,326,180037.500500001,371487.5002,24.0899999999965 +499,355,180037.500399999,371492.500300001,24.0800000000017 +500,331,180032.500799999,371492.500700001,24.3099999999977 +501,359,180037.500700004,371497.500599999,24.0500000000029 +502,335,180042.501000002,371502.500300001,24.5 +503,19500,180044.913779337,371500.588042811,24.5301000000036 +504,23294,180044.818189669,371501.449571405,24.5400999999983 +505,364,180044.722600006,371502.311099999,24.5500000000029 +506,23297,180044.865477357,371501.930148162,27.1999999999971 +507,23295,180044.908954717,371501.538296327,27.1999999999971 +508,23293,180044.965865605,371501.025371041,27.1999999999971 +509,23292,180045.109034874,371501.014758512,27.5399999999936 +510,19498,180045.01725487,371500.562210899,27.1999999999971 +511,23288,180045.219095949,371500.019608177,27.5399999999936 +512,23289,180045.06606859,371500.122263622,27.1999999999971 +513,23296,180044.997239668,371502.025588404,27.5399999999936 +514,23298,180044.873887278,371503.14091612,27.5399999999936 +515,23299,180044.775044065,371502.745203484,27.1999999999971 +516,19494,180044.728088133,371503.168406963,27.1999999999971 +517,19495,180044.681132201,371503.591610447,27.1999999999971 +518,19493,180044.593054898,371503.478651162,24.5633999999991 +519,14620,180044.634176265,371504.014813934,27.1999999999971 +520,19491,180044.486521028,371504.438808937,24.5745000000024 +521,19489,180044.350347251,371505.66610229,24.588699999993 +522,342,180037.501000002,371507.500900008,24.1300000000047 +523,337,180037.500399999,371502.500700001,24.1100000000006 +524,339,180032.500900004,371507.500100002,24.2299999999959 +525,358,180032.500900004,371512.5002,24.2200000000012 +526,343,180037.500500001,371512.500300001,24.1999999999971 +527,346,180032.500500001,371517.500100002,24.1900000000023 +528,360,180037.500799999,371517.500600006,24.2599999999948 +529,19477,180043.266597204,371515.445304982,24.6794999999984 +530,23321,180043.134780984,371516.640877746,24.6790999999939 +531,19476,180043.002964772,371517.83645051,24.678700000004 +532,19711,180042.829184189,371519.412640046,24.6782999999996 +533,19714,180042.805377819,371519.628563765,24.6781999999948 +534,19712,180042.728982214,371520.321471728,24.6779999999999 +535,376,180037.5009,371522.500700001,24.3099999999977 +536,375,180032.500700008,371522.500399999,24.1699999999983 +537,379,180037.500600003,371527.500500008,24.3699999999953 +538,19471,180042.207442321,371525.051837448,24.6766000000061 +539,19465,180042.340237118,371523.847388968,24.676999999996 +540,19472,180042.479176208,371522.587211654,24.6772999999957 +541,19474,180042.628780246,371521.230303418,24.6777000000002 +542,23332,180042.63611399,371522.076344147,27.1999999999971 +543,14622,180042.686453763,371521.619762491,27.1999999999971 +544,23330,180042.749787111,371521.045329165,27.1999999999971 +545,19709,180042.813120458,371520.470895845,27.1999999999971 +546,23328,180042.856234062,371520.079855531,27.1999999999971 +547,23327,180043.015170854,371519.946281794,27.5399999999936 +548,19713,180042.89934767,371519.688815217,27.1999999999971 +549,23326,180042.942461275,371519.297774907,27.1999999999971 +550,23325,180043.112414453,371519.067067981,27.5399999999936 +551,19708,180044.589675382,371519.72260534,27.7440999999963 +552,23323,180043.24551481,371517.863660462,27.5399999999936 +553,23319,180043.438825071,371516.115873966,27.5399999999936 +554,368,180045.348999999,371513.320999999,27.7550000000047 +555,19706,180045.816681739,371510.251909368,27.7636000000057 +556,23307,180044.000310205,371511.039288025,27.5399999999936 +557,23310,180043.872738797,371512.192706291,27.5399999999936 +558,23312,180043.716794956,371513.602649819,27.5399999999936 +559,19483,180043.7182859,371512.269531954,27.1999999999971 +560,349,180043.570000004,371513.605999999,27.1999999999971 +561,23315,180043.515293498,371514.102187905,27.1999999999971 +562,350,180043.470600002,371513.594999999,24.679999999993 +563,23314,180043.368598603,371514.520152491,24.6796999999933 +564,19484,180043.648773283,371511.989177767,24.661500000002 +565,19482,180043.759583302,371510.990480315,24.6499999999942 +566,23308,180043.79242884,371511.60129793,27.1999999999971 +567,23309,180043.837331407,371511.196600989,27.1999999999971 +568,19480,180043.866571784,371510.933063906,27.1999999999971 +569,23306,180043.930390451,371510.357880343,27.1999999999971 +570,19485,180043.938871112,371509.374613114,24.6313999999984 +571,19481,180043.994209118,371509.782696769,27.1999999999971 +572,19707,180044.058027785,371509.207513198,27.1999999999971 +573,19479,180043.978815202,371509.014609072,24.6272000000026 +574,19486,180044.182480462,371507.179035202,24.6061000000045 +575,14621,180044.121846452,371508.632329628,27.1999999999971 +576,23304,180044.086654007,371508.94951136,27.1999999999971 +577,23303,180044.220221546,371509.05099174,27.5399999999936 +578,23302,180044.352905512,371507.851348978,27.5399999999936 +579,23305,180044.111386884,371510.035004422,27.5399999999936 +580,23300,180044.575934112,371505.834868446,27.5399999999936 +581,371,180044.756700002,371504.200500008,27.5399999999936 +582,19490,180044.506093811,371505.169192854,27.1999999999971 +583,23301,180044.442052584,371505.746382315,27.1999999999971 +584,19487,180044.378011357,371506.323571779,27.1999999999971 +585,19488,180044.249928903,371507.477950703,27.1999999999971 +586,19492,180044.587457892,371504.435876336,27.1999999999971 +587,23311,180043.752466276,371511.961471695,27.1999999999971 +588,23318,180043.487940241,371514.350281861,27.1999999999971 +589,23313,180043.460586984,371514.59837582,27.1999999999971 +590,23316,180043.604563266,371514.617376313,27.5399999999936 +591,23317,180043.405880481,371515.094563719,27.1999999999971 +592,19478,180043.351173975,371515.590751626,27.1999999999971 +593,23322,180043.295437202,371516.096284028,27.1999999999971 +594,23320,180043.239700429,371516.601816434,27.1999999999971 +595,19475,180043.12822688,371517.612881243,27.1999999999971 +596,23324,180043.095662065,371517.908244051,27.1999999999971 +597,19710,180042.985574879,371518.906734597,27.1999999999971 +598,63,180046.020599999,371531.2586,28.6399999999994 +599,19715,180043.609146092,371527.989111431,27.7299999999959 +600,408,180043.294,371530.646000002,27.7255000000005 +601,19718,180042.770775829,371535.057123501,27.7179999999935 +602,19722,180041.609601956,371544.846582081,27.7013000000006 +603,419,180043.960100003,371549.759100001,28.6699999999983 +604,466,180041.899700005,371568.2597,28.7100000000064 +605,19729,180039.89842239,371559.797704175,27.7217999999993 +606,19725,180040.810250994,371551.753464829,27.7041999999929 +607,409,180041.238999996,371547.971000001,27.6959999999963 +608,23387,180039.736323819,371549.592403084,27.5351999999984 +609,23391,180039.595486455,371550.86576356,27.5344999999943 +610,23392,180039.497171234,371551.754666228,27.5339999999997 +611,23394,180039.389665008,371552.726668142,27.533500000005 +612,23396,180039.240989875,371554.070892654,27.5328000000009 +613,23397,180039.002836086,371556.224125411,27.5316000000021 +614,19439,180039.000882041,371555.046883069,27.1999999999971 +615,23398,180038.906345926,371555.904325414,27.1999999999971 +616,23399,180038.859077875,371556.333046578,27.1999999999971 +617,19735,180038.811809812,371556.76176776,27.1999999999971 +618,23400,180038.816500593,371557.908850558,27.530700000003 +619,23403,180038.70764171,371558.893082298,27.5301000000036 +620,403,180038.677600004,371559.164700001,27.534599999999 +621,19731,180038.615187809,371559.729344625,27.5344999999943 +622,19730,180038.552775614,371560.293989249,27.5342999999993 +623,19734,180038.490363415,371560.858633872,27.5341999999946 +624,14629,180038.427951228,371561.423278496,27.5341000000044 +625,460,180039.392499998,371564.261,27.7314999999944 +626,14631,180038.303126834,371562.552567743,27.5338000000047 +627,6606,180038.178302448,371563.68185699,27.533500000005 +628,6607,180038.09739,371564.413873836,27.5334000000003 +629,14633,180038.017045435,371563.97027899,27.1999999999971 +630,458,180037.998300005,371564.140299998,27.1999999999971 +631,14634,180037.9614514,371564.474496737,27.1999999999971 +632,19430,180038.021853752,371565.097252112,27.5332000000053 +633,19429,180037.897983529,371565.050115801,27.1999999999971 +634,19428,180037.786942158,371565.144702703,24.6646999999939 +635,19431,180037.868976954,371565.313189644,27.1999999999971 +636,19427,180037.834515661,371565.625734847,27.1999999999971 +637,19426,180037.946317498,371565.780630384,27.5331000000006 +638,19737,180038.957750939,371568.096397888,27.7399000000005 +639,19743,180038.467124093,371572.424754959,27.7492999999959 +640,461,180037.546000004,371580.550999999,27.7670000000071 +641,470,180039.839200001,371586.760200005,28.7400000000052 +642,19751,180037.025394667,371585.224645197,27.7820999999967 +643,19757,180036.637572978,371588.706247929,27.7933000000048 +644,14656,180035.626179211,371586.818640742,27.5293999999994 +645,14658,180035.526624899,371587.726411887,27.5293999999994 +646,19758,180035.476847749,371588.180297457,27.5293999999994 +647,6610,180035.427070592,371588.634183031,27.5293999999994 +648,19759,180035.330318008,371589.516407099,27.5293999999994 +649,14660,180035.239593282,371589.234883282,27.1999999999971 +650,19762,180035.204640023,371589.554783586,27.1999999999971 +651,19377,180035.153604958,371589.101236511,24.636599999998 +652,19761,180035.071491104,371589.852761555,24.6343999999954 +653,453,180032.500399999,371587.500599999,24.4600000000064 +654,19375,180034.989377249,371590.604286592,24.6322999999975 +655,19376,180035.099780258,371590.514484521,27.1999999999971 +656,19760,180035.169686768,371589.874683898,27.1999999999971 +657,14662,180035.216849752,371590.551050529,27.5293999999994 +658,14663,180035.070356108,371590.783781122,27.1999999999971 +659,14661,180034.961585298,371592.878641516,27.5293999999994 +660,19763,180035.946018245,371594.914561991,27.8132999999943 +661,19371,180034.845213976,371593.939756144,27.5292999999947 +662,14664,180034.824043654,371593.038089834,27.1999999999971 +663,19372,180034.724537641,371593.948791903,27.1999999999971 +664,19369,180034.590560436,371594.254350536,24.6217000000033 +665,19370,180034.679740094,371594.358789504,27.1999999999971 +666,14666,180034.588687871,371595.192120545,27.1999999999971 +667,14665,180034.728842653,371595.000870761,27.5292999999947 +668,19764,180034.787028316,371594.470313452,27.5292999999947 +669,14667,180034.612471331,371596.061985381,27.5292999999947 +670,438,180035.715499997,371596.984000005,27.820000000007 +671,519,180037.778800003,371605.260800004,28.7700000000041 +672,25160,180037.368872773,371608.941391461,28.775999999998 +673,25159,180036.958945543,371612.621982917,28.7819000000018 +674,518,180035.7183,371623.761300005,28.8000000000029 +675,25155,180035.375,371637.063000005,29.1564000000071 +676,25135,180034.688100006,371633.011600003,28.8150000000023 +677,19793,180032.221266493,371627.74720465,27.858699999997 +678,506,180031.965000004,371629.954500005,27.8564999999944 +679,25143,180031.741788846,371631.877080485,27.854600000006 +680,25142,180031.518577684,371633.799660966,27.8527000000031 +681,25156,180034.415459059,371635.459678616,28.8190000000031 +682,25157,180031.295366526,371635.722241439,27.8506999999954 +683,19804,180030.36632897,371634.780815113,27.5286999999953 +684,25150,180030.296224877,371635.42004887,27.5286999999953 +685,14705,180030.226120785,371636.059282634,27.5286999999953 +686,19803,180030.114577413,371637.076374296,27.5286999999953 +687,19802,180031.072155375,371637.64482192,27.848800000007 +688,25136,180034.142818097,371637.907757219,28.8228999999992 +689,25138,180030.856935613,371639.498570256,27.8469999999943 +690,19288,180029.932854094,371638.733391386,27.5286000000051 +691,25140,180029.88397631,371639.17907618,27.5286000000051 +692,14710,180029.835098524,371639.624760974,27.5286000000051 +693,25139,180029.792645901,371640.01185891,27.5286000000051 +694,19282,180029.750193276,371640.398956843,27.5286000000051 +695,19808,180030.641715847,371641.352318589,27.8451000000059 +696,25137,180033.900359053,371640.084828608,28.8264999999956 +697,517,180033.657900002,371642.261900008,28.8300000000017 +698,25134,180034.949180812,371640.71308025,29.1376000000018 +699,25075,180019.361000005,371781.776000001,28.7728999999963 +700,25064,180017.050000001,371802.68,28.8151000000071 +701,77,180018.005000003,371786.815000001,28.9100000000035 +702,25065,180016.81741453,371797.648753293,28.9100000000035 +703,25066,180016.48470727,371800.683876645,28.9100000000035 +704,684,180016.151999999,371803.719000004,28.9100000000035 +705,25058,180015.200773556,371812.396567106,28.9100000000035 +706,6662,180011.94615975,371809.548754137,27.6815999999963 +707,25061,180011.661742993,371812.037990924,27.6778000000049 +708,18931,180010.962705497,371810.469027054,27.5335999999952 +709,18928,180010.906576905,371810.975868445,27.5334000000003 +710,25063,180010.850448322,371811.482709836,27.5332000000053 +711,9815,180010.794319734,371811.989551228,27.5329000000056 +712,25062,180010.749468204,371812.394560773,27.5326999999961 +713,12597,180010.6643764,371811.986591186,27.1999999999971 +714,18922,180010.617685456,371812.402103029,27.1999999999971 +715,18920,180010.491977643,371812.625321425,24.4578000000038 +716,18924,180010.594339985,371812.609858945,27.1999999999971 +717,18921,180010.570994511,371812.817614868,27.1999999999971 +718,12599,180010.477612626,371813.64863855,27.1999999999971 +719,12598,180010.614913613,371813.609589402,27.5320999999967 +720,18923,180010.704616677,371812.799570318,27.5325000000012 +721,9816,180011.377326224,371814.527227726,27.6741000000038 +722,18919,180010.570062079,371814.014598947,27.5319000000018 +723,12600,180010.525210552,371814.419608492,27.5317000000068 +724,12602,180010.480359014,371814.824618038,27.5316000000021 +725,9817,180010.435507488,371815.229627579,27.5314000000071 +726,18913,180010.354587752,371815.960333172,27.5310000000027 +727,18911,180010.221499775,371815.927836843,27.1999999999971 +728,18912,180010.160464719,371816.470999736,27.1999999999971 +729,12606,180010.27366801,371816.691038765,27.530700000003 +730,12605,180011.092909463,371817.016464513,27.6704000000027 +731,12608,180010.194894709,371817.402362078,27.5302999999985 +732,12604,180010.111828543,371818.152449951,27.5299999999988 +733,6663,180010.808492705,371819.505701303,27.6667000000016 +734,25060,180014.504414629,371818.749104213,28.9100000000035 +735,766,180014.298999999,371820.623,28.9100000000035 +736,25057,180015.325000003,371819.199000005,28.8120000000054 +737,25059,180014.709829256,371816.875208426,28.9100000000035 +738,25045,180013.671246413,371825.814022586,28.8926999999967 +739,753,180010.453000005,371822.616999999,27.6619999999966 +740,25046,180010.136671171,371825.558822811,27.6793999999936 +741,756,180009.425500005,371824.350000001,27.5270000000019 +742,25047,180009.322351974,371825.288062584,27.527900000001 +743,759,180009.245999999,371824.609000001,27.1999999999971 +744,25050,180009.168943025,371825.327529203,27.1999999999971 +745,764,180009.146600004,371824.598100003,24.3399999999965 +746,25051,180009.031036992,371825.675684467,24.3467999999993 +747,714,180002.500500005,371822.500300001,24.2700000000041 +748,717,180002.500500005,371827.500100005,24.2700000000041 +749,716,179997.500200003,371822.500800006,24.3899999999994 +750,719,179997.5009,371827.500900004,24.3500000000058 +751,722,180002.500800002,371832.500600006,24.2799999999988 +752,18884,180008.604436494,371829.653584231,24.3717000000033 +753,18882,180008.44344344,371831.154787928,24.3812000000034 +754,12617,180008.635168295,371830.3047911,27.1999999999971 +755,25043,180008.59023549,371830.723773725,27.1999999999971 +756,18883,180008.545302678,371831.142756347,27.1999999999971 +757,25041,180008.500369877,371831.561738979,27.1999999999971 +758,12624,180008.455437072,371831.980721604,27.1999999999971 +759,25040,180008.611371625,371831.753954679,27.5338999999949 +760,12619,180008.682115041,371831.110590506,27.5332999999955 +761,25039,180009.531256747,371831.189109217,27.7127999999939 +762,9820,180008.54062821,371832.397318847,27.5344999999943 +763,9821,180009.242171165,371833.877572812,27.7287000000069 +764,25038,180012.584896415,371834.797272589,28.8626999999979 +765,25037,180013.043492831,371831.005045176,28.8752999999997 +766,6664,180009.820342328,371828.500645619,27.6968000000052 +767,25044,180014.022000004,371831.037999999,28.8337999999931 +768,25036,180013.80938429,371832.804417271,28.8435999999929 +769,25027,180011.73,371850.080000002,28.8500000000058 +770,78,180012.1263,371838.589500003,28.8500000000058 +771,25028,180011.007998496,371847.83653795,28.8242999999929 +772,25030,180010.744373873,371850.016403466,28.8181999999942 +773,25029,180010.480749249,371852.196268976,28.8120999999956 +774,765,180009.953499999,371856.556000002,28.8000000000029 +775,25017,180009.645692486,371867.976065896,28.8515000000043 +776,25018,180009.234897986,371862.498266812,28.7801999999938 +777,25019,180008.875596981,371865.469400212,28.770199999999 +778,25011,180008.516295969,371868.440533619,28.7602999999945 +779,25010,180009.227000002,371871.571000002,28.813599999994 +780,25012,180008.148547988,371871.481516808,28.7501999999949 +781,80,180007.7808,371874.522500001,28.7400000000052 +782,25004,180007.125550747,371879.940640539,28.7249000000011 +783,25006,180004.42171761,371877.417791039,27.7880000000005 +784,9838,180004.161435224,371879.70158207,27.7804000000033 +785,25005,180006.817320559,371882.489341602,28.7177999999985 +786,24998,180003.863506328,371882.31569415,27.7718000000023 +787,18738,180003.11633506,371881.150512572,27.5620999999956 +788,25001,180003.047730669,371881.76033996,27.5622000000003 +789,9839,180002.979126282,371882.370167349,27.5623999999953 +790,24999,180002.922452603,371882.873942167,27.5625 +791,18734,180002.832504462,371882.721034631,27.1999999999971 +792,25000,180002.810325716,371882.915327623,27.1999999999971 +793,18733,180002.788146973,371883.109620612,27.1999999999971 +794,18727,180002.865778923,371883.377716992,27.5626000000047 +795,18726,180002.744603287,371883.49107746,27.1999999999971 +796,12703,180002.752431557,371884.385266639,27.5627999999997 +797,12704,180002.638988223,371884.416299734,27.1999999999971 +798,18730,180002.596221667,371884.790948611,27.1999999999971 +799,18725,180002.537878059,371884.420281347,24.5326000000059 +800,18731,180002.497479379,371884.774186879,24.5325000000012 +801,787,179997.500600003,371882.500500001,24.2599999999948 +802,18732,180002.691435255,371883.075070441,24.5329000000056 +803,18735,180002.840559114,371881.768696904,24.5332999999955 +804,12702,180002.876861949,371882.332448635,27.1999999999971 +805,25002,180002.911519434,371882.028837807,27.1999999999971 +806,18737,180002.946176916,371881.725226987,27.1999999999971 +807,18736,180003.015491888,371881.118005332,27.1999999999971 +808,18739,180003.001485806,371880.358926855,24.5337 +809,18742,180003.056635078,371880.757577624,27.1999999999971 +810,18740,180003.097778264,371880.397149913,27.1999999999971 +811,12700,180003.154121827,371879.903562035,27.1999999999971 +812,18745,180003.225871857,371879.275008444,27.1999999999971 +813,18743,180003.181218259,371878.784412161,24.5341000000044 +814,18748,180003.26819358,371878.904256374,27.1999999999971 +815,18744,180003.297621887,371878.646454841,27.1999999999971 +816,12697,180003.415420748,371877.614498585,27.1999999999971 +817,18749,180003.35216932,371877.286825348,24.5344999999943 +818,25009,180003.450441863,371877.307702247,27.1999999999971 +819,25008,180003.521588296,371877.548198953,27.5613000000012 +820,25007,180003.557904255,371877.225384817,27.5611999999965 +821,18750,180003.48134961,371877.036940321,27.1999999999971 +822,12698,180003.630536165,371876.579756543,27.5611000000063 +823,12699,180003.547278471,371876.45938205,27.1999999999971 +824,18753,180003.703168083,371875.934128277,27.5608999999968 +825,767,180004.682000004,371875.134000007,27.7954999999929 +826,768,180003.775800001,371875.288500004,27.5608000000066 +827,769,180003.675000001,371875.340500005,27.1999999999971 +828,18752,180003.611139242,371875.899941023,27.1999999999971 +829,18751,180003.514063608,371875.868578766,24.5348999999987 +830,783,179997.500200003,371877.500300005,24.2200000000012 +831,770,180003.575600002,371875.329500005,24.5350000000035 +832,818,179997.500300005,371872.500100005,24.1999999999971 +833,781,179992.501000002,371872.500500005,24.3300000000017 +834,785,179992.500200003,371877.500700004,24.2799999999988 +835,789,179992.500799999,371882.500799999,24.2599999999948 +836,791,179992.500799999,371887.500500005,24.25 +837,790,179987.500700001,371887.500400003,24.429999999993 +838,794,179987.500900004,371892.5002,24.4499999999971 +839,795,179992.500600003,371892.500400003,24.2200000000012 +840,816,179997.500300005,371892.5002,24.320000000007 +841,792,179997.5009,371887.500700004,24.2799999999988 +842,18713,180001.851079736,371890.436857671,24.5310000000027 +843,18716,180002.004687764,371889.091201454,24.5314000000071 +844,18722,180002.155245595,371887.772265982,24.5317000000068 +845,12711,180002.141756658,371888.772209711,27.1999999999971 +846,18719,180002.219302464,371888.092883285,27.1999999999971 +847,24996,180002.238688916,371887.923051678,27.1999999999971 +848,24995,180002.361616388,371887.859239653,27.563599999994 +849,18720,180002.258075364,371887.753220078,27.1999999999971 +850,12710,180002.416323204,371887.372948412,27.5633999999991 +851,12708,180002.296848271,371887.413556863,27.1999999999971 +852,18718,180002.180044722,371887.555017568,24.531799999997 +853,18721,180002.382385142,371886.664226044,27.1999999999971 +854,24997,180002.471030015,371886.886657167,27.5632999999943 +855,9841,180002.525736831,371886.400365926,27.5632000000041 +856,18724,180002.425153583,371886.289560638,27.1999999999971 +857,12707,180002.582410511,371885.896591101,27.5630999999994 +858,12706,180002.467922017,371885.914895233,27.1999999999971 +859,18723,180002.328407053,371886.255315326,24.5320999999967 +860,18728,180002.553455118,371885.165597484,27.1999999999971 +861,12705,180002.639084198,371885.392816283,27.5629999999946 +862,18729,180002.695757877,371884.889041457,27.5629000000044 +863,9840,180003.565577433,371884.929806229,27.7632000000012 +864,24994,180003.26764854,371887.543918312,27.7544999999955 +865,24992,180006.509090368,371885.038042672,28.710699999996 +866,24993,180006.058545187,371888.763521336,28.7004000000015 +867,6668,180002.969719645,371890.158030391,27.7458999999944 +868,771,180005.607999999,371892.489,28.6900000000023 +869,24991,180007.631000008,371885.796000004,28.7035999999935 +870,24989,180006.333040517,371896.931261137,28.6668999999965 +871,24964,180003.408964168,371931.442365028,28.773199999996 +872,24965,180002.017625112,371930.545216762,28.6284000000014 +873,24966,180003.425999999,371931.162999999,28.7682000000059 +874,24961,180001.663750231,371934.527933516,28.6168999999936 +875,24960,180002.956723824,371938.858505696,28.7440000000061 +876,24962,180001.404875118,371937.441466756,28.6083999999973 +877,872,180001.146000005,371940.355000004,28.6000000000058 +878,24959,180002.689486634,371943.240840517,28.6745999999985 +879,24957,180000.968978483,371943.285694756,28.5815000000002 +880,854,179998.414999999,371941.020000003,27.7090000000026 +881,24950,179998.182124998,371943.561375003,27.7130000000034 +882,12194,179997.185476623,371942.427535046,27.5295999999944 +883,24952,179997.134038888,371943.032661643,27.5295999999944 +884,24951,179997.082601156,371943.637788247,27.5296999999991 +885,12196,179997.011818517,371944.470493361,27.5296999999991 +886,12097,179997.949249998,371946.10275,27.7170000000042 +887,24948,180000.791956965,371946.216389515,28.5629000000044 +888,24943,179997.716375001,371948.644125003,27.721000000005 +889,12201,179996.740375247,371947.663821258,27.5298999999941 +890,24944,179996.670917381,371948.480941337,27.5298999999941 +891,24945,179996.629070647,371948.973236982,27.5299999999988 +892,12202,179996.587223914,371949.46553262,27.5299999999988 +893,907,179997.4835,371951.185500003,27.7250000000058 +894,24949,180000.614935443,371949.147084266,28.5443999999989 +895,24940,180000.437913924,371952.077779025,28.5258999999933 +896,24947,180002.221999999,371950.907000005,28.8525999999983 +897,24956,180002.586558547,371944.928724352,28.757500000007 +898,24958,180002.669224512,371943.573112369,28.6710000000021 +899,25003,180007.833200138,371883.993808992,28.7094999999972 +900,24939,180001.961848654,371956.842002574,28.9854999999952 +901,24941,180000.218956962,371955.702739514,28.5029000000068 +902,918,180000,371959.3277,28.4799999999959 +903,919,179999.787,371962.853999995,28.4600000000064 +904,927,179999.073000003,371969.139000002,28.4700000000012 +905,10748,179996.548250001,371966.957249999,27.7994999999937 +906,923,179996.546999998,371968.826000001,27.8190000000031 +907,12222,179995.007343058,371968.05165448,27.5310000000027 +908,12221,179995.099872209,371966.963117912,27.5308999999979 +909,12223,179994.881818298,371967.744098671,27.1999999999971 +910,12105,179994.950426877,371966.959775414,27.1999999999971 +911,18534,179994.989961963,371966.507816192,27.1999999999971 +912,18535,179995.158430506,371966.274223097,27.5308999999979 +913,18533,179995.029497039,371966.055856977,27.1999999999971 +914,18532,179994.888104506,371966.524978697,24.3445999999967 +915,18536,179995.043086078,371964.753265649,24.4039000000048 +916,12219,179995.108567201,371965.151938532,27.1999999999971 +917,18537,179995.15321793,371964.641497966,27.1999999999971 +918,12103,179995.266707517,371963.344101653,27.1999999999971 +919,18538,179995.197303984,371962.990282651,24.4630000000034 +920,890,179987.500999998,371962.500999998,24.25 +921,18542,179995.339769218,371961.361653391,24.5176000000065 +922,888,179992.500600003,371957.500700001,24.320000000007 +923,886,179987.500500005,371957.500500005,24.2299999999959 +924,59,179982.500100005,371962.500800002,24.3099999999977 +925,892,179982.500400003,371967.500399999,24.2799999999988 +926,894,179987.500300009,371967.5009,24.2599999999948 +927,896,179982.500800002,371972.500300005,24.2799999999988 +928,897,179987.500500005,371972.500300005,24.1999999999971 +929,900,179987.500300009,371977.500300001,24.1999999999971 +930,902,179982.5002,371977.500900004,24.2599999999948 +931,901,179977.5009,371977.500400003,24.3699999999953 +932,895,179977.5002,371972.500300005,24.3800000000047 +933,899,179972.500799999,371977.5002,24.2799999999988 +934,904,179977.500700004,371982.500300001,24.3899999999994 +935,903,179972.500300005,371982.500200007,24.2400000000052 +936,917,179968.0064,371981.500200003,24.9400000000023 +937,20307,179967.316914957,371987.546723653,24.9143999999942 +938,971,179972.500100002,371987.5009,24.2200000000012 +939,931,179977.500400003,371987.500700004,24.3699999999953 +940,972,179972.500399999,371992.500399999,24.1900000000023 +941,934,179977.500600003,371992.500399999,24.3600000000006 +942,935,179982.500500005,371992.500399999,24.2100000000064 +943,932,179982.500999998,371987.5009,24.2299999999959 +944,906,179982.500100005,371982.500900004,24.25 +945,905,179987.500599999,371982.500599999,24.179999999993 +946,978,179987.500700001,371987.500300005,24.179999999993 +947,18499,179992.823044118,371985.595647343,24.2887999999948 +948,968,179992.644400004,371987.216300003,24.2887000000046 +949,12244,179992.787374455,371986.831897248,27.1999999999971 +950,960,179992.743900005,371987.226299997,27.1999999999971 +951,12243,179992.916827444,371986.992873482,27.5371000000014 +952,12242,179993.063309766,371985.671593919,27.5366000000067 +953,974,179994.295499999,371987.778499998,27.7795000000042 +954,963,179992.868000001,371987.433300003,27.5372000000061 +955,12245,179992.712679219,371988.83429566,27.5377000000008 +956,12111,179992.706784911,371987.563008506,27.1999999999971 +957,12247,179992.583487108,371988.681567345,27.1999999999971 +958,18497,179992.459130477,371988.89705814,24.2885999999999 +959,18498,179992.553105388,371988.957190629,27.1999999999971 +960,12246,179992.460189313,371989.800126184,27.1999999999971 +961,18495,179992.303803369,371990.306179851,24.2884999999951 +962,933,179987.500700001,371992.500300005,24.1399999999994 +963,18490,179992.156895731,371991.638920344,24.2884000000049 +964,18486,179992.021879662,371992.863781039,24.2883000000002 +965,18484,179991.887906063,371994.079184543,24.2883000000002 +966,18479,179991.743873306,371995.385844279,24.2881999999954 +967,12114,179991.938791577,371994.530251585,27.1999999999971 +968,18485,179991.998224728,371993.991073504,27.1999999999971 +969,12252,179992.144533183,371993.958980978,27.5393999999942 +970,12254,179992.192548618,371993.525881097,27.5391999999993 +971,12113,179993.47068711,371994.721545238,27.7649999999994 +972,12255,179992.05255514,371994.788624231,27.5396000000037 +973,18482,179991.994362094,371995.313526381,27.5397999999986 +974,18478,179991.936169039,371995.838428531,27.5399999999936 +975,12256,179991.819782939,371996.888232823,27.5402999999933 +976,18471,179991.648033522,371998.437415041,27.5408000000025 +977,10750,179992.645874213,372001.664590478,27.7505999999994 +978,12260,179991.476284098,371999.986597259,27.5414000000019 +979,12257,179991.408048254,372000.602085572,27.5415999999968 +980,12258,179991.327374142,372000.077036642,27.1999999999971 +981,18468,179991.273068748,372000.569695726,27.1999999999971 +982,12259,179991.203184154,372001.203689452,27.1999999999971 +983,12261,179991.314309623,372001.447609331,27.5418000000063 +984,18466,179991.150102362,372001.685247991,27.1999999999971 +985,12262,179991.20327865,372002.449110299,27.5421999999962 +986,18462,179991.096824184,372003.409331068,27.5424999999959 +987,18464,179991.026870281,372002.803210657,27.1999999999971 +988,18460,179990.969945621,372003.319631692,27.1999999999971 +989,18461,179990.915421352,372003.814276408,27.1999999999971 +990,18459,179990.809788965,372003.859822176,24.2877000000008 +991,12263,179990.860897087,372004.308921129,27.1999999999971 +992,18457,179990.683069516,372005.009416245,24.287599999996 +993,940,179987.500900004,372002.500500005,24.0800000000017 +994,980,179987.500900004,372007.500700004,24.070000000007 +995,944,179982.500800002,372007.500600003,24.1600000000035 +996,948,179982.500500005,372012.500200003,24.1999999999971 +997,18444,179989.885361113,372012.246196788,24.2871000000014 +998,18440,179989.716243334,372013.78042689,24.2869999999966 +999,18438,179989.507970925,372015.669866376,24.2869000000064 +1000,954,179982.500900004,372017.5009,24.179999999993 +1001,953,179977.5002,372017.500800006,24.25 +1002,947,179977.500400003,372012.500100002,24.2799999999988 +1003,950,179972.5009,372012.500799999,24.3300000000017 +1004,945,179972.500200003,372007.5009,24.2799999999988 +1005,949,179967.500799999,372012.500700004,24.4600000000064 +1006,943,179967.500600003,372007.500200003,24.429999999993 +1007,941,179972.500600003,372002.500599999,24.2599999999948 +1008,20308,179965.304058783,372005.19837556,24.8396000000066 +1009,969,179966.122100003,371998.024799999,24.8699999999953 +1010,975,179964.0715,371999.723499998,28.4100000000035 +1011,929,179965.980999999,371983.445000004,28.3999999999942 +1012,25182,179985.170263696,371784.233333502,28.9177999999956 +1013,976,179962.162000004,372016.002000004,28.4100000000035 +1014,25177,179935.238115408,372232.174956746,28.7835999999952 +1015,1032,179960.053800005,372035.0825,28.3800000000047 +1016,1022,179962.353400003,372031.074099999,24.7299999999959 +1017,20309,179963.677537069,372019.461917579,24.7792000000045 +1018,1023,179967.500500001,372027.500700001,24.3300000000017 +1019,988,179967.500300005,372032.5009,24.3300000000017 +1020,987,179972.500700004,372032.500600003,24.3899999999994 +1021,989,179972.500500001,372037.500100005,24.3800000000047 +1022,991,179977.500500008,372037.500400007,24.1699999999983 +1023,992,179977.500100005,372042.500100005,24.179999999993 +1024,1025,179982.500599999,372037.500700004,24.1499999999942 +1025,994,179982.500400003,372042.500700001,24.179999999993 +1026,997,179977.500700004,372047.500599999,24.1900000000023 +1027,58,179982.500700001,372047.500599999,24.2299999999959 +1028,18372,179986.196220987,372045.713874411,24.2848999999987 +1029,18369,179986.05973253,372046.952033635,24.284799999994 +1030,18367,179985.941210747,372048.027207617,24.284799999994 +1031,18365,179985.816823814,372049.155587487,24.2847000000038 +1032,18363,179985.685532391,372050.34660162,24.284599999999 +1033,1000,179982.500900004,372052.500399999,24.2299999999959 +1034,18361,179985.533597164,372051.724886697,24.2844999999943 +1035,18362,179985.655038372,372051.53575303,27.1999999999971 +1036,12130,179985.76527271,372050.535700809,27.1999999999971 +1037,18364,179985.793306146,372050.281379912,27.1999999999971 +1038,12325,179985.913593601,372050.352917805,27.5288 +1039,12324,179985.864413276,372049.636291899,27.1999999999971 +1040,12323,179986.021407131,372049.376151271,27.5290999999997 +1041,12129,179987.510474436,372050.663054321,27.7203000000009 +1042,12316,179987.875237223,372047.404027164,27.7116999999998 +1043,1029,179991.427000005,372043.951000005,28.5099999999948 +1044,1014,179988.240000002,372044.145,27.7029999999941 +1045,10751,179988.715499997,372039.468249999,27.7075999999943 +1046,12312,179986.945495158,372041.004309047,27.5319000000018 +1047,18384,179987.032127324,372040.219482347,27.5322000000015 +1048,12309,179987.118759494,372039.434655648,27.5323999999964 +1049,18387,179986.979354892,372039.521503113,27.1999999999971 +1050,18382,179986.910005383,372040.150642507,27.1999999999971 +1051,18383,179986.853456225,372040.663657039,27.1999999999971 +1052,18381,179986.747874089,372040.709360804,24.2851999999984 +1053,12311,179986.814867791,372041.013731726,27.1999999999971 +1054,18380,179986.754798248,372041.558683183,27.1999999999971 +1055,18378,179986.603698682,372042.017314706,24.2850999999937 +1056,18375,179986.472915992,372043.203770295,24.2850999999937 +1057,1021,179986.341100004,372044.399599999,24.2850000000035 +1058,12314,179986.532546297,372043.57495508,27.1999999999971 +1059,1016,179986.440499999,372044.410000004,27.1999999999971 +1060,12127,179986.406850908,372044.7152665,27.1999999999971 +1061,1018,179986.550300002,372044.584500004,27.530700000003 +1062,12313,179986.6595034,372043.5951938,27.5310000000027 +1063,18377,179986.720379554,372043.043698501,27.5311999999976 +1064,12310,179986.781255715,372042.492203195,27.5314000000071 +1065,12126,179986.624592595,372042.739910163,27.1999999999971 +1066,18376,179986.578569446,372043.157432623,27.1999999999971 +1067,18379,179986.694728706,372042.103634641,27.1999999999971 +1068,18374,179986.466258731,372045.345895141,27.5304000000033 +1069,18373,179986.312225401,372045.573714539,27.1999999999971 +1070,12320,179986.382217456,372046.107290283,27.5301999999938 +1071,12318,179986.327112909,372046.606525216,27.5299999999988 +1072,12315,179986.267441999,372047.147130329,27.5298000000039 +1073,12321,179986.148328558,372048.22627151,27.5295000000042 +1074,12317,179986.116194151,372047.352121308,27.1999999999971 +1075,18368,179986.035703368,372048.082338348,27.1999999999971 +1076,12322,179985.963553842,372048.736882985,27.1999999999971 +1077,18366,179985.913043745,372049.195113502,27.1999999999971 +1078,18371,179986.151235428,372047.034224801,27.1999999999971 +1079,18370,179986.186276708,372046.716328301,27.1999999999971 +1080,12319,179986.261522532,372046.03369391,27.1999999999971 +1081,18385,179986.897141289,372039.355214398,24.2853000000032 +1082,18388,179987.035457373,372038.100416094,24.2853999999934 +1083,18390,179987.192414764,372036.676504578,24.2854999999981 +1084,18392,179987.374061961,372035.028608017,24.2856000000029 +1085,985,179982.500100005,372032.500300005,24.1999999999971 +1086,18396,179987.528315652,372033.629224386,24.2856999999931 +1087,18401,179987.673127797,372032.315494049,24.2857999999978 +1088,12125,179987.72621635,372032.745968591,27.1999999999971 +1089,18403,179987.764127463,372032.402038541,27.1999999999971 +1090,18404,179987.89433299,372032.408503707,27.534799999994 +1091,12301,179987.841643147,372032.885836743,27.534599999999 +1092,12124,179989.428750001,372032.453125004,27.7146000000066 +1093,12298,179987.947022837,372031.931170665,27.5348999999987 +1094,18402,179987.802038588,372032.058108497,27.1999999999971 +1095,12299,179987.888062291,372031.277700562,27.1999999999971 +1096,12300,179988.010975063,372031.351808347,27.5350999999937 +1097,18406,179987.943003919,372030.779269591,27.1999999999971 +1098,18407,179988.100892004,372030.537223909,27.5353999999934 +1099,12294,179989.785375003,372028.945562501,27.7179999999935 +1100,977,179993.709500004,372025.435000002,28.6000000000058 +1101,959,179990.142000001,372025.438000005,27.7214999999997 +1102,12292,179988.480444849,372027.098741312,27.5366000000067 +1103,12295,179988.372040458,372028.080809157,27.5362000000023 +1104,12293,179988.289060749,372027.639838662,27.1999999999971 +1105,18416,179988.398150947,372026.650171265,27.1999999999971 +1106,18418,179988.567672428,372026.308520656,27.5368000000017 +1107,18419,179988.425423492,372026.402754419,27.1999999999971 +1108,18417,179988.452696048,372026.155337568,27.1999999999971 +1109,18415,179988.322916191,372026.420638245,24.2860999999975 +1110,12122,179988.507241149,372025.660503872,27.1999999999971 +1111,966,179988.442200005,372025.338500001,24.2862000000023 +1112,984,179982.500900004,372027.500500005,24.1699999999983 +1113,18413,179988.144297756,372028.041057955,24.2859999999928 +1114,18408,179987.994615674,372029.398968149,24.2859000000026 +1115,18405,179987.829130881,372030.900239948,24.2857999999978 +1116,983,179977.500600003,372027.500500005,24.2100000000064 +1117,973,179982.500700001,372022.500500005,24.1100000000006 +1118,955,179977.500600003,372022.5002,24.2400000000052 +1119,982,179972.5009,372027.500399999,24.3899999999994 +1120,986,179977.501000002,372032.500500001,24.1999999999971 +1121,957,179972.500399999,372022.500700001,24.3999999999942 +1122,951,179972.500500001,372017.500400003,24.3800000000047 +1123,952,179967.500799999,372017.500700001,24.429999999993 +1124,956,179967.500600003,372022.500400003,24.3999999999942 +1125,970,179964.237700004,372014.549500003,24.8000000000029 +1126,18424,179988.990221214,372020.366872218,24.286500000002 +1127,18429,179989.168593999,372018.748681054,24.2866000000067 +1128,18433,179989.331167731,372017.273818254,24.2866999999969 +1129,12117,179989.353429504,372017.984186627,27.1999999999971 +1130,18435,179989.404894084,372017.517319143,27.1999999999971 +1131,18437,179989.430626385,372017.283885397,27.1999999999971 +1132,18434,179989.456358679,372017.050451651,27.1999999999971 +1133,12119,179989.559287854,372016.116716664,27.1999999999971 +1134,18439,179989.606682014,372015.686774623,27.1999999999971 +1135,12277,179989.789277248,372014.030338969,27.1999999999971 +1136,12278,179989.928560451,372013.979769096,27.5409999999974 +1137,18442,179989.821164072,372013.741073683,27.1999999999971 +1138,18443,179990.029981159,372013.060963791,27.5412999999971 +1139,12120,179991.509418432,372011.988843031,27.7348000000056 +1140,12275,179990.131401859,372012.14215849,27.5415999999968 +1141,18445,179989.983479008,372012.268613279,27.1999999999971 +1142,18441,179989.904271949,372012.987150118,27.1999999999971 +1143,12121,179990.019266643,372011.943961263,27.1999999999971 +1144,18446,179990.087729327,372010.410319995,24.2872000000061 +1145,12273,179990.165019896,372010.621742308,27.1999999999971 +1146,18447,179990.200271122,372010.301956385,27.1999999999971 +1147,12271,179990.310773149,372009.29952335,27.1999999999971 +1148,18448,179990.234013878,372009.083232071,24.2872999999963 +1149,18450,179990.37135002,372007.837323789,24.2874000000011 +1150,18456,179990.485442199,372006.802283805,24.2875000000058 +1151,18452,179990.501553934,372006.656118795,24.2875000000058 +1152,967,179990.543300003,372006.277400002,24.2875000000058 +1153,12116,179990.607684456,372006.606055073,27.1999999999971 +1154,961,179990.642800003,372006.287500001,27.1999999999971 +1155,964,179990.759500004,372006.452000003,27.5434999999998 +1156,18454,179990.699351158,372006.996909212,27.5433000000048 +1157,18455,179990.581368338,372006.844785061,27.1999999999971 +1158,18453,179990.555052217,372007.083515048,27.1999999999971 +1159,12268,179990.639202315,372007.541818425,27.5430999999953 +1160,18451,179990.502419978,372007.560975019,27.1999999999971 +1161,12269,179990.45761561,372007.967423458,27.1999999999971 +1162,12270,179990.500739384,372008.796202056,27.5427000000054 +1163,958,179992.044000003,372006.731000002,27.7400000000052 +1164,981,179995.991999999,372006.919,28.679999999993 +1165,12264,179990.990369722,372004.369551841,27.5427999999956 +1166,12266,179990.855103787,372005.589652486,27.5432000000001 +1167,12267,179990.697324272,372005.792855281,27.1999999999971 +1168,12265,179990.751848541,372005.298210569,27.1999999999971 +1169,18458,179990.80637281,372004.803565849,27.1999999999971 +1170,12118,179990.97483686,372017.246686056,27.729600000006 +1171,12281,179990.55841843,372021.342343025,27.7256000000052 +1172,18431,179989.381813455,372018.932939377,27.539300000004 +1173,12285,179989.277783465,372019.875383046,27.5390000000043 +1174,18427,179989.197773624,372020.600219924,27.5387000000046 +1175,18426,179989.099732779,372020.285628311,27.1999999999971 +1176,18428,179989.074363112,372020.515772473,27.1999999999971 +1177,18425,179989.048993435,372020.74591665,27.1999999999971 +1178,12283,179989.117763784,372021.325056788,27.5384999999951 +1179,12282,179988.94751475,372021.666493315,27.1999999999971 +1180,12286,179989.021535564,372022.196821541,27.5381999999954 +1181,12288,179988.856009174,372023.696382392,27.5377000000008 +1182,12290,179988.745430958,372024.698148727,27.5374000000011 +1183,12289,179988.643078689,372024.428223327,27.1999999999971 +1184,12291,179988.592339344,372024.888511665,27.1999999999971 +1185,962,179988.5416,372025.348800004,27.1999999999971 +1186,965,179988.654899999,372025.518300001,27.5371000000014 +1187,18420,179988.602764528,372023.881864667,24.286300000007 +1188,18421,179988.70318361,372023.882973984,27.1999999999971 +1189,12287,179988.744557373,372023.507646661,27.1999999999971 +1190,18422,179988.79794392,372022.111204568,24.2863999999972 +1191,18423,179988.891240761,372022.176989906,27.1999999999971 +1192,12284,179989.150472123,372019.825339973,27.1999999999971 +1193,18432,179989.207219858,372019.310545817,27.1999999999971 +1194,18430,179989.263967581,372018.795751657,27.1999999999971 +1195,12280,179989.485843439,372017.990495712,27.5396000000037 +1196,18436,179989.554992646,372017.364049103,27.5397999999986 +1197,12279,179989.624141861,372016.737602491,27.5399999999936 +1198,12276,179989.727038965,372015.805422004,27.540399999998 +1199,24933,179990.490128476,372065.8759804,28.8972999999969 +1200,1027,179989.525500003,372062.904000003,28.4900000000052 +1201,24935,179989.287812501,372065.273125,28.4861999999994 +1202,1015,179986.136,372062.943500001,27.752999999997 +1203,24936,179985.817187965,372065.791973419,27.7605999999942 +1204,1019,179984.445799999,372063.650800001,27.5243000000046 +1205,18334,179984.319198914,372064.797717061,27.5239000000001 +1206,24937,179984.255898379,372065.371175583,27.5237000000052 +1207,12348,179984.192597833,372065.94463411,27.5234999999957 +1208,12346,179984.047954518,372067.255001049,27.5231000000058 +1209,12345,179985.498375926,372068.640446838,27.7682000000059 +1210,24934,179989.050125003,372067.642250001,28.4824999999983 +1211,24918,179988.574750002,372072.3805,28.4750000000058 +1212,24920,179985.179563895,372071.488920256,27.7756999999983 +1213,10753,179984.860751852,372074.337393675,27.7832999999955 +1214,24919,179988.099375002,372077.118749995,28.4674999999988 +1215,12359,179984.446375929,372078.039696839,27.7932000000001 +1216,1076,179987.624000005,372081.857000001,28.4600000000064 +1217,1065,179984.032000005,372081.742000002,27.8029999999999 +1218,12373,179983.577251215,372085.852060813,27.7954000000027 +1219,24927,179987.011375006,372086.706500001,28.4649999999965 +1220,10754,179983.122502431,372089.962121621,27.7878000000055 +1221,12372,179981.735224821,372088.206739001,27.5160000000033 +1222,12381,179981.892778855,372086.779402409,27.5163999999932 +1223,12379,179981.998243578,372085.823960971,27.5167999999976 +1224,12375,179982.088056263,372085.0103168,27.5170000000071 +1225,12378,179982.171007253,372084.258835062,27.5173000000068 +1226,18299,179982.256103624,372083.487917531,27.5175000000017 +1227,12377,179982.067349873,372084.08329561,27.1999999999971 +1228,18296,179982.032273114,372084.401498828,27.1999999999971 +1229,18295,179981.997196358,372084.719702046,27.1999999999971 +1230,18294,179981.906519603,372084.629039053,24.2823999999964 +1231,12376,179981.928931706,372085.338973403,27.1999999999971 +1232,18292,179981.756702427,372085.988174792,24.2823000000062 +1233,1050,179977.500400003,372082.500700001,24.179999999993 +1234,85,179977.5002,372087.500500005,24.3099999999977 +1235,1073,179972.500500001,372087.500400003,24.1900000000023 +1236,1048,179972.500100002,372082.500300001,24.1999999999971 +1237,1051,179967.500500001,372087.500300001,24.3699999999953 +1238,1074,179972.500200003,372092.500200003,24.1699999999983 +1239,1053,179967.500300005,372092.500200003,24.3399999999965 +1240,1059,179967.500900004,372097.500799999,24.3099999999977 +1241,1056,179972.500399999,372097.500200003,24.1900000000023 +1242,1060,179972.500300005,372102.500300005,24.1900000000023 +1243,1057,179977.500700004,372097.500600003,24.2400000000052 +1244,1054,179977.500700004,372092.500500001,24.2899999999936 +1245,18274,179980.793758504,372094.723965794,24.2817000000068 +1246,18276,179980.922259707,372093.558207683,24.281799999997 +1247,24931,179980.994317178,372092.90450504,24.281799999997 +1248,18278,179981.066374648,372092.250802405,24.2819000000018 +1249,18280,179981.219343029,372090.863079,24.2820000000065 +1250,18284,179981.362789419,372089.561738741,24.2820999999967 +1251,18288,179981.494873121,372088.363480378,24.2820999999967 +1252,18290,179981.623101886,372087.200193841,24.2822000000015 +1253,12374,179981.652095377,372087.850328982,27.1999999999971 +1254,18291,179981.728476338,372087.157429438,27.1999999999971 +1255,12380,179981.790513538,372086.594651189,27.1999999999971 +1256,18293,179981.861524742,372085.950464144,27.1999999999971 +1257,18289,179981.601673763,372088.307735,27.1999999999971 +1258,18285,179981.551252142,372088.765141021,27.1999999999971 +1259,18287,179981.654748436,372088.935802422,27.5157000000036 +1260,18286,179981.479150064,372089.419224128,27.1999999999971 +1261,12382,179981.574272048,372089.664865851,27.5154999999941 +1262,18282,179981.498251114,372090.353565816,27.5151999999944 +1263,12389,179981.422230177,372091.042265777,27.5149999999994 +1264,24928,179982.818251818,372092.711966217,27.7826999999961 +1265,12387,179981.293621335,372092.207377829,27.514599999995 +1266,24929,179981.220830671,372092.866813652,27.5144 +1267,12385,179981.148040008,372093.52624948,27.5142000000051 +1268,12138,179982.514001217,372095.461810809,27.777700000006 +1269,12383,179981.038778104,372094.516090874,27.5138000000006 +1270,12390,179980.930416822,372095.497773241,27.5135000000009 +1271,18270,179980.829411812,372096.412812613,27.5132000000012 +1272,12391,179980.728406794,372097.327851988,27.5129000000015 +1273,1066,179981.905499998,372100.961500004,27.7675000000017 +1274,1079,179985.173500001,372101.255000003,28.4799999999959 +1275,24926,179986.398750003,372091.556000002,28.4700000000012 +1276,24915,179986.052999999,372106.473999999,28.8019000000058 +1277,24917,179988.710000001,372081.995000001,28.8524999999936 +1278,24906,179985.213494416,372116.02821498,28.8567999999941 +1279,24907,179983.91619442,372111.20774994,28.4903000000049 +1280,24908,179983.319597211,372115.930374973,28.4951000000001 +1281,1108,179982.723000001,372120.653000005,28.5 +1282,12412,179980.09059339,372117.364790719,27.7372000000032 +1283,1101,179979.778999999,372120.181000005,27.7320000000036 +1284,19922,179979.211941745,372124.880178869,27.7284000000072 +1285,1115,179980.607300002,372140.1382,28.5200000000041 +1286,24892,179982.27019706,372144.003044739,28.8341999999975 +1287,24894,179980.078400005,372145.009475004,28.5225000000064 +1288,1107,179977.393500004,372139.949499998,27.7170000000042 +1289,19939,179976.837760411,372144.554881748,27.713499999998 +1290,24895,179976.261677284,372149.328849141,27.7099000000017 +1291,24900,179975.219181765,372147.016870223,27.5158999999985 +1292,1113,179975.123300005,372147.878199998,27.516300000003 +1293,24903,179975.068183005,372148.373358987,27.5164999999979 +1294,24902,179975.013066001,372148.868517973,27.5166999999929 +1295,24904,179974.957949005,372149.363676962,27.5169000000024 +1296,18145,179974.902832001,372149.85883595,27.5170999999973 +1297,24897,179974.792598005,372150.849153925,27.5176000000065 +1298,18144,179974.704317264,372150.557956092,27.1999999999971 +1299,24899,179974.656211916,372150.98973196,27.1999999999971 +1300,24898,179974.737481009,372151.344312914,27.5178000000014 +1301,13235,179974.605989687,372151.440508131,27.1999999999971 +1302,13234,179974.682364009,372151.839471899,27.5179999999964 +1303,24896,179975.973635722,372151.715832837,27.7081000000035 +1304,19954,179974.60491338,372152.535271298,27.5182999999961 +1305,19949,179975.68559416,372154.10281653,27.7063000000053 +1306,24893,179979.549500003,372149.88075,28.5249999999942 +1307,1176,179978.491700001,372159.623300001,28.5299999999988 +1308,24879,179977.901000001,372181.499000002,28.6435999999958 +1309,24824,179967.315000001,372277.681000005,28.4012999999977 +1310,24808,179962.834000003,372319.947999999,28.3564000000042 +1311,55,179962.782200005,372295.184000008,28.3800000000047 +1312,1281,179960.600299999,372314.072000001,28.3899999999994 +1313,24809,179959.772701848,372321.236576919,28.3938000000053 +1314,1379,179958.418500002,372332.960000001,28.3999999999942 +1315,24792,179960.286104869,372342.695849959,28.2869999999966 +1316,24793,179957.35454531,372342.170732528,28.4048999999941 +1317,24794,179956.795622654,372347.00936627,28.4073999999964 +1318,1380,179956.236699998,372351.848000005,28.4100000000035 +1319,24777,179958.036000006,372362.785000004,28.3013000000064 +1320,2741,179841.442000002,373372.787,28.7700000000041 +1321,24376,179848.691000003,373339.339000002,28.5396000000037 +1322,24364,179841.859999999,373401.211000003,28.5546999999933 +1323,122,179843.647500005,373353.069499999,28.7700000000041 +1324,24377,179844.934849586,373341.560402084,28.7700000000041 +1325,24378,179845.393924791,373337.456201043,28.7700000000041 +1326,2745,179845.853000004,373333.352000002,28.7700000000041 +1327,121,179848.058500003,373313.634500001,28.7700000000041 +1328,2628,179844.331000004,373325.048,27.7299999999959 +1329,12435,179843.961302761,373328.570386939,27.729600000006 +1330,10777,179843.591605525,373332.092773877,27.7290999999968 +1331,14423,179843.397589006,373333.941316869,27.7289000000019 +1332,12432,179843.203572493,373335.789859857,27.7286000000022 +1333,15728,179842.270324204,373335.136738181,27.5127999999968 +1334,12433,179842.182337992,373335.943305787,27.5080000000016 +1335,15725,179842.116795737,373336.544130068,27.5044000000053 +1336,15726,179841.945235707,373336.30329198,27.1999999999971 +1337,14424,179841.97798242,373336.002907228,27.1999999999971 +1338,15721,179841.867575392,373336.093321092,24.752999999997 +1339,15723,179841.912488986,373336.603676736,27.1999999999971 +1340,15729,179841.76571295,373337.02770007,24.7654999999941 +1341,15730,179841.878670502,373336.913892783,27.1999999999971 +1342,15722,179841.846995551,373337.204446234,27.1999999999971 +1343,15724,179842.051253494,373337.144954339,27.5007999999943 +1344,14425,179841.920168996,373338.346602898,27.4937000000064 +1345,24379,179842.938786246,373338.312679924,27.7283000000025 +1346,24380,179841.854626749,373338.947427172,27.4900999999954 +1347,15717,179841.789084498,373339.54825145,27.4864999999991 +1348,2722,179842.673999999,373340.835499998,27.7280000000028 +1349,24382,179842.394647434,373343.497104492,27.7277000000031 +1350,12429,179842.115294863,373346.158708986,27.7272999999986 +1351,14429,179841.282744166,373344.189861551,27.4587000000029 +1352,12430,179841.157658894,373345.336515397,27.4519 +1353,15703,179841.068231199,373346.156296957,27.4470000000001 +1354,15701,179840.901627589,373345.87628103,27.1999999999971 +1355,15702,179840.844147626,373346.403543171,27.1999999999971 +1356,15700,179840.727913368,373346.54738272,24.8929999999964 +1357,14434,179840.792078432,373346.881172467,27.1999999999971 +1358,15697,179840.611943126,373347.611171834,24.9072000000015 +1359,2721,179837.500999998,373347.500900004,24.6000000000058 +1360,15693,179840.501862258,373348.62093804,24.9208000000071 +1361,15691,179840.384704988,373349.695615642,24.9352000000072 +1362,14436,179840.550509591,373349.097076874,27.1999999999971 +1363,15695,179840.607335486,373348.575814497,27.1999999999971 +1364,15694,179840.671294015,373347.989124671,27.1999999999971 +1365,15696,179840.862625975,373348.04107536,27.4357000000018 +1366,15699,179840.701490119,373347.712136619,27.1999999999971 +1367,15698,179840.731686223,373347.435148567,27.1999999999971 +1368,14435,179840.978803515,373346.97607851,27.4421000000002 +1369,12428,179840.746448424,373349.106072206,27.4293000000034 +1370,10778,179841.556589738,373351.481917974,27.7266999999993 +1371,12427,179841.354243591,373353.409823734,27.7263999999996 +1372,14439,179840.383035377,373352.437471252,27.4094000000041 +1373,15685,179840.322466537,373352.992704425,27.4060999999929 +1374,12426,179840.261897691,373353.547937598,27.4027999999962 +1375,14441,179840.127198845,373354.782718804,27.395399999994 +1376,10779,179841.151897434,373355.337729495,27.7262000000046 +1377,14443,179840.059849426,373355.400109395,27.3916999999929 +1378,2729,179839.9925,373356.017499998,27.3880000000063 +1379,2723,179841.017000005,373356.623000003,27.7259999999951 +1380,2728,179840.054500002,373356.447500005,27.3880000000063 +1381,2727,179840.030000005,373356.623000003,27.3880000000063 +1382,2726,179839.8796,373356.956200004,27.3880000000063 +1383,15679,179839.806030232,373357.632238083,27.3880000000063 +1384,15675,179839.732460473,373358.308276169,27.3880000000063 +1385,14454,179839.585320942,373359.660352334,27.3880999999965 +1386,14452,179840.253125001,373363.030625004,27.6475999999966 +1387,14455,179839.438181408,373361.012428503,27.3880999999965 +1388,14450,179839.291041877,373362.364504669,27.3882000000012 +1389,15667,179839.214559279,373363.06730897,27.3882000000012 +1390,15665,179839.058754425,373362.600799955,27.1999999999971 +1391,15668,179839.015451074,373362.99894727,27.1999999999971 +1392,15666,179838.972147729,373363.397094592,27.1999999999971 +1393,14458,179839.138076685,373363.770113274,27.3882000000012 +1394,14459,179838.885541033,373364.193389222,27.1999999999971 +1395,14451,179838.985111494,373365.175721887,27.388300000006 +1396,14457,179838.820840698,373364.788268492,27.1999999999971 +1397,15662,179838.716414496,373365.748402365,27.1999999999971 +1398,14449,179838.611988306,373366.708536245,27.1999999999971 +1399,14448,179838.702483755,373367.772809338,27.3883999999962 +1400,10780,179839.489250004,373369.438250005,27.5693000000028 +1401,10781,179839.097944017,373372.720648345,27.5290999999997 +1402,2724,179838.98,373373.710000001,27.5170000000071 +1403,14468,179838.702312503,373376.361250002,27.5492999999988 +1404,12422,179838.424625002,373379.012500007,27.5815000000002 +1405,2773,179839.596000005,373387.655000001,28.7899999999936 +1406,10782,179837.869249996,373384.315000009,27.6459999999934 +1407,14480,179837.684125002,373386.082500007,27.6674999999959 +1408,2746,179837.499000005,373387.850000005,27.6889999999985 +1409,12418,179837.161754038,373390.310838122,27.6646999999939 +1410,124,179839.107000005,373393.547999997,28.8600000000006 +1411,2768,179838.669000007,373396.892000001,28.7700000000041 +1412,2769,179837.752999999,373399.852000006,28.75 +1413,24366,179837.612598691,373403.282540746,28.732799999998 +1414,24365,179837.472197391,373406.713081479,28.7155999999959 +1415,21989,179837.191394772,373413.574162956,28.6812000000064 +1416,21996,179836.938983086,373419.741545569,28.6502000000037 +1417,3002,179837.318000004,373423.919,28.6999999999971 +1418,2996,179836.941900004,373419.842900001,28.6490000000049 +1419,14499,179836.566393439,373422.52673018,27.1999999999971 +1420,2991,179836.670000006,373424.037000004,27.1999999999971 +1421,15574,179836.532393683,373425.541495796,27.1999999999971 +1422,24354,179836.775250003,373429.152500004,28.5800000000017 +1423,15571,179836.310000006,373427.973000009,27.1999999999971 +1424,24355,179836.238262091,373428.757334545,27.1999999999971 +1425,24360,179836.202229328,373429.151292726,27.1999999999971 +1426,24359,179836.16619657,373429.545250915,27.1999999999971 +1427,24356,179836.094131052,373430.333167274,27.1999999999971 +1428,14500,179835.950000003,373431.909000002,27.1999999999971 +1429,125,179836.232500002,373434.386,28.4600000000064 +1430,24353,179838.037000004,373439.772,28.5001000000047 +1431,24363,179835.961125001,373437.002750002,28.3999999999942 +1432,24362,179835.689750001,373439.619500004,28.3399999999965 +1433,3003,179835.147,373444.853,28.2200000000012 +1434,24352,179831.945999999,373494.510000005,28.5204999999987 +1435,3071,179827.894000005,373519.557000004,28.551999999996 +1436,24350,179826.028000005,373549.363000005,28.5135000000009 +1437,3183,179828.009,373518.067000005,28.5529999999999 +1438,3178,179829.682000004,373503.183000002,28.7149999999965 +1439,13201,179823.762250002,373497.891500004,28.5087000000058 +1440,3108,179823.241,373502.504000001,28.5409999999974 +1441,3109,179821.931000002,373508.872000005,28.4199999999983 +1442,3110,179822.184,373502.165000003,28.429999999993 +1443,3150,179814.534000006,373504.809999999,27.1999999999971 +1444,21945,179814.363418862,373502.49314319,27.1999999999971 +1445,3152,179814.142999999,373504.524000004,27.1999999999971 +1446,3151,179814.287999999,373504.822000004,27.1999999999971 +1447,3101,179814.420900002,373504.915600006,21.3600000000006 +1448,3099,179814.484600004,373505.134599999,21.320000000007 +1449,3149,179814.478999998,373505.276999999,27.1999999999971 +1450,9854,179814.406710029,373505.129904244,21.320000000007 +1451,3100,179814.405299999,373505.047700003,21.320000000007 +1452,3098,179814.171100002,373505.115700003,21.320000000007 +1453,3148,179814.206000004,373505.217999998,27.1999999999971 +1454,3097,179813.969500002,373505.291900005,21.2899999999936 +1455,3147,179814.017999999,373505.454,27.1999999999971 +1456,21938,179813.953710154,373506.030156899,27.1999999999971 +1457,21936,179813.837080553,373507.075375531,27.1999999999971 +1458,21937,179813.798106797,373506.544666257,21.2847000000038 +1459,21935,179813.676313587,373507.657832514,21.2792999999947 +1460,21934,179813.658676088,373508.674212206,27.1999999999971 +1461,21932,179813.479945134,373510.275974758,27.1999999999971 +1462,21933,179813.504655827,373509.226751063,21.2718000000023 +1463,21930,179813.328435484,373510.837370776,21.2641000000003 +1464,21929,179813.295368563,373511.930124946,27.1999999999971 +1465,21931,179813.234128155,373511.699321408,21.2599999999948 +1466,21927,179813.139820829,373512.561272033,21.2559000000037 +1467,21926,179813.10114399,373513.670739267,27.1999999999971 +1468,3176,179820.610000003,373518.659000002,28.4180000000051 +1469,3107,179826.359000001,373518.009000003,28.497000000003 +1470,3072,179826.179000005,373519.442000002,28.5010000000038 +1471,3177,179819.698000003,373528.039999999,28.3160000000062 +1472,21922,179812.217369724,373521.591004431,27.1999999999971 +1473,127,179811.894000001,373524.489,27.1999999999971 +1474,21912,179811.833811603,373525.078686889,27.1999999999971 +1475,3094,179811.794599999,373524.478200004,21.3300000000017 +1476,21913,179811.700050008,373525.404475003,21.3300000000017 +1477,9853,179811.605499998,373526.33075,21.3300000000017 +1478,21905,179811.653246403,373526.847747546,27.1999999999971 +1479,21906,179811.470725153,373527.651094478,21.3300000000017 +1480,21907,179811.53228268,373528.032871582,27.1999999999971 +1481,21908,179811.324341752,373529.085164174,21.3300000000017 +1482,21909,179811.401253596,373529.316609457,27.1999999999971 +1483,21911,179811.274642985,373530.557058085,27.1999999999971 +1484,3144,179811.548000004,373532.109000005,27.1999999999971 +1485,3146,179811.139000002,373531.886,27.1999999999971 +1486,3145,179811.167000003,373532.070999999,27.1999999999971 +1487,3091,179811.2936,373532.245499998,21.3000000000029 +1488,3092,179811.075900003,373532.137400001,21.3000000000029 +1489,3088,179811.271499999,373532.4333,21.3000000000029 +1490,3089,179811.394699998,373532.439300004,21.3000000000029 +1491,3143,179811.471999999,373532.576000001,27.1999999999971 +1492,3090,179811.423100002,373532.253800005,21.3000000000029 +1493,3070,179820.421999998,373531.378000002,28.3559999999998 +1494,3138,179811.126000002,373536.530000001,27.1999999999971 +1495,3141,179811.022000004,373532.719999999,27.1999999999971 +1496,3142,179811.100000001,373532.585999999,27.1999999999971 +1497,3086,179810.925000004,373532.687800005,21.2899999999936 +1498,3140,179810.616000004,373536.279000003,27.1999999999971 +1499,3085,179810.5121,373536.307800002,21.4700000000012 +1500,3084,179810.631800003,373536.464000002,21.4700000000012 +1501,3139,179810.816000003,373536.513000004,27.1999999999971 +1502,3083,179810.770799998,373536.610700004,21.4700000000012 +1503,3082,179811.011800002,373536.623900004,21.4400000000023 +1504,3137,179811.085000001,373536.822000004,27.1999999999971 +1505,3133,179811.5,373537.802000005,27.1999999999971 +1506,21903,179810.789750002,373537.725500003,27.1999999999971 +1507,21904,179810.539355274,373537.207353298,27.1999999999971 +1508,3134,179810.552999999,373537.700000003,27.1999999999971 +1509,3075,179810.671900004,373537.821199998,21.3300000000017 +1510,3074,179811.390700001,373537.891800001,21.4400000000023 +1511,21902,179811.301375002,373538.802450001,21.3775000000023 +1512,3076,179810.4725,373537.787999999,21.3300000000017 +1513,21899,179811.212050002,373539.713100001,21.3150000000023 +1514,3065,179807.500800002,373537.500700001,21.3099999999977 +1515,21900,179811.122725002,373540.623750001,21.2525000000023 +1516,3066,179807.500599999,373542.500599999,21.3000000000029 +1517,3073,179811.033400003,373541.534400001,21.1900000000023 +1518,3225,179809.765999999,373544.022200003,21.4600000000064 +1519,3224,179809.7324,373544.3123,21.4600000000064 +1520,3223,179809.4584,373545.4366,21.4499999999971 +1521,3186,179807.500800002,373547.500399999,21.6399999999994 +1522,3067,179802.500700004,373542.500700001,21.3399999999965 +1523,3185,179802.500500001,373547.500399999,21.7100000000064 +1524,3230,179800.236100003,373544.559999999,21.4700000000012 +1525,3229,179800.340400003,373543.248700004,21.4799999999959 +1526,3273,179800.138,373544.532000005,25 +1527,3274,179800.060000002,373544.683000006,25 +1528,3231,179800.1237,373544.7775,21.4700000000012 +1529,3232,179799.909499999,373544.797400001,21.4700000000012 +1530,3236,179800.015700001,373544.9637,21.4700000000012 +1531,3237,179800.145400003,373545.108000003,21.5200000000041 +1532,3280,179800.046,373545.147000004,25 +1533,3279,179799.957000002,373545.048,25 +1534,3235,179799.8704,373544.906100005,21.6199999999953 +1535,3278,179799.846000001,373545.004000004,25 +1536,3234,179799.6756,373544.884500001,21.6199999999953 +1537,3277,179799.566000003,373544.973000009,25 +1538,3276,179799.596999999,373544.671,25 +1539,3293,179792.267999999,373544.532000005,28.6199999999953 +1540,20976,179798.961116731,373548.641664226,25 +1541,3285,179799.802999999,373545.995000001,25 +1542,3284,179799.833000008,373545.704000004,25 +1543,3240,179799.924899999,373545.787400004,21.6199999999953 +1544,3283,179799.897,373545.691000003,25 +1545,3281,179800.052000005,373545.529000003,25 +1546,3238,179800.152399998,373545.554299999,21.5200000000041 +1547,3282,179799.989999998,373545.640000004,25 +1548,3239,179800.063299999,373545.7139,21.5200000000041 +1549,3241,179799.9014,373546.015500002,21.7700000000041 +1550,20974,179799.041709155,373548.718153533,21.790599999993 +1551,23474,179798.689865749,373549.494407449,25 +1552,23472,179791.8235,373548.498000011,28.5874999999942 +1553,20973,179798.418614779,373550.34715068,25 +1554,20975,179798.723145541,373549.719638061,21.7982000000047 +1555,20971,179798.404581919,373550.721122593,21.8059000000067 +1556,3188,179802.500100009,373552.5009,21.9700000000012 +1557,20972,179798.00428297,373551.979562607,21.815499999997 +1558,9484,179797.603984028,373553.238002628,21.8251000000018 +1559,20980,179797.142372668,373554.689193577,21.8361000000004 +1560,3189,179802.500500001,373557.500300001,21.8399999999965 +1561,3187,179807.500700001,373552.500600003,21.9100000000035 +1562,3190,179807.500500005,373557.500800002,21.8600000000006 +1563,3192,179807.500300001,373562.500500005,21.7899999999936 +1564,12891,179810.760284457,373560.6308816,21.6852999999974 +1565,12894,179810.602317777,373558.910588525,21.6557999999932 +1566,12896,179810.455023333,373557.306518611,21.6282000000065 +1567,8861,179810.307728894,373555.702448696,21.6006999999954 +1568,12897,179810.541863419,373557.158274461,25.0200000000041 +1569,12895,179810.688413009,373558.754207585,25.0200000000041 +1570,3297,179815.040000003,373558.780999999,28.1999999999971 +1571,12898,179810.385717291,373555.457834497,25.0200000000041 +1572,12900,179810.188649185,373553.311751988,25.0200000000041 +1573,12899,179810.114503525,373553.598180562,21.5645999999979 +1574,12901,179810.001813423,373552.370959759,21.5434999999998 +1575,12903,179809.855849802,373550.78138274,21.5161999999982 +1576,8862,179809.703282226,373549.119887173,21.4876999999979 +1577,12905,179809.602541115,373548.022793591,21.4688000000024 +1578,3216,179809.369500004,373546.777100001,21.4499999999971 +1579,3214,179809.501800001,373546.925700001,21.4499999999971 +1580,3215,179809.534800004,373546.799100004,21.4499999999971 +1581,3254,179809.473000001,373546.690000001,25.0200000000041 +1582,3217,179809.403000001,373546.217500001,21.4499999999971 +1583,3255,179809.501000002,373546.246000003,25.0200000000041 +1584,3253,179809.66,373546.715,25.0200000000041 +1585,3257,179809.831999999,373546.057000004,25.0200000000041 +1586,3258,179810.022,373546.095000003,25.0200000000041 +1587,3252,179809.603,373546.934,25.0200000000041 +1588,12904,179809.736625046,373548.389184065,25.0200000000041 +1589,24351,179824.440900002,373550.422950003,28.4149999999936 +1590,3287,179810.925000004,373543.734999999,27.1999999999971 +1591,3259,179810.054999996,373545.795000002,25.0200000000041 +1592,3266,179810.493000004,373544.190000005,25.0200000000041 +1593,3289,179810.844500009,373543.586800005,21.2599999999948 +1594,21898,179811.175467175,373541.150614355,27.1999999999971 +1595,3153,179825.381999999,373541.706,28.4900000000052 +1596,21901,179811.387894511,373538.958733682,27.1999999999971 +1597,3069,179822.493000004,373533.668000005,28.3990000000049 +1598,3068,179826.186000004,373535.184000004,28.5109999999986 +1599,3181,179825.901000008,373537.309999999,28.5329999999958 +1600,3288,179823.499800004,373559.139900003,28.3399999999965 +1601,3298,179822.534000006,373568.085000001,28.2700000000041 +1602,23433,179820.710208595,373565.146028493,28.1589999999997 +1603,3242,179820.897999998,373567.953000002,28.1260000000038 +1604,22791,179820.681699265,373569.556953151,28.1242999999959 +1605,22788,179820.124127068,373573.691565458,28.1095999999961 +1606,12835,179819.646733049,373571.398298241,25.0200000000041 +1607,22789,179819.523967024,373572.330487717,25.0200000000041 +1608,12823,179819.401200995,373573.262677196,25.0200000000041 +1609,22790,179819.261099581,373574.326498128,25.0200000000041 +1610,12826,179819.120998159,373575.390319068,25.0200000000041 +1611,12829,179818.860384621,373577.369215116,25.0200000000041 +1612,12827,179818.866409853,373576.557382405,21.741200000004 +1613,12830,179818.578169081,373578.746055491,21.8136999999988 +1614,3201,179807.5002,373577.500500005,21.8300000000017 +1615,12833,179818.40715342,373580.04461354,21.8567000000039 +1616,12832,179818.236137755,373581.343171597,21.8996999999945 +1617,3205,179807.500999998,373582.500800002,21.929999999993 +1618,24347,179818.016768876,373583.008885797,21.9548000000068 +1619,3328,179812.500400003,373587.500500001,21.8899999999994 +1620,3367,179817.797400005,373584.674600009,22.0099999999948 +1621,24346,179818.095436353,373583.177635878,25.0200000000041 +1622,24348,179818.195154525,373582.420453824,25.0200000000041 +1623,24345,179818.998281766,373582.040141363,28.079899999997 +1624,12834,179818.294872697,373581.663271759,25.0200000000041 +1625,24349,179818.386692464,373580.966064084,25.0200000000041 +1626,24336,179818.486498315,373580.208216242,25.0200000000041 +1627,24335,179819.373563536,373579.25728273,28.0898000000016 +1628,12831,179818.601413384,373579.335640769,25.0200000000041 +1629,24337,179818.693744089,373578.63455338,25.0200000000041 +1630,24344,179821.486857552,373586.090669412,28.5941000000021 +1631,3365,179818.623,373584.823000003,28.070000000007 +1632,24342,179818.208136428,373586.641117252,28.0449999999983 +1633,12821,179817.524364244,373586.369401824,25.0200000000041 +1634,24343,179817.400919959,373586.926575519,25.0200000000041 +1635,12822,179817.348107252,373586.702520736,21.9357000000018 +1636,24329,179817.266645934,373587.532629911,25.0200000000041 +1637,24331,179817.042857088,373588.080293078,21.8852999999945 +1638,24332,179816.880807098,373588.811719373,21.8585000000021 +1639,12820,179816.718757108,373589.543145683,21.8316999999952 +1640,8851,179816.248206068,373591.667017449,21.7538999999961 +1641,12819,179816.754135199,373589.845879976,25.0200000000041 +1642,24339,179816.863205444,373589.35358442,25.0200000000041 +1643,24338,179817.419136435,373590.098867249,27.9974999999977 +1644,24328,179817.793272864,373588.459234498,28.0200000000041 +1645,24340,179820.946991108,373589.918695301,28.4560000000056 +1646,24334,179820.817000005,373590.75,28.449099999998 +1647,24341,179821.265000001,373587.885000002,28.554999999993 +1648,24333,179817.119460817,373588.196959391,25.0200000000041 +1649,24330,179816.972275693,373588.861288868,25.0200000000041 +1650,24311,179817.045000002,373591.738499999,27.9750000000058 +1651,24312,179816.34052138,373591.712752454,25.0200000000041 +1652,12818,179815.771731224,373594.280023243,25.0200000000041 +1653,24320,179816.256000001,373595.196250003,27.9275000000052 +1654,24321,179815.613989491,373594.992000688,25.0200000000041 +1655,12817,179815.64294599,373594.398909863,21.6538 +1656,24322,179815.340315957,373595.76485607,21.6037999999971 +1657,3330,179807.500500005,373592.500100002,22.2400000000052 +1658,3336,179807.500300001,373597.500599999,22.1999999999971 +1659,3331,179802.5009,373592.500399999,21.9900000000052 +1660,3369,179807.500400003,373587.500799999,22.25 +1661,3329,179802.500600003,373587.500600003,22.0399999999936 +1662,3204,179802.5009,373582.500700001,22.070000000007 +1663,3326,179797.500399999,373587.500399999,22.0099999999948 +1664,3202,179797.500300005,373582.5002,22.1100000000006 +1665,3203,179792.500800002,373582.500700001,22.2299999999959 +1666,3200,179797.500500001,373577.500500005,22.1999999999971 +1667,3199,179802.500300005,373577.5002,22.1300000000047 +1668,3198,179797.500799999,373572.500700004,22.1600000000035 +1669,21014,179790.909435522,373574.935472026,21.6763999999966 +1670,3301,179791.243000001,373572.323000003,21.6100000000006 +1671,9486,179791.470739029,373571.624340661,21.5412999999971 +1672,21005,179791.230898745,373572.037480123,25 +1673,3308,179791.145,373572.301000003,25 +1674,21015,179790.82002734,373574.846167557,25 +1675,21013,179790.57035093,373576.801619109,25 +1676,21012,179790.623893913,373577.171829682,21.7332000000024 +1677,21011,179790.363534201,373578.421396066,25 +1678,21009,179790.391545657,373578.991577771,21.7795000000042 +1679,21008,179790.151669122,373580.080711372,25 +1680,21006,179790.016499504,373581.139352214,25 +1681,21007,179790.154668674,373580.846794777,21.8266000000003 +1682,9487,179790.003838573,373582.028093878,21.8565999999992 +1683,21010,179790.273107171,373579.919186275,21.8029999999999 +1684,21017,179789.844619289,373583.275096942,21.888300000006 +1685,3302,179789.685400005,373584.522100002,21.9199999999983 +1686,3327,179792.500900004,373587.500500001,22.2400000000052 +1687,21023,179789.506710816,373586.37458691,21.9674999999988 +1688,21024,179789.424004138,373586.190444406,25 +1689,21022,179789.312092625,373587.350654073,25 +1690,21021,179789.381937753,373587.668120459,22.0005999999994 +1691,21019,179789.264043845,373588.890337233,22.0319000000018 +1692,9488,179789.12711842,373590.309855428,22.068299999999 +1693,3333,179792.500300009,373592.5009,22.3600000000006 +1694,3332,179797.500700004,373592.500600003,22 +1695,3334,179797.500600003,373597.500300001,21.9700000000012 +1696,3337,179802.500700004,373597.500700004,22 +1697,3340,179797.500799999,373602.500800002,21.9499999999971 +1698,3341,179802.5009,373602.500800002,22.1499999999942 +1699,3342,179802.501000002,373607.500300009,22.2400000000052 +1700,3343,179807.500800002,373607.500300009,22.5899999999965 +1701,12807,179812.217005119,373609.149461299,22.0348999999987 +1702,130,179812.510900002,373608.002200004,21.9400000000023 +1703,24304,179813.021951813,373605.826557666,21.8270000000048 +1704,3339,179807.500700001,373602.500100005,22.3999999999942 +1705,24303,179813.533003628,373603.650915328,21.7140000000072 +1706,24307,179814.006339334,373601.635837451,21.6094000000012 +1707,24309,179814.29891967,373600.390268728,21.5446999999986 +1708,24317,179814.170267634,373601.375289291,25.0200000000041 +1709,24308,179814.353659149,373600.594575495,25.0200000000041 +1710,3363,179814.689000003,373599.167000003,25.0200000000041 +1711,3372,179814.591500003,373599.144700002,21.4799999999959 +1712,12814,179814.814592957,373598.13775114,21.5169000000024 +1713,12813,179815.037685912,373597.130802277,21.5537999999942 +1714,24326,179815.06487146,373597.470480073,25.0200000000041 +1715,12816,179815.170986686,373596.991522204,25.0200000000041 +1716,24323,179815.419480242,373595.869930644,25.0200000000041 +1717,24325,179815.861499999,373596.925124999,27.9036999999953 +1718,24324,179819.625897467,373597.657474946,28.2341000000015 +1719,3370,179815.467,373598.654000003,27.8800000000047 +1720,12812,179814.958756238,373597.949437942,25.0200000000041 +1721,12815,179814.896336075,373598.231175363,25.0200000000041 +1722,24319,179818.745000001,373602.766000003,28.2063999999955 +1723,3309,179789.586000003,373584.511,25 +1724,21016,179789.687751241,373583.714090057,25 +1725,3305,179791.414000005,373570.878000002,28.070000000007 +1726,3307,179791.675999999,373570.672000002,25 +1727,21001,179792.064380147,373570.140943557,25 +1728,20999,179792.413154911,373569.067717172,25 +1729,3310,179789.890000001,373567.039000001,28.4499999999971 +1730,20989,179792.736419704,373568.072988387,25 +1731,20998,179792.810417861,373567.845286209,25 +1732,20991,179793.122331291,373566.885487065,25 +1733,20993,179793.490022171,373565.754053295,25 +1734,20997,179793.619915456,373565.354354367,25 +1735,20995,179793.818789765,373565.065935135,21.7335000000021 +1736,20992,179793.469410334,373566.141022295,21.682799999995 +1737,3195,179797.500799999,373567.500500001,21.8699999999953 +1738,20994,179794.168169204,373563.990847968,21.7842999999993 +1739,3191,179797.500399999,373562.500300001,21.7899999999936 +1740,3193,179802.500100009,373562.500599999,21.7799999999988 +1741,20982,179796.039086808,373558.157649051,21.8625999999931 +1742,20985,179795.529048212,373559.76108313,21.8748000000051 +1743,20987,179795.21262411,373560.755841564,21.8824000000022 +1744,3294,179794.896200001,373561.750599999,21.8899999999994 +1745,20988,179794.963194087,373561.210103568,25 +1746,3286,179794.800999999,373561.720000003,25 +1747,20996,179794.091903411,373563.901984606,25 +1748,23471,179790.340000004,373562.05675,28.4799999999959 +1749,3311,179790.490000002,373560.396000002,28.4900000000052 +1750,129,179789.744999997,373560.987,28.5850000000064 +1751,3303,179790.641000003,373544.280000001,28.6809999999969 +1752,132,179777.686000001,373645.576000005,28.3600000000006 +1753,128,179791.307999998,373534.435000002,28.7069999999949 +1754,23475,179793.042562131,373534.719716746,28.6374000000069 +1755,23476,179793.443690546,373529.638154455,28.6465000000026 +1756,3174,179793.600000001,373527.658,28.6499999999942 +1757,3105,179792.617000002,373522.497499999,28.7234999999928 +1758,23477,179794.043847032,373522.035271224,28.6633000000002 +1759,3184,179793.926000006,373510.560000002,28.7400000000052 +1760,3053,179797.123000007,373482.283,28.721000000005 +1761,3057,179795.829000004,373493.954999998,28.7639999999956 +1762,23478,179795.478875369,373505.730871618,28.7051999999967 +1763,23480,179796.418718845,373497.046717905,28.7312999999995 +1764,3056,179796.731999997,373494.152000003,28.7400000000052 +1765,3048,179798.196000002,373482.561000004,28.7200000000012 +1766,3023,179798.956000004,373494.432,28.025999999998 +1767,3022,179800.276000001,373482.743999999,28.0359999999928 +1768,23155,179806.196400248,373489.490435056,27.1999999999971 +1769,23161,179806.019327495,373491.115722246,27.1999999999971 +1770,23156,179805.842254736,373492.741009444,27.1999999999971 +1771,23153,179805.658800486,373494.424870107,27.1999999999971 +1772,23154,179805.862903371,373493.474731464,21.3882000000012 +1773,23162,179805.926350769,373492.892346498,21.3916000000027 +1774,3009,179812.500100005,373492.500800002,21.3000000000029 +1775,3010,179807.500900004,373497.500599999,21.320000000007 +1776,23152,179805.720184103,373494.784754701,21.3806000000041 +1777,23163,179805.522763912,373496.59687883,21.3701000000001 +1778,21894,179805.417254902,373496.641930252,27.1999999999971 +1779,23167,179805.34031583,373498.271573696,21.3603000000003 +1780,23166,179805.231441177,373498.34744769,27.1999999999971 +1781,23164,179805.258465447,373499.022880156,21.3559999999998 +1782,23168,179805.111601278,373500.370949406,21.3481000000029 +1783,3058,179807.500599999,373502.500200003,21.320000000007 +1784,23170,179804.954519384,373501.812807538,21.3398000000016 +1785,3154,179804.771199998,373503.495500002,21.3300000000017 +1786,3158,179804.654300001,373504.233600002,21.2899999999936 +1787,3159,179804.653000001,373504.453699999,21.2899999999936 +1788,3059,179807.500700001,373507.500600003,21.3000000000029 +1789,3096,179813.919900004,373505.431500003,21.2899999999936 +1790,3104,179814.042500004,373504.523400001,21.3600000000006 +1791,21944,179814.278762192,373502.346516017,21.363400000002 +1792,21942,179814.515024379,373500.169632029,21.3668999999936 +1793,3055,179812.500500005,373497.500500005,21.2899999999936 +1794,21940,179814.648269586,373498.941930864,21.3687999999966 +1795,9855,179814.757771909,373497.932993077,21.3703999999998 +1796,21948,179814.861328468,373496.978838626,21.3718999999983 +1797,21947,179814.96488503,373496.024684165,21.3733999999968 +1798,21951,179815.042897485,373495.305889264,21.3745999999956 +1799,21950,179815.120909933,373494.587094367,21.3757000000041 +1800,21953,179815.28789198,373493.048547141,21.3782000000065 +1801,21955,179815.517131556,373490.936368395,21.3815000000031 +1802,21956,179815.631751347,373489.880279019,21.3831999999966 +1803,21957,179815.632183224,373490.803223763,27.1999999999971 +1804,21954,179815.820295319,373489.070029434,27.1999999999971 +1805,9856,179815.746371139,373488.824189644,21.3847999999998 +1806,3050,179812.500300001,373487.500200003,21.3099999999977 +1807,21959,179815.957517166,373486.878722135,21.3879000000015 +1808,3011,179816.100499999,373485.561299998,21.3899999999994 +1809,3008,179812.500599999,373482.500600003,21.3399999999965 +1810,3047,179806.835200004,373484.550000004,21.4400000000023 +1811,3042,179806.975900006,373483.651600003,21.429999999993 +1812,23151,179807.187381286,373481.69338258,21.4358999999968 +1813,23137,179807.395122129,373479.769799817,21.4416999999958 +1814,44,179812.500400003,373477.500200003,21.429999999993 +1815,21966,179816.751773726,373480.015716188,21.368100000007 +1816,21962,179816.841440395,373479.21595937,21.3660999999993 +1817,21963,179816.945576813,373478.287143566,21.3637000000017 +1818,9857,179817.049713235,373477.358327761,21.3613000000041 +1819,21972,179817.165955264,373476.321539406,21.3586000000068 +1820,21961,179817.060073715,373478.03803917,27.1999999999971 +1821,21970,179817.326536573,373475.615073338,27.1999999999971 +1822,3054,179825.166999996,373485.752,28.0679999999993 +1823,3025,179827.245499998,373467.295000002,28.1309999999939 +1824,3024,179823.936000001,373496.354000002,28.4980000000069 +1825,3026,179823.351,373496.659000006,28.429999999993 +1826,21952,179815.361954484,373493.293010194,27.1999999999971 +1827,21949,179815.159311321,373495.160088267,27.1999999999971 +1828,3052,179822.980999999,373497.594000004,28.3800000000047 +1829,21939,179814.792394143,373498.540725727,27.1999999999971 +1830,21941,179814.694027081,373499.447042979,27.1999999999971 +1831,21943,179814.574450612,373500.548775747,27.1999999999971 +1832,21946,179814.981861468,373496.795044798,27.1999999999971 +1833,21973,179817.630182493,373472.853999324,27.1999999999971 +1834,3040,179817.787500001,373471.423500001,27.1999999999971 +1835,9858,179817.717873603,373471.342907574,21.357799999998 +1836,21982,179817.908479679,373469.582692001,21.3660999999993 +1837,21983,179818.014870618,373469.356002808,27.1999999999971 +1838,21980,179818.099085756,373467.822476428,21.3744000000006 +1839,3006,179812.500900004,373467.5009,21.3600000000006 +1840,3007,179812.500900004,373472.500400003,21.3600000000006 +1841,3041,179808.408100005,373470.390099999,21.4700000000012 +1842,23147,179808.188391142,373472.424500946,21.4639000000025 +1843,23145,179807.999215569,373474.176178016,21.4585999999981 +1844,23146,179808.086062945,373472.440272454,27.1999999999971 +1845,23144,179807.863125887,373474.504544903,27.1999999999971 +1846,23148,179807.811847229,373475.911120906,21.4532999999938 +1847,23143,179807.769312836,373476.30496943,21.4521999999997 +1848,23150,179807.634143908,373477.556570288,21.4483999999939 +1849,23140,179807.511669684,373478.690624136,21.445000000007 +1850,23142,179807.458514664,373478.251018442,27.1999999999971 +1851,23138,179807.314102575,373479.588193577,27.1999999999971 +1852,23139,179807.096551292,373481.602596786,27.1999999999971 +1853,3030,179806.399,373483.779000003,27.1999999999971 +1854,3028,179806.879000004,373483.617000002,27.1999999999971 +1855,3029,179806.743000004,373483.824999999,27.1999999999971 +1856,3044,179806.485000003,373483.891399998,21.4400000000023 +1857,3043,179806.792199999,373483.932500005,21.4400000000023 +1858,3046,179806.684,373484.185900003,21.4400000000023 +1859,3032,179806.623,373484.281000003,27.1999999999971 +1860,3033,179806.734000001,373484.556000005,27.1999999999971 +1861,23159,179806.56867386,373486.996449161,21.4257999999973 +1862,23158,179806.465200122,373487.023217525,27.1999999999971 +1863,23157,179806.339995701,373489.095490839,21.4135999999999 +1864,23160,179806.136509545,373490.963294577,21.4027999999962 +1865,3031,179806.336000003,373484.256000005,27.1999999999971 +1866,3045,179806.448800005,373484.165399998,21.4400000000023 +1867,23141,179807.602926757,373476.9138433,27.1999999999971 +1868,3021,179801.482000001,373469.471999999,28.0580000000045 +1869,3049,179799.570999999,373469.358000003,28.6199999999953 +1870,12079,179801.866505601,373466.474374134,28.0801999999967 +1871,23481,179800.183802202,373465.360207349,28.5868000000046 +1872,3020,179798.701000005,373469.129000004,28.6619999999966 +1873,2985,179800.309000004,373454.916500002,28.635500000004 +1874,2867,179801.917000003,373440.704000004,28.6089999999967 +1875,23483,179802.916776612,373445.090233956,28.5164999999979 +1876,23485,179803.387304176,373440.811505228,28.5295999999944 +1877,2978,179803.759000003,373437.431499999,28.5399999999936 +1878,2987,179803.420000002,373430.377500001,28.6824999999953 +1879,2803,179806.807499997,373405.179500002,28.6300000000047 +1880,2808,179808.184,373394.015999999,28.7200000000012 +1881,2810,179810.272700004,373376.103700005,28.6900000000023 +1882,20916,179812.503538165,373383.733124476,27.1999999999971 +1883,20922,179812.091907598,373387.422574349,27.1999999999971 +1884,20927,179811.855201904,373389.544170406,27.1999999999971 +1885,20925,179811.618496202,373391.665766452,27.1999999999971 +1886,2799,179811.450000003,373393.175999999,27.1999999999971 +1887,20924,179811.67641947,373392.048516691,25.2614000000031 +1888,20926,179811.753203977,373391.36029242,25.2562999999936 +1889,2784,179817.500399999,373392.500200003,24.4100000000035 +1890,20928,179811.954386484,373389.557081249,25.2427000000025 +1891,2782,179817.500399999,373387.500700001,24.5200000000041 +1892,20923,179812.20281706,373387.33038269,25.2259999999951 +1893,20921,179812.493096095,373384.7285938,25.2063999999955 +1894,2781,179817.5009,373382.500900008,24.6100000000006 +1895,20920,179812.656990834,373383.259595178,25.1953000000067 +1896,20919,179812.670720536,373382.234666865,27.1999999999971 +1897,20918,179812.815152336,373381.841983858,25.184699999998 +1898,20917,179812.8379029,373380.736209262,27.1999999999971 +1899,20915,179812.979493912,373380.368980221,25.1735999999946 +1900,8870,179813.065397903,373378.697168786,27.1999999999971 +1901,20913,179813.23869459,373377.143908415,27.1999999999971 +1902,2800,179813.477700002,373375.001700006,27.1999999999971 +1903,20910,179813.827454478,373371.866674487,27.1999999999971 +1904,2804,179813.577100005,373375.012600005,25.1333000000013 +1905,20911,179813.932131317,373371.830293015,25.1094000000012 +1906,20909,179814.158696041,373369.799490478,25.0941000000021 +1907,20904,179814.134894427,373369.110935375,27.1999999999971 +1908,20905,179814.294807617,373368.579460576,25.0849000000017 +1909,20908,179814.340071108,373368.173743326,25.0819000000047 +1910,2704,179817.500200003,373367.500400003,24.6300000000047 +1911,20907,179814.57625797,373366.056693215,25.0660000000062 +1912,20906,179814.463491637,373366.165553056,27.1999999999971 +1913,20903,179814.854214855,373363.565239348,25.0473000000056 +1914,8871,179814.792088855,373363.220170744,27.1999999999971 +1915,2716,179812.361299995,373358.191300001,28.6499999999942 +1916,20895,179814.996107303,373361.391450603,27.1999999999971 +1917,20894,179814.962163962,373362.597642437,25.0399999999936 +1918,20902,179815.02906692,373361.997960851,25.0354999999981 +1919,2717,179817.5009,373362.500300001,24.7599999999948 +1920,2706,179822.500700004,373367.500500005,24.2100000000064 +1921,2700,179822.500500001,373362.500300001,24.2700000000041 +1922,2701,179827.500300001,373362.500400003,24.1199999999953 +1923,2699,179822.500799999,373357.500500001,24.3399999999965 +1924,2714,179827.500599999,373357.500500001,24.0800000000017 +1925,2697,179822.500500001,373352.500700004,24.4100000000035 +1926,20890,179815.908943631,373354.111345604,24.9762000000046 +1927,20892,179815.700060967,373355.983573783,24.9903000000049 +1928,2713,179815.604700003,373356.838300001,24.9967000000033 +1929,20900,179815.406221293,373358.617354825,25.0100999999995 +1930,20899,179815.336055133,373358.344327006,27.1999999999971 +1931,20901,179815.251432698,373359.102840509,27.1999999999971 +1932,20898,179815.276908815,373359.776441302,25.0188000000053 +1933,20896,179815.137304742,373361.027776055,25.0282000000007 +1934,20897,179815.166810263,373359.861354005,27.1999999999971 +1935,123,179815.505299997,373356.827300001,27.1999999999971 +1936,20893,179815.633212861,373355.680815462,27.1999999999971 +1937,20891,179815.761125721,373354.534330919,27.1999999999971 +1938,20888,179816.016951445,373352.241361842,27.1999999999971 +1939,20883,179816.528602887,373347.655423682,27.1999999999971 +1940,2718,179814.449999999,373340.279000003,28.6199999999953 +1941,2681,179816.297500007,373323.791500006,28.5899999999965 +1942,46,179818.145000003,373307.304000005,28.570000000007 +1943,20862,179820.014090564,373315.732099425,27.1999999999971 +1944,8874,179820.218343105,373313.845166255,27.1999999999971 +1945,20856,179820.49449401,373311.294018988,27.1999999999971 +1946,20858,179820.703247003,373309.365509495,27.1999999999971 +1947,2675,179820.912,373307.437000003,27.1999999999971 +1948,2676,179822.199500006,373295.827,27.1269999999931 +1949,2680,179819.926000006,373293.180000003,28.570000000007 +1950,20853,179822.33947891,373294.564743575,27.1190999999963 +1951,20851,179822.535973527,373292.792858131,27.1079000000027 +1952,8875,179822.717968293,373291.151724767,27.0975999999937 +1953,20846,179822.899945609,373289.510748733,27.0872999999992 +1954,20848,179823.193472803,373286.863874361,27.0706000000064 +1955,2577,179821.706999999,373279.056000009,28.570000000007 +1956,2576,179823.642499998,373260.704000007,28.5599999999977 +1957,10874,179823.46149914,373270.717368994,27.998900000006 +1958,20778,179823.798473306,373267.405623481,27.9945000000007 +1959,20784,179823.966960382,373265.74975073,27.9921999999933 +1960,10878,179824.135447465,373264.093877979,27.9900000000052 +1961,10882,179824.25822879,373262.887196451,27.988400000002 +1962,2565,179824.360000003,373261.886999998,27.9869999999937 +1963,2559,179824.322000004,373262.750000004,27.0439999999944 +1964,8883,179825.312449567,373262.734267227,27.0482999999949 +1965,20745,179825.903462809,373261.780864801,27.0531999999948 +1966,20744,179825.956888374,373261.253076427,27.0521000000008 +1967,20743,179825.989612907,373261.922406573,24.8041999999987 +1968,20746,179826.082406968,373261.00567003,24.7954999999929 +1969,2548,179832.500400003,373262.500900004,24.429999999993 +1970,20748,179826.1822851,373260.018948171,24.7862000000023 +1971,20747,179826.074168526,373260.094471987,27.0497999999934 +1972,2563,179826.362000003,373257.251000002,27.0439999999944 +1973,20740,179826.77645224,373253.482129693,27.0534000000043 +1974,20741,179826.983678352,373251.597694539,27.0580000000045 +1975,2544,179825.578000009,373242.352000002,28.5399999999936 +1976,47,179826.970000003,373226.923999999,28.5800000000017 +1977,20725,179828.85724318,373234.559808187,27.1003000000055 +1978,20728,179829.041564275,373232.883565575,27.1045000000013 +1979,20726,179829.225885365,373231.20732297,27.1086000000068 +1980,8891,179829.413962081,373229.496926188,27.1128999999928 +1981,20720,179829.567871418,373228.097252499,27.1162999999942 +1982,20722,179829.693185709,373226.95762625,27.119200000001 +1983,2537,179829.818500005,373225.818,27.122000000003 +1984,20718,179829.900745817,373225.070088007,27.123900000006 +1985,2540,179829.9179,373225.828800004,24.8249999999971 +1986,20717,179830.014173392,373224.953337681,24.8267999999953 +1987,2545,179832.500999998,373227.500700004,24.7400000000052 +1988,20723,179829.780717973,373227.076345205,24.8224000000046 +1989,20721,179829.682279512,373227.971553106,24.8206000000064 +1990,20719,179829.549380891,373229.180144578,24.8181000000041 +1991,2543,179832.500500005,373232.500599999,24.6000000000058 +1992,2502,179837.500800002,373232.500700001,24.3500000000058 +1993,2498,179837.500200003,373227.500300005,24.4199999999983 +1994,2499,179842.500300005,373227.500700004,24.1699999999983 +1995,2503,179842.500200003,373232.500900004,24.1399999999994 +1996,2505,179842.500700004,373237.500500005,24.1300000000047 +1997,2506,179837.500200003,373237.500800002,24.3500000000058 +1998,2508,179837.500900004,373242.5009,24.3099999999977 +1999,20732,179828.587058939,373237.931583516,24.8000000000029 +2000,20730,179828.94687238,373234.659409039,24.806700000001 +2001,20731,179828.473771591,373238.047154095,27.0917000000045 +2002,2541,179828.1897,373241.545200005,24.7924999999959 +2003,2536,179828.090300005,373241.534499999,27.0829999999987 +2004,20734,179827.874262501,373243.499062501,27.0780999999988 +2005,20735,179827.948081356,373243.742359687,24.7880000000005 +2006,2510,179837.500600003,373247.500600003,24.2400000000052 +2007,2509,179842.500399999,373247.500300005,24.0399999999936 +2008,2579,179837.500399999,373252.500400003,24.179999999993 +2009,2580,179842.5009,373252.500800002,24.0500000000029 +2010,2511,179847.500300001,373247.5009,24.0299999999988 +2011,2535,179847.500400003,373242.500700004,23.9499999999971 +2012,2507,179842.500799999,373242.500399999,24.070000000007 +2013,2504,179847.500600003,373237.500300001,24.0399999999936 +2014,15939,179852.361222092,373240.536723319,24.2592000000004 +2015,15937,179852.156223945,373242.390161291,24.2548999999999 +2016,15935,179851.981084004,373243.973644037,24.2513000000035 +2017,15936,179852.1068522,373243.746257745,27.1999999999971 +2018,14325,179852.240803488,373242.535176076,27.1999999999971 +2019,15938,179852.286855597,373242.11880929,27.1999999999971 +2020,14327,179852.483484011,373242.102448978,27.3846000000049 +2021,15940,179852.456202917,373240.587704707,27.1999999999971 +2022,12461,179852.65337868,373240.556465305,27.3845000000001 +2023,14322,179852.508749783,373240.112617459,27.1999999999971 +2024,14324,179852.543347783,373239.799809687,27.1999999999971 +2025,15941,179852.511037193,373239.182208672,24.2623000000021 +2026,15943,179852.607540131,373239.219433188,27.1999999999971 +2027,15945,179852.639636312,373238.929244939,27.1999999999971 +2028,15942,179852.671732482,373238.639056694,27.1999999999971 +2029,15946,179852.658230249,373237.851400565,24.2652999999991 +2030,15948,179852.83343045,373236.267372999,24.2688999999955 +2031,14321,179852.800117183,373237.478303701,27.1999999999971 +2032,15949,179852.910620004,373236.479224633,27.1999999999971 +2033,14320,179853.078632291,373236.686802227,27.3843000000052 +2034,15952,179852.934187502,373236.266145878,27.1999999999971 +2035,15951,179853.144386258,373236.088463515,27.3842000000004 +2036,10770,179854.320994847,373236.534719668,27.7231999999931 +2037,14318,179853.210140221,373235.490124792,27.3842000000004 +2038,12463,179854.661997426,373233.777359836,27.732600000003 +2039,2533,179856.451200005,373237.157000002,28.7899999999936 +2040,24395,179856.966800001,373232.427000001,28.7899999999936 +2041,2532,179855.003000002,373231.020000007,27.7419999999984 +2042,15964,179853.560828045,373232.29898496,27.3840000000055 +2043,12462,179853.473156091,373233.096769918,27.3840999999957 +2044,15961,179853.412331183,373233.650255889,27.3840999999957 +2045,15956,179853.351506274,373234.203741852,27.3840999999957 +2046,15958,179853.341648158,373234.293447357,27.3840999999957 +2047,15957,179853.1429599,373234.378590878,27.1999999999971 +2048,15954,179853.092210036,373234.837431043,27.1999999999971 +2049,14319,179853.004890017,373235.626909617,27.1999999999971 +2050,15953,179852.996064849,373234.796955988,24.2722999999969 +2051,15950,179852.957755003,373236.053067125,27.1999999999971 +2052,15955,179853.193709765,373233.919750717,27.1999999999971 +2053,15959,179853.149287265,373233.411634896,24.2755000000034 +2054,15960,179853.245166507,373233.45451954,27.1999999999971 +2055,14317,179853.295209501,373233.002070379,27.1999999999971 +2056,15965,179853.355761137,373232.454610314,27.1999999999971 +2057,15966,179853.304077283,373232.012140855,24.2786999999953 +2058,2501,179847.500700004,373232.500599999,24.0800000000017 +2059,15962,179853.325390231,373231.819445278,24.2790999999997 +2060,2524,179853.368000004,373231.4342,24.2799999999988 +2061,2521,179853.464000005,373231.476,27.1999999999971 +2062,14316,179853.525000002,373231.405249998,27.1999999999971 +2063,2525,179853.611200001,373231.152200002,24.2799999999988 +2064,2526,179853.642000001,373230.797899999,24.2799999999988 +2065,14314,179853.727704417,373230.966399185,27.1999999999971 +2066,2519,179853.744000003,373230.779000003,27.1999999999971 +2067,2518,179853.59,373230.462000001,27.1999999999971 +2068,118,179853.769299999,373230.4712,27.3840000000055 +2069,24398,179853.710101768,373229.375952162,27.1999999999971 +2070,24397,179853.900159124,373229.293614764,27.3840999999957 +2071,24400,179853.770152658,373228.832928244,27.1999999999971 +2072,24401,179853.965588685,373228.704822142,27.3840999999957 +2073,24396,179855.309279621,373228.152988654,27.7409999999945 +2074,14310,179854.031018242,373228.11602952,27.3842000000004 +2075,14309,179853.830203537,373228.289904322,27.1999999999971 +2076,15969,179853.86889492,373227.940028574,27.1999999999971 +2077,24405,179853.922937416,373227.451336876,27.1999999999971 +2078,24402,179854.139413998,373227.140589401,27.3842000000004 +2079,24403,179853.960912909,373227.107934762,27.1999999999971 +2080,15975,179854.052930892,373226.275840938,27.1999999999971 +2081,15970,179854.247809753,373226.165149275,27.3843000000052 +2082,15971,179854.083347633,373226.000790559,27.1999999999971 +2083,15972,179854.356205501,373225.189709153,27.3843000000052 +2084,15974,179854.190574002,373225.031171553,27.1999999999971 +2085,15977,179854.244187176,373224.546362054,27.1999999999971 +2086,14312,179854.464601256,373224.214269035,27.3843999999954 +2087,14313,179854.297800351,373224.061552547,27.1999999999971 +2088,15976,179854.142153833,373224.559226986,24.2994000000035 +2089,15978,179854.32473072,373222.908313993,24.3047999999981 +2090,2534,179847.500300001,373222.500399999,24.0500000000029 +2091,15984,179854.490873855,373221.405999884,24.309699999998 +2092,15989,179854.676121466,373219.730937492,24.3151999999973 +2093,2494,179847.500500008,373217.500400003,24.070000000007 +2094,2493,179842.500399999,373217.500400003,24.1900000000023 +2095,2497,179842.500100002,373222.501000002,24.1699999999983 +2096,2500,179847.500100005,373227.500700004,24.1000000000058 +2097,15973,179853.96446605,373226.165931091,24.2940999999992 +2098,24404,179853.849549375,373227.205040868,24.2906999999977 +2099,15968,179853.734632693,373228.244150646,24.2872999999963 +2100,24399,179853.611016348,373229.361925326,24.2837 +2101,2527,179853.487400003,373230.479699999,24.2799999999988 +2102,2496,179837.500300005,373222.500100002,24.3899999999994 +2103,2495,179837.500600003,373217.500599999,24.5299999999988 +2104,20704,179830.641341552,373219.250182588,24.8386000000028 +2105,20714,179830.469161704,373220.815900419,24.8353999999963 +2106,20702,179830.433705952,373220.2235521,27.1358999999939 +2107,20701,179830.331601154,373222.066807657,24.8328000000038 +2108,20703,179830.147483248,373222.826352023,27.1294000000053 +2109,20715,179830.161747005,373223.611376747,24.8295999999973 +2110,20716,179829.982991625,373224.322176013,27.1257000000041 +2111,20712,179830.65269877,373218.232115075,27.1407999999938 +2112,2542,179829.050800003,373209.428200006,28.5399999999936 +2113,2293,179845.535200004,373065.424699999,28.3500000000058 +2114,2290,179847.5755,373046.919600002,28.3399999999965 +2115,20564,179848.678738598,373057.088363022,27.1999999999971 +2116,20569,179848.294916917,373060.547014032,27.1999999999971 +2117,20572,179848.020318329,373063.021446113,27.1999999999971 +2118,2270,179847.868000004,373064.394000005,27.1999999999971 +2119,20575,179847.602587283,373066.765971638,27.1999999999971 +2120,8902,179847.433250003,373068.279325005,27.1999999999971 +2121,20578,179847.192043416,373070.434968397,27.1999999999971 +2122,20581,179846.926282566,373072.810051303,27.1999999999971 +2123,20580,179846.660521712,373075.185134199,27.1999999999971 +2124,2349,179843.494900003,373083.9298,28.3600000000006 +2125,2321,179846.129000001,373079.9353,27.1999999999971 +2126,8901,179845.960473526,373081.441416956,27.1999999999971 +2127,2343,179846.228400003,373079.946400005,24.7400000000052 +2128,20583,179846.755187232,373075.238545846,24.727899999998 +2129,2267,179852.500599999,373077.5002,24.3500000000058 +2130,2294,179852.500900004,373082.500400003,24.3600000000006 +2131,20584,179846.033220168,373081.690717332,24.7445000000007 +2132,20586,179845.840013452,373083.417400967,24.748900000006 +2133,20588,179845.666891847,373084.964584552,24.7529000000068 +2134,2298,179852.500800002,373087.500500005,24.3899999999994 +2135,2297,179857.500599999,373087.500400003,24.2400000000052 +2136,2296,179857.500900004,373082.500800002,24.2799999999988 +2137,2268,179857.500200007,373077.500400007,24.3000000000029 +2138,2269,179862.500100002,373077.501000002,24.1699999999983 +2139,2295,179862.500100002,373082.500400003,24.1699999999983 +2140,2266,179867.500399999,373077.500100005,24.2400000000052 +2141,2265,179862.500799999,373072.500500001,24.179999999993 +2142,2264,179867.500799999,373072.500399999,24.2400000000052 +2143,16297,179870.724909317,373074.911739215,24.366399999999 +2144,16299,179870.872257106,373073.649687327,24.3628999999928 +2145,16303,179870.996580493,373072.584842309,24.3600000000006 +2146,16305,179871.12590469,373071.477164682,24.3570000000036 +2147,16310,179871.285546336,373070.109814368,24.3533000000025 +2148,2292,179867.500100009,373067.500200003,24.2200000000012 +2149,16313,179871.430723883,373068.866350919,24.3499000000011 +2150,16315,179871.585525848,373067.540453102,24.3463000000047 +2151,16318,179871.741960522,373066.200570941,24.3426000000036 +2152,2281,179871.854600001,373065.235800002,24.3399999999965 +2153,14123,179871.908889048,373065.633384366,27.1999999999971 +2154,2278,179871.954,373065.247000005,27.1999999999971 +2155,14122,179871.974501591,373065.059364751,27.1999999999971 +2156,14119,179872.05394958,373064.332238391,27.1999999999971 +2157,16323,179871.998735014,373063.916658193,24.3467999999993 +2158,2259,179867.5009,373062.500500005,24.3000000000029 +2159,16326,179872.151910499,373062.514776889,24.3540000000066 +2160,16329,179872.295254715,373061.202872623,24.3607999999949 +2161,14117,179872.353798311,373061.587953568,27.1999999999971 +2162,16334,179872.380217198,373061.346161749,27.1999999999971 +2163,14118,179872.48479417,373061.64810691,27.5532999999996 +2164,16333,179872.53668125,373061.175285861,27.5534999999945 +2165,10758,179873.806499999,373060.659250006,27.8147999999928 +2166,16332,179872.588568334,373060.702464808,27.553700000004 +2167,12502,179872.692342509,373059.75682269,27.5541999999987 +2168,16330,179872.47518811,373060.476966117,27.1999999999971 +2169,16331,179872.406636093,373061.104369935,27.1999999999971 +2170,16335,179872.447435763,373059.810092404,24.3680000000022 +2171,16336,179872.546582002,373059.823552657,27.1999999999971 +2172,14112,179872.596577898,373059.365978666,27.1999999999971 +2173,14116,179872.623351108,373059.120944057,27.1999999999971 +2174,16337,179872.590812672,373058.497888938,24.3748000000051 +2175,2254,179867.500300005,373057.500100005,24.2799999999988 +2176,2257,179862.5009,373062.500000004,24.2200000000012 +2177,2255,179862.500799999,373057.500599999,24.2299999999959 +2178,113,179857.500599999,373057.500500005,24.3500000000058 +2179,2251,179862.500300005,373052.500300005,24.2400000000052 +2180,2250,179857.500300009,373052.500200003,24.3999999999942 +2181,2256,179852.500999998,373057.500800006,24.4199999999983 +2182,2258,179857.500500005,373062.5002,24.3800000000047 +2183,2288,179852.500700001,373062.500700001,24.3500000000058 +2184,2262,179857.500900004,373067.500700008,24.3699999999953 +2185,2261,179862.500100002,373067.500399999,24.2299999999959 +2186,2263,179857.500900004,373072.500399999,24.3399999999965 +2187,2289,179852.500300001,373072.500300005,24.3300000000017 +2188,2260,179852.500500005,373067.500399999,24.3800000000047 +2189,20577,179847.344003338,373069.97634469,24.7143000000069 +2190,20579,179847.178021722,373071.459708773,24.718200000003 +2191,20582,179847.001481038,373073.037438378,24.7222000000038 +2192,20574,179847.565412872,373067.997625936,24.7091999999975 +2193,20576,179847.707818266,373066.724960607,24.7060000000056 +2194,2284,179847.967400003,373064.405100003,24.6999999999971 +2195,20571,179848.076918662,373063.418212097,24.6989000000031 +2196,20573,179848.133095864,373062.911991451,24.6983000000037 +2197,20570,179848.405474618,373060.457548391,24.6955000000016 +2198,20568,179848.683609013,373057.951240528,24.6925999999949 +2199,20567,179848.819709659,373056.724818565,24.6912000000011 +2200,20565,179849.201563157,373052.377144773,27.1999999999971 +2201,20566,179849.275901172,373052.61401308,24.6864999999962 +2202,2253,179852.500100005,373052.500500001,24.3899999999994 +2203,20563,179849.40017369,373051.494176041,24.6852000000072 +2204,20560,179849.554020595,373050.107840065,24.6836000000039 +2205,8903,179849.42305994,373050.381217733,27.1999999999971 +2206,20561,179849.615029976,373048.651358869,27.1999999999971 +2207,2271,179849.807000004,373046.921500001,27.1999999999971 +2208,20559,179850.028416533,373044.926296119,27.1999999999971 +2209,20556,179850.269939173,373042.749914337,27.1999999999971 +2210,20552,179850.732878339,373038.578328673,27.1999999999971 +2211,2188,179849.615800001,373028.414500006,28.3300000000017 +2212,20553,179850.997064169,373036.197726835,27.1999999999971 +2213,8904,179851.26125,373033.817125004,27.1999999999971 +2214,20549,179851.503625002,373031.633062504,27.1999999999971 +2215,2183,179851.745999999,373029.449000001,27.1999999999971 +2216,20546,179851.867293753,373028.335461266,27.1999999999971 +2217,20543,179852.10288943,373026.172572311,27.1999999999971 +2218,8905,179852.45977886,373022.896144625,27.1999999999971 +2219,20532,179852.713811152,373020.563998092,27.1999999999971 +2220,20531,179852.967843451,373018.231851563,27.1999999999971 +2221,2194,179851.656199999,373009.909499999,28.3300000000017 +2222,2154,179853.6965,372991.404400002,28.320000000007 +2223,110,179855.7368,372972.899300005,28.3099999999977 +2224,2152,179857.777100004,372954.394200005,28.3000000000029 +2225,109,179859.817400005,372935.889200002,28.2899999999936 +2226,2071,179861.857700001,372917.384100005,28.2899999999936 +2227,20454,179862.928874716,372928.310175538,27.1999999999971 +2228,2066,179863.3574,372924.464900002,27.1999999999971 +2229,20447,179863.645625334,372921.878692683,27.1999999999971 +2230,20448,179863.685236271,372922.42597197,24.4712 +2231,2067,179863.456800003,372924.475700002,24.4700000000012 +2232,2052,179867.5009,372922.500300005,24.3699999999953 +2233,2055,179867.500700004,372927.500700001,24.3500000000058 +2234,2054,179872.500500005,372927.500300001,24.4499999999971 +2235,2053,179872.500700001,372922.500399999,24.4700000000012 +2236,2076,179877.500599999,372922.500399999,24.2899999999936 +2237,2075,179877.500400003,372917.500700004,24.3099999999977 +2238,2051,179872.500300001,372917.500399999,24.4799999999959 +2239,2049,179872.500800002,372912.500400003,24.4700000000012 +2240,2072,179877.500700001,372912.500700001,24.320000000007 +2241,2021,179877.500900004,372907.500700001,24.3399999999965 +2242,2039,179872.500800002,372907.500599999,24.4700000000012 +2243,2019,179877.500500005,372902.500200003,24.3699999999953 +2244,2038,179872.500700001,372902.500500001,24.4100000000035 +2245,2047,179867.500200003,372907.500100005,24.3899999999994 +2246,2050,179867.500799999,372912.500800002,24.3300000000017 +2247,20433,179865.057181813,372910.115688454,24.4781999999977 +2248,20434,179864.914860569,372911.392717846,24.4774999999936 +2249,20436,179864.729458012,372913.056310158,24.4765000000043 +2250,20441,179864.509191085,372915.032735828,24.4753999999957 +2251,2070,179867.500200003,372917.500700004,24.3300000000017 +2252,20444,179863.977828104,372919.800584666,24.4726999999984 +2253,20442,179864.141485982,372918.332104422,24.4734999999928 +2254,20443,179864.004827403,372918.655620702,27.1999999999971 +2255,20445,179863.844584003,372920.093463257,27.1999999999971 +2256,8911,179864.120022815,372917.621987682,27.1999999999971 +2257,20438,179864.229803216,372916.63694283,27.1999999999971 +2258,20440,179864.405992579,372915.056019299,27.1999999999971 +2259,20435,179864.625475056,372913.086632416,27.1999999999971 +2260,8912,179864.925469477,372910.394822668,27.1999999999971 +2261,2040,179865.303300004,372907.0046,27.1999999999971 +2262,2046,179863.898000002,372898.879000001,28.2799999999988 +2263,20431,179865.608532608,372904.265647955,27.1999999999971 +2264,20429,179865.875223469,372901.872543599,27.1999999999971 +2265,20427,179866.050363205,372900.300957464,27.1999999999971 +2266,8913,179866.16135129,372899.305025101,27.1999999999971 +2267,20418,179866.29451178,372898.11013243,27.1999999999971 +2268,20420,179866.432139143,372896.875157095,27.1999999999971 +2269,20422,179866.608103126,372895.296174664,27.1999999999971 +2270,20424,179866.928601567,372892.420237333,27.1999999999971 +2271,108,179867.2491,372889.544300001,27.1999999999971 +2272,2048,179865.890000004,372881.800300002,28.2799999999988 +2273,25204,179929.993863653,372279.221173029,28.7694999999949 +2274,6418,179543.462000001,375797.814000007,26.320000000007 +2275,6422,179541.978500005,375812.646500003,26.3300000000017 +2276,6463,179539.199200001,375839.065400001,26.3160999999964 +2277,6404,179544.822000004,375805.787999999,25 +2278,12045,179544.909728229,375805.030293573,25 +2279,12043,179545.172912911,375802.757174291,25 +2280,12041,179545.371171366,375801.044821095,25 +2281,12042,179545.381416067,375801.826120585,22.3948999999993 +2282,9762,179545.5088927,375800.725099187,22.3962000000029 +2283,12040,179545.522066209,375799.741546214,25 +2284,12036,179545.647566263,375799.527369428,22.3977000000014 +2285,12034,179545.643650346,375798.691427156,25 +2286,12035,179545.786239821,375798.32963967,22.3991999999998 +2287,12037,179545.737926684,375797.877164897,25 +2288,12039,179545.922107555,375796.286399469,25 +2289,6403,179546.236500002,375793.570999999,25 +2290,12032,179546.31957034,375792.853523649,25 +2291,12019,179546.632480819,375790.150923863,25 +2292,9761,179546.621514805,375791.115332134,22.4079999999958 +2293,12021,179546.721711908,375790.249925248,22.4091000000044 +2294,12020,179546.821909014,375789.384518355,22.4101999999984 +2295,12022,179546.81229686,375788.597857405,25 +2296,12023,179546.999807175,375787.848003987,22.4119999999966 +2297,12024,179546.971685193,375787.221224446,25 +2298,6415,179545.395,375781.081000004,26.3000000000029 +2299,12027,179547.194082957,375785.300380759,25 +2300,12031,179547.223861843,375785.043181282,25 +2301,12030,179547.398465183,375783.535136703,25 +2302,6402,179547.651000004,375781.353999998,25 +2303,12018,179547.935091261,375778.7277776,25 +2304,9760,179548.028068412,375778.79823672,22.4187999999995 +2305,12016,179548.250491612,375775.812124856,25 +2306,12017,179548.363767315,375775.694919433,22.4174000000057 +2307,6420,179552.500300001,375777.500200003,22.2299999999959 +2308,6344,179552.500300001,375772.500200007,22.3099999999977 +2309,6347,179557.500700004,375772.500700001,22.4400000000023 +2310,6341,179557.500600003,375767.500599999,22.4400000000023 +2311,6361,179552.500599999,375767.500599999,22.3000000000029 +2312,12011,179549.047714386,375769.372275095,22.4146000000037 +2313,12014,179549.219361536,375767.785509188,22.4137999999948 +2314,6354,179549.537200004,375764.8473,22.4125000000058 +2315,6337,179552.500599999,375762.500100005,22.3099999999977 +2316,9758,179549.73854075,375762.985931985,22.4116999999969 +2317,12009,179549.630341485,375763.056280017,25 +2318,12004,179549.753482092,375761.917861726,25 +2319,6365,179547.402100004,375762.5726,26.3099999999977 +2320,12006,179549.797261931,375761.513123095,25 +2321,12005,179549.879604653,375761.681815267,22.4110999999975 +2322,12008,179549.906128563,375760.506665818,25 +2323,12007,179550.029479403,375760.296243452,22.4103999999934 +2324,6336,179552.500300001,375757.500700004,22.320000000007 +2325,6333,179557.500100002,375757.500300005,22.3999999999942 +2326,6331,179557.500200003,375752.500100002,22.4199999999983 +2327,21,179562.500600003,375752.500200003,22.3600000000006 +2328,6328,179562.500100002,375747.5002,22.3800000000047 +2329,6364,179567.500500005,375747.500599999,22.1399999999994 +2330,6366,179567.500400003,375752.500200003,22.1399999999994 +2331,6334,179562.500700004,375757.500500001,22.3399999999965 +2332,6335,179567.500900008,375757.500500001,22.2799999999988 +2333,6332,179572.500900004,375752.500600006,22.1699999999983 +2334,6329,179572.500599999,375747.500300001,22.1900000000023 +2335,6352,179575.434900001,375750.138099998,22.2599999999948 +2336,6935,179575.615782455,375748.540353414,22.2618999999977 +2337,6934,179575.708586082,375748.609519623,25 +2338,15147,179575.822650939,375747.601977225,25 +2339,15146,179576.547633078,375747.453347828,25.5503999999928 +2340,6932,179575.882872157,375747.07003925,25 +2341,15148,179575.942225646,375746.545766,25 +2342,15149,179576.761896886,375745.482140694,25.553700000004 +2343,6358,179578.193300005,375745.846700002,26.2599999999948 +2344,6357,179576.848000005,375744.690000001,25.554999999993 +2345,23042,179578.537286364,375742.755183373,26.2599999999948 +2346,23043,179577.037377592,375742.947743762,25.5578999999998 +2347,15150,179577.226755176,375741.205487512,25.5608000000066 +2348,6939,179576.401100345,375742.4924956,25 +2349,6937,179576.206148997,375744.214513671,25 +2350,6940,179576.302105483,375742.478017014,22.2690000000002 +2351,6936,179576.099869456,375744.264381129,22.2669000000024 +2352,6680,179576.106211822,375745.097265322,25 +2353,6928,179575.952248678,375745.568325158,22.2654000000039 +2354,6327,179572.5002,375742.501000002,22.2700000000041 +2355,6931,179575.860239189,375746.381051023,22.2644 +2356,6929,179576.001579128,375746.021492738,25 +2357,6930,179576.05389547,375745.559379041,25 +2358,6933,179575.75738797,375747.289542619,22.263300000006 +2359,6324,179567.500300001,375742.500300001,22.2799999999988 +2360,6322,179567.500800006,375737.500799999,22.320000000007 +2361,6323,179562.501000002,375737.5009,22.4499999999971 +2362,6278,179567.500400003,375732.500200003,22.320000000007 +2363,6296,179562.500600003,375732.500700004,22.4700000000012 +2364,6320,179557.500700004,375737.500200003,22.3300000000017 +2365,6280,179557.5009,375732.500799999,22.2799999999988 +2366,11983,179552.504163966,375737.418729834,22.3999999999942 +2367,11980,179552.315589637,375739.161976438,22.4008000000031 +2368,11981,179552.225743879,375739.992541876,22.401199999993 +2369,6326,179557.500500001,375742.500500005,22.3500000000058 +2370,9756,179552.135898117,375740.823107306,22.4015999999974 +2371,11986,179551.974856686,375742.31183026,22.4023000000016 +2372,11989,179551.85973157,375743.376086831,22.4027999999962 +2373,11988,179551.744606454,375744.440343399,22.4032000000007 +2374,6330,179557.500200003,375747.500400003,22.3800000000047 +2375,6325,179562.500700004,375742.500400003,22.4199999999983 +2376,11992,179551.534253228,375746.384921703,22.4040999999997 +2377,6353,179551.323899999,375748.329500001,22.4049999999988 +2378,12000,179551.031927329,375751.028747912,22.4061999999976 +2379,11997,179550.73995465,375753.727995817,22.4075000000012 +2380,12001,179550.906758178,375751.255980205,25 +2381,6355,179551.224500004,375748.318500001,25 +2382,6362,179549.409299999,375744.064100001,26.3300000000017 +2383,11993,179551.438690059,375746.338464696,25 +2384,11991,179551.622613091,375744.638226546,25 +2385,11990,179551.722419064,375743.71559104,25 +2386,11987,179551.823748875,375742.778868787,25 +2387,11985,179551.946825206,375741.641115278,25 +2388,11979,179552.111913465,375740.114991333,25 +2389,11982,179552.257690653,375738.767384455,25 +2390,11984,179552.404884305,375737.406683445,25 +2391,6299,179551.416400004,375725.555700004,26.3500000000058 +2392,11999,179550.663461681,375753.505223438,25 +2393,11996,179550.462026156,375755.367467649,25 +2394,11998,179550.625122905,375754.789599784,22.4079000000056 +2395,11995,179550.510291159,375755.851203751,22.4084000000003 +2396,9757,179550.400745705,375756.863936678,22.4088999999949 +2397,12003,179550.179354157,375758.910671625,22.409799999994 +2398,12002,179550.090596437,375758.80128517,25 +2399,11994,179550.365003228,375756.264431506,25 +2400,12010,179548.813918233,375770.603644919,25 +2401,12013,179548.979303192,375769.074778162,25 +2402,12012,179548.954394028,375770.234960977,22.4149000000034 +2403,9759,179548.861073658,375771.097646851,22.4152999999933 +2404,12015,179549.128630344,375767.694354456,25 +2405,6356,179549.437800001,375764.836300004,25 +2406,6286,179553.011300001,375731.800799999,25 +2407,11977,179553.167301822,375730.358584289,25 +2408,11978,179553.215746723,375730.840557232,22.397100000002 +2409,11975,179553.32079345,375729.869414467,22.3965999999928 +2410,11974,179553.352044936,375728.650659192,25 +2411,11976,179553.414662618,375729.001606692,22.3962000000029 +2412,11973,179553.50853179,375728.133798908,22.3957999999984 +2413,11972,179553.482738569,375727.442414142,25 +2414,11969,179553.589691333,375726.453650296,25 +2415,11971,179553.698246837,375725.450069416,25 +2416,11967,179553.874782071,375723.818024978,25 +2417,11963,179554.213354003,375720.687973268,25 +2418,11965,179554.399744086,375718.964822136,25 +2419,6285,179554.798000004,375715.283000004,25 +2420,6297,179553.423599996,375707.0473,26.3600000000006 +2421,6023,179569.610000003,375552.975000005,26.4100000000035 +2422,6250,179555.430700004,375688.538900003,26.3800000000047 +2423,6252,179557.437900007,375670.030400004,26.3899999999994 +2424,6249,179559.445000004,375651.522,26.4100000000035 +2425,18,179561.477400005,375633.506999999,26.3800000000047 +2426,6165,179563.509800002,375615.492000002,26.3500000000058 +2427,6136,179565.542200003,375597.477000002,26.320000000007 +2428,23,179567.5746,375579.462000005,26.3000000000029 +2429,6017,179569.571000002,375554.206999999,26.3999999999942 +2430,6008,179570.701000005,375553.672000002,25.7989999999991 +2431,13202,179570.905280076,375551.698256794,25.8047999999981 +2432,14575,179571.253398921,375548.334751032,25.8145999999979 +2433,14568,179571.734914701,375550.783366743,25.5994000000064 +2434,14576,179571.921881143,375548.990883328,25.6031999999977 +2435,14579,179572.027181946,375547.981344171,25.6052999999956 +2436,14574,179572.40113607,375548.540200669,25 +2437,14577,179572.369000681,375548.813763484,25 +2438,11776,179572.336865284,375549.087326311,25 +2439,11775,179572.487736918,375548.660272494,22.5500999999931 +2440,11777,179572.379209399,375549.584095992,22.5608999999968 +2441,14578,179572.299217124,375549.40781837,25 +2442,14569,179572.261568956,375549.728310421,25 +2443,9736,179572.270681884,375550.507919494,22.5715999999957 +2444,5988,179573.103,375551.627500001,22.5899999999965 +2445,5971,179577.500399999,375547.500800006,22.320000000007 +2446,5972,179577.500900004,375552.500900004,22.3500000000058 +2447,5989,179573.119500004,375551.846799999,22.5899999999965 +2448,11795,179573.011119232,375552.68413116,22.5734999999986 +2449,9739,179572.902738463,375553.521462321,22.5570000000007 +2450,11802,179572.78151923,375554.457981162,22.5384999999951 +2451,5973,179577.500600006,375557.500399999,22.3600000000006 +2452,6021,179572.660300002,375555.394500002,22.5200000000041 +2453,11809,179572.397948053,375557.81952627,22.5426000000007 +2454,11806,179572.206453644,375559.58958739,22.5592000000033 +2455,5974,179577.500300005,375562.500399999,22.3500000000058 +2456,6044,179582.500500001,375562.500500001,22.4100000000035 +2457,6116,179577.500700008,375567.500600003,22.4100000000035 +2458,6087,179582.5009,375567.5009,22.3600000000006 +2459,6045,179587.5009,375562.500799999,22.3500000000058 +2460,6043,179587.500799999,375557.500800002,22.3300000000017 +2461,6041,179582.500700004,375557.500399999,22.429999999993 +2462,6080,179587.500799999,375552.500800002,22.3099999999977 +2463,6042,179592.500599999,375557.500399999,22.3800000000047 +2464,6046,179592.500400003,375562.5009,22.3899999999994 +2465,7116,179596.058584616,375560.800088454,22.3050999999978 +2466,7114,179595.847521231,375562.738375343,22.3031000000046 +2467,7112,179595.721006602,375563.900214195,22.3019000000058 +2468,7109,179595.58986029,375565.104587872,22.3006000000023 +2469,7100,179595.438874092,375566.491159819,22.299199999994 +2470,6704,179595.639872283,375565.568956111,25 +2471,7102,179595.513652645,375566.728046238,25 +2472,7108,179595.392432716,375566.917651102,22.2988000000041 +2473,7101,179595.387433019,375567.887136355,25 +2474,7103,179595.214106511,375568.555298317,22.2970999999961 +2475,15303,179595.302776083,375568.664551165,25 +2476,7104,179595.107996508,375570.453235555,25 +2477,7105,179594.967950948,375570.815851945,22.2946999999986 +2478,22973,179595.040284447,375571.075043611,25 +2479,15299,179594.85398227,375571.862475853,22.2936000000045 +2480,6090,179587.500500008,375572.500400003,22.3300000000017 +2481,7107,179594.740013599,375572.909099754,22.2924999999959 +2482,22972,179594.904860321,375572.318659723,25 +2483,15298,179594.972572386,375571.696851667,25 +2484,22971,179595.61700641,375572.753394093,25.5635000000038 +2485,7106,179594.837148253,375572.940467779,25 +2486,15297,179595.478681594,375574.143811192,25.5645999999979 +2487,22969,179597.919015795,375572.318805426,26.6294999999955 +2488,22970,179595.755331218,375571.362976991,25.5623999999953 +2489,15302,179596.031980839,375568.582142789,25.5601000000024 +2490,6078,179598.890000004,375563.772,26.6399999999994 +2491,6112,179608.199999999,375569.576000005,26.6399999999994 +2492,22776,179609.232239157,375561.097794924,26.690499999997 +2493,6077,179599.237,375561.404000003,26.6399999999994 +2494,6071,179596.918000005,375561.650000002,25.4850000000006 +2495,6070,179596.552000005,375563.355,25.5559999999969 +2496,15304,179596.382646073,375565.057316486,25.5574000000051 +2497,7110,179595.785515152,375564.23150003,25 +2498,7111,179595.712693717,375564.900228068,25 +2499,15305,179595.676282994,375565.234592091,25 +2500,7113,179595.859281387,375563.554095756,25 +2501,7115,179595.912741102,375563.06316876,25 +2502,6705,179595.966200814,375562.572241776,25 +2503,7117,179596.158232097,375560.808795299,25 +2504,6072,179597.482000005,375560.475000005,25.6520000000019 +2505,7121,179596.29871859,375559.518690877,25 +2506,6073,179598.039000005,375559.421000004,25.6370000000024 +2507,7123,179596.36896183,375558.873638667,25 +2508,6706,179596.439205077,375558.228586461,25 +2509,7118,179596.327032413,375558.334815565,22.3077000000048 +2510,7122,179596.221955407,375559.299783386,22.306700000001 +2511,7124,179596.450200517,375557.203709234,22.3087999999989 +2512,6056,179596.5713,375556.091600001,22.3099999999977 +2513,6040,179592.500999998,375552.500999998,22.3300000000017 +2514,7133,179598.506815605,375553.321157183,22.2762999999977 +2515,7138,179598.448775861,375553.944632176,22.2859999999928 +2516,6057,179596.870299999,375556.1215,22.3099999999977 +2517,6048,179596.760000002,375556.210999999,25 +2518,7129,179596.692845087,375556.829155501,24.9967000000033 +2519,7130,179596.615622975,375556.608519647,25 +2520,6047,179596.66,375556.201000001,25 +2521,6707,179596.571245946,375557.016039293,25 +2522,6708,179596.667725824,375557.060376216,24.9955000000045 +2523,7128,179596.778574999,375556.965775002,22.3325000000041 +2524,6058,179596.748000003,375557.247200005,22.3399999999965 +2525,7127,179596.652862918,375557.197188109,24.9946999999956 +2526,6049,179596.638,375557.333999999,24.9940000000061 +2527,7120,179597.1985742,375557.405449215,25.0063999999984 +2528,7131,179597.240114588,375557.309920486,22.3399999999965 +2529,6709,179597.759148393,375557.476898436,25.0188999999955 +2530,7132,179597.90377865,375557.394505121,22.3399999999965 +2531,7137,179598.216857582,375556.435946696,22.3246999999974 +2532,22968,179598.265339475,375555.915144149,22.3166000000056 +2533,7135,179598.31382136,375555.394341607,22.3084999999992 +2534,22967,179598.378784586,375555.775596891,25.0175000000017 +2535,7134,179598.433379445,375555.189129189,25.0136999999959 +2536,7139,179598.542569172,375554.016193777,25.0059999999939 +2537,22966,179600.250616044,375556.228508878,26.5862999999954 +2538,6710,179598.651758894,375552.843258373,24.9983999999968 +2539,6075,179601.193000004,375548.389000006,26.6699999999983 +2540,6083,179610.243000004,375552.796000004,26.7400000000052 +2541,22777,179611.008859985,375545.208135262,26.7051000000065 +2542,6064,179612.083000004,375550.520000003,25.929999999993 +2543,25291,179612.769004337,375543.951099932,25.9323000000004 +2544,25290,179614.098000005,375551.000999998,25.9590999999928 +2545,25293,179615.118999999,375542.056000002,25.9701999999961 +2546,25294,179613.454502169,375537.387049966,25.934699999998 +2547,25295,179616.245000001,375531.801000006,25.9787000000069 +2548,25300,179617.485000003,375520.672000002,25.9896000000008 +2549,25297,179614.679500002,375526.423,25.9446999999927 +2550,6063,179614.140000004,375530.822999999,25.9370000000054 +2551,25299,179613.79725109,375534.105024986,25.9358000000066 +2552,6074,179611.997000001,375535.418000001,26.6600000000035 +2553,22965,179601.617972974,375537.937951591,26.6821000000054 +2554,192,179601.026000001,375542.864,26.6300000000047 +2555,14918,179599.47236909,375538.740413815,25.6705999999976 +2556,6069,179599.751000006,375536.326000001,25.6699999999983 +2557,7174,179598.697656482,375537.198519133,25 +2558,6718,179598.77703137,375536.449398767,25 +2559,7175,179598.717171136,375536.065495498,22.4217999999964 +2560,7173,179598.555402353,375537.592249971,22.3991999999998 +2561,6033,179592.500800002,375537.500399999,22.3300000000017 +2562,7171,179598.395827569,375539.098297767,22.3769000000029 +2563,7169,179598.228069045,375540.681582689,22.3534999999974 +2564,6037,179592.500700001,375542.500600003,22.25 +2565,6034,179587.5009,375537.500600003,22.3000000000029 +2566,6036,179587.500500008,375542.500500001,22.2799999999988 +2567,6035,179582.5009,375537.500799999,22.4600000000064 +2568,6030,179587.500100005,375532.500100005,22.320000000007 +2569,6032,179582.500600003,375532.500599999,22.4400000000023 +2570,5969,179577.500200003,375537.500200003,22.2899999999936 +2571,6081,179582.500200003,375542.500399999,22.4600000000064 +2572,5970,179577.500500001,375542.500600003,22.3099999999977 +2573,11753,179573.846690442,375544.8915576,22.4342999999935 +2574,9732,179573.93848088,375543.966315195,22.3585000000021 +2575,11749,179574.022440445,375543.120007597,22.289300000004 +2576,6020,179574.106400002,375542.273699999,22.2200000000012 +2577,11743,179574.220243081,375541.327470936,22.2458000000042 +2578,11742,179574.334086157,375540.381241869,22.2716999999975 +2579,11747,179574.160660345,375540.985829145,25 +2580,11741,179574.139296517,375541.163397815,25 +2581,5991,179574.006999999,375542.263000004,25 +2582,6018,179571.830000002,375541.329999998,26.429999999993 +2583,6009,179571.831,375542.754000001,25.8310000000056 +2584,6010,179573.859999999,375542.776000004,25.4290000000037 +2585,11748,179573.957261913,375542.764348611,25 +2586,11750,179573.923424441,375543.105422564,25 +2587,6014,179572.524599999,375543.491700005,25.540599999993 +2588,11751,179573.834265862,375544.004120752,25 +2589,11752,179573.782052428,375544.530420277,25 +2590,5995,179573.689000003,375544.479000002,25 +2591,11764,179573.681307964,375544.541136637,25 +2592,11763,179573.764177676,375544.710593671,25 +2593,11762,179573.656097934,375544.744784504,25 +2594,5979,179573.574700002,375544.588400003,22.4199999999983 +2595,11755,179573.517875973,375545.047468107,22.4839000000065 +2596,11761,179573.619009148,375545.04438955,25 +2597,11754,179573.746302933,375544.890767071,25 +2598,11760,179573.7189225,375545.166755557,25 +2599,11759,179573.591798779,375545.264196225,25 +2600,11756,179573.69154207,375545.44274405,25 +2601,5976,179573.754900001,375545.816799998,22.5099999999948 +2602,5992,179573.655999999,375545.800999999,25 +2603,5993,179573.583000004,375546.131000001,25 +2604,5977,179573.664000005,375546.2278,22.6499999999942 +2605,13205,179572.596264433,375547.736448985,22.539300000004 +2606,13204,179572.465406854,375547.993075017,25 +2607,14573,179572.51638538,375547.559103977,25 +2608,11772,179572.704791952,375546.812625483,22.5285000000003 +2609,11773,179572.593948416,375546.898823719,25 +2610,14572,179572.063090045,375547.637086287,25.6059999999998 +2611,14580,179572.247522514,375545.86889657,25.6098000000056 +2612,13203,179571.601517756,375544.97124527,25.8245000000024 +2613,6013,179572.309000004,375545.279500004,25.6110000000044 +2614,14585,179572.391519483,375544.595231336,25.5840999999928 +2615,14584,179572.547375001,375544.840750001,25 +2616,11768,179572.508750003,375545.114500001,25 +2617,11769,179572.635450002,375544.932,22.4649999999965 +2618,5980,179572.673799995,375544.660300002,22.4199999999983 +2619,5996,179572.585999999,375544.567000005,25 +2620,11765,179572.842653394,375544.546523578,25 +2621,11770,179572.899025001,375544.642324999,22.4199999999983 +2622,11767,179573.029205099,375544.531640034,25 +2623,11766,179573.124250006,375544.624350008,22.4199999999983 +2624,5982,179572.8917,375545.221600004,22.5099999999948 +2625,9733,179573.461051945,375545.506536201,22.547900000005 +2626,11758,179573.558279451,375545.534967002,25 +2627,11757,179573.518362816,375545.857415535,25 +2628,9735,179573.415675975,375545.873118099,22.5988999999972 +2629,5994,179573.484000001,375546.135000005,25 +2630,5978,179573.370300002,375546.239700004,22.6499999999942 +2631,14582,179572.765359733,375546.297051728,22.5225000000064 +2632,9734,179572.825927515,375545.781477973,22.5164999999979 +2633,11771,179572.723483112,375545.796118129,25 +2634,14581,179572.658715766,375546.347470921,25 +2635,5997,179572.483000003,375545.296999998,25 +2636,5998,179572.780000001,375545.315000001,25 +2637,5981,179572.597100001,375545.203700002,22.5099999999948 +2638,14583,179572.40325309,375544.497933812,25.5801999999967 +2639,13206,179571.773629446,375543.308311317,25.8294000000024 +2640,193,179570.813000001,375543.077,26.4100000000035 +2641,6022,179572.058000006,375539.851000004,26.4499999999971 +2642,6019,179573.7885,375524.7053,26.4700000000012 +2643,6,179575.519000005,375509.559500005,26.4900000000052 +2644,5966,179577.249500003,375494.413800005,26.5099999999948 +2645,5965,179578.282000005,375503.978300001,25 +2646,11714,179577.919594578,375507.266502514,25 +2647,5962,179578.381400004,375503.989500001,22.6300000000047 +2648,11707,179578.777994748,375500.391066611,22.658500000005 +2649,11706,179578.735900968,375499.859958857,25 +2650,11708,179578.86348052,375499.615426317,22.6646999999939 +2651,9728,179578.948966295,375498.839786012,22.6708000000071 +2652,11705,179578.945629127,375497.957050074,25 +2653,11703,179579.098291017,375496.571915925,25 +2654,11704,179579.087235298,375497.585226323,22.6808000000019 +2655,11702,179579.225504294,375496.330666628,22.6907000000065 +2656,11701,179579.215517808,375495.508291993,25 +2657,11698,179579.368409459,375495.034041453,22.7010000000009 +2658,11700,179579.309891552,375494.652018741,25 +2659,11699,179579.461662754,375494.187923983,22.707699999999 +2660,5922,179582.500100002,375492.500100002,22.3800000000047 +2661,9727,179579.554916039,375493.341806512,22.7143999999971 +2662,11697,179579.403047301,375493.806796554,25 +2663,11692,179579.508087944,375492.853740193,25 +2664,11693,179579.675082434,375492.251497641,22.7231000000029 +2665,11694,179579.606525969,375491.960590813,25 +2666,11695,179579.819050573,375490.945227794,22.7333999999973 +2667,11696,179579.716907613,375490.959074337,25 +2668,5964,179580.089000002,375487.583000004,25 +2669,5863,179578.98,375479.267999999,26.5299999999988 +2670,11689,179580.580380045,375483.15765702,25 +2671,11691,179580.778563648,375481.372825798,25 +2672,11687,179580.982379179,375479.537273776,25 +2673,11679,179581.094992328,375478.523085676,25 +2674,11686,179581.176082503,375477.792791817,25 +2675,11682,179581.31069769,375476.580454439,25 +2676,11685,179581.497917302,375474.894364394,25 +2677,5899,179582.022500005,375470.170000006,25 +2678,5,179581.019700002,375460.516700003,26.5299999999988 +2679,5851,179586.498000003,375407.696000002,26.3699999999953 +2680,5647,179597.84,375299.752,26.4400000000023 +2681,5789,179588.557000004,375389.294500005,26.4400000000023 +2682,5792,179590.616000004,375370.892999999,26.5 +2683,5788,179592.488300003,375354.907500003,26.4900000000052 +2684,5741,179594.3605,375338.921999998,26.4799999999959 +2685,5737,179596.232799999,375322.936500002,26.4700000000012 +2686,5646,179597.820000004,375301.245000008,26.4199999999983 +2687,6629,179598.640766028,375299.758631393,25.9122000000061 +2688,5607,179598.449000001,375301.454999998,25.9140000000043 +2689,5641,179599.352500003,375300.772400003,25.6070000000036 +2690,5606,179600.523000002,375302.046999998,25.4959999999992 +2691,11517,179600.582310613,375301.943481538,25 +2692,11516,179600.688020553,375300.953156177,25 +2693,11511,179600.1855,375299.821500003,25 +2694,5636,179599.630000006,375299.766000003,25 +2695,12145,179599.446928781,375299.733091213,25.5905000000057 +2696,11503,179599.65927301,375299.54605687,25 +2697,5642,179599.496000003,375299.193,25.5819999999949 +2698,6630,179598.936504088,375297.142522763,25.9094000000041 +2699,12146,179599.66428582,375297.626327872,25.5807000000059 +2700,12149,179599.779189847,375296.556618337,25.5798000000068 +2701,12150,179600.044384755,375294.08776224,25.5776999999944 +2702,11494,179600.37345795,375295.260343172,25 +2703,11496,179600.474708755,375294.380260497,25 +2704,12151,179600.528014854,375293.916918259,25 +2705,11495,179600.589231238,375294.259730484,22.8399999999965 +2706,12152,179600.649933655,375293.732102476,22.8368999999948 +2707,5612,179601.624299999,375293.377799999,22.6100000000006 +2708,5613,179601.3301,375293.261399999,22.6100000000006 +2709,9703,179600.710636068,375293.204474472,22.8337999999931 +2710,5617,179600.785000004,375292.5581,22.8300000000017 +2711,5633,179600.674000002,375292.647999998,25 +2712,11490,179600.610379204,375293.20099869,25 +2713,5632,179600.380000003,375292.620000005,25 +2714,5643,179600.204999998,375292.592500005,25.5764999999956 +2715,11489,179600.405500002,375292.471250005,25 +2716,5616,179600.496800005,375292.530700002,22.8300000000017 +2717,5615,179600.566000007,375292.126899999,22.8300000000017 +2718,11487,179600.989036176,375292.13610965,22.8300000000017 +2719,9702,179601.409189072,375292.635203276,22.7336000000068 +2720,5614,179601.470899999,375292.146600004,22.8300000000017 +2721,11488,179600.932210863,375292.034804959,25 +2722,11486,179600.830061954,375292.032580294,25 +2723,5644,179600.3893,375291.098600004,25.5482999999949 +2724,11480,179601.708783995,375291.573043488,25 +2725,5630,179601.584000003,375292.049000002,25 +2726,11481,179601.646645889,375292.060164526,25 +2727,9701,179601.813974056,375291.538921621,22.8828000000067 +2728,5611,179601.644800004,375292.8651,22.8300000000017 +2729,5594,179607.500200003,375292.500300001,22.4900000000052 +2730,11478,179601.937637027,375290.56951081,22.9214000000065 +2731,5610,179602.061300002,375289.600099999,22.9600000000064 +2732,5591,179607.500700004,375287.500300001,22.4799999999959 +2733,11475,179602.240018066,375287.969278358,22.9419999999955 +2734,11470,179602.399289601,375286.515908394,22.925900000002 +2735,11472,179602.568284411,375284.973812595,22.9088999999949 +2736,5589,179607.500200003,375282.500700004,22.4900000000052 +2737,5586,179612.500599999,375282.500399999,22.4799999999959 +2738,5584,179607.5009,375277.500799999,22.4499999999971 +2739,11465,179603.178215723,375279.408123489,22.8475000000035 +2740,5609,179603.682300001,375274.8083,22.7967000000062 +2741,11467,179603.083241351,375279.356897503,25 +2742,5625,179603.583000001,375274.796700004,25 +2743,5649,179600.679000005,375283.73,26.3600000000006 +2744,5575,179602.431700002,375265.651299998,26.3500000000058 +2745,5648,179598.874000002,375290.528999999,26.3999999999942 +2746,182,179604.184300002,375247.572700001,26.3500000000058 +2747,5571,179605.936999999,375229.493999999,26.3399999999965 +2748,181,179607.624699999,375212.907000002,26.3999999999942 +2749,5487,179609.312300004,375196.32,26.4700000000012 +2750,5463,179611.000000004,375179.733000003,26.5399999999936 +2751,11382,179613.036823321,375188.220145419,25 +2752,11384,179613.240100928,375186.423119251,25 +2753,5458,179613.518500004,375183.962000005,25 +2754,11372,179613.611984678,375183.135571472,25 +2755,5456,179613.617899999,375183.973100003,22.6824999999953 +2756,11383,179613.368674945,375186.176299501,22.690499999997 +2757,5464,179617.500400003,375187.500299998,22.5099999999948 +2758,5454,179617.500700001,375182.500400003,22.5200000000041 +2759,5453,179622.500399999,375182.5002,22.570000000007 +2760,5452,179617.500500005,375177.500400007,22.5200000000041 +2761,5461,179622.500700004,375177.500400007,22.5800000000017 +2762,5420,179627.500200003,375177.500700004,22.320000000007 +2763,5442,179627.500700004,375182.500300001,22.320000000007 +2764,5421,179632.500700001,375177.500700004,22.4600000000064 +2765,5418,179627.500300005,375172.500500001,22.3300000000017 +2766,5419,179632.500800006,375172.500700004,22.4600000000064 +2767,5437,179627.500600003,375167.500600006,22.3399999999965 +2768,5448,179622.500700004,375167.500300005,22.570000000007 +2769,5447,179622.500700004,375162.500700001,22.570000000007 +2770,5415,179627.500700004,375162.500400003,22.3699999999953 +2771,5414,179627.500200003,375157.500300001,22.4100000000035 +2772,5413,179632.500300001,375157.5002,22.3600000000006 +2773,5412,179627.500500001,375152.500600003,22.4400000000023 +2774,5445,179622.500700004,375152.500700004,22.6000000000058 +2775,5446,179622.500600003,375157.500500005,22.6000000000058 +2776,5455,179617.204900004,375152.2632,22.5675000000047 +2777,11356,179616.646067187,375157.203394279,22.5853999999963 +2778,11353,179616.445975788,375158.972242404,22.5917999999947 +2779,11354,179616.348380707,375159.835002515,22.5950000000012 +2780,11350,179616.250785623,375160.697762631,22.5981000000029 +2781,11351,179616.13924465,375161.683807209,22.6016999999993 +2782,9689,179616.027703684,375162.669851784,22.6052000000054 +2783,5449,179617.500300001,375167.500600006,22.4700000000012 +2784,11360,179615.719551843,375165.393975895,22.6150999999954 +2785,11359,179615.909370091,375162.826095201,25 +2786,11361,179615.636868969,375165.235074993,25 +2787,179,179612.924300004,375162.485800002,26.5099999999948 +2788,11349,179616.042583983,375161.648450218,25 +2789,11358,179616.097089235,375161.16660985,25 +2790,11352,179616.234539926,375159.951510441,25 +2791,11355,179616.398455828,375158.502451871,25 +2792,11357,179616.558531251,375157.087344073,25 +2793,5460,179617.105500005,375152.252,25 +2794,5462,179614.848499998,375145.238499999,26.4799999999959 +2795,11348,179617.804963134,375146.068566531,25 +2796,11347,179617.910644822,375146.024234787,22.5448999999935 +2797,11346,179617.96508624,375144.653037179,25 +2798,9688,179618.108617779,375144.274103038,22.5384999999951 +2799,11340,179618.089375228,375143.554290693,25 +2800,11342,179618.22079109,375142.392540708,25 +2801,11345,179618.434507068,375140.503236655,25 +2802,5364,179618.899,375136.397,25 +2803,178,179616.772799999,375127.991300005,26.4499999999971 +2804,5353,179619.977000006,375094.922000002,26.3600000000006 +2805,5363,179618.697000001,375110.743999999,26.4199999999983 +2806,11314,179622.73361009,375102.172354866,25 +2807,11304,179622.984549154,375099.942137491,25 +2808,11307,179623.140227739,375098.558546312,25 +2809,11309,179623.276116844,375097.350833803,25 +2810,11311,179623.412808437,375096.135989197,25 +2811,11313,179623.556428835,375094.859564941,25 +2812,5333,179623.739300001,375093.234300002,25 +2813,11302,179623.818456922,375092.530832451,25 +2814,11300,179623.989414651,375091.011531077,25 +2815,11298,179624.207731202,375089.071351882,25 +2816,11295,179624.67632369,375084.906970412,25 +2817,175,179622.155000005,375077.739000004,26.4199999999983 +2818,5346,179623.711000003,375061.1435,26.4700000000012 +2819,5279,179625.267000001,375044.548000008,26.5299999999988 +2820,5286,179626.734000005,375027.493999999,26.3899999999994 +2821,11364,179614.919120934,375171.580151711,25 +2822,5457,179615.312000003,375168.107000005,25 +2823,11363,179615.040998101,375171.392547831,22.6368999999977 +2824,5459,179615.411400001,375168.118099999,22.625 +2825,5451,179617.500300001,375172.5009,22.5399999999936 +2826,5450,179622.500300005,375172.500799999,22.5800000000017 +2827,9690,179614.826852594,375173.285649024,22.6437000000005 +2828,11369,179614.467318766,375176.464020249,22.6552999999985 +2829,11367,179614.3196075,375177.769825712,22.6600000000035 +2830,9691,179614.060871646,375180.057117041,22.6683000000048 +2831,11366,179614.200012289,375177.937256619,25 +2832,11368,179614.254755445,375177.453313023,25 +2833,11371,179613.971073452,375179.961134665,25 +2834,11376,179613.808101673,375181.401846927,25 +2835,11375,179613.913762126,375181.357602928,22.6729999999952 +2836,11373,179613.766652614,375182.658088814,22.6777000000002 +2837,11374,179613.686492011,375182.476907536,25 +2838,11370,179614.372451559,375176.412849195,25 +2839,11362,179614.742176842,375173.144382901,25 +2840,11365,179614.933925349,375172.339098431,22.6402999999991 +2841,9675,179629.867796484,375038.019677021,25 +2842,5263,179630.284499999,375034.377500001,25 +2843,9670,179630.446392022,375032.962490633,25 +2844,6636,179630.608284038,375031.547481261,25 +2845,9661,179630.786019512,375029.993992954,25 +2846,9663,179630.94506086,375028.603899725,25 +2847,9665,179631.114288311,375027.12477532,25 +2848,9667,179631.30814416,375025.430387657,25 +2849,5262,179631.502000004,375023.736000009,25 +2850,9659,179631.643215701,375022.468838435,25 +2851,9658,179631.720065385,375022.682449665,22.4281000000046 +2852,6635,179631.784431398,375021.201676864,25 +2853,9655,179631.921101395,375020.87861146,22.4247999999934 +2854,5238,179637.500700001,375022.500600003,22.6300000000047 +2855,9657,179632.065362111,375019.584201593,22.4223999999958 +2856,9656,179631.974908244,375019.492483418,25 +2857,9654,179632.165385097,375017.783289965,25 +2858,5217,179628.270399999,375013.747000005,26.3899999999994 +2859,5232,179630.916000005,374989.382000003,26.429999999993 +2860,5226,179632.380500004,374975.675500002,26.4400000000023 +2861,5118,179633.844999999,374961.969000001,26.4600000000064 +2862,10684,179637.427508194,374970.416946314,25.0663000000059 +2863,5182,179636.870000001,374975.544000003,25.0800000000017 +2864,5184,179636.918000005,374976.048999999,25.0800000000017 +2865,5183,179636.971000005,374975.555000003,25.0800000000017 +2866,5174,179636.980200004,374975.455400005,22.320000000007 +2867,5175,179637.081099998,374975.466400005,22.320000000007 +2868,10682,179637.52427407,374970.451938372,22.3837000000058 +2869,5096,179642.500200003,374972.500699997,22.3699999999953 +2870,5093,179642.500800002,374967.500700001,22.5399999999936 +2871,5097,179647.500600003,374972.500800002,22.4199999999983 +2872,5224,179642.500700008,374977.500300005,22.2700000000041 +2873,5129,179647.500799999,374977.500200003,22.3999999999942 +2874,5132,179647.500700004,374982.500400007,22.3600000000006 +2875,5130,179652.500600003,374977.500600003,22.4400000000023 +2876,5133,179652.500799999,374982.500700004,22.3699999999953 +2877,5134,179647.500500001,374987.500300001,22.3099999999977 +2878,5131,179642.500600006,374982.500400007,22.5899999999965 +2879,5136,179642.500800002,374987.500800002,22.570000000007 +2880,5230,179647.500200003,374992.500599999,22.25 +2881,5139,179652.5002,374992.500900004,22.3500000000058 +2882,5135,179652.5009,374987.500700001,22.3000000000029 +2883,7743,179657.521706261,374990.723967984,22.7304000000004 +2884,7745,179657.699851532,374989.2062428,22.7087000000029 +2885,7747,179657.854940306,374987.884949554,22.6898999999976 +2886,7749,179658.014157411,374986.528484624,22.6704999999929 +2887,7751,179658.320230052,374983.920870315,22.6333000000013 +2888,7753,179658.53832455,374982.062793929,22.6067999999941 +2889,7755,179658.748851668,374980.269188616,22.5813000000053 +2890,7754,179658.822747476,374980.497151509,25.0800000000017 +2891,7756,179658.922873735,374979.644075755,25.0800000000017 +2892,5168,179658.923800003,374978.778700005,22.5599999999977 +2893,5169,179659.106100004,374977.372499999,22.5099999999948 +2894,5158,179659.203000002,374977.403000001,25.0800000000017 +2895,5157,179659.023000002,374978.791000009,25.0800000000017 +2896,5204,179661.603999998,374979.154000003,26.1399999999994 +2897,5160,179659.460000001,374976.969999999,25 +2898,5159,179659.436000004,374976.956999999,25.0800000000017 +2899,5161,179659.469999995,374976.938999999,25 +2900,5170,179659.382400002,374976.843699999,22.4400000000023 +2901,5098,179659.780999999,374974.717000004,25 +2902,7760,179660.087576143,374971.888180528,25 +2903,7758,179660.225497425,374970.615562234,25 +2904,6468,179660.332776219,374969.625686295,25 +2905,7764,179660.45983462,374968.453301288,25 +2906,7766,179660.577166263,374967.370666392,25 +2907,7765,179660.433948446,374967.763865061,22.3444000000018 +2908,7762,179660.320162103,374968.813747268,22.3512999999948 +2909,7757,179660.190939806,374970.006053641,22.3592000000062 +2910,7759,179660.097902998,374970.864484247,22.3647999999957 +2911,7761,179659.981886543,374971.934943192,22.3717999999935 +2912,7767,179660.546568036,374966.724748243,22.3375999999989 +2913,5112,179659.681700006,374974.704700001,22.3899999999994 +2914,23641,179673.531634212,374989.445650611,26.4878000000026 +2915,23642,179674.955685019,374989.50664755,26.5190000000002 +2916,23643,179676.249440983,374989.562063511,26.5334000000003 +2917,23647,179677.648961082,374989.534870103,26.5623000000051 +2918,23646,179677.589137368,374989.539508335,26.5577000000048 +2919,23620,179675.706153981,374994.923658106,26.4631999999983 +2920,23619,179676.931434624,374995.317470595,26.5151000000042 +2921,23617,179677.458871841,374995.507299982,26.5252999999939 +2922,23621,179674.192000002,374994.436999999,26.4746000000014 +2923,23645,179676.966151156,374989.587809477,26.5399999999936 +2924,23644,179676.925000001,374989.590999994,26.5396000000037 +2925,5122,179668.218000002,374996.139000002,26.5540000000037 +2926,23622,179673.238266371,374994.236162413,26.4857999999949 +2927,23623,179670.298000004,374993.617000002,26.4919999999984 +2928,23624,179666.526222359,374992.82197319,26.4998999999953 +2929,23626,179666.232551094,374992.785073794,26.4888999999966 +2930,23627,179665.563752994,374992.742202118,26.5007999999943 +2931,5191,179662.275000002,374994.840999998,26.5479999999952 +2932,5216,179658.257000003,375003.743000001,26.2799999999988 +2933,5121,179677.438999999,375008.676000003,26.9489999999932 +2934,23252,179657.449137162,375015.195848633,26.273000000001 +2935,5128,179679.489000004,375016.835000005,27.1699999999983 +2936,5123,179679.627000004,375015.504000004,27.1199999999953 +2937,5127,179680.835999999,375009.011,26.5190000000002 +2938,5124,179680,375010.318999998,27.0500000000029 +2939,5126,179679.570000004,375010.050000004,27.1000000000058 +2940,5125,179679.949000001,375010.168000005,27.0599999999977 +2941,5120,179678.805,375008.640999999,26.6659999999974 +2942,5296,179678.984000001,375024.447000001,27.0599999999977 +2943,5294,179678.274999999,375024.919,27.1000000000058 +2944,5282,179657.096999999,375020.188000005,26.2700000000041 +2945,5276,179656.753000002,375022.089000005,26.4400000000023 +2946,5288,179656.756999999,375024.548000004,26.4400000000023 +2947,8938,179654.400384672,375022.428709682,25.1472999999969 +2948,8936,179654.216740567,375024.117878392,25.1634000000049 +2949,8934,179654.107065357,375025.126677111,25.1729999999952 +2950,8939,179653.965659045,375026.42734028,25.1852999999974 +2951,5283,179656.455000002,375028.746000003,26.5099999999948 +2952,5277,179656.706999995,375028.825000003,26.5399999999936 +2953,5297,179676.745000005,375031.219000001,26.6999999999971 +2954,5278,179656.737000007,375029.028000001,26.5500000000029 +2955,5290,179656.673999999,375029.519000005,26.5599999999977 +2956,173,179676.118000004,375034.366000004,26.6450000000041 +2957,5295,179678.829000004,375024.841000002,27.0599999999977 +2958,5293,179673.818999998,375050.587000001,26.4959999999992 +2959,25449,179670.325883225,375094.804833654,26.9140000000043 +2960,5298,179671.940499999,375062.6085,26.4089999999997 +2961,5275,179658.606000002,375048.695000004,26.6440000000002 +2962,5351,179657.568000004,375060.998,26.7780000000057 +2963,5291,179653.4507,375057.786300004,26.5 +2964,22795,179654.399846617,375049.462361936,26.5176999999967 +2965,5289,179655.0623,375043.652700003,26.5299999999988 +2966,5273,179652.407000009,375047.923000004,25.5219999999972 +2967,8960,179651.79889667,375046.358162239,25.375 +2968,8958,179651.740926296,375046.891412999,25.3800999999949 +2969,8961,179651.664481573,375047.594603252,25.3867999999929 +2970,5274,179651.743700005,375047.794799998,25.3968000000023 +2971,22797,179651.505082093,375049.144833438,25.380799999999 +2972,5265,179651.638999999,375047.829000004,25.3889999999956 +2973,5266,179651.539500002,375047.818500005,22.5500000000029 +2974,22798,179651.398516435,375049.203758258,22.5491000000038 +2975,5252,179647.500799999,375047.500400007,22.5399999999936 +2976,7728,179651.257532872,375050.589016523,22.5482000000047 +2977,22799,179651.438123133,375049.802750152,25.3766999999934 +2978,7727,179651.37116418,375050.46066688,25.3724999999977 +2979,22796,179652.200651102,375049.82808448,25.5276000000013 +2980,13085,179651.994302206,375051.733168952,25.5332999999955 +2981,13086,179651.270684976,375051.447942596,25.366399999999 +2982,13089,179651.228845824,375051.859040383,25.3638000000064 +2983,13087,179651.187006667,375052.270138171,25.3611999999994 +2984,6792,179651.103328358,375053.092333753,25.3561000000045 +2985,5272,179651.528999999,375056.029000007,25.5460000000021 +2986,13082,179651.333609913,375058.026029464,25.5378000000055 +2987,13076,179651.071627419,375060.703681838,25.5268000000069 +2988,22800,179652.835506406,375063.181200881,26.4885000000068 +2989,22801,179650.857302368,375062.894240446,25.5179000000062 +2990,13069,179650.642977312,375065.084799044,25.5089000000007 +2991,22805,179650.409087304,375067.475325778,25.4991000000009 +2992,22804,179652.088126607,375069.735300224,26.4746000000014 +2993,5338,179657.451000001,375071.800000004,26.7569999999978 +2994,5337,179661.520000003,375073.104000002,26.5570000000007 +2995,5334,179659.219999999,375077.096999999,26.3619999999937 +2996,176,179670.062000003,375074.629999999,26.3220000000001 +2997,5344,179658.134000003,375081.723000005,26.2339999999967 +2998,5339,179657.320000008,375079.041000005,26.7700000000041 +2999,5340,179658.151000004,375077.612,26.6199999999953 +3000,22807,179651.337690853,375078.538339376,26.5984999999928 +3001,5348,179656.332000002,375083.081,26.8500000000058 +3002,22810,179650.879436441,375084.588265214,26.7160000000003 +3003,5342,179650.513000004,375089.426000003,26.8099999999977 +3004,5352,179655.480000004,375094.061000004,27.0500000000029 +3005,12740,179657.187500004,375094.237500004,26.2676999999967 +3006,25448,179669.538000003,375097.881999999,26.869200000001 +3007,25418,179656.143000003,375167.756000005,26.2866000000067 +3008,25413,179655.018000003,375178.003000002,26.2739000000001 +3009,5429,179649.770500004,375170.949499998,26.0464999999967 +3010,25417,179649.366625,375175.268374998,26.0725999999995 +3011,5434,179647.554000001,375174.681500003,27.0599999999977 +3012,25412,179647.056276888,375179.641188238,27.0476000000053 +3013,22845,179641.636493955,375177.370667681,27.026199999993 +3014,22847,179640.903599482,375184.890070725,27.0666000000056 +3015,21833,179646.558553763,375184.600876477,27.0351999999984 +3016,5511,179640.659499999,375187.394499999,27.0800000000017 +3017,5430,179638.270000003,375185.179500002,25.6245000000054 +3018,12980,179637.944089688,375188.198984973,25.6169999999984 +3019,12976,179637.540433824,375191.938764803,25.607600000003 +3020,22849,179639.96418694,375194.528322637,27.1141000000061 +3021,5508,179645.951000005,375190.655000005,27.0200000000041 +3022,25408,179645.49737082,375194.678192947,27.0366000000067 +3023,21832,179645.043741643,375198.701385893,27.0531999999948 +3024,25407,179647.372396201,375195.299902137,26.1223000000027 +3025,5504,179646.625500005,375202.052000009,26.0950000000012 +3026,25406,179652.813000005,375198.027000003,26.2494000000006 +3027,25409,179653.908000004,375188.106000002,26.2614999999932 +3028,25395,179650.415000003,375218.573000003,26.2271000000037 +3029,25392,179649.212000005,375229.448000003,26.2139000000025 +3030,25393,179644.473000005,375222.062249999,26.0858000000007 +3031,5538,179643.850000005,375228.245499998,26.132500000007 +3032,25391,179643.226999998,375234.428750001,26.1791999999987 +3033,25390,179647.921,375241.105000008,26.1996999999974 +3034,5528,179642.603999998,375240.612,26.2259999999951 +3035,25388,179641.956000004,375247.1785,26.2256999999954 +3036,21827,179640.453156948,375241.198667429,27.2761000000028 +3037,25389,179639.932578478,375246.234333716,27.3080999999947 +3038,26,179639.412,375251.27,27.3399999999965 +3039,5529,179641.307999998,375253.745000005,26.2255000000005 +3040,25387,179646.741,375251.77,26.1867999999959 +3041,25386,179645.995000001,375258.911999997,26.1771000000008 +3042,25384,179640.66,375260.311499998,26.2253000000055 +3043,25385,179645.3994,375264.636100002,26.1693999999989 +3044,5535,179640.012000002,375266.877999999,26.2250000000058 +3045,25383,179645.076000001,375267.744000003,26.1650999999983 +3046,25381,179639.327500004,375273.282250002,26.229800000001 +3047,25380,179644.083999999,375277.628000002,26.1508999999933 +3048,5685,179638.642999999,375279.686500002,26.2345000000059 +3049,25379,179637.958499998,375286.090750001,26.2393000000011 +3050,25378,179642.794000003,375289.587000005,26.1356999999989 +3051,25377,179641.582000002,375300.750999998,26.1215999999986 +3052,183,179637.274,375292.495000001,26.2440000000061 +3053,25372,179636.202500001,375301.197499998,26.2664999999979 +3054,25373,179634.185220119,375299.074647833,27.4036000000051 +3055,21823,179634.804440238,375293.411295656,27.3972999999969 +3056,5681,179629.698000003,375295.269000001,27.25 +3057,25374,179629.191958703,375299.397603881,27.2535000000062 +3058,5658,179626.448000003,375297.438000001,24.8579999999929 +3059,7446,179626.347524002,375298.468135033,24.8681999999972 +3060,7443,179626.247048002,375299.498270065,24.8785000000062 +3061,22883,179626.146572001,375300.5284051,24.8886999999959 +3062,7441,179626.046096001,375301.558540132,24.8990000000049 +3063,22881,179628.685917407,375303.52620776,27.2571000000025 +3064,5688,179633.566,375304.738000002,27.4100000000035 +3065,5682,179628.267000005,375306.944000002,27.2599999999948 +3066,21822,179632.936108403,375310.249320172,27.3821999999927 +3067,5686,179627.552000001,375309.375999998,27.3399999999965 +3068,25368,179627.089736328,375313.600395866,27.3261999999959 +3069,5675,179624.500999998,375311.098000001,25.6380000000063 +3070,15070,179624.205971271,375313.751538936,25.6276999999973 +3071,22886,179623.885033783,375316.638105635,25.6165000000037 +3072,7402,179623.191453334,375315.045459937,25 +3073,15071,179623.085209172,375316.003089946,25 +3074,7406,179622.978965003,375316.960719958,25 +3075,15067,179622.872720838,375317.918349963,25 +3076,15066,179623.564096294,375319.524672333,25.6052000000054 +3077,22885,179626.627472643,375317.824791741,27.3123000000051 +3078,5692,179625.880500004,375324.651000001,27.2899999999936 +3079,5691,179631.523800001,375322.6065,27.320000000007 +3080,25367,179632.229954202,375316.427910089,27.3510999999999 +3081,25366,179634.059500005,375318.602500003,26.3114999999962 +3082,5670,179635.131000005,375309.899999999,26.2890000000043 +3083,25371,179640.456,375311.219999999,26.1310999999987 +3084,25369,179639.326000005,375321.840000004,26.1750000000029 +3085,25362,179637.129000001,375341.254999999,26.2207000000053 +3086,25363,179632.126249999,375334.76675,26.2743000000046 +3087,25365,179638.096999999,375332.443000004,26.1922999999952 +3088,5689,179631.264500007,375342.228500005,26.2145000000019 +3089,25361,179636.771085039,375344.473362751,26.2299999999959 +3090,25358,179630.402750004,375349.690250006,26.1548000000039 +3091,25360,179636.132000003,375350.219999999,26.1897999999928 +3092,25359,179635.033496421,375360.237655811,26.1165000000037 +3093,5795,179629.541000001,375357.151999999,26.0950000000012 +3094,25357,179634.934,375361.145,26.1156999999948 +3095,25342,179631.098400004,375395.371400002,26.0800000000017 +3096,25336,179630.271000005,375403.096999999,26.0755999999965 +3097,5800,179624.739000004,375399.239,25.9425000000047 +3098,25339,179623.947000004,375405.706500005,25.9112000000023 +3099,21811,179622.706073951,375399.760114543,26.9345999999932 +3100,25340,179622.009536978,375405.854557276,26.9073000000062 +3101,5841,179623.155000001,375412.174000002,25.8800000000047 +3102,25335,179629.338,375411.542000003,26.0679999999993 +3103,25334,179629.188300002,375412.910100006,26.0669999999955 +3104,5853,179622.788000003,375417.539000001,25.7880000000005 +3105,21810,179621.002744701,375414.933133844,26.8366999999998 +3106,5858,179621.313000001,375411.949000005,26.8800000000047 +3107,5857,179615.702300005,375411.790700007,26.8399999999965 +3108,22913,179615.961076546,375409.60457544,26.8521999999939 +3109,15005,179613.510526706,375410.485970944,25.5553000000073 +3110,15002,179613.232406728,375413.063065462,25.5522000000055 +3111,14995,179612.819564048,375416.888517432,25.5476999999955 +3112,22917,179614.883784536,375418.70574313,26.8015000000014 +3113,22919,179612.56328202,375419.263258722,25.5448000000033 +3114,22920,179611.870485172,375418.470966641,25 +3115,7303,179611.755116235,375419.514016505,25 +3116,5848,179612.307000007,375421.638,25.5420000000013 +3117,7301,179611.524378363,375421.600116249,25 +3118,6733,179611.453190368,375422.243726499,25 +3119,22925,179611.395741511,375422.763121232,25 +3120,7293,179611.277326886,375422.924132414,22.286500000002 +3121,7295,179611.338292658,375423.282515973,25 +3122,7299,179611.162612829,375423.9612615,22.2930000000051 +3123,22924,179611.292034443,375423.700736232,25 +3124,14991,179611.245776232,375424.118956484,25 +3125,7294,179611.153259799,375424.955397002,25 +3126,22923,179612.08695079,375423.770893387,25.5531999999948 +3127,14990,179611.866901595,375425.903786767,25.5642999999982 +3128,22922,179614.122865021,375425.13419985,26.7657000000036 +3129,5849,179620.237500001,375422.293500002,26.7299999999959 +3130,22918,179620.620122351,375418.61331692,26.7834000000003 +3131,5842,179622.293000005,375422.524000004,25.9260000000068 +3132,25333,179628.245000001,375421.533000007,26.0601000000024 +3133,5843,179621.93,375423.916000001,25.9759999999951 +3134,5844,179621.184999999,375426.600000001,26.153999999995 +3135,25331,179627.092,375432.094000001,26.051999999996 +3136,25329,179624.712500002,375437.504500005,25.9434999999939 +3137,25328,179625.921000004,375442.989000004,26.045299999998 +3138,25332,179624.919750005,375435.127250001,25.9722000000038 +3139,24,179625.127,375432.750000004,26.0010000000038 +3140,5799,179624.192000005,375434.324999999,26.1900000000023 +3141,5850,179623.441000003,375437.162000004,26.4799999999959 +3142,5846,179619.162000004,375432.638000008,26.5869999999995 +3143,22926,179612.775246616,375436.518969409,26.6986000000034 +3144,5906,179622.434,375442.591000002,26.6600000000035 +3145,189,179624.298000004,375442.259,25.8859999999986 +3146,25330,179623.741785385,375447.100828722,25.8752999999997 +3147,22787,179621.418829065,375451.062897362,26.6462999999931 +3148,25325,179623.185570769,375451.942657448,25.8646000000008 +3149,25326,179622.780035384,375455.472828723,25.8567999999941 +3150,22939,179620.811414529,375456.13194868,26.6382000000012 +3151,5904,179622.374499999,375459.003000002,25.849000000002 +3152,25324,179624.437800005,375456.706500005,26.0360999999975 +3153,25327,179624.737,375453.978,26.0383000000002 +3154,25316,179622.401999999,375476.085999999,26.0286000000051 +3155,25317,179621.107088219,375470.03577511,25.8246000000072 +3156,25319,179623.061700005,375469.586800002,26.028999999995 +3157,5905,179620.451000005,375475.747000005,25.8120000000054 +3158,25318,179619.931875002,375480.43150001,25.8315000000002 +3159,25315,179621.137000002,375487.653999999,26.0194999999949 +3160,25311,179619.412749995,375485.116000004,25.8509999999951 +3161,25314,179619.153187502,375487.458250005,25.8607000000047 +3162,25313,179617.756656948,375485.507866137,26.6929999999993 +3163,22785,179617.128313888,375491.104732268,26.6959999999963 +3164,22949,179606.997907013,375489.054650739,26.706600000005 +3165,5909,179607.961800002,375480.104200006,26.6900000000023 +3166,14951,179605.363655515,375485.412864547,25.668399999995 +3167,22950,179604.98982776,375488.801932275,25.6601999999984 +3168,6725,179604.186844584,375487.736890957,25 +3169,22952,179604.107042741,375488.45173113,25 +3170,7223,179604.05149167,375488.047980718,22.5363999999972 +3171,7225,179603.846806005,375489.881502718,22.5344999999943 +3172,5921,179597.500400003,375487.500500005,22.3800000000047 +3173,7226,179604.291567422,375485.897443369,22.5387000000046 +3174,5915,179602.500399999,375482.500300001,22.320000000007 +3175,5917,179597.500999998,375482.500599999,22.3500000000058 +3176,5918,179592.500900004,375482.500700001,22.3500000000058 +3177,5888,179597.500200007,375477.500300005,22.3300000000017 +3178,5889,179592.500900004,375477.500600003,22.3699999999953 +3179,5916,179587.500500008,375482.500500005,22.4700000000012 +3180,5951,179592.5002,375487.500300001,22.3399999999965 +3181,5919,179587.500400007,375487.500300001,22.4799999999959 +3182,5923,179587.500700004,375492.500200003,22.4700000000012 +3183,5920,179582.500700004,375487.500400003,22.4799999999959 +3184,5927,179582.500100002,375497.500500001,22.429999999993 +3185,5928,179587.5009,375497.5009,22.4700000000012 +3186,5924,179592.500800002,375492.500399999,22.320000000007 +3187,5958,179592.500800002,375497.500799999,22.2799999999988 +3188,5925,179597.500200007,375492.500900004,22.3800000000047 +3189,5926,179597.500400003,375497.500300005,22.3399999999965 +3190,7218,179603.279056266,375494.967260066,22.528999999995 +3191,7220,179603.152954135,375496.09685079,22.5277999999962 +3192,14950,179603.33965902,375495.325716756,25 +3193,7217,179603.411171794,375494.685127456,25 +3194,7216,179603.412870515,375493.768586118,22.5302999999985 +3195,14949,179603.48743128,375494.002018671,25 +3196,6724,179603.563690756,375493.318909883,25 +3197,7221,179603.58840571,375492.19618668,22.5320000000065 +3198,7222,179603.698244568,375492.113618493,25 +3199,7224,179603.942544572,375489.925254725,25 +3200,22951,179604.802913882,375490.496466141,25.6560999999929 +3201,5949,179604.616000008,375492.191,25.6520000000019 +3202,5960,179606.218200002,375496.294799998,26.7200000000012 +3203,14948,179604.342265025,375494.79904623,25.6453000000038 +3204,14944,179604.079899836,375497.298765305,25.6389000000054 +3205,14937,179603.665730312,375501.244820211,25.6288000000059 +3206,22953,179605.298934113,375504.830855414,26.7357999999949 +3207,25305,179615.640052959,375504.361180432,26.7029999999941 +3208,5955,179616.280499998,375498.656500004,26.6999999999971 +3209,5953,179618.374500003,375494.485000003,25.8899999999994 +3210,25312,179618.893624999,375489.800499998,25.8705000000045 +3211,25310,179621.057899997,375488.353999998,26.0187000000005 +3212,25308,179619.859000001,375498.962000001,26.0066999999981 +3213,25309,179617.855374999,375499.169500005,25.9094999999943 +3214,25303,179617.336250003,375503.854000002,25.9290000000037 +3215,25306,179618.8237,375508.371700004,25.9986999999965 +3216,25307,179617.045162864,375506.480723202,25.9398999999976 +3217,25304,179616.754075736,375509.107446399,25.9508999999962 +3218,25302,179618.616,375510.259000003,25.9970999999932 +3219,5957,179616.298,375513.223000001,25.9679999999935 +3220,25301,179615.758500002,375517.623,25.9603000000061 +3221,25296,179615.219000001,375522.023000002,25.9524999999994 +3222,5950,179614.176000003,375517.401999999,26.7100000000064 +3223,25298,179613.526341412,375522.773385588,26.6950999999972 +3224,22778,179612.876682814,375528.144771177,26.6802000000025 +3225,22957,179603.538249332,375521.180100083,26.7660999999935 +3226,6086,179602.731000006,375528.676000003,26.7799999999988 +3227,14927,179601.210844178,375524.059288673,25.5920999999944 +3228,14924,179600.752540719,375527.910299841,25.6165999999939 +3229,14920,179600.4160087,375530.738095585,25.6345000000001 +3230,7184,179599.633968256,375528.520246603,25 +3231,14921,179599.468984127,375529.998123303,25 +3232,6055,179599.304000001,375531.476,25 +3233,14923,179599.238128923,375532.09767485,25 +3234,7180,179599.142837238,375532.04810958,22.4814000000042 +3235,6719,179599.172257844,375532.719349694,25 +3236,7177,179598.98880038,375533.501891069,22.4597999999969 +3237,6031,179592.500400003,375532.5002,22.3300000000017 +3238,7179,179598.925697204,375534.097451348,22.4510000000009 +3239,7178,179599.007890642,375534.270606417,25 +3240,7176,179598.843523443,375535.821863141,25 +3241,6079,179599.204599999,375531.4652,22.4900000000052 +3242,14922,179599.365172841,375530.026829466,22.4915000000037 +3243,6028,179592.500300001,375527.500500005,22.3399999999965 +3244,6029,179587.500300001,375527.500800002,22.3300000000017 +3245,6025,179587.500500008,375522.500500001,22.3699999999953 +3246,6027,179582.500399999,375527.500100005,22.429999999993 +3247,6024,179582.500399999,375522.500200003,22.4499999999971 +3248,11727,179576.061914679,375525.034039035,22.4630999999936 +3249,11730,179576.283953574,375523.019407809,22.4790999999968 +3250,5963,179576.574300002,375520.385000002,22.5 +3251,11725,179576.666832287,375519.545470878,22.5066999999981 +3252,5939,179582.500600003,375517.500300005,22.4499999999971 +3253,11723,179576.759364571,375518.705941748,22.513300000006 +3254,11721,179576.944429141,375517.026883494,22.5265999999974 +3255,11717,179577.247821461,375514.274258416,22.5485000000044 +3256,5936,179582.500799999,375512.500599999,22.4100000000035 +3257,11718,179577.454299293,375512.400921408,22.5632999999943 +3258,9729,179577.660777129,375510.527584396,22.5782000000036 +3259,11716,179577.534344632,375510.761979502,25 +3260,11719,179577.351641063,375512.419698417,25 +3261,11709,179577.633100126,375509.865944162,25 +3262,11715,179577.683606822,375509.407683276,25 +3263,11712,179577.781544875,375508.519064788,25 +3264,11710,179577.83490755,375508.947729725,22.5907000000007 +3265,11713,179578.00485355,375507.405839603,22.602899999998 +3266,5935,179582.500799999,375507.500599999,22.3899999999994 +3267,5930,179582.500300005,375502.500600003,22.3999999999942 +3268,5933,179587.500300001,375507.500100005,22.429999999993 +3269,5931,179587.501000002,375502.500600003,22.4600000000064 +3270,5934,179592.500400003,375507.500300001,22.3000000000029 +3271,5929,179592.500300001,375502.5002,22.2899999999936 +3272,5932,179597.500200007,375502.5009,22.320000000007 +3273,5952,179597.500100002,375507.500400003,22.320000000007 +3274,22782,179602.078514911,375505.721403256,22.5175000000017 +3275,7213,179602.169816837,375504.903543923,22.5184000000008 +3276,14939,179602.327286169,375503.492973786,22.5198999999993 +3277,22956,179602.406020839,375502.787688721,22.5206999999937 +3278,7215,179602.484755505,375502.082403656,22.5213999999978 +3279,14943,179602.578216631,375501.245202743,22.5222999999969 +3280,14941,179602.671677753,375500.408001829,22.523199999996 +3281,191,179602.858600006,375498.733600002,22.5249999999942 +3282,14946,179603.005777065,375497.415225394,22.5264000000025 +3283,14947,179603.061656594,375497.815976329,25 +3284,14945,179603.134454511,375497.163875144,25 +3285,7219,179603.26372692,375496.005892977,25 +3286,5943,179602.958000001,375498.7445,25 +3287,14940,179602.780219808,375500.337009635,25 +3288,14942,179602.69132971,375501.133264452,25 +3289,7214,179602.602439612,375501.92951927,25 +3290,22954,179603.473547738,375503.075865157,25.6241000000009 +3291,22955,179602.513549514,375502.725774087,25 +3292,14938,179602.424659424,375503.522028904,25 +3293,22780,179603.281365156,375504.906910107,25.6193999999959 +3294,22784,179602.323615596,375504.427153692,25 +3295,6723,179602.246879224,375505.114538532,25 +3296,22783,179602.197591301,375505.556047212,25 +3297,22781,179602.148303371,375505.997555893,25 +3298,7211,179602.049727518,375506.880573254,25 +3299,5948,179602.897000004,375508.568999998,25.6100000000006 +3300,5956,179604.474600006,375512.485400002,26.75 +3301,22779,179614.999605928,375510.06586086,26.7060999999958 +3302,14930,179602.19379117,375515.140469011,25.5935000000027 +3303,14932,179602.506266501,375512.220394824,25.6008000000002 +3304,14935,179602.79931663,375509.481848709,25.6076999999932 +3305,7201,179601.600896258,375510.901089199,25 +3306,14934,179601.532975841,375511.509502977,25 +3307,7204,179601.465055425,375512.117916752,25 +3308,14933,179601.381541569,375512.866012562,25 +3309,7206,179601.298027717,375513.614108376,25 +3310,7207,179601.209362324,375513.50705047,22.5092000000004 +3311,5945,179601.031599998,375515.099400003,22.507500000007 +3312,5942,179601.131000001,375515.110300001,25 +3313,14931,179601.051967587,375515.818247903,25 +3314,7199,179600.975831501,375515.598960023,22.5069999999978 +3315,7198,179600.97293517,375516.526195794,25 +3316,7197,179600.831242487,375516.894151486,22.5056000000041 +3317,22963,179600.893902753,375517.234143697,25 +3318,22964,179600.758328035,375517.547300532,22.5048999999999 +3319,7196,179600.814870339,375517.942091595,25 +3320,7195,179600.685413592,375518.200449575,22.5041999999958 +3321,22960,179600.740941748,375518.604321003,25 +3322,22961,179600.563133419,375519.295804176,22.502999999997 +3323,22962,179600.648828596,375519.429442074,25 +3324,6721,179600.556715444,375520.254563153,25 +3325,22959,179601.66894779,375520.045117255,25.5810999999958 +3326,22958,179601.843895584,375518.410234507,25.5852000000014 +3327,5947,179601.493999999,375521.68,25.5770000000048 +3328,7194,179600.496048786,375520.797996279,25 +3329,7192,179600.435382131,375521.341429409,25 +3330,7190,179600.314048816,375522.428295661,25 +3331,14928,179600.242750809,375523.066961113,25 +3332,7187,179600.171452802,375523.705626559,25 +3333,14929,179600.112053234,375524.23770947,25 +3334,7186,179599.999706864,375524.342835519,22.4976000000024 +3335,7188,179600.05265367,375524.769792385,25 +3336,6720,179599.933854535,375525.833958212,25 +3337,7181,179599.782113962,375526.291977234,22.4955000000045 +3338,6026,179592.500599999,375522.500600003,22.3399999999965 +3339,7189,179600.18192026,375522.710614357,22.4994000000006 +3340,7193,179600.376363218,375520.968843963,22.5011999999988 +3341,5941,179597.500599999,375517.500600003,22.3600000000006 +3342,7191,179600.440853242,375520.391158778,22.5017999999982 +3343,5954,179592.500400003,375517.500700004,22.3099999999977 +3344,5940,179587.500300001,375517.500500001,22.3800000000047 +3345,5937,179587.500799999,375512.500800002,22.4100000000035 +3346,5938,179592.500999998,375512.500800002,22.3300000000017 +3347,5959,179597.500599999,375512.500500005,22.3500000000058 +3348,7200,179601.590321228,375510.094517797,22.5129000000015 +3349,7208,179601.733821969,375508.809074696,22.5142000000051 +3350,7212,179601.950172525,375506.871061649,22.516300000003 +3351,7210,179601.987212993,375506.539262589,22.5166999999929 +3352,7209,179601.852575812,375508.646607984,25 +3353,14936,179601.80024926,375509.115335852,25 +3354,6722,179601.747922715,375509.584063727,25 +3355,7202,179601.674409483,375510.242576461,25 +3356,7203,179601.460847162,375511.254313458,22.511599999998 +3357,7205,179601.343410771,375512.306278635,22.510500000004 +3358,7183,179599.652048837,375527.457067437,22.4943000000058 +3359,7185,179599.525745675,375528.588458937,22.493100000007 +3360,14925,179599.709518336,375527.84349243,25 +3361,7182,179599.784156285,375527.174908832,25 +3362,14926,179599.859005403,375526.50443352,25 +3363,11711,179577.747842338,375509.737657055,22.584400000007 +3364,11720,179577.12435203,375514.481953308,25 +3365,11722,179576.795590617,375517.46489463,25 +3366,11724,179576.555147655,375519.646498658,25 +3367,5967,179576.475000001,375520.373700004,25 +3368,11731,179576.191672679,375522.944389809,25 +3369,11729,179576.009511739,375524.597175285,25 +3370,11726,179575.91436917,375525.460424267,25 +3371,11728,179575.92260664,375526.298026316,22.4530999999988 +3372,11732,179575.800495487,375526.493624672,25 +3373,9730,179575.783298589,375527.562013607,22.4431000000041 +3374,11733,179575.654374387,375527.819412906,25 +3375,11734,179575.486902982,375530.251307569,22.4217999999964 +3376,11735,179575.374417283,375530.359523959,25 +3377,11736,179575.262235351,375532.289790269,22.4055999999982 +3378,11737,179575.063437369,375533.18111163,25 +3379,11738,179575.141767498,375533.382834338,22.396900000007 +3380,9731,179575.021299645,375534.475878399,22.388300000006 +3381,5968,179577.500900004,375532.500400003,22.3000000000029 +3382,11740,179574.894299824,375535.628189199,22.3791000000056 +3383,11739,179574.813910179,375535.445125584,25 +3384,5990,179574.668000005,375536.769000001,25 +3385,5975,179574.767299999,375536.780499998,22.3699999999953 +3386,11745,179574.545416087,375538.624731701,22.3196000000025 +3387,11746,179574.44363229,375538.633865684,25 +3388,11744,179574.272642758,375540.055070624,25 +3389,5961,179580.1884,375487.594000004,22.7599999999948 +3390,11688,179580.641234513,375483.515819464,22.7050000000017 +3391,11690,179580.867651772,375481.476729196,22.6774000000005 +3392,9726,179581.094069023,375479.43763892,22.649900000004 +3393,5890,179587.500300001,375477.500799999,22.4499999999971 +3394,11681,179581.222322229,375478.282603908,22.6343000000052 +3395,11680,179581.350575432,375477.127568897,22.6187000000064 +3396,11684,179581.468884468,375476.062089991,22.6043999999965 +3397,11683,179581.587193511,375474.996611092,22.5899999999965 +3398,5885,179587.500799999,375472.500500001,22.4199999999983 +3399,5897,179582.1219,375470.1811,22.5249999999942 +3400,5881,179587.500500008,375467.500500005,22.3999999999942 +3401,9725,179582.406078849,375467.621800136,22.4904999999999 +3402,11673,179582.360944062,375467.121990453,25 +3403,11674,179582.57341183,375466.114808053,22.4701000000059 +3404,11675,179582.509848893,375465.780961379,25 +3405,11677,179582.690190557,375465.063104972,22.4559000000008 +3406,11678,179582.713664573,375463.94540799,25 +3407,11676,179582.806969278,375464.011401892,22.4416999999958 +3408,11671,179583.040526725,375461.907995719,22.4133000000002 +3409,11672,179582.94926168,375461.823632732,25 +3410,11670,179583.129126504,375460.203779556,25 +3411,11662,179583.23191167,375459.278101683,25 +3412,9724,179583.258615393,375459.943900537,22.3867999999929 +3413,11663,179583.417083967,375458.516740829,22.3675999999978 +3414,5875,179587.5009,375457.500500001,22.3300000000017 +3415,11665,179583.570622224,375457.133983336,22.3488999999972 +3416,11669,179583.691816665,375456.042512503,22.3341999999975 +3417,11667,179583.81301111,375454.951041672,22.3194999999978 +3418,5912,179587.500600003,375452.500700004,22.2700000000041 +3419,5896,179584.055399999,375452.768100001,22.2899999999936 +3420,5898,179583.956000004,375452.756999999,25 +3421,11668,179583.642113276,375455.583847459,25 +3422,5914,179583.059300002,375441.765299998,26.5299999999988 +3423,11660,179584.378579773,375449.009647068,25 +3424,9723,179584.33774678,375450.2643052,22.2878000000055 +3425,11661,179584.518799242,375448.658768218,22.286300000007 +3426,5868,179587.500700004,375447.500400003,22.3699999999953 +3427,11659,179584.806342505,375446.108892072,22.2841000000044 +3428,11655,179584.951933421,375444.81782094,22.2829000000056 +3429,5866,179587.5002,375442.500700001,22.3800000000047 +3430,11656,179585.068360277,375443.785370864,22.2820000000065 +3431,9722,179585.184787128,375442.752920784,22.2810999999929 +3432,11654,179585.040861152,375443.136668239,25 +3433,11657,179584.921581969,375444.194412235,25 +3434,11649,179585.139204379,375442.264580201,25 +3435,11651,179585.23049527,375441.455030795,25 +3436,11653,179585.334401958,375440.533607088,25 +3437,5840,179585.638300009,375437.838700004,25 +3438,11647,179585.863940265,375435.837872773,25 +3439,5854,179585.737700004,375437.849800006,22.2767000000022 +3440,11648,179585.979836632,375435.702694025,22.2747999999992 +3441,9721,179586.221973263,375433.555588055,22.2728000000061 +3442,11634,179586.241750676,375432.487702332,25 +3443,11636,179586.340697519,375432.502820566,22.271900000007 +3444,5827,179592.500500005,375432.500500001,22.4199999999983 +3445,11635,179586.45942178,375431.450053081,22.2709999999934 +3446,11639,179586.559729673,375430.560589667,22.270199999999 +3447,11638,179586.660037562,375429.671126265,22.2694000000047 +3448,5826,179592.500700001,375427.500600006,22.3999999999942 +3449,11641,179586.84039627,375428.07182572,22.2679000000062 +3450,11643,179587.022620868,375426.455979593,22.2664999999979 +3451,11645,179587.221360438,375424.693689801,22.2648999999947 +3452,5820,179592.500400003,375422.500599999,22.429999999993 +3453,5837,179587.420100003,375422.931400001,22.263300000006 +3454,11646,179587.130148202,375424.609986149,25 +3455,5839,179587.320700005,375422.920300003,25 +3456,5861,179585.098999999,375423.013999999,26.5200000000041 +3457,11631,179587.471497841,375421.583054908,25 +3458,11633,179587.528821513,375421.074720059,25 +3459,11629,179587.881531868,375417.946955174,25 +3460,11620,179588.286128946,375414.359069165,25 +3461,11637,179586.454907421,375430.597570632,25 +3462,11640,179586.634733815,375429.002990201,25 +3463,11642,179586.795973603,375427.573223427,25 +3464,11644,179586.957887642,375426.137477782,25 +3465,11622,179588.430605359,375413.077881243,25 +3466,11624,179588.560726892,375411.923989475,25 +3467,11626,179588.70028951,375410.686376132,25 +3468,11628,179588.837952577,375409.465607557,25 +3469,5838,179589.003000002,375408.002,25 +3470,11619,179589.106791932,375407.059754219,25 +3471,11617,179589.235996176,375405.8868099,25 +3472,11618,179589.22867123,375406.866773605,22.2548999999999 +3473,9719,179589.354942463,375405.720447201,22.2597999999998 +3474,11616,179589.486854821,375404.522909012,22.2648999999947 +3475,11615,179589.420044802,375404.215976395,25 +3476,11614,179589.618767183,375403.325370826,22.2700000000041 +3477,11613,179589.623646781,375402.367633194,25 +3478,11611,179590.002738357,375398.926157258,25 +3479,11612,179589.755562462,375402.083504096,22.2752999999939 +3480,9718,179590.112569842,375398.842488818,22.2891999999993 +3481,5778,179590.464299999,375394.736000001,25 +3482,11610,179590.724146053,375392.377222296,25 +3483,11609,179590.816412494,375392.452977926,22.3165000000008 +3484,5774,179590.563700002,375394.747000001,22.306700000001 +3485,5768,179597.500700001,375392.500399999,22.4700000000012 +3486,9717,179591.069124978,375390.158955861,22.3263000000006 +3487,11608,179590.950842947,375390.319359325,25 +3488,11598,179591.064575784,375389.286938533,25 +3489,11607,179591.113951184,375388.838728473,25 +3490,11600,179591.223311868,375387.845996272,25 +3491,11602,179591.371290874,375386.502702579,25 +3492,11606,179591.394805152,375386.289249424,25 +3493,11605,179591.580347691,375384.604969028,25 +3494,5777,179591.925700005,375381.469999999,25 +3495,11603,179591.708721228,375384.352958959,22.3509999999951 +3496,5790,179592.025100004,375381.481000002,22.3632999999973 +3497,11596,179592.420197573,375377.894191056,22.3785999999964 +3498,11597,179592.324851282,375377.846417669,25 +3499,11595,179592.702018332,375374.422412921,25 +3500,11590,179592.885013763,375372.761140492,25 +3501,11592,179592.963582821,375372.047873478,25 +3502,11591,179593.018399302,375372.463544488,22.4018000000069 +3503,11593,179593.182717357,375370.971818019,22.4082000000053 +3504,5753,179597.500700001,375372.500300001,22.3999999999942 +3505,5750,179597.500599999,375367.500600003,22.4199999999983 +3506,187,179602.500300005,375372.500400007,22.4700000000012 +3507,5758,179597.500800002,375377.500800002,22.429999999993 +3508,5756,179602.500600003,375377.500500005,22.4400000000023 +3509,5761,179602.500200003,375382.500800002,22.3999999999942 +3510,5762,179607.500200003,375382.500900004,22.3099999999977 +3511,5763,179607.500100009,375387.500600003,22.3300000000017 +3512,5764,179602.500200003,375387.500700004,22.3699999999953 +3513,5767,179602.500399999,375392.500200003,22.3399999999965 +3514,5769,179607.5009,375392.5009,22.3600000000006 +3515,5766,179612.500999998,375387.5009,22.3800000000047 +3516,7332,179614.729382619,375391.394550186,22.2516999999934 +3517,7330,179614.882727522,375389.984994043,22.254700000005 +3518,15018,179614.970509972,375389.178092245,22.2563999999984 +3519,7333,179615.058292411,375388.371190451,22.2581999999966 +3520,7327,179615.098947875,375387.997482751,22.2590000000055 +3521,7334,179615.199960243,375387.068970677,22.2608999999939 +3522,7336,179615.371228106,375385.494665597,22.2642999999953 +3523,5760,179612.500999998,375382.500599999,22.4100000000035 +3524,5786,179607.500799999,375377.500300001,22.2899999999936 +3525,5757,179612.500700001,375377.500599999,22.4199999999983 +3526,5755,179612.500599999,375372.500600003,22.429999999993 +3527,5754,179607.500399999,375372.500300001,22.3000000000029 +3528,5784,179607.500399999,375367.5009,22.3099999999977 +3529,5752,179612.500999998,375367.501000002,22.429999999993 +3530,5748,179607.501000002,375362.500800002,22.3099999999977 +3531,5747,179602.500600003,375362.500600006,22.5 +3532,5744,179607.501000002,375357.500500005,22.320000000007 +3533,5742,179602.500300005,375357.5002,22.5200000000041 +3534,5746,179597.500500005,375362.500200003,22.3999999999942 +3535,5751,179602.500600003,375367.500600003,22.4900000000052 +3536,11589,179593.864134204,375364.768358666,22.4272000000055 +3537,9715,179593.736065265,375365.936891686,22.4247999999934 +3538,5773,179593.486400001,375368.214899998,22.4199999999983 +3539,5776,179593.387000002,375368.204,25 +3540,11586,179593.64549531,375365.845424127,25 +3541,11588,179593.819958959,375364.253574193,25 +3542,11587,179593.992203135,375363.59982565,22.4296999999933 +3543,11584,179594.172681864,375361.035242137,25 +3544,11585,179594.248341013,375361.262759626,22.4345999999932 +3545,9714,179594.485061053,375359.102866739,22.4391000000032 +3546,11577,179594.441920072,375358.578645378,25 +3547,11578,179594.61363326,375357.929741755,22.4416000000056 +3548,11579,179594.555942804,375357.538273457,25 +3549,11580,179594.735691261,375356.816053998,22.4438999999984 +3550,5743,179597.500800002,375357.500400003,22.4100000000035 +3551,11582,179594.89454563,375355.366627,22.4470000000001 +3552,5723,179597.500500005,375352.500599999,22.429999999993 +3553,5783,179595.053399999,375353.917200003,22.4499999999971 +3554,11583,179594.795876011,375355.349062882,25 +3555,11581,179594.66294419,375356.561966032,25 +3556,5775,179594.954,375353.906300005,25 +3557,11575,179595.043303732,375353.091476109,25 +3558,11573,179595.245677523,375351.244979937,25 +3559,11561,179595.459103439,375349.297642093,25 +3560,11564,179595.633924499,375347.702542212,25 +3561,11562,179595.639880855,375348.566002004,22.4612000000052 +3562,11566,179595.758485917,375347.483819716,22.463499999998 +3563,11565,179595.877090979,375346.401637431,22.4658000000054 +3564,11567,179595.846570708,375345.762318593,25 +3565,11569,179595.982585341,375345.439080521,22.4677999999985 +3566,11568,179596.088079698,375344.476523615,22.4698000000062 +3567,11570,179596.035075806,375344.042362954,25 +3568,11571,179596.302302103,375342.521904767,22.4738999999972 +3569,11572,179596.224575672,375342.313330896,25 +3570,5728,179596.620400004,375339.619499996,22.4799999999959 +3571,5738,179596.521000005,375339.6087,25 +3572,11560,179596.680127259,375338.1567831,25 +3573,11558,179596.795154508,375337.107245684,25 +3574,11556,179596.940498039,375335.781094965,25 +3575,11557,179596.975662127,375336.377999514,22.4867999999988 +3576,9712,179597.149034817,375334.796103727,22.4900999999954 +3577,11545,179597.138715252,375333.972511534,25 +3578,11546,179597.316946484,375333.264035668,22.4933000000019 +3579,11547,179597.288916659,375332.60203632,25 +3580,11550,179597.504865561,375330.631664507,25 +3581,11549,179597.438145503,375332.158185471,22.4956999999995 +3582,11548,179597.559344526,375331.052335277,22.4980000000069 +3583,11552,179597.667629637,375330.06431485,22.5 +3584,11553,179597.695541576,375328.891888894,25 +3585,11551,179597.775914744,375329.076294433,22.5020999999979 +3586,11554,179597.981657375,375327.199047219,22.5060999999987 +3587,5707,179602.500500001,375327.500500001,22.4400000000023 +3588,5727,179598.187400002,375325.321800001,22.5099999999948 +3589,5730,179598.088000003,375325.311000004,25 +3590,11555,179597.867946826,375327.318820227,25 +3591,11544,179598.246524163,375323.825893782,25 +3592,11542,179598.355686326,375322.803226862,25 +3593,11543,179598.431272525,375323.037259474,22.5412999999971 +3594,11541,179598.506960042,375322.328236479,22.550900000002 +3595,11540,179598.450020693,375321.919471651,25 +3596,11539,179598.65595372,375320.932498697,22.570000000007 +3597,11538,179598.58921073,375320.615493804,25 +3598,9710,179598.860139962,375319.019729875,22.5962 +3599,11532,179598.802733686,375318.615140874,25 +3600,11533,179599.005335908,375317.659568373,22.6147999999957 +3601,11534,179598.91497029,375317.563671608,25 +3602,11537,179599.158913273,375316.220891599,22.6345000000001 +3603,5698,179602.500399999,375317.500299998,22.4100000000035 +3604,11535,179599.29871795,375314.911234189,22.6524000000063 +3605,5694,179602.500399999,375312.500599999,22.4100000000035 +3606,5726,179599.592099998,375312.162900005,22.6900000000023 +3607,11531,179599.710077439,375311.057627976,22.7051000000065 +3608,11527,179599.828054871,375309.95235594,22.7201999999961 +3609,5605,179602.500500001,375307.5009,22.5500000000029 +3610,11528,179599.946032312,375308.847083915,22.735400000005 +3611,9709,179600.064009745,375307.741811886,22.7504999999946 +3612,11526,179599.944220297,375307.921320539,25 +3613,11529,179599.82693677,375309.020071086,25 +3614,5653,179598.105000004,375306.951000005,26.4499999999971 +3615,11523,179600.037442163,375307.047987591,25 +3616,11525,179600.081098404,375306.639001697,25 +3617,11524,179600.173810843,375306.713139921,22.7645000000048 +3618,11521,179600.35934202,375304.974990487,22.7883000000002 +3619,9708,179600.59341659,375302.782062076,22.818299999999 +3620,11520,179600.454745222,375303.138555884,25 +3621,11522,179600.268370315,375304.884577073,25 +3622,5645,179598.096000005,375303.386000004,26.4199999999983 +3623,11519,179600.553576555,375302.212671608,25 +3624,11518,179600.689901873,375301.878139317,22.8307000000059 +3625,5600,179607.500700004,375302.500399999,22.5200000000041 +3626,9707,179600.78638716,375300.974216565,22.8430999999982 +3627,11510,179600.891543582,375299.989058286,22.8564999999944 +3628,5597,179607.500300005,375297.500200003,22.4900000000052 +3629,5624,179600.996700004,375299.003899999,22.8699999999953 +3630,5623,179601.055700004,375298.774600003,22.6300000000047 +3631,5639,179600.940000005,375298.823000003,25 +3632,5638,179600.854000002,375298.772999998,25 +3633,5622,179600.770300001,375298.6087,22.6300000000047 +3634,9704,179600.225016735,375297.425498538,22.8586000000068 +3635,11499,179600.140935462,375298.156336587,22.8628999999928 +3636,11501,179600.09889482,375298.521755613,22.8650000000052 +3637,9706,179600.736036036,375298.943510421,22.6992999999929 +3638,9705,179600.056854185,375298.887174636,22.8671000000031 +3639,11505,179600.693868019,375299.355555214,22.7847000000038 +3640,5618,179600.000800006,375299.374400001,22.8699999999953 +3641,11512,179600.197250001,375299.722200003,22.8699999999953 +3642,5620,179599.742800001,375299.676800001,22.8699999999953 +3643,5619,179599.788899999,375299.330000006,22.8699999999953 +3644,5634,179599.914000001,375299.254000004,25 +3645,11502,179599.944293119,375298.990689032,25 +3646,5635,179599.704000004,375299.210000001,25 +3647,11500,179600.013583403,375298.388410602,25 +3648,5621,179600.651700001,375299.767600004,22.8699999999953 +3649,5637,179600.741,375299.877000004,25 +3650,11514,179600.758336749,375299.707621541,25 +3651,11513,179600.815443885,375299.759412754,25 +3652,11508,179600.790712059,375299.391317591,25 +3653,11504,179600.815432794,375299.149798207,25 +3654,11507,179600.876251031,375299.189751506,25 +3655,5640,179600.897999998,375298.986000005,25 +3656,11506,179600.835454408,375298.954188783,25 +3657,11515,179600.795125056,375299.949766137,25 +3658,11509,179600.789909787,375299.998624478,25 +3659,12147,179600.056613304,375298.014390156,25 +3660,11498,179600.099643208,375297.640369698,25 +3661,12148,179600.13593116,375297.324951034,25 +3662,11491,179600.172219105,375297.009532381,25 +3663,11493,179600.346421573,375296.370242517,22.8524000000034 +3664,11497,179600.236539546,375296.450452313,25 +3665,11492,179600.4678264,375295.314986501,22.8462 +3666,5595,179612.5002,375292.500300001,22.4100000000035 +3667,5599,179612.500400003,375297.500500001,22.3699999999953 +3668,5596,179617.500500005,375292.500500005,22.3099999999977 +3669,5650,179612.500500005,375287.500500005,22.4499999999971 +3670,5590,179617.500100005,375287.5002,22.3099999999977 +3671,5587,179617.500599999,375282.500399999,22.3000000000029 +3672,5585,179612.500999998,375277.5009,22.5 +3673,5582,179617.5002,375277.500100002,22.3000000000029 +3674,5581,179617.500100005,375272.500900004,22.3099999999977 +3675,5580,179612.500400003,375272.500599999,22.5399999999936 +3676,5578,179607.500300005,375272.500300001,22.4700000000012 +3677,5563,179607.500799999,375267.500400003,22.4799999999959 +3678,5564,179612.500900004,375267.500400003,22.5500000000029 +3679,5574,179617.5002,375267.500800002,22.3300000000017 +3680,5561,179617.500800002,375262.500799999,22.3300000000017 +3681,5565,179622.500399999,375267.500400003,22.4400000000023 +3682,5562,179622.501000006,375262.5009,22.4100000000035 +3683,5559,179622.5009,375257.500700004,22.3999999999942 +3684,5557,179617.500800002,375257.500100002,22.3500000000058 +3685,5554,179622.500300005,375252.500200007,22.3899999999994 +3686,5555,179617.500700001,375252.500500005,22.3999999999942 +3687,5551,179617.500599999,375247.500500005,22.4100000000035 +3688,5552,179622.500399999,375247.500500005,22.3500000000058 +3689,5520,179627.500100002,375247.500599999,22.4199999999983 +3690,5550,179622.5009,375242.5009,22.3300000000017 +3691,5519,179627.500600003,375242.500499997,22.4600000000064 +3692,5547,179622.500300005,375237.500300005,22.3300000000017 +3693,5518,179627.500799999,375237.500100002,22.4700000000012 +3694,5577,179622.501000006,375232.500100002,22.3099999999977 +3695,5517,179627.5009,375232.500900004,22.4700000000012 +3696,5516,179627.500300005,375227.500500005,22.4700000000012 +3697,7542,179632.273016319,375231.121650167,22.446299999996 +3698,7544,179632.196422543,375231.822614148,22.4464000000007 +3699,5527,179631.988900002,375233.721799999,22.4467000000004 +3700,22868,179631.855370287,375234.943887826,22.4468999999954 +3701,22867,179631.955952447,375234.943968549,25 +3702,5524,179632.088300005,375233.732700001,25 +3703,7543,179632.293114424,375231.858279113,25 +3704,12951,179633.069041409,375232.557604801,25.6843999999983 +3705,5533,179633.244000003,375231.09,25.695000000007 +3706,6767,179632.386794653,375231.000936255,25 +3707,7548,179632.481862277,375229.210352819,22.4459000000061 +3708,7547,179632.569766615,375229.326413188,25 +3709,12955,179632.661252592,375228.489151653,25 +3710,12956,179632.561964158,375228.477283716,22.4458000000013 +3711,7545,179632.642066039,375227.744214617,22.4456999999966 +3712,12954,179632.788748644,375226.40181816,22.4453999999969 +3713,7551,179632.935431249,375225.059421703,22.4452000000019 +3714,5499,179627.5009,375222.500500005,22.429999999993 +3715,5480,179622.500799999,375222.500500005,22.320000000007 +3716,5498,179627.501000002,375217.5009,22.429999999993 +3717,5476,179622.500200003,375217.500300005,22.3300000000017 +3718,5479,179617.500599999,375222.500300001,22.570000000007 +3719,5477,179617.500500005,375217.500500001,22.5899999999965 +3720,5473,179617.500900004,375212.500500001,22.6100000000006 +3721,5474,179622.500700004,375212.500500001,22.3600000000006 +3722,5472,179622.500799999,375207.500800002,22.3899999999994 +3723,5486,179617.500400003,375207.500800002,22.5899999999965 +3724,5470,179617.500900004,375202.500599999,22.5500000000029 +3725,11401,179611.270357385,375204.961128697,22.7094999999972 +3726,11402,179611.154341921,375206.035996012,22.7030999999988 +3727,11398,179611.038326453,375207.110863328,22.6967000000004 +3728,11399,179610.909398708,375208.305361226,22.6895999999979 +3729,11395,179610.780470964,375209.499859128,22.6824999999953 +3730,5485,179612.500500005,375212.500399999,22.4700000000012 +3731,11396,179610.680546694,375210.425643697,22.676999999996 +3732,9693,179610.580622431,375211.351428259,22.6714999999967 +3733,11407,179610.467247926,375212.401827447,22.6652000000031 +3734,11409,179610.349096905,375213.496480443,22.6587 +3735,5481,179610.191100001,375214.960300002,22.6499999999942 +3736,5475,179612.500300001,375217.500300005,22.5 +3737,5478,179612.5002,375222.500300001,22.4900000000052 +3738,9694,179609.678906165,375219.705383662,22.6217999999935 +3739,11412,179609.831998236,375218.287102845,22.6301999999996 +3740,11414,179610.007241465,375216.663608588,22.6398999999947 +3741,11413,179609.750377338,375218.111434877,25 +3742,11411,179609.616150513,375219.354960043,25 +3743,11415,179609.896470085,375216.757979583,25 +3744,5483,179610.091699995,375214.949300002,25 +3745,11410,179610.228139762,375213.685204398,25 +3746,11408,179610.339586884,375212.652662113,25 +3747,11406,179610.453173399,375211.600298688,25 +3748,11394,179610.595865306,375210.278277762,25 +3749,11397,179610.767459832,375208.68847809,25 +3750,11400,179610.99727207,375206.559299257,25 +3751,11403,179611.202230766,375204.660385121,25 +3752,11416,179609.01627164,375224.912451759,25 +3753,11417,179609.146750826,375224.635395285,22.5924999999988 +3754,11418,179608.992376182,375226.065558098,22.5840000000026 +3755,11419,179608.834807627,375226.593599096,25 +3756,11420,179608.915188864,375226.780639511,22.579700000002 +3757,9695,179608.838001549,375227.495720915,22.5754000000015 +3758,5542,179612.500300001,375227.500800002,22.5200000000041 +3759,11422,179608.697850771,375228.794110462,22.5676999999996 +3760,5566,179608.557700004,375230.092500001,22.5599999999977 +3761,5543,179612.500999998,375232.500200003,22.5399999999936 +3762,11433,179608.377229821,375231.7645314,22.5500999999931 +3763,11431,179608.196759649,375233.436562799,22.5400999999983 +3764,11428,179608.020659514,375235.068106353,22.5304000000033 +3765,5545,179612.5002,375237.500300005,22.5500000000029 +3766,5546,179617.500900004,375237.500300005,22.5099999999948 +3767,5544,179617.500700001,375232.500500001,22.5299999999988 +3768,5541,179617.500400003,375227.5002,22.5500000000029 +3769,5576,179622.500500001,375227.500500005,22.320000000007 +3770,5548,179617.5002,375242.500600003,22.4700000000012 +3771,5549,179612.500599999,375242.500700004,22.5599999999977 +3772,9696,179607.570960723,375239.234503847,22.5056000000041 +3773,11436,179607.277493477,375241.953437496,22.489499999996 +3774,5572,179606.924400005,375245.224800002,22.4700000000012 +3775,5553,179612.500900004,375247.500599999,22.5500000000029 +3776,11441,179606.687896937,375247.382916026,22.4937999999966 +3777,11438,179606.476063441,375249.315919504,22.5151999999944 +3778,5556,179612.500599999,375252.500599999,22.5800000000017 +3779,11439,179606.281926233,375251.087442536,22.5347000000038 +3780,9697,179606.087789014,375252.858965576,22.5543000000034 +3781,11446,179605.96338845,375253.994134128,22.5668000000005 +3782,11445,179605.838987891,375255.129302684,22.5792999999976 +3783,5558,179612.5002,375257.500500001,22.5200000000041 +3784,5560,179612.500800002,375262.500399999,22.5399999999936 +3785,5573,179607.5009,375262.500200003,22.4600000000064 +3786,9698,179604.806735996,375264.548402492,22.6833999999944 +3787,11456,179604.664250694,375265.848507214,22.6977000000043 +3788,11458,179604.50045085,375267.343096193,22.7142000000022 +3789,9699,179604.253170028,375269.599405915,22.7391999999963 +3790,11459,179604.396291692,375267.37552622,25 +3791,11460,179604.155961297,375269.568507724,25 +3792,11457,179604.5387755,375266.075381245,25 +3793,11455,179604.634348202,375265.20329364,25 +3794,11449,179604.744844958,375264.195026062,25 +3795,11451,179604.862404723,375263.122309495,25 +3796,11453,179604.973002683,375262.113118481,25 +3797,5570,179605.204000004,375260.005300004,25 +3798,11447,179605.642807025,375256.00127387,25 +3799,11448,179605.656725593,375256.792465854,22.5976999999984 +3800,5567,179605.303399999,375260.016600002,22.6333000000013 +3801,11452,179605.128865182,375261.609140035,22.6508999999933 +3802,11454,179605.041597776,375262.405410044,22.6597000000038 +3803,11450,179604.95433037,375263.20168006,22.6684999999998 +3804,11444,179605.942003284,375253.271168023,25 +3805,11443,179606.166320238,375251.224320777,25 +3806,11437,179606.348833408,375249.558924671,25 +3807,11440,179606.419592213,375248.913264815,25 +3808,11442,179606.5993433,375247.273072194,25 +3809,5569,179606.825000003,375245.214000005,25 +3810,11435,179607.200808514,375241.732185762,25 +3811,11424,179607.566199519,375238.346888375,25 +3812,11426,179607.695811849,375238.077775285,22.5124999999971 +3813,11425,179607.820662975,375236.921046723,22.5194000000047 +3814,11427,179607.789964512,375236.273736466,25 +3815,11430,179607.968536697,375234.619289696,25 +3816,11432,179608.124460485,375233.17467726,25 +3817,11434,179608.27901949,375231.74270929,25 +3818,5568,179608.458299998,375230.081700005,25 +3819,11423,179608.574731164,375229.003040195,25 +3820,11421,179608.695930086,375227.880210124,25 +3821,11429,179607.920661245,375235.99457654,22.524900000004 +3822,11404,179611.535904173,375202.50087424,22.7241000000067 +3823,11405,179611.428814139,375202.561121352,25 +3824,5482,179611.725000001,375199.817000002,25 +3825,5484,179611.824400004,375199.828000002,22.7400000000052 +3826,11392,179612.064762972,375197.70314312,22.7323000000033 +3827,5469,179617.500300001,375197.500600003,22.5399999999936 +3828,11390,179612.305125941,375195.578286238,22.7246000000014 +3829,11387,179612.485942811,375193.979828794,22.7188000000024 +3830,5466,179617.500800002,375192.500200003,22.5099999999948 +3831,11388,179612.592254058,375193.040015992,22.715400000001 +3832,9692,179612.698565312,375192.10020319,22.7119999999995 +3833,11379,179612.808250535,375191.130563788,22.7084999999934 +3834,11378,179612.917935759,375190.160924383,22.704899999997 +3835,11381,179613.119449891,375188.379499022,22.6984999999986 +3836,11385,179613.244062416,375187.277899265,22.6944999999978 +3837,11380,179612.861277714,375189.77201359,25 +3838,11377,179612.667230926,375191.487437006,25 +3839,11386,179612.460441995,375193.315504197,25 +3840,11389,179612.314517792,375194.605511576,25 +3841,11391,179612.180898398,375195.786741264,25 +3842,11393,179611.973616287,375197.619168319,25 +3843,5465,179622.500600003,375187.500700001,22.5399999999936 +3844,5467,179622.500500001,375192.500500001,22.5099999999948 +3845,5509,179627.500799999,375192.500200003,22.3399999999965 +3846,5488,179627.500700004,375187.500100002,22.3300000000017 +3847,5489,179632.500900008,375187.500800002,22.4799999999959 +3848,5422,179632.500599999,375182.500400003,22.4900000000052 +3849,7588,179637.21038257,375185.659942891,22.4471000000049 +3850,7579,179637.073923659,375186.950395931,22.4459999999963 +3851,6774,179637.2560715,375186.178525534,25 +3852,7589,179637.338391136,375185.400047675,25 +3853,7591,179637.524124119,375183.643613357,25 +3854,22848,179638.556479473,375182.525332853,25.6310999999987 +3855,6775,179637.736097954,375181.639025412,25 +3856,7592,179637.637899064,375181.617041443,22.4505000000063 +3857,7590,179637.421721291,375183.661372975,22.4487999999983 +3858,12986,179637.863349535,375179.485020719,22.4521999999997 +3859,5438,179638.088799998,375177.353000004,22.4539999999979 +3860,7597,179638.288245782,375175.466898162,22.4556000000011 +3861,7596,179638.374009337,375175.606443699,25 +3862,12989,179638.43003583,375175.076614019,25 +3863,12988,179638.486062326,375174.54678433,25 +3864,7595,179638.439930923,375174.03245509,22.4567999999999 +3865,7593,179638.506501243,375173.402918607,22.4572999999946 +3866,7601,179638.67470726,375171.812242225,22.4585999999981 +3867,7598,179638.726585064,375171.321648687,22.4590000000026 +3868,12992,179638.874011751,375169.927476589,22.4602000000014 +3869,5417,179632.500599999,375167.500500001,22.4400000000023 +3870,7602,179639.021438442,375168.533304494,22.4612999999954 +3871,7606,179639.269789983,375166.184714828,22.4633000000031 +3872,12996,179639.36856607,375165.250617605,22.4640999999974 +3873,7605,179639.367297973,375166.213140801,25 +3874,12995,179639.484355826,375165.106151551,25 +3875,22844,179639.542884752,375164.55265693,25 +3876,7604,179639.467342146,375164.316520389,22.4648000000016 +3877,5416,179632.500500005,375162.500400003,22.3899999999994 +3878,7607,179639.699707579,375162.119106822,22.4667000000045 +3879,5440,179637.500800002,375157.500400003,22.3800000000047 +3880,5411,179637.500700001,375152.500500001,22.4499999999971 +3881,5410,179632.500300001,375152.5,22.3500000000058 +3882,5439,179637.500599999,375147.500500001,22.3999999999942 +3883,5409,179632.500500005,375147.500399999,22.3500000000058 +3884,5408,179627.5009,375147.500399999,22.4900000000052 +3885,5444,179622.500600003,375147.500600003,22.5599999999977 +3886,5357,179622.500700004,375142.500700001,22.5 +3887,11341,179618.263513144,375142.904788289,22.5335999999952 +3888,11344,179618.396191958,375141.73187359,22.5292999999947 +3889,11343,179618.528870761,375140.558958884,22.5250999999989 +3890,5356,179622.500799999,375137.500700001,22.5899999999965 +3891,5360,179618.998400003,375136.408200003,22.5099999999948 +3892,9687,179619.216741707,375134.456435286,22.5185999999958 +3893,11338,179619.203864232,375133.671807248,25 +3894,11339,179619.301086407,375133.702474903,22.521900000007 +3895,11337,179619.3854311,375132.948514521,22.5252000000037 +3896,11336,179619.401505977,375131.905080274,25 +3897,11335,179619.533107638,375131.628428441,22.5310000000027 +3898,11334,179619.571667954,375130.383996028,25 +3899,11332,179619.702529117,375130.113963477,22.537599999996 +3900,11331,179619.704263322,375129.198721077,25 +3901,11333,179619.787147976,375129.357552305,22.5409000000072 +3902,9686,179619.871766839,375128.601141121,22.5442999999941 +3903,11326,179619.819639709,375128.167367194,25 +3904,11327,179619.991292533,375127.532696519,22.5488999999943 +3905,5354,179622.500300005,375127.500799999,22.5399999999936 +3906,11329,179620.124437548,375126.342508238,22.5541999999987 +3907,5359,179620.400899999,375123.871200003,22.5650000000023 +3908,11330,179620.029440228,375126.291952513,25 +3909,5362,179620.301500004,375123.860000003,25 +3910,11328,179619.921488129,375127.256940365,25 +3911,5358,179621.803400002,375111.334100004,22.6199999999953 +3912,5374,179627.500100002,375117.500300001,22.6300000000047 +3913,5378,179627.500500001,375122.500500005,22.6199999999953 +3914,5375,179632.500500005,375117.500400003,22.3800000000047 +3915,5377,179632.500800006,375122.500400003,22.3500000000058 +3916,5376,179637.500800002,375117.500700001,22.4900000000052 +3917,5404,179637.500700001,375112.500499997,22.4600000000064 +3918,5373,179632.5002,375112.500700004,22.4199999999983 +3919,5372,179627.500600003,375112.500600003,22.6199999999953 +3920,5406,179632.500400003,375107.500399999,22.4400000000023 +3921,5369,179627.500500001,375107.500100002,22.6000000000058 +3922,5366,179627.500700004,375102.500399999,22.5399999999936 +3923,11319,179622.60423515,375104.21664957,22.6120999999985 +3924,11318,179622.451611899,375105.57309413,22.6135999999969 +3925,11322,179622.127505943,375108.453597065,22.6168000000034 +3926,11324,179621.965452973,375109.893848535,22.6184000000067 +3927,11325,179621.859017149,375109.945287328,25 +3928,11323,179621.814012177,375110.345268324,25 +3929,5361,179621.704,375111.323000003,25 +3930,11321,179622.047021482,375108.274401437,25 +3931,11317,179622.381116305,375105.305138424,25 +3932,11320,179622.426669858,375104.900281921,25 +3933,11315,179622.756858412,375102.860205006,22.6106 +3934,11316,179622.878806639,375101.776385862,22.6094000000012 +3935,9685,179623.000754867,375100.692566715,22.6082000000024 +3936,11306,179623.088194471,375099.915444162,22.6073999999935 +3937,5322,179627.500399999,375097.500300001,22.5399999999936 +3938,5323,179632.5002,375097.500900004,22.5399999999936 +3939,5365,179632.500500005,375102.500100002,22.4900000000052 +3940,5345,179637.500800002,375097.500599999,22.3500000000058 +3941,5368,179637.500500005,375102.500500001,22.3800000000047 +3942,5367,179642.500200003,375102.500399999,22.3600000000006 +3943,5370,179642.500200003,375107.500200003,22.4799999999959 +3944,7671,179645.68473506,375105.345498975,22.5130000000063 +3945,13037,179645.766602147,375104.541099865,22.5135000000009 +3946,7674,179645.848469231,375103.736700762,22.5139999999956 +3947,7676,179645.978415407,375102.459892277,22.5148000000045 +3948,7678,179646.091895912,375101.344870046,22.5155999999988 +3949,13040,179646.229089025,375099.996855557,22.5163999999932 +3950,22819,179646.233183108,375100.944640972,25.0565999999963 +3951,13039,179646.316581272,375100.125203248,25.0617000000057 +3952,22820,179646.398533735,375099.319970477,25.0666999999958 +3953,22818,179647.065034334,375100.587230336,25.5476999999955 +3954,13042,179647.326201204,375098.024987951,25.5396999999939 +3955,7679,179646.480486188,375098.514737714,25.0718000000052 +3956,7680,179646.366282135,375098.648841068,22.5173000000068 +3957,22821,179646.297685578,375099.322848313,22.5169000000024 +3958,5321,179642.500399999,375097.5002,22.4799999999959 +3959,13044,179646.473862067,375097.591796052,22.5179999999964 +3960,13045,179646.532237913,375098.006245498,25.0749000000069 +3961,13043,179646.583989643,375097.497753285,25.0780999999988 +3962,7683,179646.58144198,375096.534751028,22.5187000000005 +3963,7682,179646.687493093,375096.480768856,25.0844999999972 +3964,7681,179646.611771651,375096.236741677,22.5188000000053 +3965,22815,179646.703385826,375095.336570837,22.5194000000047 +3966,22814,179646.760632809,375095.762126651,25.0890000000072 +3967,22816,179646.821986787,375095.159286425,25.0926999999938 +3968,5327,179646.795000002,375094.4364,22.5200000000041 +3969,5318,179642.500100002,375092.5002,22.5299999999988 +3970,7686,179646.959999729,375092.815166865,22.5209999999934 +3971,7684,179647.038403317,375092.044798888,22.5215000000026 +3972,7693,179647.250600651,375089.959817518,22.5228999999963 +3973,5315,179642.500900004,375087.500799999,22.429999999993 +3974,5350,179637.500400003,375087.500300005,22.3300000000017 +3975,28,179642.500900004,375082.5009,22.5099999999948 +3976,5313,179637.500900004,375082.500700004,22.3300000000017 +3977,5312,179632.500500005,375082.500700004,22.6300000000047 +3978,5311,179637.500900004,375077.500800002,22.3500000000058 +3979,5310,179632.500300001,375077.500400003,22.6600000000035 +3980,5343,179627.500200003,375082.5009,22.5500000000029 +3981,5314,179627.500600003,375087.500500001,22.5800000000017 +3982,5316,179632.5002,375087.5009,22.6100000000006 +3983,5319,179627.500399999,375092.500599999,22.5800000000017 +3984,9684,179624.153755695,375090.445384566,22.5969000000041 +3985,11301,179624.014607605,375091.682000477,22.5982999999978 +3986,11303,179623.926653802,375092.463650234,22.5991000000067 +3987,5331,179623.8387,375093.245299995,22.6000000000058 +3988,11312,179623.662582297,375094.810552299,22.6016999999993 +3989,11310,179623.486464579,375096.375804596,22.6034999999974 +3990,11308,179623.329360776,375097.772070233,22.6049999999959 +3991,11305,179623.175634075,375099.138321605,22.6064999999944 +3992,11299,179624.346516859,375088.732306592,22.5950000000012 +3993,11296,179624.719634406,375085.41639258,22.5913 +3994,11297,179624.803554907,375084.67058697,22.5905000000057 +3995,11293,179624.887475409,375083.924781367,22.5896999999968 +3996,11292,179624.911013748,375082.821279865,25 +3997,11294,179624.993199084,375082.985209808,22.588699999993 +3998,9683,179625.098922767,375082.045638252,22.5875999999989 +3999,11283,179625.092212569,375081.210965902,25 +4000,11285,179625.190985527,375080.333170619,25 +4001,11291,179625.239617355,375079.900979582,25 +4002,11288,179625.389654398,375078.567600343,25 +4003,11290,179625.563222226,375077.025102995,25 +4004,5332,179625.774700001,375075.145699997,25 +4005,11281,179626.053609334,375072.666897234,25 +4006,11278,179626.416290727,375069.443571467,25 +4007,11279,179626.453723345,375070.005177263,22.5742999999929 +4008,11280,179626.559878316,375069.061721198,22.5733000000037 +4009,11274,179626.666033294,375068.118265145,22.5721999999951 +4010,11276,179626.680620097,375067.094347969,25 +4011,11277,179626.755710721,375067.321253859,22.571299999996 +4012,5304,179632.500800006,375067.500600003,22.6600000000035 +4013,11275,179626.845388152,375066.524242572,22.5705000000016 +4014,9682,179627.024743013,375064.930220004,22.5687000000034 +4015,11273,179626.884214379,375065.284906618,25 +4016,11264,179627.053648163,375063.779066287,25 +4017,11266,179627.179955274,375062.656513613,25 +4018,11268,179627.323572036,375061.380121648,25 +4019,11272,179627.379492421,375060.883130055,25 +4020,11271,179627.530685663,375059.539402205,25 +4021,5271,179627.810000006,375057.057,25 +4022,11262,179628.02206878,375055.026066046,25 +4023,11253,179628.355341308,375051.834391676,25 +4024,9681,179628.381314982,375052.548416264,22.5148999999947 +4025,11255,179628.483882211,375051.566161681,22.5051999999996 +4026,5256,179632.500900008,375052.500300001,22.5599999999977 +4027,11254,179628.586449437,375050.583907098,22.4953999999998 +4028,11258,179628.669826053,375049.785435051,22.4873999999982 +4029,5251,179632.5002,375047.500400007,22.570000000007 +4030,5253,179637.500700001,375047.500499997,22.5599999999977 +4031,5250,179632.500300001,375042.5009,22.5399999999936 +4032,5270,179629.1664,375045.029899999,22.4400000000023 +4033,11260,179628.914747745,375047.43989579,22.4640000000072 +4034,11257,179628.753202666,375048.986963008,22.4793999999965 +4035,11259,179628.685662046,375048.670985907,25 +4036,11261,179628.825119585,375047.335433163,25 +4037,5264,179629.067000005,375045.019000001,25 +4038,9679,179629.219187506,375043.688812502,25 +4039,6637,179629.371375002,375042.358625006,25 +4040,9673,179629.560672447,375040.70407984,25 +4041,9672,179629.558872737,375041.599575505,22.4383999999991 +4042,9677,179629.598297093,375041.254995331,22.4382000000041 +4043,9678,179629.439791445,375042.640380181,22.4388999999937 +4044,9680,179629.29780335,375043.881396998,22.4394999999931 +4045,9674,179629.722393069,375040.170360826,22.4376999999949 +4046,9676,179629.989184607,375037.838526063,22.4366000000009 +4047,5246,179637.500900004,375037.500900004,22.6300000000047 +4048,5292,179630.383900005,375034.388600003,22.4349999999977 +4049,9671,179630.44307927,375033.871351346,22.4348000000027 +4050,5242,179637.500500005,375032.500599999,22.6199999999953 +4051,9669,179630.621299092,375032.313644238,22.4339999999938 +4052,9660,179630.791791569,375030.823476952,22.4333000000042 +4053,9662,179630.94923823,375029.447334971,22.4327000000048 +4054,5241,179637.500500005,375027.500500005,22.6399999999994 +4055,5281,179642.500399999,375027.500800006,22.3399999999965 +4056,5280,179631.601399999,375023.747200005,22.429999999993 +4057,9668,179631.38581204,375025.631518479,22.4309000000067 +4058,9666,179631.234053455,375026.957944568,22.4315000000061 +4059,9664,179631.088776331,375028.227720372,22.4321000000054 +4060,5239,179642.500700008,375022.500700004,22.3600000000006 +4061,5235,179637.500900004,375017.500799999,22.6300000000047 +4062,5234,179642.500800002,375017.500700004,22.4199999999983 +4063,5153,179642.500300005,375012.500300001,22.4700000000012 +4064,5154,179637.500300001,375012.500800002,22.6399999999994 +4065,9651,179632.618700467,375014.61925593,22.4134000000049 +4066,9653,179632.283573728,375017.626251657,22.4189000000042 +4067,9652,179632.502646551,375014.756963879,25 +4068,5163,179632.824600004,375011.868000001,25 +4069,6634,179633.153708328,375008.914833806,25 +4070,6633,179633.420344532,375006.522244651,25 +4071,5211,179629.8068,375000.000000004,26.3800000000047 +4072,5212,179630.307999998,374995.166999999,26.3999999999942 +4073,10694,179634.436403796,374997.405264016,25 +4074,10685,179634.575307071,374996.159024015,25 +4075,10693,179634.600176129,374995.935898867,25 +4076,10687,179634.716736086,374995.793567363,22.3793000000005 +4077,9639,179634.612181988,374996.731752064,22.3809999999939 +4078,5140,179637.500700001,374997.500300005,22.4400000000023 +4079,10686,179634.821290184,374994.855382666,22.3776000000071 +4080,5138,179637.500900004,374992.500599999,22.3500000000058 +4081,10689,179634.981890276,374993.414286084,22.375 +4082,10691,179635.134895138,374992.041343044,22.3724999999977 +4083,5229,179635.287900001,374990.668399997,22.3699999999953 +4084,5188,179635.190000001,374990.644000005,25 +4085,10692,179635.021969866,374992.151566103,25 +4086,10690,179634.899299722,374993.252162486,25 +4087,5213,179631.039000005,374990.780000005,26.429999999993 +4088,10688,179634.759991374,374994.502036788,25 +4089,5187,179635.320000004,374990.317000005,25.0800000000017 +4090,5186,179635.422999997,374989.099000003,25.0800000000017 +4091,5179,179635.522500005,374989.1087,22.3800000000047 +4092,5227,179636.704,374977.388,25.0800000000017 +4093,5178,179636.803700004,374977.396600004,22.320000000007 +4094,5177,179636.824400004,374977.0746,22.320000000007 +4095,5176,179637.017000001,374976.063700002,22.3399999999965 +4096,5185,179636.725000001,374977.061999999,25.0800000000017 +4097,5180,179635.418400005,374990.3402,22.3699999999953 +4098,5137,179642.500700008,374992.500500005,22.5099999999948 +4099,29,179642.500600006,374997.500700004,22.6000000000058 +4100,5141,179647.500799999,374997.500700004,22.2799999999988 +4101,5143,179647.500300005,375002.500200003,22.320000000007 +4102,5144,179652.500300001,375002.500300005,22.4100000000035 +4103,5142,179652.500799999,374997.500799999,22.2899999999936 +4104,5225,179656.948600002,374995.606600001,22.8000000000029 +4105,7738,179657.179171477,374993.642224919,22.7719999999972 +4106,7741,179657.353262141,374992.159043282,22.7507999999943 +4107,7740,179657.429082096,374992.37118059,25.0800000000017 +4108,7742,179657.506850109,374991.708597079,25.0800000000017 +4109,7739,179657.584618125,374991.046013575,25.0800000000017 +4110,7744,179657.678047623,374990.249994267,25.0800000000017 +4111,5207,179659.157000005,374990.788000003,26.4199999999983 +4112,22731,179659.367413912,374989.327599127,26.3727000000072 +4113,5196,179660.394000001,374990.180000003,26.4459999999963 +4114,22732,179660.660500001,374988.773500003,26.4474999999948 +4115,5206,179659.780000001,374986.464000002,26.2799999999988 +4116,5197,179660.927000005,374987.366999999,26.4489999999932 +4117,5198,179661.721000001,374986.538000003,26.4419999999955 +4118,5205,179660.565000005,374984.569000002,26.2799999999988 +4119,7752,179658.402579289,374984.076984484,25.0800000000017 +4120,7750,179658.140826061,374986.307121973,25.0800000000017 +4121,7748,179658.02562226,374987.288658381,25.0800000000017 +4122,22733,179657.960656226,374987.842168972,25.0800000000017 +4123,6466,179657.895690195,374988.395679556,25.0800000000017 +4124,7746,179657.786868911,374989.322836913,25.0800000000017 +4125,6467,179658.622494955,374982.203303009,25.0800000000017 +4126,5199,179662.532000002,374986.336000003,26.4349999999977 +4127,5200,179663.290000007,374986.594999999,26.3899999999994 +4128,5231,179662.428000003,374987.737,27.1199999999953 +4129,5201,179663.717000004,374987.313999999,26.4100000000035 +4130,5202,179663.583999999,374988.311000004,26.4020000000019 +4131,5218,179662.368000001,374988.359000001,27.1300000000047 +4132,23635,179663.405999999,374989.031999998,26.4279999999999 +4133,23443,179662.132498153,374989.766110163,27.122000000003 +4134,5203,179663.228000004,374989.752999999,26.4539999999979 +4135,23633,179663.112750001,374990.481750004,26.4465000000055 +4136,23630,179661.970388368,374990.734706886,27.116399999999 +4137,23449,179661.649250001,374989.858750004,27.0975000000035 +4138,5221,179661.416000005,374991.316000003,27.0899999999965 +4139,23444,179661.808278587,374991.703303616,27.1108999999997 +4140,23448,179661.393955216,374991.709157374,27.0853999999963 +4141,20206,179660.300498046,374991.091779176,26.4637999999977 +4142,23446,179660.174249027,374992.322889589,26.4878999999928 +4143,23445,179661.327820852,374992.888629492,27.0718000000052 +4144,23447,179661.649139289,374992.654151808,27.1054000000004 +4145,5219,179661.490000002,374993.605000004,27.1000000000058 +4146,5220,179661.271000002,374993.902000003,27.0599999999977 +4147,5195,179660.048000004,374993.554000005,26.5120000000024 +4148,5194,179660.252999999,374994.337000009,26.5610000000015 +4149,5209,179658.197000001,374994.541000005,26.2599999999948 +4150,5193,179660.817000005,374994.676000003,26.5660000000062 +4151,22734,179657.60678786,374998.454004724,26.252800000002 +4152,5156,179657.048,374995.618000001,25.0800000000017 +4153,6465,179657.273546062,374993.696347598,25.0800000000017 +4154,7737,179656.814301457,374997.699860185,25.0800000000017 +4155,7736,179656.698522013,374997.834477827,22.7287999999971 +4156,22735,179656.729654219,374998.453924447,25.0800000000017 +4157,22736,179656.597834893,374998.731472369,22.7002000000066 +4158,7734,179656.497147772,374999.628466915,22.6714999999967 +4159,7735,179656.622877371,374999.405126184,25.0800000000017 +4160,22737,179656.676265795,374998.929525312,25.0800000000017 +4161,5210,179657.373600002,375000.000000004,26.25 +4162,5192,179661.704,374994.840000004,26.5529999999999 +4163,5190,179662.456999999,374994.192000005,26.429999999993 +4164,5155,179656.5561,375000.000000004,25.0800000000017 +4165,8917,179656.441602614,375001.019949064,25.0800000000017 +4166,7733,179656.340281557,375001.025945973,22.6267999999982 +4167,8922,179656.322855785,375002.077752415,25.0800000000017 +4168,8921,179656.219092511,375002.105586719,22.5923999999941 +4169,8920,179656.218321361,375003.008950915,25.0800000000017 +4170,5215,179657.702000003,375002.893000003,26.25 +4171,5214,179657.331,375001.236000005,26.1900000000023 +4172,8918,179656.174570654,375003.398684591,25.0800000000017 +4173,5171,179655.958999999,375005.319000002,25.0800000000017 +4174,5172,179656.074000001,375006.806000002,25 +4175,5228,179655.831000004,375006.785000004,25.0800000000017 +4176,5165,179655.979500003,375006.898200002,22.429999999993 +4177,5173,179656.083000001,375006.951000001,25 +4178,5164,179655.982700005,375006.948699996,22.429999999993 +4179,5166,179655.7227,375006.876000002,22.429999999993 +4180,7732,179655.724238634,375009.326052524,22.4370000000054 +4181,5148,179652.500600003,375007.500599999,22.320000000007 +4182,23258,179655.617315453,375010.309542198,22.4398999999976 +4183,5152,179652.500500008,375012.5002,22.429999999993 +4184,8924,179655.510392267,375011.293031871,22.4428000000044 +4185,8926,179655.367223985,375012.609907474,22.4465999999957 +4186,23255,179655.262631617,375013.571958125,22.4493999999977 +4187,8928,179655.158039249,375014.534008775,22.4523000000045 +4188,8930,179655.053446881,375015.496059425,22.4551000000065 +4189,5236,179652.5009,375017.5009,22.5200000000041 +4190,5233,179647.500799999,375017.500100002,22.4100000000035 +4191,5151,179647.500200003,375012.5002,22.3899999999994 +4192,5237,179647.500300005,375022.500300005,22.429999999993 +4193,5147,179647.500399999,375007.500400003,22.2799999999988 +4194,5150,179642.500100002,375007.500999998,22.5200000000041 +4195,5146,179642.500200003,375002.500799999,22.570000000007 +4196,5149,179637.500800002,375007.500800002,22.5299999999988 +4197,5145,179637.500700001,375002.500600003,22.5200000000041 +4198,9647,179633.67227269,375005.165745042,22.3962999999931 +4199,9648,179633.50418957,375006.673988249,22.3990000000049 +4200,5181,179633.444700003,375007.207800005,22.3999999999942 +4201,9646,179633.607638139,375004.841615148,25 +4202,9645,179633.828151263,375003.767015625,22.3938000000053 +4203,9644,179633.794931751,375003.160985656,25 +4204,9643,179633.953841962,375002.639167987,22.3916999999929 +4205,9641,179634.095409863,375001.368851081,22.3894 +4206,9640,179634.275357075,374999.75414893,22.3864999999932 +4207,5162,179634.147200003,375000.000000004,25 +4208,10696,179634.267694019,374998.918927845,25 +4209,9642,179633.961139888,375001.669561066,25 +4210,10697,179634.381844759,374998.798613831,22.3846999999951 +4211,10695,179634.488332432,374997.843078721,22.3830000000016 +4212,9649,179633.247846611,375008.974108793,22.4032000000007 +4213,9650,179632.940471865,375011.732093845,22.4082000000053 +4214,5268,179654.501600001,375020.572000004,22.4700000000012 +4215,8937,179654.289326176,375022.524632555,22.4756999999954 +4216,8935,179654.077052347,375024.477265097,22.4814999999944 +4217,7730,179653.882779658,375026.264311474,22.486699999994 +4218,5240,179647.500200003,375027.500100005,22.4400000000023 +4219,8942,179653.673111532,375028.192975089,22.4924000000028 +4220,8940,179653.463443406,375030.121638712,22.4980000000069 +4221,5244,179647.5009,375032.500900004,22.4700000000012 +4222,8945,179653.287792642,375031.737388533,22.502800000002 +4223,8947,179653.154196318,375032.966294266,22.5063999999984 +4224,5267,179653.020599999,375034.195199996,22.5099999999948 +4225,5269,179653.120299999,375034.203000002,25.2593000000052 +4226,8946,179653.324633181,375032.323532004,25.241399999999 +4227,8952,179652.77240942,375037.403133024,25.2897999999986 +4228,8950,179652.589964937,375039.081380833,25.3056999999972 +4229,8948,179652.444171935,375040.422483549,25.3184999999939 +4230,8953,179652.309517376,375041.661127374,25.3303000000014 +4231,8955,179652.194619421,375042.718036558,25.340400000001 +4232,8957,179652.046705164,375044.078651987,25.3533000000025 +4233,8956,179651.95462672,375044.000124615,22.5387999999948 +4234,8959,179651.689539004,375046.438426808,22.5458999999973 +4235,5249,179647.500500001,375042.500700004,22.4799999999959 +4236,5254,179642.500200003,375047.500799999,22.3300000000017 +4237,5247,179642.500600006,375042.500200003,22.3099999999977 +4238,5248,179637.500900004,375042.500700004,22.6000000000058 +4239,174,179642.500700008,375037.500699997,22.3000000000029 +4240,5243,179642.500300005,375032.500599999,22.3099999999977 +4241,5245,179647.500500001,375037.500100002,22.4799999999959 +4242,7729,179652.285511803,375040.956611849,22.5298999999941 +4243,8949,179652.462290194,375039.330587208,22.5250999999989 +4244,8951,179652.697464276,375037.16743343,22.5187000000005 +4245,8954,179652.133000929,375042.359421473,22.5339999999997 +4246,5255,179637.500700001,375052.500100005,22.5299999999988 +4247,5285,179642.500900004,375052.500400003,22.3500000000058 +4248,5259,179637.500700001,375057.500500005,22.4799999999959 +4249,5260,179642.500900004,375057.500800002,22.3800000000047 +4250,5258,179647.500700004,375057.500100002,22.5500000000029 +4251,5257,179647.500799999,375052.500599999,22.5200000000041 +4252,7724,179650.839447476,375054.696986377,22.5455999999976 +4253,7726,179651.007822949,375053.042584237,22.5466000000015 +4254,13088,179651.132677916,375051.815800384,22.5473999999958 +4255,7725,179650.94181022,375054.679357994,25.3460999999952 +4256,7723,179650.788731012,375056.183464058,25.3366999999998 +4257,7722,179650.661250629,375056.44789011,22.5443999999989 +4258,6791,179650.72010294,375056.857781004,25.3325000000041 +4259,7715,179650.555993769,375057.482109487,22.5437999999995 +4260,13084,179650.665489227,375057.394397367,25.3291999999929 +4261,7716,179650.610875525,375057.931013737,25.325800000006 +4262,7717,179650.458447911,375058.440563053,22.5432000000001 +4263,13083,179650.553889237,375058.490942281,25.3222999999998 +4264,7718,179650.496902954,375059.050870821,25.3187999999936 +4265,7719,179650.357064411,375059.436724082,22.5424999999959 +4266,13081,179650.417704839,375059.829045493,25.3138999999937 +4267,7721,179650.217756107,375060.805521749,22.5415999999968 +4268,5299,179647.5009,375062.500500001,22.5500000000029 +4269,13078,179650.095111609,375062.010586336,22.5409000000072 +4270,13080,179650.02655581,375062.684193168,22.540399999998 +4271,5329,179649.958000004,375063.357799999,22.5399999999936 +4272,22802,179650.112813443,375062.824808281,25.2951999999932 +4273,5326,179650.057500001,375063.368299998,25.2918000000063 +4274,13079,179650.168126881,375062.281316563,25.2985999999946 +4275,22803,179650.222834762,375061.743774917,25.301999999996 +4276,13077,179650.27754264,375061.206233267,25.3053000000073 +4277,7720,179650.338506725,375060.607220158,25.3090999999986 +4278,13074,179649.998801298,375063.945050515,25.2881999999954 +4279,13073,179649.86286376,375064.292577483,22.5393999999942 +4280,13071,179649.940102592,375064.521801043,25.284599999999 +4281,13075,179649.881403886,375065.098551553,25.2810000000027 +4282,13070,179649.822705176,375065.675302077,25.2774000000063 +4283,22806,179649.724925008,375066.636051767,25.2712999999931 +4284,13072,179649.767727517,375065.22735497,22.5387999999948 +4285,7714,179649.577455036,375067.09690994,22.537599999996 +4286,6790,179649.656535473,375067.308020551,25.2670999999973 +4287,13066,179649.525327835,375068.597215421,25.2590999999957 +4288,7709,179649.386058725,375068.977507297,22.5363999999972 +4289,5305,179642.500500001,375067.500600003,22.4499999999971 +4290,5301,179642.500900004,375062.500600003,22.4100000000035 +4291,5303,179637.500599999,375067.500300005,22.3999999999942 +4292,5300,179637.5002,375062.500600003,22.4400000000023 +4293,5308,179637.500599999,375072.500800002,22.3699999999953 +4294,5306,179642.500100002,375072.500500005,22.4799999999959 +4295,5309,179642.500800002,375077.500300001,22.5 +4296,7700,179648.256276023,375080.078381397,22.5292000000045 +4297,5328,179648.376499999,375078.897100002,22.5299999999988 +4298,22809,179648.402864534,375079.6261051,25.1900000000023 +4299,5325,179648.475999996,375078.907499999,25.1944999999978 +4300,13062,179648.60593161,375077.630842835,25.2024999999994 +4301,22808,179649.225451998,375079.391916372,25.4814999999944 +4302,13059,179649.457553297,375077.114828911,25.4744000000064 +4303,13060,179648.677990615,375076.922819309,25.2069000000047 +4304,7703,179648.777089786,375075.949109614,25.2130000000034 +4305,5336,179649.666999996,375075.060000002,25.4679999999935 +4306,5347,179651.839000005,375071.920000006,26.4700000000012 +4307,13063,179649.947924141,375072.188750073,25.479800000001 +4308,13064,179649.049079362,375073.276646499,25.229800000001 +4309,7707,179648.983394884,375073.922036491,25.2256999999954 +4310,6789,179648.85202593,375075.212816466,25.2176000000036 +4311,7702,179648.728838868,375075.435133904,22.5322000000015 +4312,7704,179648.665151495,375076.060905151,22.531799999997 +4313,13061,179648.520825751,375077.479002576,22.5308999999979 +4314,7708,179648.908294801,375073.671858791,22.5334000000003 +4315,7705,179648.998236608,375072.788120143,22.5338999999949 +4316,7713,179649.196800083,375070.837100636,22.5351999999984 +4317,7711,179649.330069605,375069.527638026,22.5359999999928 +4318,13067,179649.38303085,375069.99536987,25.2502999999997 +4319,7710,179649.446398217,375069.372746959,25.2541999999958 +4320,13065,179650.175197292,375069.865852512,25.4893000000011 +4321,13068,179649.331805941,375070.498685803,25.247199999998 +4322,7712,179649.280581031,375071.002001733,25.2440000000061 +4323,7706,179649.114763841,375072.63125651,25.2338000000018 +4324,13055,179648.993350692,375081.669003833,25.4885999999969 +4325,7701,179648.329729065,375080.344710201,25.1855000000069 +4326,7699,179648.183458131,375081.781920396,25.1765000000014 +4327,13056,179648.116084412,375082.443912454,25.1723999999958 +4328,22811,179648.752496898,375084.031959843,25.4959999999992 +4329,13058,179648.00354816,375083.54965673,25.165399999998 +4330,6788,179647.891011909,375084.655401003,25.158500000005 +4331,13053,179647.805332512,375085.497258671,25.1532000000007 +4332,13049,179648.511643097,375086.394915834,25.5034000000014 +4333,13054,179647.762492813,375085.918187499,25.1505999999936 +4334,7696,179647.719653107,375086.339116335,25.148000000001 +4335,13052,179647.676813409,375086.760045167,25.1453000000038 +4336,13050,179647.63397371,375087.180974003,25.1426999999967 +4337,7689,179647.548294313,375088.022831671,25.1374000000069 +4338,13047,179648.219261821,375089.263394967,25.5123000000021 +4339,5335,179647.936500002,375092.037500001,25.5209999999934 +4340,22812,179649.906165406,375095.831832875,26.821299999996 +4341,13046,179647.814546794,375093.233952239,25.5246999999945 +4342,7687,179647.098068673,375092.446601044,25.1097000000009 +4343,7685,179647.048049729,375092.938070752,25.1065999999992 +4344,5324,179646.894500002,375094.446800005,25.0972000000038 +4345,22813,179647.570374001,375095.629470095,25.5322000000015 +4346,6787,179647.148087617,375091.95513133,25.1128000000026 +4347,7691,179647.34819096,375089.988981504,25.1251000000047 +4348,7692,179647.448242638,375089.005906582,25.1312999999936 +4349,7694,179647.388329897,375088.606535163,22.5237999999954 +4350,13048,179647.498268474,375088.51436913,25.1343000000052 +4351,7690,179647.418933723,375088.305832028,22.5239000000001 +4352,7688,179647.463722646,375087.865750808,22.5241999999998 +4353,13051,179647.549244318,375087.025442913,22.5247999999992 +4354,7697,179647.634765986,375086.185135018,22.5252999999939 +4355,7695,179647.773277666,375084.824164711,22.526199999993 +4356,13057,179647.912436344,375083.456837218,22.5271000000066 +4357,7698,179648.051595021,375082.089509726,22.527900000001 +4358,5307,179632.500700001,375072.500700001,22.6600000000035 +4359,5330,179625.874100003,375075.156599998,22.5800000000017 +4360,11289,179625.664109614,375077.022794928,22.5820999999996 +4361,11286,179625.45411922,375078.888989858,22.5840999999928 +4362,11282,179626.163911674,375072.580888633,22.5771999999997 +4363,5302,179632.5002,375062.500799999,22.6300000000047 +4364,5261,179632.501000002,375057.500900004,22.5800000000017 +4365,11269,179627.624916878,375059.596153755,22.5627999999997 +4366,5284,179627.909400001,375057.067800004,22.5599999999977 +4367,11263,179628.14535635,375054.808119122,22.5375000000058 +4368,11270,179627.500800125,375060.699245706,22.5639999999985 +4369,11267,179627.37668338,375061.802337661,22.5651999999973 +4370,11265,179627.21207184,375063.26532843,22.5669000000053 +4371,8944,179653.464221884,375031.03958727,25.2292000000016 +4372,8941,179653.599129926,375029.798695598,25.2173999999941 +4373,8943,179653.776104122,375028.170877013,25.2019 +4374,5287,179654.6017,375020.576999996,25.129700000005 +4375,8931,179654.796570234,375018.784451734,25.1125999999931 +4376,8932,179654.717703201,375018.584262028,22.4642000000022 +4377,8933,179654.823775195,375018.53420211,25.1103000000003 +4378,7731,179654.948854513,375016.458110075,22.457899999994 +4379,8927,179655.064207219,375016.322545607,25.0892000000022 +4380,23256,179655.135682832,375015.665064514,25.082899999994 +4381,8929,179655.207158446,375015.007583413,25.0767000000051 +4382,23253,179655.311497103,375014.047805883,25.0675999999949 +4383,23254,179655.405240059,375013.185494736,25.0592999999935 +4384,8925,179655.498983011,375012.3231836,25.0510999999969 +4385,23257,179655.645899128,375010.971749712,25.0383000000002 +4386,8923,179655.792815242,375009.620315835,25.0253999999986 +4387,5167,179655.859500002,375005.309099998,22.4900000000052 +4388,8919,179656.097903464,375003.185227469,22.5578999999998 +4389,5208,179659.137000002,374992.866999999,26.4100000000035 +4390,5189,179662.767000005,374992.668000001,26.4239999999991 +4391,23628,179663.127,374992.586000007,26.4343999999983 +4392,23629,179662.997500002,374991.210500006,26.4389999999985 +4393,23632,179663.432551868,374990.783500757,26.4535000000033 +4394,23631,179663.539632551,374990.151814722,26.4602000000014 +4395,23637,179664.631178506,374989.106407315,26.4391999999934 +4396,23636,179664.043222547,374989.086743236,26.417100000006 +4397,23634,179663.721999999,374989.076000001,26.4231 +4398,23638,179666.257214524,374989.160789791,26.4302000000025 +4399,5222,179661.727000006,374989.373,27.1000000000058 +4400,5223,179662.011000004,374987.859999996,27.0800000000017 +4401,23639,179669.104000002,374989.256000001,26.3773999999976 +4402,23640,179670.698892385,374989.324314658,26.3484000000026 +4403,11256,179628.538241427,375050.082799289,25 +4404,11287,179625.340646397,375079.897428446,22.5852000000014 +4405,11284,179625.227173571,375080.905867033,22.5864000000001 +4406,5317,179632.500599999,375092.500100005,22.5800000000017 +4407,5320,179637.500700001,375092.500599999,22.3500000000058 +4408,22817,179649.167100698,375103.633505587,26.8350999999966 +4409,13038,179646.80386747,375103.149472728,25.5556999999972 +4410,13034,179646.507021397,375106.061754853,25.5647999999928 +4411,13036,179645.895041361,375104.267089434,25.0357999999978 +4412,7670,179645.811203878,375105.090843726,25.0305999999982 +4413,13035,179645.741456803,375105.776151203,25.0262999999977 +4414,7672,179645.663777135,375106.5394012,25.0215999999928 +4415,5398,179646.206000004,375109.015000001,25.5739999999932 +4416,5400,179648.905499998,375106.395000003,26.8399999999965 +4417,22822,179648.287840143,375112.915105846,26.8554000000004 +4418,13031,179645.91985368,375111.724350955,25.5746999999974 +4419,5391,179645.313000005,375109.986000005,25 +4420,6785,179645.469731394,375108.446018666,25.0096000000049 +4421,5393,179645.213500001,375109.975700002,22.5099999999948 +4422,7669,179645.374352183,375108.395219259,22.5109999999986 +4423,13033,179645.030041318,375111.710616436,22.508600000001 +4424,5371,179637.500900004,375107.500500001,22.4199999999983 +4425,7668,179644.846582629,375113.44553287,22.5071000000025 +4426,22825,179644.710571807,375114.731748387,22.5059999999939 +4427,7667,179644.574560989,375116.017963897,22.5050000000047 +4428,22824,179644.808286604,375114.758958884,25 +4429,6784,179644.945935711,375113.457242824,25 +4430,22823,179645.668417651,375114.105050594,25.5754000000015 +4431,13032,179645.129467856,375111.72162142,25 +4432,13027,179645.416981626,375116.485750236,25.5760000000009 +4433,22826,179647.657813177,375119.565760642,26.8709999999992 +4434,21837,179652.807930216,375118.825182371,27.0500000000029 +4435,5405,179653.611000001,375111.3825,27.0500000000029 +4436,5395,179654.785,375118.079000004,26.1129999999976 +4437,5394,179655.481000002,375110.011999998,26.3340000000026 +4438,21838,179654.275196891,375105.22686258,27.0500000000029 +4439,21839,179655.143383365,375097.180692393,27.0500000000029 +4440,25443,179656.1765,375104.210500002,26.3065000000061 +4441,5349,179656.872000001,375098.409000006,26.278999999995 +4442,25447,179669.243742775,375098.86451735,26.8509000000049 +4443,25446,179669.108376246,375099.316502728,26.8657999999996 +4444,25425,179658.069007937,375151.356413919,26.2832999999955 +4445,25424,179657.3293279,375157.729945153,26.286500000002 +4446,5428,179651.386,375153.673999999,25.9419999999955 +4447,25423,179650.982125003,375157.992874999,25.9680999999982 +4448,25421,179657.267000008,375158.267000001,26.2868000000017 +4449,25414,179650.578250002,375162.311749998,25.994200000001 +4450,25420,179656.498504881,375164.754767109,26.2896999999939 +4451,25419,179650.174375005,375166.630624998,26.020399999994 +4452,25415,179648.649226129,375163.767841574,27.0942000000068 +4453,21834,179648.141452245,375168.82768314,27.0782999999938 +4454,22840,179642.626385693,375167.62595088,27.002800000002 +4455,5436,179642.293000005,375170.635000002,26.9900000000052 +4456,22841,179640.068387873,375168.36627198,25.6558999999979 +4457,12990,179639.888729822,375170.087686121,25.6554999999935 +4458,5431,179639.59,375172.950000003,25.6549999999988 +4459,12987,179639.413179338,375174.58820324,25.6508999999933 +4460,22846,179639.128069144,375177.229684468,25.6442999999999 +4461,12984,179638.842958938,375179.871165693,25.6377000000066 +4462,12985,179637.962148979,375179.501312707,25 +4463,5423,179638.188200001,375177.363600004,25 +4464,7594,179638.559818681,375173.849287391,25 +4465,6776,179638.637445927,375173.115184337,25 +4466,7600,179638.743946753,375172.108030386,25 +4467,7599,179638.850447591,375171.100876443,25 +4468,12993,179638.921647225,375170.427557778,25 +4469,12991,179638.992846865,375169.754239116,25 +4470,22842,179639.063014571,375169.09067921,25 +4471,7603,179639.13318228,375168.4271193,25 +4472,12994,179640.248045925,375166.644857835,25.6561999999976 +4473,22843,179640.531816371,375163.925878894,25.6567000000068 +4474,25416,179643.110692848,375163.254725445,27.0213999999978 +4475,12997,179640.815586824,375161.206899963,25.6572000000015 +4476,27,179643.594999999,375158.883499999,27.0399999999936 +4477,5432,179640.971500002,375159.713,25.6575000000012 +4478,5424,179639.9694,375160.519200005,25 +4479,6778,179640.151513666,375158.796992868,25 +4480,12999,179641.291776482,375156.644234326,25.6581000000006 +4481,7616,179640.335513964,375157.056944229,25 +4482,7617,179640.231159013,375157.093110301,22.4707999999955 +4483,7609,179640.053540397,375158.772903088,22.4694000000018 +4484,5426,179639.870000005,375160.508700006,22.4679999999935 +4485,13001,179640.309770707,375156.349655811,22.4714999999997 +4486,7615,179640.388382394,375155.606201325,22.472099999999 +4487,13000,179640.432910249,375156.135889839,25 +4488,7614,179640.519514259,375155.316895597,25 +4489,7618,179640.549893055,375154.078746289,22.4732999999978 +4490,7619,179640.630776346,375154.264715549,25 +4491,22838,179640.686407391,375153.738625523,25 +4492,7613,179640.58546038,375153.742375392,22.4735999999975 +4493,7620,179640.693195947,375152.72348759,22.4744999999966 +4494,7621,179640.813204769,375151.588527977,22.4753999999957 +4495,7610,179640.842591848,375151.310605537,22.4756000000052 +4496,7622,179640.975365188,375150.054928038,22.4766999999993 +4497,6779,179641.031135336,375150.478612401,25 +4498,13005,179641.088107996,375149.939835012,25 +4499,7624,179641.145080656,375149.401057631,25 +4500,7625,179641.099880137,375148.877352547,22.4777000000031 +4501,13009,179641.202053316,375148.86228025,25 +4502,7623,179641.259025976,375148.323502868,25 +4503,7626,179641.216311052,375147.776230272,22.4786000000022 +4504,7628,179641.335266259,375146.651234992,22.4795000000013 +4505,7630,179641.472438421,375145.353956446,22.4805999999953 +4506,5389,179637.500700001,375142.500599999,22.4900000000052 +4507,5427,179641.651100002,375143.664300002,22.4820000000036 +4508,13013,179641.758734774,375142.646428633,22.482799999998 +4509,5425,179641.750599999,375143.674800001,25 +4510,13012,179641.859846584,375142.641680125,25 +4511,7640,179641.866369557,375141.628557272,22.483699999997 +4512,7639,179641.969093166,375141.608560245,25 +4513,22834,179642.023716457,375141.092000306,25 +4514,22833,179642.972370684,375140.346235178,25.6377999999968 +4515,13014,179642.078339744,375140.57544037,25 +4516,13015,179641.959655449,375140.746379167,22.4844000000012 +4517,22835,179642.132963035,375140.058880426,25 +4518,7638,179642.052941352,375139.864201069,22.4851999999955 +4519,5386,179637.500100005,375137.500900004,22.5200000000041 +4520,5388,179632.5002,375142.500599999,22.3399999999965 +4521,5384,179632.500500005,375137.5002,22.3399999999965 +4522,5382,179637.500599999,375132.500300005,22.4900000000052 +4523,5407,179632.500400003,375132.500600003,22.3300000000017 +4524,5385,179627.500600003,375137.500599999,22.5599999999977 +4525,5383,179627.500200003,375132.500500001,22.5800000000017 +4526,5355,179622.501000006,375132.5009,22.5500000000029 +4527,5380,179627.500600003,375127.500399999,22.6000000000058 +4528,5387,179627.500300005,375142.5002,22.5299999999988 +4529,5403,179632.500800006,375127.500399999,22.3399999999965 +4530,5379,179637.500599999,375122.500599999,22.5 +4531,5381,179637.500500005,375127.500399999,22.4900000000052 +4532,7655,179643.634590242,375124.906998944,22.4976000000024 +4533,7653,179643.735355053,375123.954094924,22.4983999999968 +4534,7665,179643.910803113,375122.29493269,22.4998000000051 +4535,7663,179644.013631247,375121.32251633,22.5005999999994 +4536,7666,179644.195532043,375119.602332465,22.5019999999931 +4537,7660,179644.250242475,375119.084951472,22.5023999999976 +4538,7657,179644.325087663,375118.377161868,22.502999999997 +4539,13029,179644.449824329,375117.197562885,22.5040000000008 +4540,13030,179644.60181294,375116.711532969,25 +4541,7659,179644.6706375,375116.060674936,25 +4542,13028,179644.532988392,375117.362390995,25 +4543,22827,179645.169119887,375118.832607079,25.5766000000003 +4544,22829,179644.461095944,375118.042261381,25 +4545,7658,179644.395339284,375118.664107054,25 +4546,22828,179644.32963787,375119.285430234,25 +4547,7662,179644.257690173,375119.965823106,25 +4548,13025,179644.92125814,375121.179463927,25.5773000000045 +4549,7661,179644.120041065,375121.267539166,25 +4550,13026,179644.051216509,375121.918397199,25 +4551,7664,179643.982391957,375122.569255225,25 +4552,177,179644.638999999,375123.852000006,25.5779999999941 +4553,6783,179643.844742846,375123.870971285,25 +4554,7656,179643.780594647,375124.477606136,25 +4555,7654,179643.716446444,375125.084240977,25 +4556,13021,179644.27708457,375127.433791175,25.5910000000003 +4557,5401,179647.298,375123.364000004,26.8800000000047 +4558,22830,179646.629992284,375129.976747826,26.9355999999971 +4559,22831,179644.041184708,375129.768436238,25.5994000000064 +4560,7652,179643.329799976,375128.740667965,25 +4561,6782,179643.127799943,375130.650935922,25 +4562,7651,179643.248896591,375128.55439375,22.4946000000054 +4563,13022,179643.430799987,375127.785533983,25 +4564,13023,179643.340598296,375127.687196873,22.495299999995 +4565,13024,179643.4813,375127.307966996,25 +4566,5392,179643.432300001,375126.82,22.4959999999992 +4567,5390,179643.531800006,375126.830400001,25 +4568,7650,179643.001486342,375130.894081838,22.4925999999978 +4569,7644,179642.851719417,375132.310384925,22.491399999999 +4570,7647,179642.788849398,375132.904928681,22.4909000000043 +4571,7645,179642.892822485,375132.873063911,25 +4572,13019,179642.951566853,375132.317531914,25 +4573,7646,179643.010311216,375131.761999909,25 +4574,13018,179643.805284835,375132.103081301,25.6079000000027 +4575,13020,179643.06905558,375131.206467915,25 +4576,7648,179642.775333751,375133.984127909,25 +4577,5397,179643.496000003,375135.164000001,25.6190000000061 +4578,5402,179646.097500004,375135.247999996,26.9799999999959 +4579,21836,179651.165290091,375135.397850733,27.0633999999991 +4580,5435,179650.449499998,375143.706000004,27.0800000000017 +4581,5396,179653.085499998,375135.876500003,26.0274999999965 +4582,5399,179651.742000002,375128.704,27.0500000000029 +4583,25430,179653.935250003,375126.977750003,26.0703000000067 +4584,25431,179652.274965104,375123.764591187,27.0500000000029 +4585,25436,179654.360124998,375122.528375,26.0915999999997 +4586,25435,179662.123921197,375124.078041472,26.2954000000027 +4587,25437,179662.215,375123.609000005,26.2957000000024 +4588,25438,179662.723167662,375121.580943093,26.2982999999949 +4589,25439,179663.096271414,375120.091915529,26.3025999999954 +4590,25440,179663.406384733,375118.854277831,26.3062000000064 +4591,25441,179663.757000003,375117.455000002,26.303700000004 +4592,25433,179659.927999999,375136.766999997,26.2872000000061 +4593,25432,179659.314166464,375141.580622677,26.2859000000026 +4594,25434,179660.947000001,375130.138999999,26.290399999998 +4595,25422,179652.235750005,375144.775249999,25.9847000000009 +4596,25429,179659.150000002,375142.868000001,26.2856000000029 +4597,25428,179658.085999999,375151.210000001,26.2832999999955 +4598,25426,179651.810875002,375149.224625003,25.9633999999933 +4599,25427,179650.115102571,375147.587338697,27.0877999999939 +4600,21835,179649.780705146,375151.468677398,27.0954999999958 +4601,22839,179649.468852572,375155.088338695,27.1027999999933 +4602,22836,179644.153616451,375153.84157896,27.0614999999962 +4603,22837,179641.570348073,375153.975068908,25.6585999999952 +4604,13003,179641.848919645,375151.305903491,25.6591000000044 +4605,13004,179640.814312659,375152.529054727,25 +4606,7611,179640.742038433,375153.212535497,25 +4607,7612,179640.886586882,375151.845573951,25 +4608,13007,179640.922723994,375151.503833558,25 +4609,13006,179640.958861113,375151.162093174,25 +4610,5441,179644.897,375147.131999999,27.0899999999965 +4611,13008,179642.219628327,375147.753915962,25.659799999994 +4612,5433,179642.353,375146.476000004,25.6600000000035 +4613,22832,179645.303732827,375143.105666913,27.0527000000002 +4614,13011,179642.721326016,375142.830764752,25.6468000000023 +4615,7631,179641.588553276,375145.207238734,25 +4616,6780,179641.486916617,375146.16839334,25 +4617,7629,179641.429646868,375146.70998019,25 +4618,7627,179641.372377124,375147.25156704,25 +4619,13016,179643.223415356,375137.861705601,25.6288000000059 +4620,7636,179642.18758633,375139.542320482,25 +4621,7637,179642.313703097,375138.349663164,25 +4622,13017,179642.376761481,375137.7533345,25 +4623,7633,179642.439819857,375137.157005832,25 +4624,7635,179642.276245851,375137.75247414,22.4869000000035 +4625,7641,179642.223482832,375138.251438949,22.4864999999991 +4626,7632,179642.398173098,375136.59944303,22.4878999999928 +4627,7642,179642.541632619,375135.242787223,22.4890000000014 +4628,6781,179642.577660419,375135.853479281,25 +4629,7643,179642.657845013,375135.0951919,25 +4630,7649,179642.703977097,375133.707541849,22.4903000000049 +4631,7634,179642.508740142,375136.505242564,25 +4632,13010,179641.315701548,375147.787534952,25 +4633,5443,179649.157000009,375158.708000004,27.1100000000006 +4634,25445,179667.588000003,375104.392999999,26.6281000000017 +4635,25444,179665.653999999,375110.828000005,26.3249000000069 +4636,25442,179665.41554264,375111.661029492,26.2887999999948 +4637,13002,179640.384212106,375156.59641704,25 +4638,12998,179639.877403423,375161.389190581,25 +4639,7608,179639.785406839,375162.259181149,25 +4640,6777,179639.601413675,375163.999162305,25 +4641,7673,179645.558684956,375106.584025942,22.5121999999974 +4642,13041,179645.936960101,375103.85521229,25.0383000000002 +4643,7675,179645.978878841,375103.443335135,25.0409000000072 +4644,7677,179646.065777604,375102.589501966,25.0463000000018 +4645,6786,179646.152676355,375101.735668786,25.0516000000061 +4646,12983,179637.191190511,375186.792090144,25 +4647,7580,179637.126309529,375187.405654766,25 +4648,7581,179636.958078656,375188.045908991,22.4450999999972 +4649,12982,179637.061472431,375188.018804289,25 +4650,7582,179636.996635344,375188.631953806,25 +4651,7583,179636.842723634,375189.136788521,22.4441999999981 +4652,12981,179636.918251891,375189.373208113,25 +4653,7584,179636.839868441,375190.114462417,25 +4654,7585,179636.704341114,375190.445432518,22.4431000000041 +4655,12977,179636.731651332,375191.137846813,25 +4656,12978,179636.611989092,375191.318779211,22.4423999999999 +4657,5490,179632.500500005,375192.5009,22.4700000000012 +4658,7587,179636.519637074,375192.192125902,22.4416999999958 +4659,5514,179636.307599999,375194.197299998,22.4400000000023 +4660,5501,179636.407000005,375194.208000001,25 +4661,7586,179636.62343422,375192.161231209,25 +4662,22850,179637.245216914,375194.673882402,25.6008000000002 +4663,6773,179636.301154874,375195.17671353,25 +4664,5506,179636.949999999,375197.409000009,25.5939999999973 +4665,22851,179639.282400835,375201.52336042,27.1474000000017 +4666,22853,179636.706344713,375199.717302557,25.6125000000029 +4667,12973,179636.462689418,375202.025605105,25.6309000000037 +4668,5512,179639.026000008,375204.154000003,27.1600000000035 +4669,22852,179644.677370824,375201.950692952,27.0666000000056 +4670,180,179644.311000004,375205.199999999,27.0800000000017 +4671,25405,179646.243125003,375205.508749999,26.0810000000056 +4672,25404,179651.681000005,375207.949000005,26.2381000000023 +4673,25396,179645.860750001,375208.965500001,26.0669999999955 +4674,5510,179645.096000005,375215.879000004,26.0390000000043 +4675,21831,179643.343056213,375213.784599047,27.1153999999951 +4676,25397,179643.827028111,375209.492299527,27.0976999999984 +4677,25398,179638.572367713,375208.193923377,27.1766000000061 +4678,22858,179638.118735421,375212.23384675,27.193299999999 +4679,5505,179635.754999999,375208.730000004,25.684500000003 +4680,22859,179635.503368828,375211.113863152,25.7035999999935 +4681,12967,179635.251737665,375213.497726295,25.7225999999937 +4682,5515,179637.662999999,375216.2925,27.2100000000064 +4683,5507,179642.671000004,375219.745000001,27.1399999999994 +4684,22861,179636.894725479,375223.13453985,27.2324999999983 +4685,25394,179642.264016822,375223.681834854,27.1649999999936 +4686,21830,179641.857033636,375227.618669696,27.1900000000023 +4687,5537,179636.300000001,375228.431000002,27.25 +4688,5534,179641.041500002,375235.5075,27.2400000000052 +4689,22865,179635.540396497,375235.860744696,27.2725999999966 +4690,22869,179634.807142477,375243.032762896,27.2943999999989 +4691,21828,179632.236082811,375239.544709593,25.6337000000058 +4692,5532,179631.928000007,375242.129000001,25.6150000000052 +4693,7534,179631.304016441,375240.910603508,25 +4694,6766,179631.219440356,375241.684658948,25 +4695,7532,179631.170522083,375242.13236779,25 +4696,7531,179631.051367015,375242.30226966,22.4480999999942 +4697,7530,179631.121603802,375242.580076624,25 +4698,7529,179630.926460728,375243.445434336,22.4483000000037 +4699,7527,179630.732249964,375245.222885981,22.4486000000034 +4700,7528,179631.023767244,375243.475494307,25 +4701,6765,179630.828094136,375245.266329665,25 +4702,12944,179630.765562408,375245.838631164,25 +4703,12943,179630.637387048,375246.091088369,22.4487999999983 +4704,7518,179630.542524137,375246.959290758,22.4489000000031 +4705,7520,179630.447317954,375247.830634758,22.449099999998 +4706,7519,179630.613896899,375247.226701073,25 +4707,7522,179630.496153031,375248.304314032,25 +4708,7526,179630.364228543,375248.591083948,22.4492000000027 +4709,12940,179630.437281094,375248.843120508,25 +4710,7521,179630.378409158,375249.38192698,25 +4711,7523,179630.237584811,375249.750150017,22.4493999999977 +4712,12939,179630.314018019,375249.971246261,25 +4713,7525,179630.041704752,375251.542879384,22.4496999999974 +4714,5521,179627.500500001,375252.500400003,22.4400000000023 +4715,22873,179629.935652371,375252.513489693,22.4498000000021 +4716,5526,179629.829600003,375253.484099999,22.4499999999971 +4717,22874,179629.995557673,375252.88585227,25 +4718,22872,179630.062115345,375252.276704542,25 +4719,22871,179630.84132459,375252.326313403,25.6181999999972 +4720,7524,179630.153704584,375251.438463494,25 +4721,12938,179631.094649177,375249.949126799,25.617499999993 +4722,22870,179633.841861404,375252.474256851,27.3276999999944 +4723,5531,179630.588000003,375254.703500003,25.6190000000061 +4724,12937,179630.44545057,375256.041177463,25.6193999999959 +4725,7516,179629.745433569,375255.165886369,25 +4726,6763,179629.505394213,375257.350809149,25 +4727,12932,179630.032221403,375259.918901533,25.6206999999995 +4728,5540,179632.938000005,375261.315000005,27.3600000000006 +4729,12928,179629.732028499,375262.735898241,25.6215999999986 +4730,5530,179629.248000003,375267.278000001,25.6230000000069 +4731,22875,179631.970684811,375269.432085652,27.2917000000016 +4732,5539,179637.463300005,375269.092700005,27.3600000000006 +4733,25382,179636.973637618,375273.571329147,27.367499999993 +4734,5679,179631.237500001,375275.584500004,27.2400000000052 +4735,21824,179636.483975243,375278.049958296,27.3751000000047 +4736,22878,179630.343944252,375283.082643941,27.1821999999956 +4737,5684,179635.514700003,375286.9153,27.3899999999994 +4738,5680,179629.537000004,375289.854000002,27.1300000000047 +4739,12915,179627.199369732,375286.646867983,25.6410000000033 +4740,12913,179626.866707608,375289.792037152,25.6438999999955 +4741,5673,179626.52,375293.070000004,25.6469999999972 +4742,5672,179626.591000002,375295.059999999,25.5739999999932 +4743,7468,179625.430677671,375294.441324856,25 +4744,6758,179625.598857898,375292.910489175,25 +4745,7476,179625.742731262,375291.600903172,25 +4746,7469,179625.500281569,375292.892062936,22.243100000007 +4747,7477,179625.652234379,375291.508868486,22.2504000000044 +4748,7475,179625.769982342,375290.437033642,22.2559999999939 +4749,5593,179622.500700004,375292.5002,22.3500000000058 +4750,5592,179622.500399999,375287.500300001,22.4100000000035 +4751,7478,179625.944313973,375288.850129519,22.2644 +4752,7472,179626.023094516,375288.13300686,22.2681000000011 +4753,7479,179626.144367762,375287.029082056,22.2739000000001 +4754,7471,179626.174351342,375287.67214518,25 +4755,12916,179626.254509822,375286.942514416,25 +4756,6759,179626.334668301,375286.212883651,25 +4757,7470,179626.163564898,375286.854334589,22.2747999999992 +4758,7480,179626.293384202,375285.67261688,22.2810000000027 +4759,12917,179626.39792623,375285.63708774,25 +4760,7481,179626.461184155,375285.061291821,25 +4761,7482,179626.434723765,375284.386032563,22.2878000000055 +4762,22880,179626.524442077,375284.48549591,25 +4763,5662,179626.587700002,375283.909699999,25 +4764,5683,179626.480900005,375283.965700004,22.2899999999936 +4765,5588,179622.500799999,375282.500500001,22.3999999999942 +4766,7489,179626.662298065,375282.314570259,22.2986999999994 +4767,7487,179626.799134094,375281.069055162,22.3052000000025 +4768,7485,179626.86238515,375280.493328467,22.3081999999995 +4769,5583,179622.500300005,375277.500100002,22.4100000000035 +4770,7483,179626.921318386,375279.956903718,22.3110000000015 +4771,7484,179626.994080201,375280.210438464,25 +4772,6760,179627.061339367,375279.598181225,25 +4773,7490,179627.086821403,375278.450454626,22.3190000000031 +4774,7492,179627.157345384,375278.724242527,25 +4775,7491,179627.253351413,375277.850303832,25 +4776,7493,179627.221968863,375277.220309217,22.3254000000015 +4777,7495,179627.363196544,375275.934820186,22.3322000000044 +4778,5579,179622.500100002,375272.500500005,22.4499999999971 +4779,7497,179627.516372751,375274.540572748,22.3395000000019 +4780,7499,179627.664539002,375273.191927157,22.3466000000044 +4781,7501,179627.813925885,375271.832171015,22.3537000000069 +4782,7502,179627.980857637,375270.312717225,22.361699999994 +4783,5525,179628.155300003,375268.7249,22.3699999999953 +4784,7503,179628.113212693,375270.023023546,25 +4785,5522,179628.258299999,375268.702300005,25 +4786,7505,179628.380732924,375267.587872356,25 +4787,7507,179628.317651153,375267.247051708,22.377800000002 +4788,7508,179628.441949397,375267.030658528,25 +4789,7504,179628.403379887,375266.466681108,22.381899999993 +4790,6762,179628.50316586,375266.473444704,25 +4791,7511,179628.710926201,375263.66715179,22.3965000000026 +4792,7509,179628.866871759,375262.247612268,22.403999999995 +4793,12931,179628.981132075,375261.207524724,22.4094999999943 +4794,7512,179629.095392387,375260.167437173,22.4149000000034 +4795,12930,179629.111085568,375260.939945359,25 +4796,12933,179629.16448833,375260.453854576,25 +4797,7513,179629.217891097,375259.967763793,25 +4798,12936,179629.289766878,375259.313525133,25 +4799,12934,179629.361642651,375258.659286465,25 +4800,12935,179629.246611457,375258.790921822,22.4220999999961 +4801,7514,179629.397830531,375257.414406471,22.4293999999936 +4802,7517,179629.64977321,375255.121025365,22.4413999999961 +4803,7515,179629.70903163,375254.581608437,22.4441999999981 +4804,6764,179629.823098555,375254.458952285,25 +4805,5523,179629.929000005,375253.495000001,25 +4806,7506,179629.004280038,375261.912126929,25 +4807,12929,179628.934706077,375262.545413624,25 +4808,7510,179628.820078038,375263.58879843,25 +4809,12927,179629.108969487,375268.592470337,25.6242000000057 +4810,22876,179628.850915618,375271.032252353,25.6264999999985 +4811,22877,179628.040669035,375270.683385316,25 +4812,6761,179627.968125384,375271.343747091,25 +4813,12926,179627.895268451,375272.006960597,25 +4814,12923,179628.592861749,375273.47203438,25.6288000000059 +4815,12920,179628.27990368,375276.430910703,25.6315000000031 +4816,5674,179627.884000003,375280.174000002,25.6349999999948 +4817,12921,179627.329033092,375277.161376689,25 +4818,7494,179627.404714782,375276.472449549,25 +4819,12922,179627.473100271,375275.849939398,25 +4820,7496,179627.541485757,375275.227429241,25 +4821,12924,179627.609091707,375274.612015184,25 +4822,7498,179627.676697657,375273.99660112,25 +4823,12925,179627.749554589,375273.333387613,25 +4824,7500,179627.822411522,375272.670174107,25 +4825,7486,179626.921081401,375280.874943424,25 +4826,12918,179627.732678134,375281.604679465,25.6362999999983 +4827,22879,179627.466023937,375284.125773724,25.6386999999959 +4828,7488,179626.754390698,375282.392321713,25 +4829,12919,179626.847674042,375281.543167531,25 +4830,12914,179626.103194643,375288.319838498,25 +4831,7474,179626.03203794,375288.967531815,25 +4832,7473,179625.886604618,375290.291317172,25 +4833,5598,179617.500500005,375297.500399999,22.3000000000029 +4834,7464,179625.151847392,375296.063785765,22.2265000000043 +4835,7467,179625.32237877,375294.511474576,22.2345999999961 +4836,7465,179625.288488664,375295.735579327,25 +4837,7466,179625.228284027,375296.283583105,25 +4838,6757,179625.168079395,375296.83158689,25 +4839,6753,179625.539750002,375297.201000005,24.8834999999963 +4840,5671,179626.565000001,375296.239000004,25.4959999999992 +4841,5667,179626.3402,375297.513200007,22.2100000000064 +4842,7447,179626.307525426,375297.848209701,22.2167999999947 +4843,7448,179625.537090492,375297.303651951,22.2100000000064 +4844,7449,179625.257483002,375297.852329623,22.2100000000064 +4845,7458,179625.290641505,375297.550164811,22.2100000000064 +4846,5668,179625.323800001,375297.248000003,22.2100000000064 +4847,5659,179625.237,375297.122000001,24.8920000000071 +4848,7456,179625.213165876,375297.339215573,24.9036999999953 +4849,7455,179625.118726749,375297.280812088,25 +4850,7461,179625.094050422,375297.505424682,25 +4851,7453,179624.97827277,375297.643799018,22.218200000003 +4852,7459,179625.091612004,375297.527620055,25 +4853,7454,179625.069374099,375297.730037279,25 +4854,7462,179625.027953621,375298.107061051,25 +4855,6755,179624.986533146,375298.484084826,25 +4856,5687,179624.806600004,375299.206500005,22.2100000000064 +4857,5601,179617.500900004,375302.500500001,22.3399999999965 +4858,5602,179612.500500005,375302.500600003,22.3600000000006 +4859,5604,179617.500100005,375307.500600003,22.3699999999953 +4860,7423,179624.137687214,375305.609443098,22.3405999999959 +4861,5663,179624.2557,375304.545699999,22.3399999999965 +4862,7436,179624.308921445,375304.973179981,25 +4863,5654,179624.344000001,375304.657000002,25 +4864,5664,179624.554300003,375304.581500005,22.3399999999965 +4865,7432,179625.739088044,375303.676350478,22.3350000000064 +4866,7440,179625.851082005,375302.528085791,22.3117000000057 +4867,6752,179625.870790947,375303.355863612,24.9168000000063 +4868,7439,179625.794343214,375304.139647715,24.9245999999985 +4869,7438,179625.697001949,375304.107855633,22.3436999999976 +4870,7433,179625.717895478,375304.92343181,24.9324000000051 +4871,7437,179625.607957337,375305.02082257,22.3622000000032 +4872,5657,179625.565000001,375306.491,24.948000000004 +4873,5666,179625.474300001,375306.391199999,22.3899999999994 +4874,6751,179625.226484992,375306.491767611,24.9554000000062 +4875,7431,179624.759684704,375306.39279427,22.3899999999994 +4876,7427,179624.448447134,375305.537764017,22.366399999999 +4877,7429,179624.377752375,375306.176413275,22.3840000000055 +4878,7428,179624.336204994,375305.642890502,24.9876999999979 +4879,6749,179624.290598355,375306.054930724,24.9824999999983 +4880,7430,179624.273724005,375306.207384642,24.9805999999953 +4881,6748,179624.183634028,375306.102456044,25 +4882,6750,179624.25684965,375306.359838556,24.9787000000069 +4883,5656,179624.241999999,375306.493999999,24.976999999999 +4884,5665,179624.353700001,375306.3937,22.3899999999994 +4885,7422,179624.734242495,375306.492883809,24.9661999999953 +4886,7421,179624.095160898,375306.899907082,25 +4887,5678,179625.493000001,375307.225000001,25.5109999999986 +4888,6747,179624.006687772,375307.697358124,25 +4889,5677,179625.125999998,375308.528000001,25.6370000000024 +4890,7419,179623.949264202,375308.214944534,25 +4891,7417,179623.807173744,375308.588623665,22.3421999999991 +4892,7418,179623.891840622,375308.732530948,25 +4893,7415,179623.746465076,375310.042871002,25 +4894,7414,179623.603466161,375310.424802028,22.343200000003 +4895,5697,179617.500999998,375312.500900004,22.4100000000035 +4896,5695,179612.500800002,375312.500599999,22.320000000007 +4897,5700,179617.500100005,375317.500500005,22.429999999993 +4898,5699,179612.500500005,375317.500299998,22.3000000000029 +4899,5696,179607.500399999,375312.500800002,22.5299999999988 +4900,5701,179607.500600003,375317.500599999,22.4900000000052 +4901,5703,179612.500599999,375322.500500001,22.3000000000029 +4902,5702,179607.500500001,375322.500500001,22.4799999999959 +4903,5740,179612.500500005,375327.500500001,22.2899999999936 +4904,5708,179607.500600003,375327.500600003,22.4700000000012 +4905,5709,179607.500700004,375332.500400003,22.4600000000064 +4906,5735,179612.500300001,375332.500900004,22.3099999999977 +4907,5710,179617.5002,375332.500700001,22.4400000000023 +4908,5706,179617.500599999,375327.500399999,22.429999999993 +4909,7393,179621.363768026,375330.612584669,22.3543999999965 +4910,15062,179621.512975331,375329.267727625,22.3537000000069 +4911,7395,179621.662182637,375327.922870584,22.352899999998 +4912,7398,179621.877046973,375325.986223988,22.351800000004 +4913,7396,179621.947216671,375325.353760168,22.3515000000043 +4914,5704,179617.500800002,375322.500500001,22.4499999999971 +4915,7409,179622.460557636,375320.726744924,22.3488999999972 +4916,5734,179622.247699998,375322.645400003,22.3500000000058 +4917,7408,179622.553988334,375320.791239984,25 +4918,15069,179622.698467221,375319.488982014,25 +4919,7405,179622.766476668,375318.875979971,25 +4920,7407,179622.638678107,375319.12120359,22.3481000000029 +4921,15068,179622.750507895,375318.113192808,22.3475000000035 +4922,7410,179622.862337682,375317.105182014,22.3469000000041 +4923,7404,179623.01111982,375315.764090389,22.3462 +4924,5733,179623.128500003,375323.442499999,25.5899999999965 +4925,5725,179622.341500003,375322.706500001,25 +4926,7400,179622.219503202,375323.806116074,25 +4927,7399,179622.092598487,375324.043383606,22.3508000000002 +4928,6745,179622.116523292,375324.734323762,25 +4929,15065,179622.046199467,375325.368186396,25 +4930,15064,179622.889647212,375325.590782877,25.581600000005 +4931,15058,179622.453691371,375329.511844382,25.5663999999961 +4932,22887,179625.071186401,375332.046911031,27.2706000000035 +4933,21821,179630.936843093,375327.742408909,27.2940999999992 +4934,25364,179630.209271543,375334.108704459,27.2621000000072 +4935,5693,179624.209000003,375339.925999999,27.25 +4936,5690,179629.481699999,375340.475000001,27.2299999999959 +4937,21816,179628.528147824,375348.818231374,27.1879999999946 +4938,22890,179623.20116641,375348.440101612,27.1978999999992 +4939,22895,179627.983823914,375353.580865692,27.1640000000043 +4940,22892,179622.362016607,375355.529175404,27.1545000000042 +4941,5797,179627.439500004,375358.343499999,27.1399999999994 +4942,5794,179622.082300004,375357.892200001,27.1399999999994 +4943,25354,179621.537132371,375362.497925647,27.1144000000058 +4944,15039,179619.029682696,375359.838308234,25.5861000000004 +4945,25355,179618.772555847,375362.106656514,25.590200000006 +4946,15036,179618.515428994,375364.375004787,25.5944000000018 +4947,22896,179620.991964743,375367.103651289,27.088699999993 +4948,25353,179626.830969002,375363.667922754,27.1132000000071 +4949,21813,179626.222438008,375368.992345508,27.0864000000001 +4950,25352,179628.736500002,375364.440000001,26.0724999999948 +4951,186,179627.932,375371.728000004,26.0500000000029 +4952,25351,179633.793000005,375371.100000005,26.1030000000028 +4953,25345,179627.127499998,375379.016000003,26.0274999999965 +4954,25344,179632.52,375382.534000002,26.0917999999947 +4955,5796,179626.323000003,375386.304000005,26.0050000000047 +4956,25343,179631.357000001,375392.956999999,26.0813999999955 +4957,25337,179625.530999999,375392.771500003,25.9737000000023 +4958,25338,179623.860896993,375389.655620359,26.9823000000033 +4959,5793,179623.355200004,375394.080499999,26.9600000000064 +4960,22906,179618.114522375,375391.412428681,26.9533999999985 +4961,5782,179617.829,375393.824500002,26.9400000000023 +4962,22910,179616.98280108,375400.973124221,26.9002000000037 +4963,15011,179615.153766122,375395.260043945,25.5733999999939 +4964,15007,179614.733926017,375399.15010459,25.5687999999936 +4965,22911,179614.456113018,375401.724202294,25.5657999999967 +4966,25341,179616.471938808,375405.288849831,26.8761999999988 +4967,5856,179614.178300001,375404.298300002,25.5626999999949 +4968,15006,179613.931589361,375406.5843517,25.5599999999977 +4969,22914,179613.721058033,375408.535161324,25.5576000000001 +4970,7306,179613.080257662,375407.477363233,25 +4971,22915,179612.998437233,375408.229422428,25 +4972,22916,179612.946283028,375408.708802018,25 +4973,7309,179612.894128833,375409.188181616,25 +4974,5835,179612.708000001,375410.899,25 +4975,5860,179612.608600006,375410.888100002,22.2100000000064 +4976,7310,179612.809662528,375409.040006794,22.2140000000072 +4977,5808,179607.500600003,375407.500200003,22.3899999999994 +4978,5812,179607.5009,375412.500200003,22.3699999999953 +4979,5813,179602.500799999,375412.500300005,22.2799999999988 +4980,5816,179607.500399999,375417.500000004,22.2799999999988 +4981,188,179602.500399999,375417.500300001,22.2799999999988 +4982,5819,179602.500700004,375422.500500005,22.2700000000041 +4983,5818,179597.500800002,375417.500500005,22.4499999999971 +4984,5815,179597.500300009,375412.500700004,22.4700000000012 +4985,5817,179592.500400003,375417.500500005,22.4199999999983 +4986,5822,179597.500999998,375422.500900004,22.4199999999983 +4987,5823,179597.500400003,375427.500100002,22.3800000000047 +4988,5824,179602.500399999,375427.500300005,22.2799999999988 +4989,5828,179597.500300009,375432.500500001,22.3600000000006 +4990,5829,179602.500700004,375432.500600003,22.3099999999977 +4991,5833,179597.500800002,375437.500700004,22.3399999999965 +4992,5832,179592.500100005,375437.500700004,22.4600000000064 +4993,5864,179592.500900004,375442.500500005,22.4600000000064 +4994,11652,179585.417882018,375440.685881969,22.2792000000045 +4995,11650,179585.291648675,375441.805293966,22.2801999999938 +4996,5867,179597.500900004,375442.500900004,22.320000000007 +4997,5865,179602.500399999,375442.500500005,22.3600000000006 +4998,5830,179602.500500001,375437.500400007,22.3399999999965 +4999,5831,179607.500600003,375437.500499997,22.3000000000029 +5000,5855,179607.501000002,375432.5009,22.2799999999988 +5001,7285,179609.883102123,375435.529310215,22.3665000000037 +5002,7283,179609.75964326,375436.645501073,22.3736000000063 +5003,7281,179609.635380585,375437.768959194,22.3806999999942 +5004,7271,179609.517995175,375438.830240022,22.3874000000069 +5005,7280,179609.489963129,375439.083677575,22.3891000000003 +5006,14982,179609.641578086,375438.622553322,25 +5007,7273,179609.560736373,375439.353446785,25 +5008,14980,179610.557453692,375438.404323053,25.6187999999966 +5009,6731,179609.722419802,375437.891659863,25 +5010,7282,179609.849272519,375436.74477898,25 +5011,5847,179610.751000002,375436.719999999,25.6209999999992 +5012,7284,179609.950777609,375435.82706704,25 +5013,22927,179611.00270877,375434.280236684,25.6082000000024 +5014,14983,179611.254417546,375431.840473369,25.5954000000056 +5015,7287,179610.298113953,375432.68678413,25 +5016,22929,179610.236656144,375433.242426869,25 +5017,7288,179610.175198331,375433.798069615,25 +5018,22928,179610.113740519,375434.353712354,25 +5019,7286,179610.012420844,375434.360140428,22.3591000000015 +5020,6732,179610.052282706,375434.9093551,25 +5021,7289,179610.122150812,375433.368072417,22.3527999999933 +5022,7290,179610.229311571,375432.39923263,22.3466000000044 +5023,14985,179610.311238617,375431.658530653,22.3418999999994 +5024,7292,179610.393165674,375430.917828679,22.3371999999945 +5025,5825,179607.500399999,375427.500300005,22.2700000000041 +5026,5836,179610.576600004,375429.259399999,22.3267000000051 +5027,14989,179610.693618976,375428.201432176,22.320000000007 +5028,7298,179610.810637947,375427.143464349,22.3132999999943 +5029,14993,179610.910736632,375426.238472711,22.3074999999953 +5030,7297,179610.921580713,375427.050006248,25 +5031,14994,179611.000266615,375426.338607438,25 +5032,14992,179611.078952525,375425.627208635,25 +5033,7296,179611.010835316,375425.333481081,22.3018000000011 +5034,14987,179611.53865933,375429.085374016,25.5810000000056 +5035,5862,179613.575700004,375429.7568,26.7400000000052 +5036,7291,179610.487056974,375430.978542063,25 +5037,5834,179610.675999999,375429.270300001,25 +5038,14986,179610.43185183,375431.477654211,25 +5039,14988,179610.798790358,375428.160153124,25 +5040,14984,179610.376646679,375431.976766359,25 +5041,5821,179607.501000002,375422.500800002,22.320000000007 +5042,22930,179611.726977143,375445.374670256,26.6444000000047 +5043,14975,179609.976814758,375443.457292207,25.6123999999982 +5044,22931,179609.772194862,375445.237982385,25.6101000000053 +5045,14972,179609.567574959,375447.018672559,25.607799999998 +5046,5903,179611.449000001,375447.723000001,26.6300000000047 +5047,22934,179610.510981712,375456.433185212,26.6460999999981 +5048,5902,179608.775000002,375453.916000005,25.599000000002 +5049,22936,179608.611531392,375455.434979685,25.604800000001 +5050,22935,179608.448062778,375456.953959361,25.6106 +5051,14968,179608.121125549,375459.99191872,25.6220999999932 +5052,5907,179609.705400001,375463.913600001,26.6600000000035 +5053,14964,179607.774413962,375463.213625059,25.6343999999954 +5054,5901,179607.515500002,375465.6195,25.6435000000056 +5055,14961,179606.980169449,375470.593887594,25.6624000000011 +5056,22940,179608.755842187,375472.730938155,26.6763000000064 +5057,22786,179619.196694821,375471.562011503,26.6631999999954 +5058,22948,179618.790847413,375475.736505751,26.6766000000061 +5059,5910,179618.385000002,375479.911000002,26.6900000000023 +5060,5900,179606.256000008,375477.323000006,25.6879999999946 +5061,14959,179606.093600728,375478.795288064,25.6843999999983 +5062,7233,179605.24919432,375478.220665686,25 +5063,6726,179605.320456766,375477.582314864,25 +5064,7231,179605.172353994,375478.007581897,22.5472000000009 +5065,7232,179605.177931882,375478.8590165,25 +5066,7234,179605.047567528,375479.125387263,22.5460000000021 +5067,5891,179602.501000002,375477.5009,22.3300000000017 +5068,7237,179605.278638531,375477.055512179,22.5482000000047 +5069,7239,179605.513923429,375474.947889995,22.5503999999928 +5070,5886,179602.5009,375472.500500001,22.3399999999965 +5071,5911,179597.500700001,375472.500600003,22.3099999999977 +5072,5884,179597.500999998,375467.500800002,22.320000000007 +5073,5882,179602.500799999,375467.500500005,22.3099999999977 +5074,5913,179602.500799999,375462.500700001,22.25 +5075,5880,179597.500900004,375462.500400003,22.2899999999936 +5076,5883,179592.500900004,375467.500599999,22.4199999999983 +5077,5879,179592.5002,375462.500300001,22.4400000000023 +5078,5878,179587.500799999,375462.500300001,22.3399999999965 +5079,5877,179592.500700001,375457.500600003,22.4600000000064 +5080,5872,179592.500599999,375452.500500001,22.4700000000012 +5081,5876,179597.500700001,375457.500500001,22.2799999999988 +5082,190,179602.500700004,375457.500500001,22.3300000000017 +5083,5873,179597.500900004,375452.500700004,22.2899999999936 +5084,5874,179602.500799999,375452.500700004,22.3399999999965 +5085,7260,179607.674609438,375455.49627956,22.4933000000019 +5086,7261,179607.827873431,375454.110620692,22.4845000000059 +5087,7266,179608.06648133,375451.95336806,22.4707999999955 +5088,7263,179608.164802764,375451.064444561,22.4651000000013 +5089,5870,179602.500799999,375447.500400003,22.3399999999965 +5090,7267,179608.3330696,375449.543145087,22.4554000000062 +5091,7269,179608.487657934,375448.145512883,22.4465999999957 +5092,5895,179608.544599999,375447.6307,22.443299999999 +5093,14974,179608.656348083,375446.620386258,22.4369000000006 +5094,7278,179608.768096164,375445.610072516,22.4305000000022 +5095,7276,179608.942973156,375444.029010657,22.4204000000027 +5096,14978,179609.062270191,375442.950446844,22.4135999999999 +5097,7274,179609.181567233,375441.871883027,22.4067000000068 +5098,14977,179609.219016865,375442.442947656,25 +5099,7272,179609.342533536,375441.326228093,25 +5100,7279,179609.357970573,375440.277021468,22.3965999999928 +5101,14981,179609.451634955,375440.339837439,25 +5102,14979,179609.143524162,375443.125480469,25 +5103,7275,179609.068031453,375443.808013286,25 +5104,22933,179609.015279207,375444.284948658,25 +5105,14976,179608.962526958,375444.76188403,25 +5106,22932,179608.909271341,375445.243370336,25 +5107,7277,179608.856015734,375445.724856649,25 +5108,14973,179608.750007868,375446.683278326,25 +5109,5893,179608.644000005,375447.641700003,25 +5110,7270,179608.578672674,375448.232324049,25 +5111,14970,179609.292519603,375449.412322309,25.604800000001 +5112,7268,179608.513345331,375448.822948091,25 +5113,14971,179608.448018,375449.413572136,25 +5114,6730,179608.382690664,375450.004196178,25 +5115,7265,179608.27406064,375450.986319598,25 +5116,7264,179608.165430613,375451.968443014,25 +5117,7262,179607.944637507,375453.964632213,25 +5118,6729,179607.851540145,375454.806324899,25 +5119,22937,179607.787390623,375455.386300363,25 +5120,7259,179607.723241098,375455.966275819,25 +5121,7258,179607.522530988,375456.871219888,22.5019999999931 +5122,22938,179607.658989977,375456.547169805,25 +5123,7256,179607.594942052,375457.126226731,25 +5124,7255,179607.36214105,375458.321304381,22.5111999999936 +5125,7250,179607.195747655,375459.825666126,22.5207999999984 +5126,7252,179607.008291285,375461.520458043,22.5314999999973 +5127,14969,179607.27124567,375460.05276376,25 +5128,7249,179607.338343963,375459.446128562,25 +5129,7251,179607.121841818,375461.403523184,25 +5130,7257,179607.466643006,375458.286177643,25 +5131,14967,179607.047668304,375462.074125443,25 +5132,7254,179606.892464597,375462.56764644,22.5381999999954 +5133,7253,179606.973494798,375462.744727693,25 +5134,14966,179606.81135013,375463.301001843,22.5427999999956 +5135,7248,179606.730235666,375464.034357253,22.5475000000006 +5136,5894,179606.512600005,375466.002,22.5599999999977 +5137,6728,179606.825147778,375464.085932218,25 +5138,5892,179606.612000003,375466.013,25 +5139,7247,179606.354743354,375467.416039612,22.5584999999992 +5140,7245,179606.190534379,375468.886981752,22.5568999999959 +5141,7246,179606.442035332,375467.535500128,25 +5142,7243,179606.272070672,375469.058000252,25 +5143,14963,179606.106696162,375469.637983065,22.5561000000016 +5144,14962,179606.178242676,375469.898487464,25 +5145,7244,179606.102106005,375470.580500379,25 +5146,22942,179606.799127087,375472.276165694,25.6687999999995 +5147,6727,179605.932141345,375472.103000503,25 +5148,22944,179605.863866866,375472.714585818,25 +5149,7241,179605.810615912,375472.290194437,22.5532999999996 +5150,22946,179605.736442793,375472.954618327,22.5525999999954 +5151,22945,179605.662269671,375473.61904221,22.5519000000058 +5152,22943,179605.795592394,375473.326171134,25 +5153,22947,179605.727513112,375473.936007932,25 +5154,7240,179605.623865768,375474.864454418,25 +5155,22941,179606.618084725,375473.958443806,25.6751999999979 +5156,7238,179605.39664156,375476.899870925,25 +5157,7242,179606.022857957,375470.388984367,22.5553000000073 +5158,14965,179606.899321284,375463.415329956,25 +5159,5869,179597.500800002,375447.500400003,22.3099999999977 +5160,5871,179592.500999998,375447.500900004,22.4700000000012 +5161,5887,179592.500500005,375472.500700004,22.3899999999994 +5162,7236,179604.920500364,375480.263622485,22.5448000000033 +5163,14960,179605.105169661,375479.510801841,25 +5164,7235,179605.032407448,375480.162587184,25 +5165,14955,179604.920766294,375481.162640154,25 +5166,14956,179604.803050186,375481.315711245,22.5436000000045 +5167,14957,179604.852883149,375481.770720076,25 +5168,14958,179604.744325094,375481.841755625,22.5430999999953 +5169,5944,179604.785,375482.378800001,25 +5170,14954,179605.821209181,375481.264749981,25.6784999999945 +5171,7229,179604.635461148,375483.718322739,25 +5172,14952,179604.560691722,375484.388084106,25 +5173,7227,179604.485922288,375485.057845481,25 +5174,14953,179604.380368292,375486.003365483,25 +5175,7228,179604.433537707,375484.625709783,22.5400999999983 +5176,7230,179604.556537189,375483.523911797,22.5412999999971 +5177,5946,179604.685600005,375482.367800001,22.5424999999959 +5178,25321,179619.700347409,375466.381505754,26.6465999999928 +5179,5908,179620.204000004,375461.201000005,26.6300000000047 +5180,25320,179621.740794111,375464.519387554,25.8368000000046 +5181,25323,179623.513999999,375465.131000005,26.0292000000045 +5182,25322,179621.423941161,375467.277581338,25.8307000000059 +5183,11632,179587.612173501,375421.228130639,22.2617999999929 +5184,11630,179587.965468239,375418.095183514,22.2590000000055 +5185,9720,179588.310128026,375415.038809437,22.2562999999936 +5186,5814,179592.500500005,375412.500500001,22.3999999999942 +5187,11621,179588.471723411,375413.605813898,22.2550000000047 +5188,11623,179588.617879655,375412.309729617,22.2538000000059 +5189,11625,179588.776253667,375410.90530052,22.2526000000071 +5190,11627,179588.93932683,375409.459200259,22.2513000000035 +5191,5810,179592.500100005,375407.500600003,22.3399999999965 +5192,5859,179589.102400005,375408.013100002,22.25 +5193,5811,179597.500500005,375407.500700004,22.4700000000012 +5194,5809,179602.500300005,375407.500300005,22.2899999999936 +5195,5804,179597.500800002,375402.500500005,22.4700000000012 +5196,5805,179592.500400003,375402.500700001,22.3000000000029 +5197,5801,179597.500400003,375397.5002,22.4600000000064 +5198,5852,179592.500100005,375397.500599999,22.25 +5199,5802,179602.500200003,375397.500400003,22.320000000007 +5200,5765,179597.500999998,375387.5009,22.4600000000064 +5201,5806,179602.5009,375402.500900004,22.3000000000029 +5202,5803,179607.500700004,375397.500599999,22.3699999999953 +5203,5807,179607.500100009,375402.500900004,22.3899999999994 +5204,7305,179613.211628705,375405.345280673,22.2219000000041 +5205,7312,179613.375534702,375403.838716645,22.225099999996 +5206,6735,179613.37134932,375404.801770382,25 +5207,7313,179613.480759174,375403.796120781,25 +5208,7318,179613.631600689,375402.409648597,25 +5209,7307,179613.271568917,375405.718910124,25 +5210,7319,179613.556512982,375402.175230499,22.2286000000022 +5211,22912,179613.702367708,375401.759187791,25 +5212,7317,179613.672179647,375401.112064876,22.230899999995 +5213,7315,179613.782442212,375401.023176406,25 +5214,7316,179613.933283735,375399.636704221,25 +5215,7320,179613.863631207,375399.352312043,22.2347000000009 +5216,15009,179613.97164965,375399.284060717,25 +5217,15008,179614.010015573,375398.931417219,25 +5218,7314,179613.933299039,375398.711950801,22.2360000000044 +5219,7321,179614.113126148,375397.059045818,22.2396000000008 +5220,7323,179614.283204127,375395.495751202,22.2428999999975 +5221,7322,179614.283022285,375396.422053687,25 +5222,15012,179614.367464896,375395.645892512,25 +5223,7324,179614.438329645,375394.994533334,25 +5224,7325,179614.470692806,375393.772423826,22.2465999999986 +5225,7326,179614.527064826,375394.178916667,25 +5226,5770,179614.615800008,375393.363300003,25 +5227,5787,179614.516400002,375393.352299999,22.2474999999977 +5228,15015,179614.622891311,375392.373425096,22.2495999999956 +5229,15014,179614.712548334,375392.473978098,25 +5230,7331,179614.809296671,375391.58465619,25 +5231,22909,179614.86347536,375391.086639307,25 +5232,22908,179614.91765406,375390.588622432,25 +5233,22907,179615.625659842,375390.887676563,25.5785999999935 +5234,7328,179615.002793331,375389.806012381,25 +5235,15016,179615.82439227,375389.04630601,25.5807999999961 +5236,15017,179615.081599653,375389.081615515,25 +5237,7329,179615.160405975,375388.357218657,25 +5238,5779,179616.049699999,375386.958700009,25.5832999999984 +5239,22901,179618.971089497,375384.17621471,26.9937000000064 +5240,22902,179616.330931138,375384.352777094,25.5864000000001 +5241,15019,179616.612162273,375381.746854182,25.5895000000019 +5242,6738,179615.747592386,375382.959732912,25 +5243,22903,179615.632812101,375384.014806688,25 +5244,22905,179615.574215829,375384.55343036,25 +5245,7337,179615.47758235,375385.441696525,25 +5246,7335,179615.323401339,375386.85894629,25 +5247,6737,179615.259608667,375387.445335973,25 +5248,22904,179615.502049327,375384.29214856,22.2669000000024 +5249,7338,179615.632870551,375383.089631531,22.2694000000047 +5250,7342,179615.798093606,375381.570890691,22.2727000000014 +5251,7339,179615.860819746,375380.994308047,22.2739000000001 +5252,7343,179616.00135684,375379.702482052,22.2767000000022 +5253,7340,179616.038019869,375380.290089779,25 +5254,15022,179615.965413,375380.957500562,25 +5255,7341,179615.892806128,375381.624911342,25 +5256,25348,179616.833046474,375379.700113531,25.5920000000042 +5257,25347,179619.46339475,375380.017257355,27.0169000000024 +5258,15023,179617.053930677,375377.65337288,25.5944000000018 +5259,7344,179616.243509442,375378.401205756,25 +5260,25350,179616.192137051,375378.873426758,25 +5261,15021,179616.080018319,375378.979420759,22.2782000000007 +5262,15020,179616.140764654,375379.345647767,25 +5263,25349,179616.08939226,375379.817868769,25 +5264,7345,179616.158679798,375378.256359458,22.2798000000039 +5265,15025,179616.291131146,375377.038858239,22.2823999999964 +5266,5791,179616.424100004,375375.816600002,22.2850000000035 +5267,15029,179616.525310539,375374.886315081,22.2869999999966 +5268,15028,179616.621332016,375374.928269021,25 +5269,7350,179616.719164029,375374.029038034,25 +5270,15027,179617.334409982,375375.054416511,25.5975000000035 +5271,22898,179617.502482526,375373.497035325,25.5994000000064 +5272,22897,179620.214766189,375373.669637822,27.0522000000055 +5273,15034,179617.670555063,375371.93965413,25.6012000000046 +5274,15035,179616.86591205,375372.680191554,25 +5275,15031,179616.816996045,375373.129807051,25 +5276,22899,179616.768080037,375373.579422537,25 +5277,15032,179616.70649622,375373.220932014,22.290599999993 +5278,7351,179616.626521073,375373.956030168,22.2890000000043 +5279,7349,179616.786471374,375372.485833865,22.292100000006 +5280,7352,179616.964545768,375370.849048458,22.2955999999976 +5281,7346,179616.990133923,375370.61385287,22.2961000000068 +5282,15033,179617.099509064,375370.53306552,25 +5283,6739,179617.147987708,375370.087470099,25 +5284,7353,179617.141327754,375369.224142343,22.2991000000038 +5285,7354,179617.247474875,375369.173025619,25 +5286,7357,179617.377676271,375367.051725578,22.303700000004 +5287,7356,179617.480986696,375367.026682608,25 +5288,21814,179618.218214501,375366.997002393,25.5991999999969 +5289,21815,179617.547286693,375366.417280737,25 +5290,15037,179617.61358669,375365.807878867,25 +5291,6740,179617.714498516,375364.880339596,25 +5292,7360,179617.844160844,375363.688537683,25 +5293,7358,179617.763388321,375363.506421681,22.3113000000012 +5294,7355,179617.576771185,375365.221728381,22.3077000000048 +5295,5749,179612.500500005,375362.500800002,22.429999999993 +5296,15038,179617.477223732,375366.136726975,22.3056999999972 +5297,7361,179617.914048105,375362.121619944,22.3142999999982 +5298,15041,179618.01582155,375361.186160974,22.3163000000059 +5299,15040,179618.088192381,375361.445501823,25 +5300,7362,179618.202561583,375360.394267883,25 +5301,7363,179618.117594995,375360.250702009,22.318299999999 +5302,15042,179618.281098995,375359.672384877,25 +5303,15043,179618.224747498,375359.265801009,22.3203999999969 +5304,15044,179618.349729214,375359.041564547,25 +5305,5785,179618.331900001,375358.280900002,22.3224999999948 +5306,5745,179612.5002,375357.500599999,22.4199999999983 +5307,7369,179618.525227636,375356.503809936,22.3263000000006 +5308,7368,179618.606480032,375356.681524854,25 +5309,15046,179618.694070037,375355.876387279,25 +5310,15045,179619.336492229,375357.131664198,25.5810999999958 +5311,22893,179619.522093575,375355.494307023,25.5780999999988 +5312,15047,179619.707694922,375353.856949847,25.5751000000018 +5313,5731,179619.838500004,375352.703000002,25.573000000004 +5314,6741,179618.998963382,375353.073772263,25 +5315,7371,179619.145273648,375351.728871301,25 +5316,21817,179620.193863802,375349.56801492,25.5672999999952 +5317,22891,179620.371545695,375348.000522375,25.5644000000029 +5318,15049,179620.549227588,375346.433029827,25.5614999999962 +5319,7374,179619.696526814,375346.661688209,25 +5320,7373,179619.51277576,375348.350749236,25 +5321,7376,179619.613664467,375346.498772118,22.3476999999984 +5322,15052,179619.742464572,375346.239422951,25 +5323,7372,179619.71469377,375345.57009903,22.3497000000061 +5324,5718,179612.500400003,375347.500300005,22.3500000000058 +5325,5716,179612.500800002,375342.500500001,22.3399999999965 +5326,5715,179607.500700004,375342.500399999,22.3999999999942 +5327,5719,179607.500300005,375347.500500001,22.3600000000006 +5328,5721,179607.501000002,375352.500400003,22.3399999999965 +5329,5722,179612.500900004,375352.500500005,22.3800000000047 +5330,21819,179619.219490409,375350.122065876,22.3399000000063 +5331,7375,179619.396202449,375348.497708257,22.3433999999979 +5332,21818,179619.413108729,375349.266900122,25 +5333,21820,179619.310052525,375350.214204736,25 +5334,7370,179619.042778369,375351.746423494,22.3365000000049 +5335,7364,179618.853642948,375353.484978221,22.3328000000038 +5336,7367,179618.664945871,375355.219503727,22.3289999999979 +5337,7366,179618.911598172,375353.876843408,25 +5338,15048,179618.955280781,375353.475307841,25 +5339,7365,179618.781660054,375355.071249709,25 +5340,22894,179618.737865049,375355.473818488,25 +5341,5720,179602.501000002,375347.5009,22.5399999999936 +5342,5739,179602.500399999,375352.500300001,22.5299999999988 +5343,11563,179595.542515427,375349.454388499,22.459400000007 +5344,9713,179595.445149999,375350.342774998,22.4575000000041 +5345,11574,179595.310060591,375351.575364579,22.454899999997 +5346,11576,179595.179375473,375352.767768286,22.4523999999947 +5347,5717,179602.5009,375342.5009,22.5200000000041 +5348,5713,179602.500399999,375337.500800002,22.3899999999994 +5349,5711,179607.500399999,375337.5002,22.4199999999983 +5350,5714,179612.500100005,375337.500999998,22.3300000000017 +5351,5712,179617.500300001,375337.500700001,22.4100000000035 +5352,7379,179620.065922242,375342.341566138,22.3565999999992 +5353,5736,179620.239600003,375340.745100003,22.3600000000006 +5354,7386,179620.418513328,375339.132492278,22.3591000000015 +5355,15057,179620.485175975,375338.53163879,22.3588000000018 +5356,7384,179620.551838618,375337.930785298,22.3583999999973 +5357,7387,179620.691786408,375336.669387419,22.3576999999932 +5358,7381,179620.712282341,375336.484650537,22.357600000003 +5359,7388,179620.854903985,375335.199152354,22.3568999999989 +5360,7392,179621.094568361,375333.038974401,22.3557000000001 +5361,7390,179621.207104739,375332.024645071,22.3552000000054 +5362,22889,179621.262365464,375332.433260996,25 +5363,15059,179621.322108034,375331.894772347,25 +5364,6744,179621.441593174,375330.817795046,25 +5365,15060,179621.553684749,375329.807459518,25 +5366,15063,179621.610028122,375329.299609493,25 +5367,15061,179621.666371495,375328.791759461,25 +5368,7394,179621.779058237,375327.776059408,25 +5369,22888,179622.104845688,375332.649422195,25.5541999999987 +5370,7391,179621.20262289,375332.971749637,25 +5371,7389,179620.963652611,375335.125704236,25 +5372,5732,179621.756000001,375335.787,25.5420000000013 +5373,6743,179620.860839192,375336.052411292,25 +5374,7383,179620.776142273,375336.815825522,25 +5375,15055,179621.417231504,375338.775582999,25.5475000000006 +5376,7382,179620.67517861,375337.72585981,25 +5377,15056,179620.591341123,375338.481527567,25 +5378,7385,179620.507089309,375339.240929902,25 +5379,5724,179620.339000002,375340.756000001,25 +5380,15053,179621.070183102,375341.837210551,25.5531000000046 +5381,7380,179620.213363666,375341.910863779,25 +5382,15054,179620.150545504,375342.488295671,25 +5383,7378,179620.087727331,375343.065727554,25 +5384,15050,179619.984002598,375344.01917737,25 +5385,6742,179619.880277865,375344.972627178,25 +5386,15051,179619.788402345,375345.817157693,25 +5387,7377,179619.897114541,375343.893266145,22.3533000000025 +5388,185,179602.500500001,375332.500700001,22.4199999999983 +5389,11559,179596.812268063,375337.868847758,22.483699999997 +5390,5772,179618.431299999,375358.291800003,25 +5391,25356,179618.031007778,375361.971118793,25 +5392,7359,179617.973823171,375362.496735759,25 +5393,5780,179617.921,375369.619000003,25.6040000000066 +5394,22900,179625.809869006,375372.602172758,27.0681999999942 +5395,5798,179625.397300005,375376.212000009,27.0500000000029 +5396,5781,179619.955700003,375375.8583,27.0399999999936 +5397,25346,179624.881946992,375380.721370365,27.0273000000016 +5398,21812,179624.36659399,375385.230740722,27.0046000000002 +5399,15030,179617.708348304,375371.589457236,25.6015999999945 +5400,7348,179617.051030423,375370.978660934,25 +5401,7347,179616.914828066,375372.230576064,25 +5402,5771,179616.523500003,375375.827500001,25 +5403,15026,179616.405288983,375376.914109383,25 +5404,15024,179616.328452382,375377.620400339,25 +5405,15013,179615.426927414,375392.729047108,25.5764000000054 +5406,15010,179614.183573768,375397.33614286,25 +5407,6736,179614.084125251,375398.25023203,25 +5408,7311,179613.179046363,375405.644765656,22.2212 +5409,7308,179612.958168041,375407.674998421,22.2168999999994 +5410,7302,179611.654686887,375419.51242283,22.2648000000045 +5411,22921,179611.768794026,375418.480780903,22.2581999999966 +5412,7304,179611.882901162,375417.449138969,22.2516999999934 +5413,15001,179611.973613515,375416.629009098,22.2464999999938 +5414,6734,179611.985854108,375417.427916769,25 +5415,15000,179612.076122344,375416.611802172,25 +5416,14997,179612.166390579,375415.795687579,25 +5417,14996,179612.346927054,375414.163458385,25 +5418,14998,179612.24575058,375414.168619484,22.2308000000048 +5419,14999,179612.064325869,375415.808879226,22.2412999999942 +5420,15004,179612.427175298,375412.528359745,22.2204000000056 +5421,15003,179612.527463529,375412.531229198,25 +5422,7300,179611.401597276,375421.800604548,22.2792999999947 +5423,25,179632.988000002,375327.305,26.3340000000026 +5424,25370,179633.52375,375322.953750003,26.3227999999945 +5425,7397,179621.975875646,375326.002049021,25 +5426,5705,179602.5009,375322.5009,22.4100000000035 +5427,5651,179612.500500005,375307.500600003,22.3399999999965 +5428,5603,179607.500200003,375307.500400007,22.5299999999988 +5429,7411,179623.170500517,375314.32746546,22.3454000000056 +5430,15073,179623.262427665,375314.405734032,25 +5431,7403,179623.333401993,375313.766008131,25 +5432,7401,179623.26359858,375313.488298655,22.3448999999964 +5433,15072,179623.400079384,375313.165012576,25 +5434,6746,179623.475350648,375312.486556321,25 +5435,7412,179623.421815857,375312.062160578,22.3442000000068 +5436,7413,179623.574132521,375311.59618758,25 +5437,7416,179623.668017011,375310.749961276,25 +5438,5676,179624.993000001,375308.859999999,25.6340000000055 +5439,7420,179623.967398744,375307.144388385,22.3414000000048 +5440,7424,179624.236140244,375305.629192114,25 +5441,7426,179624.27384289,375305.289359961,25 +5442,7425,179624.367299177,375305.361965366,24.9912999999942 +5443,7435,179624.403308228,375305.036636036,24.9953999999998 +5444,5655,179624.443999998,375304.669000003,25 +5445,7434,179624.501373567,375305.059632007,22.3531999999977 +5446,22882,179625.958443474,375302.457201876,24.9079000000056 +5447,7442,179625.984947585,375301.155573241,22.2838000000047 +5448,22884,179626.061468471,375300.371010989,22.2679000000062 +5449,5669,179625.105600003,375299.236400001,22.2100000000064 +5450,7444,179626.137989357,375299.586448725,22.2519999999931 +5451,7445,179626.23244429,375298.618010301,22.2323999999935 +5452,7451,179625.190074798,375298.466603104,22.2100000000064 +5453,7450,179625.113250006,375298.249812506,24.9526999999944 +5454,7452,179625.092625003,375298.437781256,24.9628999999986 +5455,6754,179625.072000001,375298.625750002,24.9729999999981 +5456,5661,179624.917000003,375299.117000002,25 +5457,5660,179625.017000005,375299.127,25 +5458,6756,179625.1545,375297.873875003,24.9324999999953 +5459,7457,179625.180082079,375297.64072929,24.9198999999935 +5460,7463,179625.195750002,375297.4979375,24.9122999999963 +5461,7460,179625.196623977,375297.489972427,24.9118000000017 +5462,21825,179638.271499403,375261.70095399,27.3516999999993 +5463,21826,179639.126874853,375253.877738502,27.3429000000033 +5464,5536,179634.618999999,375244.873000003,27.3000000000029 +5465,12941,179631.506271794,375246.086478628,25.6162999999942 +5466,12945,179631.827619556,375243.070965622,25.6153000000049 +5467,12942,179630.704895068,375246.393869542,25 +5468,7533,179631.173668604,375241.182943627,22.4478999999992 +5469,7538,179631.351817816,375239.552490219,22.4477000000043 +5470,7537,179631.431463107,375239.744188834,25 +5471,21829,179631.495186433,375239.160981502,25 +5472,7536,179631.55890977,375238.577774163,25 +5473,7535,179631.376699727,375239.324766476,22.4475999999995 +5474,7539,179631.504814543,375238.152236786,22.4474000000046 +5475,12947,179631.667480648,375237.584114026,25 +5476,12949,179631.613327555,375237.159106221,22.4472999999998 +5477,12950,179631.706511706,375237.226894792,25 +5478,12946,179632.54416563,375236.960419185,25.6524999999965 +5479,12948,179631.745542765,375236.869675554,25 +5480,7540,179631.823604885,375236.155237086,25 +5481,22866,179632.806603517,375234.759011991,25.668399999995 +5482,7541,179631.721840575,375236.165975656,22.4471000000049 +5483,12952,179633.60159079,375228.090421941,25.7167000000045 +5484,12957,179633.9908235,375224.825422037,25.7403999999951 +5485,12953,179632.89955236,375226.308279507,25 +5486,7550,179633.046366148,375224.964668903,25 +5487,12960,179633.110436715,375224.378307749,25 +5488,12958,179633.17450729,375223.791946594,25 +5489,22862,179634.275411751,375222.43821102,25.7577000000019 +5490,22863,179633.237254102,375223.217700232,25 +5491,6768,179633.30000091,375222.643453881,25 +5492,7549,179633.152669083,375223.071324244,22.4449000000022 +5493,7552,179633.324158199,375221.501905784,22.4446000000025 +5494,7554,179633.535513535,375219.567643341,22.4443000000028 +5495,7553,179633.465534747,375221.128521077,25 +5496,7555,179633.634662256,375219.580699664,25 +5497,6769,179633.803789776,375218.032878257,25 +5498,7556,179633.726479836,375217.819975309,22.4440000000031 +5499,12963,179633.83360957,375216.839555226,22.4437999999936 +5500,7558,179633.940739296,375215.859135151,22.4435999999987 +5501,5497,179627.500300005,375212.500600003,22.4199999999983 +5502,12966,179634.044519652,375214.909367573,22.4434999999939 +5503,5502,179634.1483,375213.959600005,22.443299999999 +5504,7564,179634.38569542,375211.786914632,22.4428999999946 +5505,7562,179634.477089792,375211.870883547,25 +5506,7563,179634.591784697,375210.821175318,25 +5507,22860,179634.64913214,375210.296321202,25 +5508,7560,179634.70647959,375209.771467093,25 +5509,7561,179634.576197091,375210.043409254,22.4425999999949 +5510,7565,179634.547422636,375210.306758247,22.4426999999996 +5511,5496,179632.500900008,375207.500800002,22.4600000000064 +5512,7559,179634.647518665,375209.390661471,22.4425000000047 +5513,7566,179634.755428448,375208.403051782,22.4423999999999 +5514,25401,179634.834042415,375207.683562689,22.4422999999952 +5515,7568,179634.912656385,375206.964073602,22.4421000000002 +5516,25403,179635.0210917,375205.971654221,22.4419999999955 +5517,7569,179635.026552089,375206.842106294,25 +5518,25402,179635.130602214,375205.889820989,25 +5519,7570,179635.12952701,375204.979234852,22.4418000000005 +5520,6771,179635.234652329,375204.937535677,25 +5521,12972,179635.218133628,375204.168291207,22.4416999999958 +5522,12971,179635.324444566,375204.115741041,25 +5523,12968,179636.157828316,375204.913749464,25.653999999995 +5524,12969,179635.41423681,375203.293946411,25 +5525,12974,179635.504029047,375202.472151775,25 +5526,7572,179635.593821283,375201.650357146,25 +5527,7571,179635.483953487,375201.735460285,22.4413000000059 +5528,12975,179635.395346869,375202.546403926,22.4413999999961 +5529,5493,179632.500300001,375202.5002,22.4799999999959 +5530,12970,179635.306740247,375203.357347567,22.4415000000008 +5531,22855,179635.610779364,375200.574727137,22.4410999999964 +5532,22856,179635.662941109,375201.017760165,25 +5533,22854,179635.732060932,375200.385163195,25 +5534,7575,179635.737605244,375199.413993992,22.4409000000014 +5535,5492,179632.500900008,375197.500600003,22.5 +5536,7573,179635.853863597,375198.349976782,22.4407000000065 +5537,7576,179635.999462992,375197.017425049,22.440499999997 +5538,7578,179636.203929037,375195.146115232,22.4401999999973 +5539,5491,179627.500399999,375197.500099998,22.3500000000058 +5540,5494,179627.500200003,375202.500900004,22.3699999999953 +5541,5495,179627.500300005,375207.500100005,22.3899999999994 +5542,5471,179622.5009,375202.500800002,22.429999999993 +5543,5468,179622.5009,375197.500399999,22.4700000000012 +5544,7577,179636.105822902,375196.964426741,25 +5545,6772,179635.9836195,375198.082854114,25 +5546,22857,179635.914573893,375198.714771878,25 +5547,7574,179635.845528286,375199.346689649,25 +5548,25399,179635.956414159,375206.82187473,25.6692000000039 +5549,25400,179634.948763411,375207.554042194,25 +5550,7567,179634.870974738,375208.265978083,25 +5551,6770,179634.790490281,375209.002586208,25 +5552,5500,179634.247699998,375213.9703,25 +5553,12965,179634.136722442,375214.985944569,25 +5554,12961,179634.927311547,375216.571222559,25.747199999998 +5555,7557,179634.025744889,375216.001589134,25 +5556,12964,179633.970256109,375216.509411409,25 +5557,12962,179633.914767332,375217.017233696,25 +5558,5513,179634.560000002,375220.051000003,25.7749999999942 +5559,22864,179633.382767834,375221.885987472,25 +5560,12959,179633.044050168,375224.065372974,22.445000000007 +5561,7546,179632.75273858,375227.651890121,25 +5562,12979,179636.67754278,375191.649539016,25 +5563,11530,179599.683672149,375310.362220909,25 +5564,5729,179599.493000001,375312.148500003,25 +5565,11536,179599.143716067,375315.420706235,25 +5566,9711,179598.35558499,375323.746282469,22.5316000000021 +5567,11594,179593.104138657,375370.771876935,25 +5568,5759,179597.500500005,375382.500200007,22.4499999999971 +5569,11604,179591.569839165,375385.613674328,22.3457000000053 +5570,11601,179591.430957105,375386.874389693,22.3402999999962 +5571,11599,179591.253883611,375388.481791444,22.3334000000032 +5572,9716,179592.815295149,375374.307382118,22.3940000000002 +5573,11658,179584.757956468,375445.645410489,25 +5574,11666,179583.485706948,375456.992434669,25 +5575,11664,179583.363906045,375458.089367263,25 +5576,21809,179619.699986529,375427.463475004,26.6600000000035 +5577,5845,179619.540000003,375432.368000008,26.5359999999928 +5578,25375,179640.936541788,375306.752156332,26.1138999999966 +5579,25376,179635.666750003,375305.548750002,26.277700000006 +5580,5503,179648.155000005,375188.225000001,26.150999999998 +5581,25411,179648.558875002,375183.906125002,26.1248999999953 +5582,25410,179648.962750006,375179.587249998,26.0987000000023 +5583,5341,179658.609000005,375077.243999999,26.4799999999959 +5584,6450,179541.110000003,375839.134800002,25 +5585,6447,179541.210200004,375839.138500005,22.5908999999956 +5586,6449,179541.153999999,375838.734000001,25 +5587,12074,179541.437811084,375836.184806988,25 +5588,6446,179541.253400002,375838.745000005,22.5899999999965 +5589,6439,179547.500999998,375837.500599999,22.2899999999936 +5590,6440,179552.5002,375837.500800002,22.3800000000047 +5591,6435,179552.500500005,375832.500300001,22.3899999999994 +5592,6462,179547.500700001,375832.500500005,22.2400000000052 +5593,6433,179547.500800002,375827.500600003,22.3300000000017 +5594,6432,179552.500900004,375827.500300001,22.4199999999983 +5595,6428,179552.500400003,375822.500300005,22.4499999999971 +5596,6427,179547.500999998,375822.500200003,22.2899999999936 +5597,12066,179542.712100141,375825.643104915,22.510500000004 +5598,12064,179542.537497979,375827.21136358,22.5200000000041 +5599,9766,179542.374283113,375828.67734278,22.5289000000048 +5600,12063,179542.375059195,375827.766438331,25 +5601,12069,179542.262345251,375828.778835732,25 +5602,12072,179542.103515916,375831.109346017,22.5436000000045 +5603,12073,179542.012523323,375831.022737883,25 +5604,6458,179540.495000001,375827.478999998,26.3300000000017 +5605,12071,179541.818855319,375832.762265205,25 +5606,12070,179541.882263828,375833.096609607,22.5556999999972 +5607,12075,179541.562646743,375835.96737748,22.5730999999942 +5608,12068,179542.397147667,375827.568039548,25 +5609,12065,179542.486611802,375826.764472097,25 +5610,12067,179542.62869918,375825.488242354,25 +5611,6448,179542.988000002,375822.261000004,25 +5612,12061,179543.312396016,375819.347272862,25 +5613,12062,179543.272635818,375820.608420793,22.4799000000057 +5614,6445,179543.087400004,375822.2722,22.4900000000052 +5615,9765,179543.457871635,375818.944641579,22.4698000000062 +5616,6425,179547.500700001,375817.500500001,22.2700000000041 +5617,6424,179552.5002,375817.500399999,22.429999999993 +5618,6392,179552.5002,375812.500900004,22.3999999999942 +5619,6393,179557.500300005,375812.500900004,22.3000000000029 +5620,6388,179552.500700001,375807.500400003,22.3500000000058 +5621,6389,179557.500700004,375807.500599999,22.320000000007 +5622,6384,179557.500100002,375802.500399999,22.3399999999965 +5623,6386,179552.500500005,375802.500799999,22.2799999999988 +5624,6387,179547.500999998,375802.5009,22.2700000000041 +5625,6412,179547.500599999,375807.500599999,22.2599999999948 +5626,9763,179545.068273176,375804.530749798,22.3916000000027 +5627,12044,179545.246372797,375802.992495369,22.3934000000008 +5628,6401,179544.921399999,375805.799300004,22.3899999999994 +5629,12050,179544.669932526,375808.057968792,22.4036999999953 +5630,12052,179544.556384981,375809.077847455,22.4098999999987 +5631,12047,179544.442837425,375810.09772611,22.4161000000022 +5632,6421,179547.500599999,375812.500599999,22.2299999999959 +5633,12048,179544.332558811,375811.088243339,22.4220999999961 +5634,9764,179544.222280193,375812.078760561,22.4281000000046 +5635,12056,179544.08283798,375813.331223845,22.4357000000018 +5636,12055,179543.943395767,375814.583687123,22.443299999999 +5637,12059,179543.700633697,375816.764164347,22.456600000005 +5638,12058,179543.833728667,375814.664659597,25 +5639,12060,179543.596940354,375816.791493788,25 +5640,12057,179543.972169016,375813.421187479,25 +5641,12054,179544.086369012,375812.395442441,25 +5642,12046,179544.185342461,375811.506462194,25 +5643,12053,179544.210898053,375811.27692173,25 +5644,12049,179544.36600386,375809.883760322,25 +5645,12051,179544.523635518,375808.467911802,25 +5646,6383,179552.500999998,375797.5009,22.3099999999977 +5647,12038,179546.008186761,375796.412673999,22.4015000000072 +5648,6400,179546.335900001,375793.582200002,22.4049999999988 +5649,6378,179552.500400003,375792.5002,22.2599999999948 +5650,12033,179546.478707403,375792.348766066,22.4064999999973 +5651,6381,179557.500200003,375792.500800002,22.3899999999994 +5652,6377,179557.500300005,375787.500900004,22.3800000000047 +5653,6379,179562.500700004,375792.5002,22.2299999999959 +5654,6375,179562.500600003,375787.500300001,22.2700000000041 +5655,6374,179567.5002,375787.500100005,22.2599999999948 +5656,6372,179562.500600003,375782.500799999,22.2899999999936 +5657,6371,179567.501000002,375782.500500001,22.2700000000041 +5658,23068,179571.415397245,375785.708385725,22.2177999999985 +5659,6398,179571.573600002,375784.246000003,22.2200000000012 +5660,6897,179571.790849883,375782.327017512,22.2222000000038 +5661,6898,179571.937831197,375781.028721932,22.223800000007 +5662,6894,179571.974608734,375780.703863524,22.2241999999969 +5663,6410,179567.500500005,375777.500799999,22.1999999999971 +5664,6892,179572.068951938,375779.870523822,22.225099999996 +5665,6893,179572.108257614,375780.412340906,25 +5666,15121,179572.162015289,375779.937495805,25 +5667,6677,179572.215772968,375779.462650701,25 +5668,6899,179572.231577463,375778.434041869,22.226800000004 +5669,15124,179572.289866,375778.808182102,25 +5670,6900,179572.363959033,375778.153713513,25 +5671,6901,179572.426232584,375776.714640416,22.2287999999971 +5672,6904,179572.607459154,375775.113854159,22.2307000000001 +5673,6346,179567.500700001,375772.500500005,22.2299999999959 +5674,15128,179572.809293132,375773.331041422,22.232799999998 +5675,21800,179572.91021011,375772.439635053,22.2338000000018 +5676,6906,179573.011127099,375771.548228689,22.2348999999958 +5677,6907,179573.276483897,375769.20431463,22.2375999999931 +5678,6342,179567.500100005,375767.500700001,22.25 +5679,23061,179573.39039195,375768.198157314,22.2388000000064 +5680,6351,179573.504300002,375767.192000005,22.2400000000052 +5681,6911,179573.690677982,375765.545635425,22.2418999999936 +5682,6338,179567.500400003,375762.500500008,22.2899999999936 +5683,6340,179562.500300005,375762.500799999,22.3000000000029 +5684,6343,179562.5009,375767.500900004,22.2899999999936 +5685,6345,179562.500700004,375772.500500005,22.2700000000041 +5686,6339,179557.500700004,375762.500600003,22.3800000000047 +5687,6909,179573.805411853,375764.532137025,22.243100000007 +5688,6922,179573.992864773,375762.876277,22.2451000000001 +5689,6921,179574.060304422,375763.169574231,25 +5690,15134,179574.097710773,375762.839144383,25 +5691,15132,179574.90439662,375762.570970826,25.5252000000037 +5692,6923,179574.135117114,375762.508714531,25 +5693,6919,179574.209929816,375761.847854834,25 +5694,6920,179574.103424184,375761.899653666,22.2461999999941 +5695,15133,179574.294065863,375761.104637101,25 +5696,6918,179574.245877881,375760.641292956,22.2477000000072 +5697,6916,179574.437693387,375758.94689614,22.2497000000003 +5698,6924,179574.625362035,375757.289130524,22.2516000000032 +5699,6913,179574.719619926,375756.456506111,22.2526000000071 +5700,6915,179574.757617805,375757.00984028,25 +5701,15138,179574.837886203,375756.300787508,25 +5702,6679,179574.918154601,375755.591734745,25 +5703,6925,179574.874733824,375755.086311962,22.2541999999958 +5704,6927,179575.031502467,375753.701500613,22.255799999999 +5705,15139,179574.990730252,375754.950636026,25 +5706,6926,179575.118439678,375753.822511815,25 +5707,23050,179575.199141722,375753.109628458,25 +5708,23049,179575.873819586,375753.652369495,25.5400999999983 +5709,23052,179575.259028725,375752.580615193,25 +5710,15140,179576.076514054,375751.787599184,25.5432000000001 +5711,23048,179577.143692214,375755.279429037,26.2544999999955 +5712,15137,179575.671125118,375755.517139804,25.5369999999966 +5713,23053,179575.442652475,375757.619066894,25.533500000005 +5714,25235,179576.806719501,375758.307771947,26.252800000002 +5715,15135,179575.214179836,375759.720993988,25.5299999999988 +5716,23055,179576.469746787,375761.336114861,26.2510000000038 +5717,25234,179580.770000003,375760.732249998,26.375 +5718,6318,179581.388,375754.738500003,26.3699999999953 +5719,25233,179583.202700187,375755.149848983,25.6750000000029 +5720,199,179583.441500004,375753.064000003,25.6670000000013 +5721,23047,179581.722239021,375751.496841233,26.3699999999953 +5722,25238,179584.012649428,375748.075170979,25.648000000001 +5723,21803,179582.056478042,375748.255182464,26.3699999999953 +5724,23044,179577.68506325,375750.41417715,26.2574000000022 +5725,6319,179582.624000002,375742.750999998,26.3699999999953 +5726,25236,179584.296250004,375745.598000001,25.6385000000009 +5727,6316,179585.151000001,375738.131999999,25.6100000000006 +5728,23039,179582.983329751,375739.554126225,26.3530000000028 +5729,21804,179583.342659492,375736.35725246,26.3359999999957 +5730,23038,179579.064614784,375738.015912339,26.2599999999948 +5731,23036,179579.568529416,375733.48706859,26.2599999999948 +5732,6307,179583.892999999,375731.461000003,26.3099999999977 +5733,25240,179585.611622017,375734.069739085,25.6022999999986 +5734,25241,179585.403598636,375735.904313244,25.6058000000048 +5735,25239,179585.785804611,375734.926065654,25.6068999999989 +5736,25242,179585.833376214,375734.482970599,25.6076999999932 +5737,25243,179587.120000001,375722.499000002,25.5838999999978 +5738,6303,179586.776000001,375723.801000003,25.5829999999987 +5739,25245,179586.900153127,375722.83885552,25.5868000000046 +5740,25244,179587.024306249,375721.876711033,25.5905999999959 +5741,25246,179587.227952812,375721.720657084,25.5828000000038 +5742,25247,179587.284414578,375719.860959988,25.5985999999975 +5743,25249,179587.765207291,375716.134979993,25.6132999999973 +5744,25248,179588.495999999,375712.578000005,25.6147999999957 +5745,197,179588.246000003,375712.409000002,25.627999999997 +5746,25250,179585.660563454,375716.022239853,26.2795999999944 +5747,21808,179586.159126904,375711.873479698,26.3190999999933 +5748,25251,179581.734787311,375714.018879287,26.2684000000008 +5749,23020,179581.42657461,375716.788758568,26.2667999999976 +5750,6308,179585.162000004,375720.171000004,26.2400000000052 +5751,23032,179580.923336413,375721.311314158,26.2642000000051 +5752,23030,179579.596729264,375719.210041661,25.5905999999959 +5753,15172,179579.415756751,375720.933564298,25.5898000000016 +5754,15176,179578.893798735,375719.733872391,25 +5755,6959,179578.80977292,375720.519623116,25 +5756,15175,179578.764456324,375720.943392232,25 +5757,15173,179578.719139736,375721.367161341,25 +5758,6960,179578.628506545,375722.21469957,25 +5759,23026,179579.209878374,375722.894282151,25.5889000000025 +5760,23029,179578.579752572,375722.670612678,25 +5761,23027,179578.530998599,375723.126525782,25 +5762,6683,179578.447240178,375723.909776021,25 +5763,6287,179579.004000001,375724.855000004,25.5880000000034 +5764,23025,179580.864520393,375721.839888338,26.2639000000054 +5765,23033,179580.347055975,375726.490293637,26.2611999999936 +5766,15170,179578.921378814,375725.615107294,25.5866999999998 +5767,23034,179578.797447026,375726.755268227,25.5847999999969 +5768,15168,179578.673515238,375727.895429164,25.582899999994 +5769,6289,179580.118100002,375728.547899999,26.2599999999948 +5770,21807,179584.751788989,375723.820552662,26.2626000000018 +5771,15165,179578.476018328,375729.712382395,25.579899999997 +5772,6949,179577.921895601,375728.822431531,25 +5773,15169,179577.971339338,375728.360068277,25 +5774,6682,179578.020783067,375727.897705011,25 +5775,6948,179577.874812443,375728.322330423,22.2593999999954 +5776,6953,179578.036187723,375726.813270777,22.2529000000068 +5777,6291,179572.500700001,375727.500500005,22.2400000000052 +5778,6950,179577.787793804,375729.136062838,22.2629000000015 +5779,15166,179577.861511394,375729.387102444,25 +5780,6952,179577.683100685,375730.115073767,22.267200000002 +5781,6951,179577.801127188,375729.951773357,25 +5782,15167,179577.717095394,375730.737580016,25 +5783,15162,179577.524350341,375731.599586882,22.2736000000004 +5784,6279,179572.5002,375732.500600003,22.25 +5785,15164,179577.444975175,375732.341843445,22.2768000000069 +5786,6360,179577.365600001,375733.084100001,22.2799999999988 +5787,6350,179577.465000004,375733.094999999,25 +5788,15163,179577.549031798,375732.309193339,25 +5789,15159,179578.113922998,375733.043625876,25.5743999999977 +5790,23037,179578.294970665,375731.378004134,25.577099999995 +5791,21805,179577.884529743,375735.15402253,25.5709000000061 +5792,15160,179577.394566096,375733.717147306,25 +5793,15157,179577.324132197,375734.339294601,25 +5794,21806,179577.253698289,375734.961441908,25 +5795,15155,179577.160046719,375734.899765663,22.277900000001 +5796,15154,179577.18326439,375735.583589211,25 +5797,15156,179577.069484975,375735.699703503,22.2768999999971 +5798,6947,179576.978923231,375736.499641333,22.275999999998 +5799,6946,179577.055016335,375736.71641269,25 +5800,15152,179577.655136492,375737.264419194,25.5673999999999 +5801,23040,179577.440945834,375739.234953351,25.5641000000032 +5802,6943,179576.718988176,375739.684571456,25 +5803,6681,179576.596051689,375740.770477537,25 +5804,15151,179576.536978051,375741.292278908,25 +5805,6938,179576.465808474,375741.032017726,22.2706999999937 +5806,6321,179572.5002,375737.500200003,22.3099999999977 +5807,6944,179576.643920381,375739.458743546,22.2725000000064 +5808,6941,179576.681536749,375739.12647571,22.2728999999963 +5809,6945,179576.818265639,375737.918740407,22.2743000000046 +5810,15153,179576.947525188,375737.665889032,25 +5811,6942,179576.841924671,375738.598665375,25 +5812,23041,179576.780456427,375739.141618416,25 +5813,15158,179577.262823358,375733.991932832,22.2789000000048 +5814,15161,179577.633063596,375731.523386683,25 +5815,6276,179567.5002,375727.500599999,22.3000000000029 +5816,6273,179567.500300001,375722.500599999,22.3000000000029 +5817,6274,179562.5009,375722.500800002,22.4400000000023 +5818,6270,179567.500700001,375717.500600003,22.320000000007 +5819,6269,179562.500100002,375717.500300005,22.3999999999942 +5820,198,179562.500700004,375712.500399999,22.3899999999994 +5821,6265,179567.500400003,375712.500300005,22.3500000000058 +5822,6263,179562.500600003,375707.500500005,22.3099999999977 +5823,6267,179557.500799999,375712.500600003,22.4400000000023 +5824,9752,179555.709109217,375707.929961827,22.4146999999939 +5825,11950,179555.821721986,375706.908323228,22.4182000000001 +5826,11949,179555.934334755,375705.886684626,22.4216000000015 +5827,11953,179556.039156739,375704.935725115,22.4247999999934 +5828,6259,179562.500799999,375702.500700001,22.2700000000041 +5829,6264,179567.500500005,375707.500599999,22.3800000000047 +5830,6258,179567.500599999,375702.500599999,22.3999999999942 +5831,6260,179572.500100005,375702.500900004,22.1900000000023 +5832,6257,179567.500100005,375697.501000002,22.3800000000047 +5833,6255,179572.500500005,375697.500300001,22.179999999993 +5834,6254,179567.500400003,375692.500799999,22.2700000000041 +5835,6300,179562.500700004,375692.500500001,22 +5836,6240,179567.500400003,375687.500300005,22.3800000000047 +5837,6248,179562.500100002,375687.500900004,22.0299999999988 +5838,9751,179557.716136146,375689.721995294,22.4759000000049 +5839,11937,179557.877658948,375688.256647225,22.4808000000048 +5840,11939,179558.037736017,375686.804415021,22.4857000000047 +5841,11943,179558.138452008,375685.890711267,22.4888000000064 +5842,11941,179558.239168007,375684.977007516,22.4918999999936 +5843,6238,179562.500100002,375682.500999998,22.1900000000023 +5844,6243,179558.440600004,375683.149599999,22.4980000000069 +5845,6246,179558.341200009,375683.138599999,25 +5846,11942,179558.103593532,375685.294198707,25 +5847,11934,179558.60152017,375680.776939485,25 +5848,11935,179558.587746691,375681.814664919,22.5025000000023 +5849,9750,179558.734893378,375680.479729831,22.5069999999978 +5850,11932,179559.076332554,375676.46937592,25 +5851,11931,179559.321720228,375674.243184999,25 +5852,11928,179559.488130581,375672.733487308,25 +5853,11921,179559.620594878,375671.531752929,25 +5854,11927,179559.657617055,375671.195882596,25 +5855,11924,179559.767696638,375670.197225444,25 +5856,11922,179559.835358787,375670.49615559,22.5405000000028 +5857,11925,179560.023779392,375668.786777798,22.5463000000018 +5858,6226,179562.500799999,375667.500799999,22.3300000000017 +5859,22,179560.212200005,375667.077400003,22.551999999996 +5860,6245,179560.112800002,375667.066399999,25 +5861,11926,179559.919113509,375668.823550634,25 +5862,11919,179560.194076292,375666.329050273,25 +5863,11917,179560.41281613,375664.344612241,25 +5864,11914,179560.72804812,375661.484784067,25 +5865,11916,179560.696817961,375662.680906311,22.5668000000005 +5866,9748,179560.85835728,375661.215408415,22.5717000000004 +5867,11903,179561.033506956,375659.626436245,22.5770000000048 +5868,6221,179567.500700001,375662.500599999,22.3300000000017 +5869,6247,179567.500599999,375657.500599999,22.2200000000012 +5870,6219,179572.5002,375657.500700001,22.3000000000029 +5871,6216,179572.500100005,375652.500300005,22.3399999999965 +5872,6220,179577.500100002,375657.500900004,22.179999999993 +5873,6218,179577.500999998,375652.500799999,22.25 +5874,6156,179577.500800002,375647.500600003,22.2799999999988 +5875,6193,179582.500399999,375652.5009,22.2899999999936 +5876,6176,179582.501000002,375647.500799999,22.320000000007 +5877,15249,179586.328495067,375650.024751168,22.1578000000009 +5878,6199,179586.421599999,375649.172800001,22.1600000000035 +5879,7029,179586.627234519,375647.291142926,22.1647999999986 +5880,6197,179586.521000002,375649.183500003,25 +5881,7028,179586.727041483,375647.298129652,25 +5882,15251,179586.807347044,375646.563298397,25 +5883,15250,179587.617220744,375647.275435179,25.5681999999942 +5884,7025,179586.887652602,375645.828467134,25 +5885,15252,179587.836805191,375645.175108805,25.5718000000052 +5886,7026,179586.949120957,375645.266004622,25 +5887,6694,179587.010589313,375644.70354211,25 +5888,7024,179586.869111847,375645.077846229,22.1704000000027 +5889,7030,179587.031048171,375643.596049078,22.174199999994 +5890,6175,179582.501000002,375642.500300009,22.3300000000017 +5891,7027,179586.761735998,375646.060388122,22.1679000000004 +5892,7037,179587.224067945,375641.829823118,22.178700000004 +5893,7036,179587.316006359,375641.908841528,25 +5894,15254,179587.405882102,375641.086438887,25 +5895,15253,179588.369608864,375640.078838766,25.5804999999964 +5896,7033,179587.49511889,375640.26988294,25 +5897,7035,179587.371927086,375640.476839155,22.1821999999956 +5898,7038,179587.582781982,375638.547413036,22.1870999999956 +5899,7034,179587.674231421,375638.630924344,25 +5900,15255,179587.763787687,375637.811445054,25 +5901,7032,179587.684016209,375637.621069964,22.1894000000029 +5902,6174,179582.500300005,375637.500900004,22.2899999999936 +5903,7039,179587.829442207,375636.2903505,22.1928000000044 +5904,6695,179587.853343952,375636.991965756,25 +5905,22992,179587.927925959,375636.309507538,25 +5906,22990,179588.70778504,375636.844181787,25.5859999999957 +5907,15260,179588.002507966,375635.627049319,25 +5908,15262,179588.077089977,375634.944591094,25 +5909,15256,179589.045961224,375633.609524798,25.591499999995 +5910,7040,179588.151671972,375634.262132879,25 +5911,7041,179588.059895493,375634.181589454,22.1981999999989 +5912,15261,179587.944668848,375635.235969976,22.1955000000016 +5913,6173,179582.500500001,375632.500300001,22.2899999999936 +5914,6149,179577.500900004,375632.500700004,22.2700000000041 +5915,6152,179577.500900004,375637.500900004,22.2700000000041 +5916,6153,179577.500900004,375642.500300009,22.2799999999988 +5917,6155,179572.500400003,375642.500599999,22.3899999999994 +5918,6158,179572.5002,375647.5009,22.3699999999953 +5919,6157,179567.500900008,375647.5009,22.3099999999977 +5920,6154,179567.500700001,375642.500500005,22.320000000007 +5921,6150,179572.5002,375637.500599999,22.4100000000035 +5922,6151,179567.5002,375637.500900004,22.3600000000006 +5923,11887,179563.228956856,375639.709064934,22.6440000000002 +5924,11888,179563.129980072,375640.606996045,22.6408999999985 +5925,11884,179563.031003278,375641.504927158,22.6379000000015 +5926,11885,179562.908145539,375642.619509552,22.6342000000004 +5927,9747,179562.785287801,375643.734091941,22.6303999999946 +5928,11883,179562.774523493,375642.918876674,25 +5929,11894,179562.420241565,375646.132971313,25 +5930,11895,179562.494513541,375646.372036185,22.6215999999986 +5931,11899,179562.114516467,375648.906551596,25 +5932,11896,179562.070855197,375649.302652687,25 +5933,11900,179561.949177582,375650.406528842,25 +5934,11898,179562.098902408,375649.961075094,22.6095000000059 +5935,6242,179561.983800005,375651.005300004,22.6059999999998 +5936,6244,179561.884400003,375650.994200002,25 +5937,11912,179561.725379221,375652.436858512,25 +5938,11910,179561.590091445,375653.664207909,25 +5939,11911,179561.82354838,375652.459115848,22.6010999999999 +5940,11908,179561.663296752,375653.912931699,22.5962 +5941,6217,179567.500400003,375652.500600003,22.3099999999977 +5942,11909,179561.553830601,375654.906017542,22.5929000000033 +5943,11905,179561.444364458,375655.899103377,22.5896000000066 +5944,11906,179561.326510545,375656.96828372,22.5859999999957 +5945,11902,179561.208656631,375658.037464067,22.5823999999993 +5946,11904,179561.186255101,375657.327866994,25 +5947,11901,179561.082662206,375658.267676022,25 +5948,11907,179561.396739189,375655.418326244,25 +5949,11913,179561.425632861,375655.156198889,25 +5950,11897,179562.214004811,375648.916850176,22.6129999999976 +5951,11886,179562.994505931,375640.923165634,25 +5952,11889,179563.170931503,375639.322608482,25 +5953,11891,179563.329687703,375637.882350251,25 +5954,11893,179563.475614395,375636.558483139,25 +5955,6162,179563.656000003,375634.922000002,25 +5956,11882,179563.685738124,375634.660092011,25 +5957,6160,179563.755399998,375634.9331,22.6600000000035 +5958,11892,179563.582223304,375636.504182938,22.6546999999991 +5959,6164,179567.500500005,375632.500400007,22.2899999999936 +5960,11881,179563.85560206,375634.050605856,22.661300000007 +5961,11879,179563.955804121,375633.168111701,22.6625000000058 +5962,9746,179564.104518965,375631.858358376,22.6643999999942 +5963,11878,179563.89740644,375632.795898303,25 +5964,11880,179563.793284852,375633.712912288,25 +5965,11873,179564.0384688,375631.5535415,25 +5966,11877,179564.065093379,375631.319054909,25 +5967,11875,179564.231623262,375630.738932274,22.6659999999974 +5968,11876,179564.226384241,375629.898542773,25 +5969,11874,179564.358727559,375629.619506177,22.6676000000007 +5970,11871,179564.505103614,375627.443820592,25 +5971,11872,179564.612936158,375627.380653977,22.6708000000071 +5972,9745,179565.170135453,375622.47331845,22.6778000000049 +5973,11862,179565.134765029,375621.898300681,25 +5974,11864,179565.233525161,375621.02850578,25 +5975,11866,179565.345372014,375620.043454237,25 +5976,11870,179565.372684762,375619.802906927,25 +5977,11869,179565.549435731,375618.246235311,25 +5978,6161,179565.774700005,375616.2623,25 +5979,11860,179565.96918571,375614.549364317,25 +5980,11861,179566.066537391,375614.578495789,22.6891000000032 +5981,11859,179566.258974791,375612.883591581,22.6915000000008 +5982,11858,179566.182015032,375612.674867,25 +5983,11856,179566.615961142,375609.739412304,22.6959999999963 +5984,11855,179566.550120428,375609.432773411,25 +5985,11845,179566.954473622,375605.871426843,25 +5986,11857,179566.783912901,375608.260166857,22.6980999999942 +5987,9744,179566.951864652,375606.780921422,22.7002000000066 +5988,11847,179567.05349787,375605.885780644,22.7014999999956 +5989,6137,179572.500300001,375607.500399999,22.4100000000035 +5990,11846,179567.155131087,375604.990639877,22.7027999999991 +5991,6127,179572.500999998,375602.500700004,22.3600000000006 +5992,6138,179577.500800002,375607.500799999,22.4100000000035 +5993,6126,179577.500500001,375602.500500001,22.429999999993 +5994,6166,179582.500500001,375607.500200003,22.3000000000029 +5995,6101,179582.500200003,375602.500500001,22.3000000000029 +5996,6100,179582.500500001,375597.500700001,22.3000000000029 +5997,6102,179587.5009,375602.500799999,22.3099999999977 +5998,6167,179587.500300001,375607.500200003,22.2899999999936 +5999,7071,179591.262844328,375604.840639602,22.2593999999954 +6000,7074,179591.460424632,375603.0261737,22.2612999999983 +6001,7070,179591.365882974,375604.818334479,25 +6002,7073,179591.55756152,375603.058127254,25 +6003,7072,179591.533081878,375602.358930599,22.2620000000024 +6004,6700,179591.647410173,375602.233036175,25 +6005,7078,179591.733610149,375600.517392259,22.2639000000054 +6006,6099,179587.500700004,375597.500400003,22.3399999999965 +6007,7075,179591.878807429,375599.183982436,22.2652999999991 +6008,7077,179591.828584611,375600.569289424,25 +6009,7076,179592.00975905,375598.905542664,25 +6010,15285,179592.123424351,375597.8617405,25 +6011,7079,179592.056837291,375597.549056802,22.2669000000024 +6012,7080,179592.188843869,375597.260985166,25 +6013,7081,179592.243900005,375595.831178527,22.2687000000005 +6014,6098,179587.500300001,375592.500900004,22.3699999999953 +6015,6097,179582.500300005,375592.500100005,22.3099999999977 +6016,6123,179577.500900004,375592.5002,22.4600000000064 +6017,6095,179582.500399999,375587.500200003,22.320000000007 +6018,6122,179577.500200003,375587.500399999,22.4700000000012 +6019,6120,179577.500300005,375582.500200003,22.5 +6020,6094,179582.500700004,375582.500700004,22.320000000007 +6021,6119,179577.500800002,375577.500400003,22.4700000000012 +6022,6118,179572.500500005,375577.500400003,22.429999999993 +6023,6117,179577.500600006,375572.500700001,22.4100000000035 +6024,11814,179570.634219579,375574.121785212,22.6949000000022 +6025,11815,179570.532122288,375575.065430105,22.7036999999982 +6026,9741,179570.430025004,375576.009075001,22.7124999999942 +6027,11820,179570.303427175,375577.179168705,22.7234000000026 +6028,11822,179570.207413588,375578.066584345,22.7317000000039 +6029,6129,179570.111400001,375578.954,22.7400000000052 +6030,11829,179569.951994631,375580.357906368,22.7379999999976 +6031,6121,179572.500500005,375582.500500001,22.4600000000064 +6032,11827,179569.792589262,375581.761812724,22.7360000000044 +6033,11825,179569.665685333,375582.879474152,22.7344000000012 +6034,9742,179569.533624828,375584.042550277,22.7326999999932 +6035,6134,179572.500100005,375587.500399999,22.3699999999953 +6036,6135,179572.500500005,375592.500400003,22.3500000000058 +6037,11836,179568.87690923,375589.826340336,22.7244000000064 +6038,11839,179568.790437888,375590.587906074,22.7234000000026 +6039,11837,179568.703966539,375591.349471815,22.722299999994 +6040,11834,179568.531023853,375592.872603297,22.7201000000059 +6041,9743,179568.377931207,375594.220912572,22.718200000003 +6042,6125,179572.500900004,375597.500700001,22.3600000000006 +6043,6124,179577.500200003,375597.500500005,22.429999999993 +6044,11841,179568.204252284,375595.750528187,22.7160000000003 +6045,11843,179568.098476142,375596.682114094,22.7146000000066 +6046,6130,179567.992700003,375597.613700002,22.7133000000031 +6047,11853,179567.689863142,375600.280954268,22.7094999999972 +6048,11851,179567.49852562,375601.966171283,22.7070999999996 +6049,11849,179567.33132191,375603.438828275,22.7050000000017 +6050,11850,179567.294436704,375602.877197176,25 +6051,11852,179567.443483055,375601.564469241,25 +6052,11854,179567.612098612,375600.079385318,25 +6053,6133,179567.893300001,375597.602699999,25 +6054,11844,179567.923781,375597.334249422,25 +6055,11842,179568.037185974,375596.335475232,25 +6056,11840,179568.164712049,375595.212334506,25 +6057,11833,179568.341508575,375593.65526174,25 +6058,11835,179568.464841805,375592.569047932,25 +6059,11838,179568.707031652,375590.436046612,25 +6060,11848,179567.136758491,375604.265950266,25 +6061,11831,179569.149570622,375586.538541373,25 +6062,11824,179569.490032569,375583.540043324,25 +6063,11832,179569.231799923,375586.700766191,22.7289000000019 +6064,11826,179569.607301574,375582.507238109,25 +6065,11828,179569.718768373,375581.525533691,25 +6066,11830,179569.852728244,375580.345729623,25 +6067,6132,179570.011999998,375578.943000004,25 +6068,11821,179570.06477638,375578.455196351,25 +6069,11823,179570.086346813,375578.255824279,25 +6070,11819,179570.23167431,375576.912585448,25 +6071,11813,179570.40314329,375575.327725094,25 +6072,11816,179570.568065245,375573.803377755,25 +6073,11818,179570.789691124,375571.754925136,25 +6074,6015,179569.607000001,375561.447000008,26.2700000000041 +6075,6131,179571.286499999,375567.163000003,25 +6076,11812,179571.757893972,375562.805980828,25 +6077,11811,179571.926447451,375561.248067901,25 +6078,11805,179572.077582885,375559.851147212,25 +6079,6016,179569.916000005,375557.206,26.3899999999994 +6080,6006,179572.561000001,375555.383000005,25 +6081,11810,179572.316221334,375557.645450167,25 +6082,11801,179572.646952763,375554.718836635,25 +6083,6007,179572.612,375554.403000001,25.4079999999958 +6084,6011,179571.441300001,375553.344200004,25.5935999999929 +6085,14566,179571.576564189,375552.239416528,25.5962 +6086,6001,179571.745999999,375552.734999999,25 +6087,14567,179571.768280286,375552.488134384,25 +6088,5985,179571.853800002,375552.652600002,22.5899999999965 +6089,11784,179571.881749999,375552.342950009,22.5899999999965 +6090,11793,179572.279650003,375552.728250004,22.5899999999965 +6091,5983,179572.085600007,375552.083400004,22.5899999999965 +6092,5984,179571.909700003,375552.033300005,22.5899999999965 +6093,5999,179572.000000004,375551.955000002,25 +6094,11782,179572.0094947,375551.874173358,25 +6095,6000,179571.821000002,375551.903999999,25 +6096,11778,179572.0482007,375551.544676077,25 +6097,6012,179571.620300002,375551.882200003,25.597099999999 +6098,11783,179571.790560585,375552.241268761,25 +6099,11780,179572.073884379,375551.326035555,25 +6100,14570,179572.128232159,375550.863382645,25 +6101,14571,179572.157252394,375550.616338592,25 +6102,11774,179572.186272632,375550.369294535,25 +6103,11779,179572.201276176,375551.098724686,22.5785000000033 +6104,5987,179572.848000001,375551.528900005,22.5899999999965 +6105,11781,179572.166573327,375551.39412728,22.5819999999949 +6106,9737,179572.131870471,375551.689529873,22.5853999999963 +6107,9738,179572.814479813,375551.82881749,22.5899999999965 +6108,11786,179572.759989906,375552.316358749,22.5899999999965 +6109,11785,179572.89163262,375552.038942635,25 +6110,11788,179572.91718635,375551.810419217,25 +6111,6003,179572.932999998,375551.669000003,25 +6112,6004,179573.008000001,375551.698000003,25 +6113,6005,179573.019000001,375551.844000001,25 +6114,11789,179572.98166351,375552.132501878,25 +6115,11787,179572.879436065,375552.148014642,25 +6116,11790,179572.840906408,375552.49257987,25 +6117,11797,179572.924800783,375552.571884379,25 +6118,11799,179572.901549734,375552.751546949,25 +6119,11791,179572.847552959,375553.168784056,25 +6120,6002,179572.793000001,375552.921000004,25 +6121,11792,179572.269500006,375552.828000005,25 +6122,11800,179572.770374205,375553.765150007,25 +6123,5986,179572.705499999,375552.8039,22.5899999999965 +6124,11794,179572.732744955,375552.560129378,22.5899999999965 +6125,11798,179572.828929808,375552.599684902,25 +6126,11796,179572.816953208,375552.706789937,25 +6127,11803,179572.691984862,375554.370870292,25 +6128,11804,179572.669499841,375554.544613704,25 +6129,11808,179572.150858495,375559.173872471,25 +6130,11807,179572.029651199,375561.223844584,22.5743999999977 +6131,9740,179571.852848765,375562.858101767,22.5896999999968 +6132,6128,179571.385900002,375567.1743,22.6300000000047 +6133,11817,179570.900706735,375571.658749681,22.6719000000012 +6134,6089,179582.500700004,375572.500400003,22.3399999999965 +6135,6092,179582.5009,375577.500500005,22.3300000000017 +6136,6091,179587.5002,375577.500100002,22.3699999999953 +6137,6088,179587.500400007,375567.5009,22.3399999999965 +6138,6113,179594.474100005,375575.351100001,22.2899999999936 +6139,7098,179594.207584791,375577.798521202,22.2875000000058 +6140,7099,179594.337041624,375577.533096988,25 +6141,6104,179594.566300005,375575.427700002,25 +6142,15300,179594.701724127,375574.18408389,25 +6143,15301,179594.607056808,375574.130099881,22.2912999999971 +6144,6111,179595.046999998,375578.483000003,25.5679999999993 +6145,6108,179597.033500008,375580.113300003,26.6199999999953 +6146,15295,179594.79629685,375580.825286511,25.5755999999965 +6147,15293,179594.433668897,375584.213271789,25.5865000000049 +6148,7093,179593.772912592,375582.713782594,25 +6149,6702,179593.613814376,375584.174862877,25 +6150,15294,179593.545317665,375584.803903211,25 +6151,7088,179593.473342661,375584.541099545,22.2804999999935 +6152,7090,179593.253204376,375586.56263933,22.2783999999956 +6153,6096,179587.500100005,375587.500600003,22.3899999999994 +6154,6093,179587.5009,375582.500100002,22.3800000000047 +6155,7091,179593.667534165,375582.757830307,22.2823000000062 +6156,7094,179593.857092164,375581.017110679,22.2841000000044 +6157,7092,179593.932010796,375581.252702318,25 +6158,15296,179593.997535463,375580.650955785,25 +6159,7096,179594.038014688,375579.355691016,22.2857999999978 +6160,7095,179594.097835086,375579.729853027,25 +6161,7097,179594.180747233,375578.968428381,25 +6162,6703,179594.263659377,375578.207003739,25 +6163,22978,179593.125938043,375587.73133174,22.2771000000066 +6164,7086,179592.998671718,375588.900024142,22.2758999999933 +6165,7087,179593.098394141,375588.90823058,25 +6166,22977,179593.227249201,375587.724888656,25 +6167,22976,179593.936667223,375588.856692951,25.6015000000043 +6168,22975,179594.102334451,375587.308885895,25.5964999999997 +6169,7089,179593.356104258,375586.541546725,25 +6170,22974,179596.035669103,375588.896361809,26.6092999999964 +6171,6107,179593.771000002,375590.404500004,25.6064999999944 +6172,15288,179593.636493914,375591.661172736,25.6106 +6173,6114,179595.177000001,375596.454500005,26.6000000000058 +6174,22774,179606.706494696,375590.895093344,26.6074999999983 +6175,194,179607.310000002,375583.237000003,26.5899999999965 +6176,6105,179607.774000004,375590.927000001,25.820000000007 +6177,6109,179609.143000003,375573.670000006,25.9470000000001 +6178,25286,179613.576798722,375555.96085069,25.9572000000044 +6179,6185,179606.405000009,375607.802000005,25.7259999999951 +6180,6115,179605.929000001,375600.761000004,26.6300000000047 +6181,22773,179605.286362037,375607.459901199,26.6175999999978 +6182,6189,179604.375000004,375616.960000005,26.6000000000058 +6183,6188,179593.320500001,375612.7958,26.570000000007 +6184,22984,179592.250395637,375622.215024058,26.5584999999992 +6185,22772,179603.910195488,375620.841628321,26.5708000000013 +6186,195,179602.782000005,375630.263300005,26.5 +6187,6192,179605.117000002,375621.954000004,25.679999999993 +6188,6179,179603.779000003,375635.579999998,25.7920000000013 +6189,22771,179602.351168241,375633.861245524,26.4729999999981 +6190,6183,179601.189000003,375643.5667,26.3999999999942 +6191,22989,179590.591342095,375637.572359513,26.454899999997 +6192,6191,179591.464000002,375629.137000006,26.5500000000029 +6193,15263,179589.410701592,375630.120781191,25.5973999999987 +6194,6177,179588.450000003,375631.532300003,25 +6195,15259,179588.339748494,375632.541149855,25 +6196,15257,179588.262631115,375633.246807892,25 +6197,15258,179588.205247745,375632.85154473,22.2016000000003 +6198,6186,179588.350600004,375631.521500006,22.2050000000017 +6199,7047,179588.548686191,375629.708913803,22.209600000002 +6200,7046,179588.623659309,375629.943231788,25 +6201,15264,179588.667074136,375629.545964733,25 +6202,7048,179588.710488964,375629.148697682,25 +6203,7045,179588.682559248,375628.483909409,22.2127000000037 +6204,6172,179582.5009,375627.5009,22.3099999999977 +6205,7042,179588.800630335,375627.403500799,22.2155000000057 +6206,7049,179589.031021949,375625.295304138,22.2209000000003 +6207,6696,179588.936231907,375627.083038595,25 +6208,7050,179589.131853338,375625.293006174,25 +6209,22988,179589.205897126,375624.615469068,25 +6210,22985,179590.063727714,375624.066314295,25.6076999999932 +6211,22986,179589.272326127,375624.007610958,25 +6212,15268,179589.353746019,375623.262578819,25 +6213,15269,179589.238804583,375623.393990651,22.2256999999954 +6214,22987,179589.134913262,375624.344647389,22.2232999999978 +6215,6171,179582.500500001,375622.500200003,22.2799999999988 +6216,7053,179589.446587224,375621.49267716,22.2305999999953 +6217,15271,179589.591530502,375620.166374806,22.2339000000065 +6218,6170,179582.500399999,375617.5002,22.3000000000029 +6219,7051,179589.736473776,375618.840072453,22.2372999999934 +6220,7054,179589.910746951,375617.245387055,22.241399999999 +6221,6169,179587.500400007,375612.500400003,22.3099999999977 +6222,7056,179590.080591954,375615.691221613,22.2453999999998 +6223,7058,179590.212968428,375614.479911722,22.2483999999968 +6224,6698,179590.260786187,375614.962714609,25 +6225,7059,179590.319893099,375614.421857305,25 +6226,6182,179591.125500001,375614.572000004,25.6239999999962 +6227,6178,179590.379000001,375613.881000008,25 +6228,15275,179591.411670111,375612.013081312,25.6284000000014 +6229,15279,179591.77690082,375608.747206695,25.6340000000055 +6230,15278,179590.78582773,375610.145051833,25 +6231,7063,179590.702596191,375610.909377106,25 +6232,15276,179590.621697146,375611.652282838,25 +6233,7065,179590.540798094,375612.395188555,25 +6234,15277,179590.510815505,375611.746847432,22.2522000000026 +6235,7064,179590.578261886,375611.127457958,22.252800000002 +6236,7066,179590.44336912,375612.366236914,22.2516000000032 +6237,6190,179590.279599998,375613.870200001,22.25 +6238,7062,179590.724372856,375609.785657335,22.2541999999958 +6239,7067,179590.855382849,375608.582535669,22.2554999999993 +6240,7060,179590.915922757,375608.026571278,22.2560999999987 +6241,7069,179591.031626537,375606.964013156,22.2571999999927 +6242,6699,179591.084355768,375607.403632771,25 +6243,15280,179591.030531649,375607.897906225,25 +6244,7068,179590.976707522,375608.392179668,25 +6245,15281,179590.922883391,375608.886453122,25 +6246,7061,179590.869059265,375609.380726565,25 +6247,22983,179591.154737573,375606.7573082,25 +6248,22980,179592.135950409,375605.53660335,25.6395000000048 +6249,22979,179594.178505145,375605.243459895,26.5838999999978 +6250,22981,179592.315475211,375603.931301679,25.642200000002 +6251,6106,179592.495000001,375602.326000001,25.6450000000041 +6252,15284,179592.968215395,375597.904810935,25.6306999999942 +6253,15286,179593.232975625,375595.431190941,25.6227000000072 +6254,7082,179592.330771934,375595.957642585,25 +6255,15287,179592.401735973,375595.305971295,25 +6256,6103,179592.4727,375594.654300001,25 +6257,6110,179592.376800001,375594.6107,22.2700000000041 +6258,15292,179592.575523525,375593.710018992,25 +6259,15291,179592.524860293,375593.25105577,22.2713999999978 +6260,15290,179592.678347047,375592.765737984,25 +6261,7085,179592.672920574,375591.891411535,22.2728000000061 +6262,7084,179592.787488319,375591.763437856,25 +6263,15289,179592.838412683,375591.295773335,25 +6264,7083,179592.759935986,375591.092345096,22.2737000000052 +6265,6701,179592.889337048,375590.828108817,25 +6266,22982,179591.295501169,375605.464659054,25 +6267,15282,179591.225119371,375606.110983625,25 +6268,15283,179591.147235431,375605.902326379,22.2583000000013 +6269,6168,179582.500799999,375612.500400003,22.3099999999977 +6270,7057,179590.172125831,375615.774000555,25 +6271,7055,179590.083465476,375616.585286509,25 +6272,15267,179590.49836706,375620.179791171,25.6144000000058 +6273,15273,179590.371455427,375621.314628586,25.6123999999982 +6274,6181,179589.756000001,375626.818,25.6030000000028 +6275,15265,179589.651775021,375627.814912543,25.6012999999948 +6276,15266,179588.901503589,375627.400819838,25 +6277,7044,179588.866775267,375627.718601089,25 +6278,7043,179588.797318622,375628.354163572,25 +6279,15272,179589.682059485,375620.25834896,25 +6280,7052,179589.575638711,375621.23215146,25 +6281,15274,179589.510034803,375621.832459517,25 +6282,15270,179589.788480263,375619.284546465,25 +6283,6697,179589.906144753,375618.20785841,25 +6284,6140,179577.500300005,375612.500700001,22.3800000000047 +6285,6139,179572.500599999,375612.500500005,22.4199999999983 +6286,6141,179572.500700001,375617.5002,22.3899999999994 +6287,6142,179577.500900004,375617.500599999,22.3300000000017 +6288,6144,179577.500500001,375622.500399999,22.320000000007 +6289,6143,179572.500500005,375622.500399999,22.429999999993 +6290,6145,179567.5002,375622.500900004,22.4499999999971 +6291,6146,179572.500100005,375627.500500001,22.4199999999983 +6292,6147,179577.500300005,375627.500600003,22.2899999999936 +6293,6148,179572.500800002,375632.500700004,22.4199999999983 +6294,6163,179567.5002,375627.500600003,22.3099999999977 +6295,11863,179565.280736279,375621.499240812,22.6791999999987 +6296,11865,179565.406497993,375620.391639136,22.6808000000019 +6297,11868,179565.523398492,375619.362079352,22.6823000000004 +6298,11867,179565.640298996,375618.332519572,22.6837999999989 +6299,6159,179565.874100003,375616.273400005,22.6867000000057 +6300,6184,179589.720000003,375645.995000005,26.3600000000006 +6301,22991,179588.538696952,375638.461510275,25.5831999999937 +6302,6180,179587.910000004,375644.475000005,25.573000000004 +6303,22770,179600.790750004,375646.892525006,26.3775000000023 +6304,22993,179588.703000002,375653.559875004,26.2774999999965 +6305,15246,179587.189669166,375651.364968371,25.5613000000012 +6306,22994,179586.989974327,375653.275050584,25.5580000000045 +6307,15242,179586.790279493,375655.185132798,25.5547999999981 +6308,6211,179588.364,375656.081500005,26.25 +6309,6206,179599.596000005,375656.870000001,26.3099999999977 +6310,22769,179599.265000001,375658.901750006,26.3125 +6311,6214,179600.011000007,375662.109000005,25.7339999999967 +6312,6187,179602.367000002,375646.438000005,25.7820000000065 +6313,6212,179598.272,375664.997000001,26.320000000007 +6314,22995,179587.286469255,375664.09662823,26.162599999996 +6315,6207,179587.008000001,375666.168000005,26.1399999999994 +6316,22996,179585.781803794,375664.365240403,25.5440999999992 +6317,15231,179585.612486076,375665.705184653,25.5448000000033 +6318,15227,179585.337747436,375667.879407462,25.5460000000021 +6319,6196,179584.592000004,375666.834800009,25 +6320,15230,179584.508966357,375667.594594453,25 +6321,6198,179584.492600009,375666.824000001,22.1150000000052 +6322,15229,179584.33399776,375668.275288615,22.1113000000041 +6323,6224,179577.500399999,375667.500200003,22.25 +6324,7002,179584.175395522,375669.726577237,22.107600000003 +6325,15228,179584.425932709,375668.354388904,25 +6326,7003,179584.259865418,375669.87397781,25 +6327,7004,179584.118758358,375670.244835179,22.1062999999995 +6328,15224,179584.13020996,375671.060382351,25 +6329,15225,179584.008528382,375671.253493771,22.1037000000069 +6330,6228,179577.500500001,375672.500300005,22.1699999999983 +6331,7006,179583.898298401,375672.262152366,22.1010999999999 +6332,15226,179584.065382231,375671.653584626,25 +6333,7005,179584.000554506,375672.2467869,25 +6334,15221,179584.737122413,375672.632625476,25.5483999999997 +6335,15222,179583.870899048,375673.433191452,25 +6336,22998,179584.548668358,375674.124010488,25.549199999994 +6337,22999,179583.80607133,375674.026393719,25 +6338,6690,179583.741243593,375674.619595993,25 +6339,15218,179584.360214315,375675.615395498,25.5498999999982 +6340,22997,179586.022745226,375674.185893741,26.123900000006 +6341,6208,179585.785999998,375676.112500001,26.1199999999953 +6342,6215,179596.324999999,375674.462999996,26.3500000000058 +6343,22768,179594.941718154,375680.290747337,26.3108999999968 +6344,23000,179584.887282193,375683.42616545,26.1052999999956 +6345,15215,179584.106415253,375677.623906948,25.5510000000068 +6346,6202,179583.605000004,375681.592000004,25.5529999999999 +6347,23001,179583.481739618,375682.728985682,25.5561000000016 +6348,23002,179582.918565638,375682.147461832,25 +6349,6689,179582.969131052,375681.684765995,25 +6350,6990,179582.856205646,375681.797814243,22.0767999999953 +6351,6992,179582.774771914,375682.542973049,22.0749000000069 +6352,6236,179577.500600006,375682.500500005,22.1900000000023 +6353,6998,179583.074008055,375679.804814983,22.0819000000047 +6354,6233,179577.500600006,375677.500500005,22.179999999993 +6355,6237,179572.500599999,375682.500700001,22.25 +6356,6241,179577.500200003,375687.500900004,22.2100000000064 +6357,6989,179582.409290783,375685.918283109,22.0761999999959 +6358,6210,179582.5636,375684.475300007,22.070000000007 +6359,15214,179582.669185959,375683.509136524,22.0724999999948 +6360,15213,179582.76550011,375683.548078828,25 +6361,6991,179582.868000221,375682.610157657,25 +6362,15212,179583.358479235,375683.865971357,25.5592000000033 +6363,6195,179582.663000003,375684.486000001,25 +6364,15210,179583.135665353,375685.921264242,25.5648999999976 +6365,6209,179584.564000003,375686.057000004,26.1000000000058 +6366,15206,179582.930504363,375687.813722331,25.5700999999972 +6367,15209,179582.430110879,375686.66381637,25 +6368,15207,179582.357547183,375687.342381358,25 +6369,6988,179582.293896407,375687.937598985,25 +6370,23004,179582.696658049,375689.970781207,25.5760000000009 +6371,6687,179582.021698304,375690.483005501,25 +6372,15202,179582.462811742,375692.127840079,25.5819000000047 +6373,23009,179583.929449406,375692.397975285,26.1402999999991 +6374,6204,179592.534000002,375690.444000002,26.0500000000029 +6375,6205,179592.708999999,375689.120000005,26.1300000000047 +6376,6213,179593.136999998,375687.894000001,26.2599999999948 +6377,6201,179594.353000004,375688.923999995,25.5789999999979 +6378,25275,179595.133000001,375686.352500007,25.5679999999993 +6379,6200,179595.912999999,375683.781000003,25.5570000000007 +6380,25282,179596.454000004,375681.145750005,25.6005000000005 +6381,25284,179596.724500004,375679.828125004,25.622199999998 +6382,25279,179596.994999997,375678.510499999,25.6440000000002 +6383,25285,179597.590326928,375679.542398211,25.7495000000054 +6384,196,179598.077000003,375673.239999998,25.7309999999998 +6385,25283,179597.347096462,375680.639311817,25.7192000000068 +6386,25226,179580.976000004,375785.379000001,25.6635999999999 +6387,25221,179580.925928049,375785.867234737,25.6707000000024 +6388,6411,179580.223999999,375785.288000003,25.601999999999 +6389,25225,179579.851999998,375789.028000001,25.6171999999933 +6390,6417,179578.475000005,375785.077000003,26.3699999999953 +6391,23074,179577.840500001,375790.756000001,26.3699999999953 +6392,23065,179573.782378305,375785.488047991,26.2470999999932 +6393,23075,179573.247402165,375790.295829568,26.2443000000058 +6394,15116,179572.143704571,375788.018309414,25.4851000000053 +6395,23076,179571.999821376,375789.360076923,25.483699999997 +6396,23077,179571.17811292,375788.831575003,25 +6397,6888,179571.123569231,375789.335759047,25 +6398,6889,179571.004606906,375790.435407981,25 +6399,6887,179570.888419453,375790.579633228,22.210500000001 +6400,23073,179570.945125755,375790.985232443,25 +6401,6884,179570.747018259,375791.886709638,22.2084999999934 +6402,6380,179567.500599999,375792.500599999,22.2299999999959 +6403,6890,179571.04571747,375789.125610743,22.2127000000037 +6404,15118,179571.15145598,375788.148191098,22.2140999999974 +6405,6891,179571.257194489,375787.170771442,22.2155999999959 +6406,15119,179571.297075234,375787.731926069,25 +6407,6676,179571.361493874,375787.13646118,25 +6408,23067,179571.517246936,375785.696730588,25 +6409,23066,179572.339852288,375786.189154711,25.4870999999985 +6410,6407,179572.536000002,375784.360000003,25.4890000000014 +6411,6416,179574.343600001,375780.444400001,26.25 +6412,15120,179572.885091886,375781.148387041,25.4943000000058 +6413,6895,179571.890628807,375782.334670458,25 +6414,6396,179571.673000004,375784.256999999,25 +6415,6896,179571.999443211,375781.373505682,25 +6416,15122,179572.053850412,375780.892923295,25 +6417,15123,179573.097175892,375779.197233822,25.4976000000024 +6418,23063,179574.7477553,375776.812125653,26.25 +6419,25223,179578.93900029,375779.999558553,26.3727999999974 +6420,25228,179580.412500001,375783.126500003,25.6171999999933 +6421,25224,179580.601,375780.965,25.632500000007 +6422,25222,179580.978000004,375776.641999997,25.6630000000005 +6423,21797,179579.403000578,375774.922117107,26.3754999999946 +6424,25230,179581.253159083,375773.486793887,25.6852999999974 +6425,25231,179579.68387536,375771.848573197,26.3772000000026 +6426,6317,179581.732000005,375767.996000003,25.724000000002 +6427,21802,179579.964750152,375768.775029276,26.3788999999961 +6428,23058,179575.774057463,375767.588416271,26.25 +6429,23062,179575.243319232,375772.358332343,26.25 +6430,15129,179574.136652905,375769.634141751,25.5135000000009 +6431,21798,179573.851930283,375772.253563497,25.5090999999957 +6432,6905,179573.141587537,375771.284869768,25 +6433,21799,179573.064540483,375771.965431433,25 +6434,21801,179572.991061606,375772.614475235,25 +6435,15126,179572.910531305,375773.325804655,25 +6436,15125,179573.567207653,375774.872985244,25.5047999999952 +6437,15127,179572.748833448,375774.754092477,25 +6438,6902,179572.679475076,375775.366739538,25 +6439,23064,179573.332191776,375777.035109539,25.5011999999988 +6440,6903,179572.521717049,375776.760226525,25 +6441,6908,179573.372643776,375769.243934888,25 +6442,23060,179573.488171887,375768.223467447,25 +6443,23059,179574.348542824,375767.684774194,25.5166999999929 +6444,6348,179573.603700005,375767.203000005,25 +6445,15130,179574.56043274,375765.73540663,25.5200000000041 +6446,6910,179573.757189512,375765.847146824,25 +6447,15131,179573.795561895,375765.508183524,25 +6448,6912,179573.83393427,375765.169220228,25 +6449,6363,179574.692000005,375764.524999999,25.5219999999972 +6450,6678,179573.910679035,375764.491293639,25 +6451,6359,179576.268399999,375763.145600002,26.25 +6452,6367,179580.151999999,375766.726000004,26.3800000000047 +6453,23056,179575.059288226,375761.145982403,25.5276000000013 +6454,25229,179581.995599061,375773.825847812,25.5969000000041 +6455,25232,179583.779000003,375753.618000004,25.648199999996 +6456,25237,179584.425165076,375747.599439397,25.6582999999955 +6457,25271,179594.133253563,375693.668036237,25.5727000000043 +6458,25270,179594.098000005,375693.798999995,25.5724999999948 +6459,6305,179592.761999998,375691.951000005,25.6710000000021 +6460,25269,179593.646375366,375695.228065193,25.5681999999942 +6461,25261,179591.905999999,375702.026700001,25.5871999999945 +6462,25259,179591.898864944,375702.047568571,25.5872999999992 +6463,25262,179591.902991146,375702.025503546,25.5872999999992 +6464,25256,179590.699999999,375705.554000001,25.5828000000038 +6465,25257,179589.458000001,375705.173750006,25.6579999999958 +6466,25258,179590.810112298,375705.231944352,25.5809000000008 +6467,25254,179589.054000001,375707.585500002,25.648000000001 +6468,25255,179587.1415,375705.807999998,26.3000000000029 +6469,6315,179586.421999998,375709.686000001,26.3399999999965 +6470,23016,179582.261317838,375709.067380462,26.2544000000053 +6471,6313,179582.043000001,375711.249000005,26.2700000000041 +6472,15184,179580.573013019,375709.912236519,25.5948999999964 +6473,6288,179580.377000004,375711.778999999,25.5939999999973 +6474,15180,179580.22367426,375713.23922389,25.5932999999932 +6475,25252,179580.112181146,375714.301047675,25.5927999999985 +6476,15181,179579.564978175,375713.457272857,25 +6477,15182,179579.486551937,375714.190702606,25 +6478,25253,179579.447338812,375714.557417478,25 +6479,6969,179579.323144518,375714.778489783,22.2008999999962 +6480,6968,179579.408125699,375714.924132358,25 +6481,23024,179579.355519269,375715.416099269,25 +6482,23023,179579.21072226,375715.829844896,22.2054999999964 +6483,6266,179572.5002,375712.500500001,22.2799999999988 +6484,6271,179572.500999998,375717.500600003,22.2799999999988 +6485,6272,179572.500300001,375722.5002,22.25 +6486,6962,179578.737175237,375720.25816571,22.2246000000014 +6487,15174,179578.64443019,375721.125447225,22.2283000000025 +6488,6961,179578.551685143,375721.99272874,22.2320999999938 +6489,23028,179578.461596292,375722.835171577,22.2357000000047 +6490,6958,179578.371507436,375723.677614406,22.2394000000058 +6491,6956,179578.18860805,375725.387951188,22.2467999999935 +6492,6957,179578.310583424,375725.187694579,25 +6493,15171,179578.25913414,375725.668812331,25 +6494,6954,179578.207684852,375726.149930082,25 +6495,23035,179578.160959408,375726.586873811,25 +6496,6955,179578.114233959,375727.02381755,25 +6497,15177,179578.832542341,375719.366364684,22.2207000000053 +6498,6964,179578.927909441,375718.474563655,22.2168999999994 +6499,6292,179579.098300003,375716.881200001,22.2100000000064 +6500,15179,179579.100276429,375717.803037174,25 +6501,6281,179579.197700005,375716.892000008,25 +6502,23022,179579.30291285,375715.908066176,25 +6503,15178,179579.777701776,375717.486519024,25.5914000000048 +6504,23021,179580.00068802,375715.362871461,25.5923999999941 +6505,6963,179579.003736462,375718.70581156,25 +6506,23031,179578.948767599,375719.219841972,25 +6507,6967,179579.493676703,375713.183699872,22.1940000000031 +6508,6965,179579.567421507,375712.494050197,22.1910000000062 +6509,6970,179579.792466432,375710.389465772,22.1820000000007 +6510,6262,179577.500900004,375707.500400003,22.3999999999942 +6511,6261,179572.5002,375707.500300009,22.1699999999983 +6512,15191,179580.453365445,375704.208843224,22.1552999999985 +6513,6979,179580.562008727,375703.192828447,22.1508999999933 +6514,15194,179580.696454365,375701.93551423,22.145399999994 +6515,6283,179580.830899999,375700.678200003,22.1399999999994 +6516,15195,179580.80410324,375701.869172085,25 +6517,6282,179580.930300005,375700.688999999,25 +6518,15197,179581.038769465,375699.674669344,25 +6519,15198,179580.948848616,375699.575233765,22.1352000000043 +6520,15199,179581.093004197,375699.167504016,25 +6521,6980,179581.066797234,375698.472267542,22.1304999999993 +6522,6290,179577.500700008,375692.500700004,22.1300000000047 +6523,6253,179572.500500005,375692.500200003,22.25 +6524,6239,179572.500300001,375687.500200003,22.2599999999948 +6525,6235,179567.500400003,375682.500300001,22.3899999999994 +6526,6232,179572.500300001,375677.500400003,22.2299999999959 +6527,6231,179567.500700001,375677.500400003,22.429999999993 +6528,6234,179562.5009,375677.500599999,22.3399999999965 +6529,11933,179559.147238936,375676.738873985,22.5194999999949 +6530,11929,179559.333947234,375675.045030493,22.5252000000037 +6531,6230,179562.500600003,375672.500799999,22.3399999999965 +6532,11930,179559.475860368,375673.757574912,22.5295999999944 +6533,9749,179559.617773507,375672.470119331,22.5338999999949 +6534,11923,179559.726566147,375671.483137459,22.5372000000061 +6535,6229,179567.500700001,375672.500399999,22.429999999993 +6536,6223,179567.500500005,375667.500100002,22.4100000000035 +6537,6222,179572.500900004,375662.500700001,22.3000000000029 +6538,6225,179572.500900004,375667.500399999,22.2899999999936 +6539,6251,179577.500999998,375662.500800002,22.0599999999977 +6540,6194,179582.500399999,375657.500300001,22.1000000000058 +6541,7007,179584.951366205,375662.626087129,22.1257000000041 +6542,7010,179584.777981218,375664.212636113,22.1217000000033 +6543,15233,179584.635290612,375665.518318057,22.1183000000019 +6544,7008,179584.876689628,375664.229749743,25 +6545,7009,179585.003318634,375663.071031976,25 +6546,15234,179585.95112152,375663.025296163,25.5434999999998 +6547,15235,179585.044184804,375662.69708639,25 +6548,6691,179585.085050978,375662.323140807,25 +6549,7011,179585.194866072,375660.39795601,22.1313999999984 +6550,7012,179585.297282208,375660.381120477,25 +6551,7015,179585.401419941,375658.507897135,22.1361999999936 +6552,15240,179585.473609336,375657.847332306,22.1379000000015 +6553,7013,179585.545798741,375657.186767474,22.139599999995 +6554,15238,179585.618964154,375656.51727166,22.141300000003 +6555,7016,179585.692129578,375655.847775843,22.1429999999964 +6556,15244,179585.791780934,375654.935922004,22.1453000000038 +6557,7018,179585.891432289,375654.024068169,22.1475999999966 +6558,7022,179586.065323029,375652.432891309,22.1517000000022 +6559,7020,179586.092417192,375652.184967827,22.1523000000016 +6560,7023,179586.235390138,375650.876702335,22.155700000003 +6561,15247,179586.235096131,375651.799661245,25 +6562,6693,179586.310079228,375651.113528982,25 +6563,15248,179586.389908839,375650.383048747,25 +6564,7021,179586.160113029,375652.485793512,25 +6565,7019,179586.010146838,375653.858058039,25 +6566,15243,179585.914263841,375654.735434707,25 +6567,15245,179585.866322342,375655.174123041,25 +6568,7017,179585.818380836,375655.612811368,25 +6569,15237,179585.747848865,375656.25821365,25 +6570,15236,179586.55497624,375657.43580959,25.5510000000068 +6571,6692,179585.677316893,375656.903615925,25 +6572,15239,179585.610462304,375657.515368383,25 +6573,15241,179585.557256088,375658.002231471,25 +6574,7014,179585.504049871,375658.489094555,25 +6575,6203,179586.064000003,375662.132000003,25.5430000000051 +6576,15232,179584.73434481,375665.532274876,25 +6577,6227,179572.500500005,375672.500300005,22.2599999999948 +6578,7001,179583.631010983,375674.707963828,22.0948999999964 +6579,15223,179583.764654689,375673.485058099,22.0979999999981 +6580,6999,179583.448069736,375676.38196633,22.0905999999959 +6581,15220,179583.67237151,375675.249805946,25 +6582,7000,179583.603499424,375675.880015887,25 +6583,15219,179583.551291928,375676.357737459,25 +6584,6995,179583.499084435,375676.835459031,25 +6585,15217,179583.417951923,375677.577857241,25 +6586,6994,179583.355187323,375678.152180992,25 +6587,15216,179583.258673258,375679.035327245,25 +6588,6997,179583.162159186,375679.918473493,25 +6589,6996,179583.231249522,375678.36597807,22.0856000000058 +6590,6993,179583.292010013,375677.809989698,22.0869999999995 +6591,11915,179560.535278641,375664.14640421,22.5617999999959 +6592,11918,179560.373739325,375665.611902107,22.5568999999959 +6593,11920,179560.292969659,375666.344651055,22.5544999999984 +6594,6986,179581.906258095,375690.622264411,22.0966000000044 +6595,6987,179582.20784194,375687.802080356,22.084400000007 +6596,15208,179582.308566362,375686.860181734,22.0803000000014 +6597,15203,179581.890527975,375691.709618755,25 +6598,15204,179581.764777619,375691.945282843,22.1022999999986 +6599,15205,179581.837205883,375692.208249737,25 +6600,6984,179581.623297133,375693.268301286,22.1079999999929 +6601,6985,179581.722957421,375693.276621565,25 +6602,23005,179582.251836583,375694.073929511,25.5872999999992 +6603,23006,179581.584652402,375694.56995346,25 +6604,23008,179581.50443447,375695.320095543,25 +6605,15200,179581.999324311,375696.403168041,25.5936999999976 +6606,23003,179583.851894576,375693.172969829,26.145199999999 +6607,6312,179583.303500004,375698.653000005,26.179999999993 +6608,6309,179589,375698.676000003,26.1000000000058 +6609,6314,179587.861000001,375701.930000003,26.2599999999948 +6610,23010,179582.780035015,375703.883912265,26.2173999999941 +6611,15192,179581.3496488,375702.515813082,25.5982999999978 +6612,23012,179581.245599478,375703.506744508,25.5978000000032 +6613,23011,179581.141550165,375704.497675925,25.597299999994 +6614,15188,179580.93345153,375706.479538783,25.5963999999949 +6615,23017,179580.753232282,375708.195887648,25.5956000000006 +6616,6975,179580.27110678,375706.853670299,25 +6617,6685,179580.146636616,375708.01769555,25 +6618,23018,179580.08265882,375708.616005734,25 +6619,15185,179580.018681023,375709.21431591,25 +6620,15187,179579.95470323,375709.812626097,25 +6621,6971,179579.890725434,375710.410936274,25 +6622,6684,179579.704517651,375712.152321849,25 +6623,15183,179579.661534522,375712.554293279,25 +6624,6966,179579.618551388,375712.956264708,25 +6625,15186,179579.912702899,375709.265033472,22.1771000000008 +6626,23019,179579.972821128,375708.702817321,22.1747000000032 +6627,6972,179580.032939363,375708.140601166,22.1722000000009 +6628,6976,179580.176327068,375706.799662072,22.1664000000019 +6629,6973,179580.22096175,375706.382245645,22.1646000000037 +6630,6977,179580.344722148,375705.224858005,22.159599999999 +6631,6974,179580.39557695,375705.689645041,25 +6632,23014,179580.452986401,375705.152760994,25 +6633,15190,179580.510395847,375704.615876943,25 +6634,23015,179580.568921164,375704.068557486,25 +6635,6978,179580.643048733,375703.375328258,25 +6636,23013,179580.682706293,375703.004457016,25 +6637,15193,179580.722363859,375702.633585781,25 +6638,15189,179580.333341867,375706.271657672,25 +6639,15196,179581.653912995,375699.618100997,25.5996000000014 +6640,6306,179581.750000004,375698.703000002,25.6000000000058 +6641,6686,179581.147238933,375698.660338689,25 +6642,6981,179581.206991497,375698.101574413,25 +6643,15201,179581.364665039,375696.627121631,25 +6644,6983,179581.424216539,375696.070237625,25 +6645,6982,179581.310287241,375696.195333075,22.1205999999947 +6646,23007,179581.466792189,375694.731817182,22.1143000000011 +6647,25260,179590.571499996,375699.644499999,25.6959999999963 +6648,25267,179590.926250003,375698.085749999,25.7100000000064 +6649,25266,179592.499449879,375698.835920718,25.5852000000014 +6650,6310,179589.780999999,375697.403000001,25.8699999999953 +6651,6311,179590.467000004,375696.785999998,25.7899999999936 +6652,6301,179591.281000003,375696.527000003,25.724000000002 +6653,25268,179592.564000003,375698.653000005,25.5841999999975 +6654,6302,179589.862,375702.761999998,25.6680000000051 +6655,25264,179591.439000003,375701.840999998,25.5853999999963 +6656,25265,179591.719443001,375701.046286888,25.5804000000062 +6657,25263,179591.538220741,375701.880454581,25.5804999999964 +6658,25272,179594.724108957,375691.473062169,25.5604000000021 +6659,6304,179593.460000005,375691.179000005,25.596000000005 +6660,25273,179594.84451348,375691.025770295,25.563599999994 +6661,25274,179595.473000001,375688.691,25.647100000002 +6662,25227,179581.046122655,375784.584435042,25.6487000000052 +6663,25281,179596.707000002,375683.526000004,25.7209000000003 +6664,25280,179596.490202826,375684.433420926,25.7216999999946 +6665,25278,179596.455276839,375684.579606272,25.722099999999 +6666,25277,179596.33474255,375685.084111635,25.7229999999981 +6667,25276,179596.165458765,375685.792661671,25.7243000000017 +6668,15117,179571.232656598,375788.327390961,25 +6669,15114,179570.650752254,375792.776567884,22.2072000000044 +6670,6886,179570.554486252,375793.666426126,22.2059000000008 +6671,15115,179570.715269513,375793.109948613,25 +6672,6885,179570.656310037,375793.654950801,25 +6673,15110,179571.568171777,375793.385379434,25.4793999999965 +6674,15113,179570.774228986,375792.564946417,25 +6675,23071,179571.712054979,375792.043611925,25.480899999995 +6676,23069,179573.143432159,375791.230198488,26.2437999999966 +6677,23070,179571.855938178,375790.701844424,25.4823000000033 +6678,6883,179570.885644592,375791.535056915,25 +6679,23072,179570.829936791,375792.050001666,25 +6680,23078,179572.610765502,375796.017224941,26.2409999999945 +6681,6419,179577.206,375796.435000002,26.3699999999953 +6682,25218,179579.48,375792.768000003,25.632500000007 +6683,25219,179579.05198542,375797.071157381,25.6499999999942 +6684,25220,179578.893992711,375798.659578688,25.6564999999973 +6685,21796,179576.844439667,375799.671093192,26.3729000000021 +6686,6414,179578.736000001,375800.248,25.6630000000005 +6687,25217,179579.581934556,375798.972060755,25.6462999999931 +6688,25208,179577.810000006,375808.780500006,25.6484999999957 +6689,6423,179575.937000003,375807.793000001,26.3800000000047 +6690,25216,179577.578499999,375810.913625009,25.6448999999993 +6691,25209,179575.503225483,375812.123275694,26.3745999999956 +6692,23086,179571.36874732,375807.179564282,26.2400000000052 +6693,23090,179570.832376581,375812.000101537,26.2400000000052 +6694,6409,179570.493900001,375815.042100005,26.2400000000052 +6695,21795,179575.06945096,375816.453551382,26.3690999999963 +6696,25214,179577.115500003,375815.179875005,25.6376000000018 +6697,25210,179577.347000003,375813.046750002,25.641300000003 +6698,25213,179577.826396715,375816.089716639,25.6120999999985 +6699,25215,179578.279941153,375811.667358167,25.6227999999974 +6700,25212,179577.705792401,375817.265688516,25.6103000000003 +6701,6460,179576.884000003,375817.313000001,25.6340000000055 +6702,25207,179577.675623372,375817.559856456,25.6141999999963 +6703,25211,179576.126782831,375824.290273793,25.6220999999932 +6704,6451,179575.032000005,375834.378000002,25.6049999999959 +6705,21794,179573.405587472,375833.063534897,26.3423999999941 +6706,6464,179572.743000004,375839.678000003,26.3300000000017 +6707,23108,179568.005488306,375837.548400927,26.2299999999959 +6708,23104,179567.902912781,375838.49629939,26.2299999999959 +6709,15074,179566.617592458,375837.733236223,25.4516000000003 +6710,23105,179566.485146228,375838.892818112,25.4511000000057 +6711,6457,179567.729100004,375840.102499999,26.2299999999959 +6712,6453,179566.352700006,375840.0524,25.4507000000012 +6713,6441,179565.567000005,375840.023899999,25 +6714,6455,179572.674199998,375840.282299999,26.3267999999953 +6715,6844,179565.755346596,375838.322334453,25 +6716,6443,179565.466800001,375840.020200003,22.2587000000058 +6717,6845,179565.657184925,375838.300210185,22.2540000000008 +6718,20,179562.500500001,375837.500100002,22.1900000000023 +6719,6438,179557.500300005,375837.500200007,22.2400000000052 +6720,6437,179562.500100002,375832.500900004,22.1900000000023 +6721,6436,179557.500500001,375832.500400003,22.2400000000052 +6722,6434,179562.5009,375827.5009,22.2100000000064 +6723,6431,179557.500799999,375827.500100005,22.2700000000041 +6724,6430,179562.500799999,375822.500500001,22.2200000000012 +6725,6865,179567.087482058,375825.378563631,22.2191000000021 +6726,6863,179567.20748625,375824.294448402,22.2161000000051 +6727,6866,179567.386950985,375822.673168037,22.2118000000046 +6728,6860,179567.46906573,375821.931345262,22.2097999999969 +6729,6867,179567.630080473,375820.476741679,22.2057999999961 +6730,6858,179567.6229477,375821.450121973,25 +6731,15087,179567.546741743,375822.138569225,25 +6732,15086,179568.311880656,375822.899399433,25.4570999999996 +6733,6862,179567.470535781,375822.827016484,25 +6734,6861,179567.318123851,375824.203910984,25 +6735,23100,179567.239264119,375824.916332569,25 +6736,23099,179568.067940332,375825.035199717,25.4563000000053 +6737,6864,179567.165711932,375825.580805495,25 +6738,6454,179567.824000001,375827.171,25.4554999999964 +6739,23098,179569.441024955,375824.504191622,26.2345000000059 +6740,23094,179569.952757109,375819.905301627,26.2372000000032 +6741,23095,179568.563804522,375820.693699945,25.457899999994 +6742,23096,179568.689766452,375819.590850201,25.4582999999984 +6743,15089,179568.815728385,375818.488000456,25.4587000000029 +6744,15090,179567.899108537,375818.955275618,25 +6745,23097,179567.853081733,375819.371083349,25 +6746,6868,179567.807054929,375819.786891069,25 +6747,6869,179567.782780733,375819.097250987,22.202099999995 +6748,15088,179567.715001315,375820.618506517,25 +6749,6461,179562.500200003,375817.500600006,22.1699999999983 +6750,6857,179567.913998008,375817.911837049,22.1989000000031 +6751,15092,179568.026583049,375816.894746292,22.1962000000058 +6752,15091,179568.084972192,375817.27617709,25 +6753,15093,179568.158783801,375816.609360516,25 +6754,6870,179568.139168091,375815.877655532,22.1934000000037 +6755,6673,179568.23259541,375815.942543942,25 +6756,15095,179568.35956981,375814.795452867,25 +6757,15096,179568.273647729,375814.662769508,22.1901000000071 +6758,15098,179568.434933756,375814.114612423,25 +6759,15094,179569.150893483,375815.553488821,25.4597999999969 +6760,15097,179569.390217371,375813.458107438,25.4606000000058 +6761,6871,179568.510297704,375813.433771972,25 +6762,6872,179568.408127367,375813.447883479,22.1867999999959 +6763,23093,179568.548363686,375812.180991739,22.1833999999944 +6764,23092,179568.649148852,375812.17938599,25 +6765,6397,179568.688600004,375810.914099999,22.179999999993 +6766,6391,179562.500700004,375812.500700001,22.2299999999959 +6767,6390,179562.501000002,375807.500900008,22.2899999999936 +6768,6385,179562.500500001,375802.500500001,22.3000000000029 +6769,6878,179569.276446037,375805.4802428,22.1882000000041 +6770,15104,179569.395040601,375804.38399329,22.1897999999928 +6771,15103,179569.435146093,375804.942992393,25 +6772,15105,179569.519254487,375804.165521815,25 +6773,6879,179569.513635166,375803.287743773,22.1913999999961 +6774,6874,179569.603362877,375803.388051238,25 +6775,23085,179569.681755017,375802.663419835,25 +6776,23082,179570.526999641,375803.094719727,25.4691000000021 +6777,23083,179570.663780525,375801.819184121,25.4704999999958 +6778,23081,179571.915060755,375802.269668762,26.2400000000052 +6779,15106,179570.800561409,375800.543648511,25.4717999999993 +6780,6408,179572.418700006,375797.743299998,26.2400000000052 +6781,15109,179571.078765351,375797.949287128,25.4746000000014 +6782,6406,179571.171500005,375797.084500004,25.4755000000005 +6783,23079,179571.369835891,375795.234939717,25.4774999999936 +6784,6675,179570.426975481,375795.774844702,25 +6785,6395,179570.230500001,375797.590999998,25 +6786,6413,179570.131099999,375797.5801,22.1999999999971 +6787,6882,179570.345582336,375795.597480342,22.2029999999941 +6788,23080,179570.484309122,375795.244871221,25 +6789,15112,179570.450034294,375794.631953232,22.2044000000024 +6790,15111,179570.541642759,375794.714897748,25 +6791,19,179562.500700004,375797.500500001,22.2799999999988 +6792,6382,179557.500700004,375797.500399999,22.3600000000006 +6793,6881,179569.811605472,375800.533403322,22.1956000000064 +6794,15108,179569.662620321,375801.91057355,22.1934999999939 +6795,23084,179569.838539302,375801.214157023,25 +6796,6880,179569.916931443,375800.48952562,25 +6797,15107,179569.760147162,375801.938788429,25 +6798,15099,179570.25343788,375805.645790938,25.4664000000048 +6799,23087,179570.030218944,375807.727395467,25.4642000000022 +6800,6405,179569.807,375809.809,25.4619999999995 +6801,23088,179569.049952213,375808.503599107,25 +6802,6674,179568.976225756,375809.185102478,25 +6803,6394,179568.788000003,375810.925000008,25 +6804,23091,179569.598608688,375811.633553721,25.4612999999954 +6805,6873,179568.895956516,375808.997363918,22.1828999999998 +6806,6876,179569.064202983,375807.442148421,22.1852000000072 +6807,6875,179569.123678669,375807.822095737,25 +6808,23089,179569.182256814,375807.280618459,25 +6809,15100,179569.240834963,375806.739141185,25 +6810,15101,179569.170324512,375806.46119561,22.1867000000057 +6811,15102,179569.299413104,375806.197663911,25 +6812,6877,179569.357991245,375805.656186637,25 +6813,6426,179557.500399999,375817.500600006,22.2899999999936 +6814,6429,179557.500600003,375822.500500001,22.2899999999936 +6815,6859,179567.991162151,375818.12366017,25 +6816,6459,179574.340000004,375823.735500004,26.3600000000006 +6817,23101,179568.777581811,375830.4664944,26.2311000000045 +6818,6456,179568.569000002,375832.340999998,26.2299999999959 +6819,15081,179567.301470503,375831.745805614,25.453800000003 +6820,15078,179567.083058424,375833.658028409,25.4530999999988 +6821,23106,179566.850325435,375835.69563232,25.4523000000045 +6822,6842,179566.164529879,375834.62568048,25 +6823,23107,179566.109320708,375835.124452587,25 +6824,6847,179566.054111537,375835.623224694,25 +6825,6841,179565.943693187,375836.620768908,25 +6826,15075,179565.862680957,375837.352651667,25 +6827,15077,179565.809013773,375837.837493062,25 +6828,15076,179565.735375591,375837.593814164,22.2520999999979 +6829,6843,179565.813566256,375836.887418147,22.2501999999949 +6830,6846,179565.988405496,375835.307872277,22.2458999999944 +6831,6840,179566.101135783,375834.289435811,22.2431999999972 +6832,15079,179566.242458135,375833.921659142,25 +6833,6848,179566.244029254,375832.998496827,22.2397000000055 +6834,6850,179566.38344653,375831.738962807,22.2363000000041 +6835,6852,179566.529534016,375830.419168171,22.2326999999932 +6836,15082,179566.521580994,375831.400000319,25 +6837,6851,179566.593756534,375830.747950237,25 +6838,23103,179566.6553353,375830.191633791,25 +6839,6853,179566.716914065,375829.635317344,25 +6840,6854,179566.670764584,375829.143252354,22.2292000000016 +6841,6855,179566.802000869,375827.957627591,22.2259999999951 +6842,6444,179566.913899999,375826.946699999,22.2232999999978 +6843,6856,179566.926685799,375827.740192231,25 +6844,15084,179566.883378696,375828.131438337,25 +6845,6672,179566.8400716,375828.522684451,25 +6846,15083,179567.651339449,375828.682662923,25.454899999997 +6847,15085,179566.778492827,375829.079000898,25 +6848,23102,179567.476404976,375830.214234266,25.4544000000024 +6849,6442,179567.013300002,375826.957699999,25 +6850,6849,179566.457522504,375831.978719104,25 +6851,15080,179566.388954438,375832.598178454,25 +6852,6671,179566.320386373,375833.217637811,25 +6853,6452,179574.388,375840.344500005,25.5918999999994 +6854,6688,179582.50267458,375685.985251382,25 +6855,15211,179582.582837287,375685.235625692,25 +6856,6065,179610.613000002,375562.095000003,25.9385000000038 +6857,22775,179607.946371585,375573.469053693,26.6257999999943 +6858,25288,179611.030733924,375558.805700615,25.9361000000063 +6859,25287,179611.44846784,375555.516401228,25.9336999999941 +6860,25292,179611.76573392,375553.018200614,25.9318000000058 +6861,25289,179609.737619575,375556.946897466,26.7152999999962 +6862,6076,179599.954,375558.696000002,26.5599999999977 +6863,6050,179598.215000004,375557.535000004,25.028999999995 +6864,7136,179598.324189726,375556.362064593,25.0212999999931 +6865,6059,179598.125,375557.422700003,22.3399999999965 +6866,11890,179563.409046605,375638.075265881,22.6493999999948 +6867,7031,179587.136893824,375643.547800116,25 +6868,11940,179557.960106406,375686.595933765,25 +6869,11938,179557.827672116,375687.797395971,25 +6870,11944,179557.730555523,375688.678451084,25 +6871,11936,179557.689018194,375689.055283532,25 +6872,11945,179557.585805323,375689.991644911,25 +6873,11946,179557.4830424,375691.836640812,22.4688000000024 +6874,11947,179557.3818365,375691.842078276,25 +6875,6284,179556.669000003,375699.221700005,22.4440000000031 +6876,6256,179562.500399999,375697.5009,22.0899999999965 +6877,11955,179556.406489361,375701.603232805,22.4360000000015 +6878,11957,179556.27523404,375702.793999203,22.4320000000007 +6879,11952,179556.143978719,375703.9847656,22.4279999999999 +6880,11954,179556.069609065,375703.7467869,25 +6881,11951,179555.897949684,375705.304104496,25 +6882,11956,179556.251213025,375702.099250693,25 +6883,6294,179556.569600005,375699.210800003,25 +6884,11958,179555.787281904,375706.308097888,25 +6885,11948,179555.705573611,375707.049366791,25 +6886,11959,179555.593700469,375708.064295415,25 +6887,11961,179555.32076814,375710.540375248,25 +6888,11962,179554.992889848,375713.514932375,25 +6889,11960,179555.404718261,375710.691438649,22.4054999999935 +6890,9753,179555.100327302,375713.45291546,22.3962000000029 +6891,6298,179554.897400003,375715.293900002,22.3899999999994 +6892,6268,179557.500100002,375717.500300005,22.2799999999988 +6893,6275,179557.500399999,375722.500900004,22.3000000000029 +6894,11966,179554.43617855,375719.557830039,22.3919000000024 +6895,9754,179554.292987179,375720.881614849,22.3925000000017 +6896,11968,179553.968564056,375723.880862799,22.3938999999955 +6897,11970,179553.794139754,375725.49339186,22.3945999999996 +6898,6277,179557.5009,375727.500800002,22.2599999999948 +6899,6295,179562.5009,375727.500800002,22.4700000000012 +6900,9755,179553.644140925,375726.880110748,22.3953000000038 +6901,11964,179554.570281744,375718.318064108,22.3913999999932 +6902,6917,179574.378201913,375760.361419376,25 +6903,23057,179574.33613389,375760.733028237,25 +6904,15136,179574.505427253,375759.237571392,25 +6905,6914,179574.597081009,375758.427945819,25 +6906,23054,179574.693249092,375757.578442805,25 +6907,23046,179576.194293808,375750.704036344,25.5449999999983 +6908,23045,179576.312073566,375749.620473508,25.5467999999964 +6909,6349,179575.534300003,375750.149000008,25 +6910,15145,179575.464370843,375750.766720843,25 +6911,15143,179575.394441687,375751.384441681,25 +6912,15144,179575.334050622,375751.028950151,22.2590000000055 +6913,15142,179575.233201239,375751.919800308,22.2578999999969 +6914,15141,179575.318915736,375752.051601928,25 +6915,23051,179575.132351853,375752.81065046,22.256899999993 +6916,6369,179562.500300005,375777.500799999,22.2799999999988 +6917,6373,179557.500300005,375782.5009,22.4400000000023 +6918,6368,179557.500300005,375777.500300005,22.429999999993 +6919,6370,179552.500300001,375782.500300005,22.2599999999948 +6920,6376,179552.500599999,375787.500599999,22.2700000000041 +6921,12029,179547.365245543,375784.69169635,22.4159000000072 +6922,12025,179547.248992767,375785.695776809,22.4146999999939 +6923,12026,179547.124399967,375786.771890402,22.4134000000049 +6924,12028,179547.481498323,375783.68761589,22.417100000006 +6925,6399,179547.750399999,375781.365100004,22.4199999999983 +6926,23625,179666.403000001,374992.796000004,26.495299999995 +6927,10683,179637.873728089,374967.238258727,22.4247000000032 +6928,9638,179638.06834814,374965.448476736,22.4474999999948 +6929,10677,179638.255707126,374963.725469626,22.4694000000018 +6930,10679,179638.428753566,374962.134084817,22.4897000000055 +6931,5106,179638.601799998,374960.542700008,22.5099999999948 +6932,5114,179638.497000001,374960.581500005,25.0399999999936 +6933,10680,179638.317324974,374962.233858719,25.0443999999989 +6934,10678,179638.178066045,374963.514535893,25.0478000000003 +6935,10676,179638.015213888,374965.012185175,25.0518000000011 +6936,10681,179637.808086861,374966.917002689,25.0568999999959 +6937,10675,179638.57480897,374959.865939684,25.0381000000052 +6938,5117,179635.809000004,374957.008000005,26.320000000007 +6939,10673,179638.708469521,374958.636747301,25.034799999994 +6940,10670,179638.835034069,374957.472812448,25.0317000000068 +6941,9637,179638.898467347,374957.814461768,22.5448000000033 +6942,10671,179639.048490841,374956.434802547,22.5623000000051 +6943,5086,179642.500399999,374957.500399999,22.3899999999994 +6944,10669,179639.314834863,374953.985426314,22.5935000000027 +6945,171,179642.500900004,374952.500799999,22.4499999999971 +6946,5082,179647.500300005,374952.500300005,22.5299999999988 +6947,5081,179642.500200003,374947.500800002,22.4700000000012 +6948,9636,179639.683414973,374950.595857602,22.6367000000027 +6949,10666,179639.893257614,374948.666084338,22.661300000007 +6950,5105,179640.223400004,374945.629999999,22.6999999999971 +6951,5107,179640.124000002,374945.618999999,25 +6952,10667,179639.793037787,374948.662652168,25.0081000000064 +6953,10665,179639.613409612,374950.314580072,25.0126000000018 +6954,5113,179637.390000004,374941.907000005,26.3800000000047 +6955,10668,179639.222352713,374953.910885479,25.0222000000067 +6956,10672,179638.960950434,374956.314838495,25.0286000000051 +6957,10664,179640.534189459,374941.956331037,25 +6958,10651,179640.67514734,374940.697688125,25 +6959,10663,179640.714162849,374940.349310327,25 +6960,10654,179640.858670514,374939.058970626,25 +6961,10656,179641.021581411,374937.604304548,25 +6962,10655,179641.052239113,374938.229119103,22.6805000000022 +6963,10658,179641.180603392,374937.082927175,22.6775000000052 +6964,10659,179641.248966813,374935.573931836,25 +6965,10657,179641.308967665,374935.936735246,22.6744999999937 +6966,10661,179641.440463826,374934.762577999,22.6714000000065 +6967,10662,179641.476218425,374933.544753846,25 +6968,10660,179641.571959995,374933.588420749,22.6683000000048 +6969,5065,179641.927099999,374930.417300005,22.6600000000035 +6970,5058,179647.500700004,374932.500200003,22.5500000000029 +6971,5057,179647.500799999,374927.500700001,22.5 +6972,5059,179652.5002,374932.500399999,22.3600000000006 +6973,5070,179652.500300001,374927.500200007,22.3999999999942 +6974,5054,179647.500500001,374922.500300001,22.5099999999948 +6975,9634,179642.62306907,374924.202520106,22.6437000000005 +6976,10647,179642.447623555,374925.769192126,22.6478000000061 +6977,10649,179642.216899719,374927.829481713,22.6532000000007 +6978,10648,179642.316406727,374926.042306177,25 +6979,10650,179642.120302964,374927.793449696,25 +6980,5068,179641.827700004,374930.406300001,25 +6981,5073,179638.971000001,374926.806000005,26.4400000000023 +6982,10646,179642.454936098,374924.805283427,25 +6983,10639,179642.609064929,374923.428962551,25 +6984,10642,179642.832549188,374921.433320001,25 +6985,10645,179643.029634744,374919.67340941,25 +6986,5067,179643.531300005,374915.193700004,25 +6987,5072,179641.197300002,374907.318700001,26.4600000000064 +6988,5003,179643.423700005,374887.831300002,26.4900000000052 +6989,5006,179647.667500004,374849.575300001,26.5299999999988 +6990,168,179645.650000002,374868.344000008,26.5099999999948 +6991,10588,179649.694668103,374859.092425026,25 +6992,10590,179649.882932805,374857.366315573,25 +6993,10587,179650.176320989,374854.676378921,25 +6994,10585,179650.383377891,374852.77797268,25 +6995,10586,179650.430577125,374853.267531831,22.6339000000007 +6996,10584,179650.530267864,374852.353510089,22.6349000000046 +6997,10582,179650.520223215,374851.523303002,25 +6998,9627,179650.646482777,374851.287985235,22.6361000000034 +6999,10573,179650.64561519,374850.373643626,25 +7000,10581,179650.703404281,374849.843802992,25 +7001,10576,179650.813213315,374848.837016188,25 +7002,10578,179650.972556658,374847.376072876,25 +7003,10580,179651.152820267,374845.723321628,25 +7004,4971,179651.479800005,374842.725400001,25 +7005,10571,179651.733361132,374840.400618643,25 +7006,10572,179651.732071128,374841.334697366,22.6475999999966 +7007,9626,179651.884942252,374839.933094744,22.6491999999998 +7008,10570,179652.077664021,374837.243869267,25 +7009,31,179649.685000002,374830.806500003,26.5500000000029 +7010,10568,179652.347055078,374834.773950789,25 +7011,10567,179652.522311978,374833.167103704,25 +7012,10564,179652.671926975,374831.795354962,25 +7013,10555,179652.78592829,374830.750131194,25 +7014,10563,179652.828892745,374830.356210504,25 +7015,10558,179652.946597107,374829.277035262,25 +7016,10556,179652.988582008,374829.814346973,22.6609000000026 +7017,10559,179653.152029295,374828.315776508,22.662599999996 +7018,4961,179657.500700001,374827.500700004,22.4499999999971 +7019,10561,179653.342838474,374826.566337954,22.6646000000037 +7020,4972,179653.660799999,374823.651100002,22.6680000000051 +7021,4958,179657.500400003,374822.500300005,22.4799999999959 +7022,10554,179653.794269234,374822.427384075,22.6693999999989 +7023,9624,179653.927738473,374821.203668147,22.6708000000071 +7024,4957,179657.500599999,374817.500500005,22.3999999999942 +7025,4976,179662.500700001,374817.500700001,22.5099999999948 +7026,4956,179657.500999998,374812.500999998,22.5099999999948 +7027,4955,179662.500599999,374812.500599999,22.5 +7028,4954,179662.500300009,374807.500600003,22.5 +7029,4974,179657.500599999,374807.500300005,22.5500000000029 +7030,9622,179655.315991376,374808.47543782,22.6855000000069 +7031,10542,179654.989652026,374811.467488069,22.6820000000007 +7032,10544,179654.859102957,374812.664430324,22.6806999999972 +7033,9623,179654.728553891,374813.861372579,22.6793000000034 +7034,10551,179654.570367433,374815.31170899,22.6775999999954 +7035,10552,179654.459586248,374815.405157637,25 +7036,10550,179654.329022665,374816.602233,25 +7037,10549,179654.412180971,374816.762045406,22.675900000002 +7038,10547,179654.27026825,374818.063175604,22.6744000000035 +7039,10548,179654.205083977,374817.7385679,25 +7040,10546,179654.154934771,374818.19836209,25 +7041,4975,179651.702500004,374812.037799999,26.570000000007 +7042,10553,179653.792092495,374821.525090322,25 +7043,4970,179653.561400004,374823.640200004,25 +7044,10562,179653.23074862,374826.671785213,25 +7045,10560,179653.083401974,374828.022736434,25 +7046,165,179653.720000003,374793.269000001,26.5899999999965 +7047,4896,179655.643000003,374804.555,25 +7048,10535,179656.001699224,374801.300345585,25 +7049,10536,179656.012004685,374802.119644154,22.6875 +7050,10533,179656.188998103,374800.513695817,22.6858999999968 +7051,10532,179656.262547262,374798.93354303,25 +7052,10534,179656.300617073,374799.500921998,22.6848999999929 +7053,10529,179656.41223605,374798.488148179,22.6839000000036 +7054,10531,179656.467270639,374797.075987175,25 +7055,10528,179656.638128508,374795.525709674,25 +7056,10518,179656.763680946,374794.386510704,25 +7057,10527,179656.806844819,374793.994863614,25 +7058,10519,179656.951491289,374793.595220186,22.678899999999 +7059,9621,179656.774347652,374795.202531517,22.680600000007 +7060,4890,179662.500800002,374792.500500005,22.3099999999977 +7061,10521,179657.118593756,374792.079017323,22.6774000000005 +7062,10524,179657.25241819,374790.864762407,22.6762000000017 +7063,10523,179657.386242628,374789.650507499,22.6750000000029 +7064,4889,179662.500400003,374787.500100005,22.3699999999953 +7065,4894,179657.6569,374787.194700003,22.6725000000006 +7066,9620,179658.085160997,374783.308877412,22.6686000000045 +7067,4899,179657.557500005,374787.183800004,25 +7068,10515,179658.022192519,374782.967391986,25 +7069,4898,179655.447000001,374778.131500002,26.6199999999953 +7070,10525,179657.271677464,374789.777208451,25 +7071,10526,179657.110492956,374791.239714731,25 +7072,10522,179657.060620386,374791.692233123,25 +7073,10520,179656.917728055,374792.988765512,25 +7074,32,179659.084500004,374744.4025,26.6499999999942 +7075,4884,179657.174000002,374762.993999999,26.6499999999942 +7076,4882,179661.386500005,374752.441300001,25 +7077,10480,179662.00120743,374746.863725081,25 +7078,10478,179662.244948488,374744.652129918,25 +7079,10467,179662.369410366,374743.522819571,25 +7080,10477,179662.446240719,374742.825695965,25 +7081,10470,179662.59122657,374741.510160457,25 +7082,10468,179662.628988352,374742.080397271,22.6270999999979 +7083,10472,179662.73828936,374741.088655498,22.626099999994 +7084,4874,179667.500500001,374742.500300005,22.2700000000041 +7085,10471,179662.847590361,374740.096913733,22.6251000000047 +7086,4851,179667.500100002,374737.500399999,22.3600000000006 +7087,10476,179662.985792771,374738.842935301,22.6238000000012 +7088,10474,179663.123995181,374737.588956866,22.6224999999977 +7089,4879,179663.400400002,374735.081000004,22.6199999999953 +7090,4845,179667.500399999,374732.500200007,22.3699999999953 +7091,10465,179663.777466726,374731.70183868,22.6132000000071 +7092,9615,179664.100378871,374728.807994809,22.6073999999935 +7093,4841,179667.500300005,374727.500400003,22.5 +7094,10462,179664.267034002,374727.314480424,22.6043999999965 +7095,10460,179664.433689129,374725.820966043,22.6012999999948 +7096,10457,179664.591435786,374724.407286797,22.5984999999928 +7097,4871,179667.500100002,374722.500100005,22.4199999999983 +7098,10458,179664.686248235,374723.557605397,22.5967999999993 +7099,9614,179664.781060696,374722.707924005,22.5951000000059 +7100,10450,179664.895983171,374721.678022485,22.5929999999935 +7101,10452,179665.024173863,374720.529215131,22.5907000000007 +7102,10454,179665.25131651,374718.493629344,22.5865999999951 +7103,4818,179672.500300005,374717.500600003,22.4700000000012 +7104,4792,179665.505200002,374716.218400002,22.5819999999949 +7105,10455,179665.152382117,374718.478456732,25 +7106,10453,179664.957147673,374720.228090513,25 +7107,4795,179662.490000002,374714.075000007,26.679999999993 +7108,4793,179665.4058,374716.207400002,25 +7109,10448,179665.544563469,374714.963842507,25 +7110,10446,179665.675070003,374713.794281285,25 +7111,10443,179665.793667149,374712.731448423,25 +7112,10445,179665.926205676,374711.543677062,25 +7113,10444,179666.008740712,374711.705815893,22.5728999999992 +7114,10441,179666.39564554,374708.23848838,22.5659000000014 +7115,4815,179672.500300005,374712.500200003,22.4600000000064 +7116,4813,179672.5009,374707.500900004,22.4199999999983 +7117,9612,179666.774995383,374704.838866394,22.5590999999986 +7118,4831,179672.500799999,374702.500700004,22.3600000000006 +7119,10430,179666.965137307,374703.13487022,22.555600000007 +7120,10439,179667.050785948,374702.367312264,22.5540999999939 +7121,10432,179667.136434589,374701.5997543,22.5525999999954 +7122,10435,179667.254825942,374700.538765728,22.5503999999928 +7123,10434,179667.373217292,374699.477777153,22.5482999999949 +7124,4807,179672.500700004,374697.500600003,22.3899999999994 +7125,4827,179667.610000007,374697.355800007,22.5439999999944 +7126,4828,179667.510600001,374697.344800003,25 +7127,10436,179667.259186354,374699.597895399,25 +7128,162,179663.985000003,374702.339000005,26.6999999999971 +7129,4794,179665.127999999,374688.730000004,26.679999999993 +7130,4883,179660.995000005,374725.811000004,26.6600000000035 +7131,4188,179724.625999998,374137.746000003,26.9400000000023 +7132,3798,179753.859000001,373866.723000005,27.0899999999965 +7133,3428,179776.465999998,373656.891000003,28.2899999999936 +7134,3460,179774.142000001,373682.456,28.0299999999988 +7135,3465,179775.442999996,373670.704,28.1699999999983 +7136,21095,179779.983275943,373664.121257778,25 +7137,21093,179780.227894958,373661.942653894,25 +7138,9495,179780.131327201,373663.699400019,22.5181000000011 +7139,21094,179780.282420654,373662.353673849,22.5103999999992 +7140,3413,179782.500300001,373662.500300001,22.4600000000064 +7141,21092,179780.390585598,373661.390293941,22.5048999999999 +7142,9494,179780.540608801,373660.05410007,22.4973000000027 +7143,21079,179780.641597401,373659.1546368,22.4921999999933 +7144,3412,179787.500999998,373657.500399999,22.4799999999959 +7145,3414,179787.500900004,373662.500799999,22.5 +7146,3389,179792.500700001,373657.500500001,22.3500000000058 +7147,3403,179792.500999998,373662.5009,22.3099999999977 +7148,3392,179797.500399999,373662.500100005,22.3500000000058 +7149,3391,179797.500500001,373657.500700004,22.3000000000029 +7150,3388,179792.500800002,373652.500700008,22.3699999999953 +7151,3411,179787.500900004,373652.500900004,22.3600000000006 +7152,3386,179792.500200007,373647.500500005,22.3300000000017 +7153,3419,179781.6723,373649.974599998,22.4400000000023 +7154,21075,179781.920209758,373647.936815701,22.4743000000017 +7155,9493,179782.168119527,373645.899031412,22.508600000001 +7156,21074,179782.042378146,373646.104750637,25 +7157,21076,179781.816509034,373647.961375926,25 +7158,3423,179781.572999999,373649.963000003,25 +7159,21087,179781.439550433,373652.047603048,22.4517999999953 +7160,21088,179781.313796896,373652.271491423,25 +7161,21084,179781.206800859,373654.120606102,22.4636000000028 +7162,21085,179781.094431244,373655.12143527,22.469299999997 +7163,21081,179780.982061621,373656.122264437,22.4750000000058 +7164,21082,179780.862323821,373657.188718986,22.4809999999998 +7165,21078,179780.742586013,373658.25517353,22.4870999999985 +7166,21080,179780.732768048,373657.446198467,25 +7167,21090,179780.596753795,373658.657556377,25 +7168,21077,179780.571854349,373658.879313625,25 +7169,21091,179780.40693412,373660.34811141,25 +7170,21089,179780.801196467,373656.836767416,25 +7171,21083,179780.941287339,373655.589102633,25 +7172,21086,179781.130669866,373653.902440988,25 +7173,21066,179782.211715981,373644.712807678,25 +7174,21069,179782.353128884,373643.550405364,25 +7175,3427,179778.988000002,373640.921999998,28.2700000000041 +7176,3422,179783.019000005,373638.077,25 +7177,21065,179783.11232629,373637.360779423,25 +7178,21063,179783.284299411,373636.040993866,25 +7179,21061,179783.440351058,373634.843395595,25 +7180,21060,179783.567252085,373633.869510017,25 +7181,21057,179783.697783437,373632.867764,25 +7182,21056,179783.845881164,373631.731207047,25 +7183,21073,179782.67628837,373640.894061204,25 +7184,21071,179782.511566322,373642.248062756,25 +7185,3404,179797.500300005,373652.500399999,22.2599999999948 +7186,3384,179797.500500001,373647.500400003,22.2299999999959 +7187,3387,179802.500399999,373652.500399999,22.7799999999988 +7188,3390,179802.500399999,373657.500500001,22.7799999999988 +7189,8846,179805.846791226,373654.941396598,22.8099999999977 +7190,24268,179805.988373358,373653.648655012,22.8307000000059 +7191,24271,179806.082327493,373652.790789522,22.8444000000018 +7192,24267,179806.176281631,373651.932924036,22.8582000000024 +7193,12772,179806.339192081,373650.445440192,22.8819999999978 +7194,12773,179806.452019949,373649.415244669,22.8984999999957 +7195,12771,179806.482922904,373650.05079015,25.0200000000041 +7196,24261,179806.594850771,373649.028776623,25.0200000000041 +7197,24262,179806.650814705,373648.517769862,25.0200000000041 +7198,24266,179806.400754806,373650.801067241,25.0200000000041 +7199,24259,179808.474650003,373653.362650003,27.9250000000029 +7200,3405,179807.535799999,373661.994800005,27.9199999999983 +7201,24254,179808.304000005,373672.23,27.8824000000022 +7202,24255,179806.996639669,373666.951755922,27.9199999999983 +7203,24247,179806.457479339,373671.908711836,27.9199999999983 +7204,24248,179806.057739668,373675.58385592,27.9199999999983 +7205,24246,179807.813058838,373676.455008838,27.8723999999929 +7206,24226,179806.269000005,373708.827000003,27.9364999999962 +7207,24227,179804.751000002,373702.783,27.8899999999994 +7208,24236,179806.178470645,373700.391004886,27.6530000000057 +7209,24228,179804.585000001,373707.611000005,27.8650000000052 +7210,3528,179804.419,373712.439000007,27.8399999999965 +7211,24225,179805.685000002,373714.591000002,27.9462000000058 +7212,24224,179804.098750003,373715.302749999,27.7975000000006 +7213,6645,179800.809768971,373713.132046275,25.8583000000071 +7214,3508,179800.683000002,373715.140000004,25.8659999999945 +7215,21843,179800.195,373719.050500002,25.8325000000041 +7216,21850,179799.034321465,373716.73234966,25.8527000000031 +7217,21849,179798.886860177,373717.967311673,25.8111999999965 +7218,21847,179798.783755977,373718.830790915,25.7823000000062 +7219,21845,179798.693541132,373719.586324148,25.7569999999978 +7220,21841,179798.425785784,373721.828727413,25.6818000000058 +7221,3509,179799.706999995,373722.961000003,25.7989999999991 +7222,21840,179798.237324655,373723.407055728,25.6288000000059 +7223,8841,179798.126559123,373723.464902569,22.8282000000036 +7224,3525,179798.331700005,373721.704300001,22.8399999999965 +7225,3502,179792.500200007,373722.500399999,22.3600000000006 +7226,21846,179798.619528729,373719.293662935,22.8742999999959 +7227,3501,179792.500500005,373717.500399999,22.3699999999953 +7228,3581,179787.500400003,373717.500700008,22.1999999999971 +7229,3534,179787.500100005,373722.5009,22.25 +7230,3537,179787.500900004,373727.500799995,22.3500000000058 +7231,3503,179792.500800002,373727.500599999,22.3999999999942 +7232,3540,179787.500400003,373732.500500005,22.3300000000017 +7233,3541,179787.500700001,373737.500200003,22.2700000000041 +7234,3505,179792.500300009,373737.500100002,22.4900000000052 +7235,3526,179792.500400003,373742.500300005,22.5200000000041 +7236,8837,179796.041220572,373740.786973428,22.6582000000053 +7237,9389,179795.905269649,373741.966024205,22.6364999999932 +7238,9387,179795.769318733,373743.145075001,22.6147999999957 +7239,8835,179795.624444284,373744.40151627,22.5915999999997 +7240,3506,179792.500700001,373747.500300005,22.4400000000023 +7241,9381,179795.400522143,373746.343508136,22.5558000000019 +7242,9383,179795.288561072,373747.314504072,22.5378999999957 +7243,3516,179795.176600005,373748.285500001,22.5200000000041 +7244,3519,179795.276000004,373748.296,25.0200000000041 +7245,9384,179795.393608898,373747.276041389,25.0200000000041 +7246,9382,179795.48039259,373746.523413111,25.0200000000041 +7247,3514,179796.582000002,373747.010000002,25.4060000000027 +7248,9380,179795.528931882,373746.102457944,25.0200000000041 +7249,8836,179796.782499995,373744.320000004,25.4425000000047 +7250,9385,179795.71264971,373744.50917213,25.0200000000041 +7251,9386,179795.820661552,373743.572443567,25.0200000000041 +7252,9388,179795.915058337,373742.753791019,25.0200000000041 +7253,3513,179796.982999999,373741.629999999,25.4790000000066 +7254,9390,179796.014104635,373741.894815832,25.0200000000041 +7255,9391,179796.134546638,373740.850287121,25.0200000000041 +7256,9397,179796.275390316,373739.628825754,25.0200000000041 +7257,9394,179797.248499997,373739.298500005,25.5109999999986 +7258,9395,179796.314823195,373739.286845602,25.0200000000041 +7259,9398,179796.414072428,373738.426110454,25.0200000000041 +7260,9393,179796.313165292,373738.428499848,22.7017000000051 +7261,9392,179796.526393048,373737.452014163,25.0200000000041 +7262,8838,179796.47178014,373737.052893355,22.7271000000037 +7263,9396,179796.177192934,373739.607736636,22.679999999993 +7264,3517,179796.615300003,373735.808200002,22.75 +7265,9399,179796.592863351,373736.875552956,25.0200000000041 +7266,24216,179800.013999999,373746.346500002,27.2899999999936 +7267,24217,179803.495999999,373743.497000005,27.9553000000014 +7268,24215,179802.901999999,373748.809,27.9446999999927 +7269,3529,179799.247000001,373751.423,27.25 +7270,24206,179798.641750004,373757.986500006,27.2250000000058 +7271,8832,179795.658637274,373753.105743155,25.3187999999936 +7272,6647,179795.318274543,373756.447486307,25.3234999999986 +7273,24207,179795.044191487,373759.138483576,25.3273999999947 +7274,9365,179794.377303824,373757.576143,25.0200000000041 +7275,9367,179794.229332801,373759.104125746,25.0200000000041 +7276,9366,179794.127434313,373759.118967682,22.4425999999949 +7277,9364,179794.298368629,373757.353935365,22.4551999999967 +7278,3585,179787.500300001,373757.500700001,22.1999999999971 +7279,3636,179793.956500001,373760.884000003,22.429999999993 +7280,3589,179787.500599999,373762.500500001,22.2200000000012 +7281,3586,179782.5009,373757.500900004,22.1900000000023 +7282,3551,179787.5002,373752.500700001,22.2299999999959 +7283,3549,179782.500500008,373752.500500005,22.1900000000023 +7284,3584,179777.500799999,373757.500700001,22.4499999999971 +7285,3587,179782.500400007,373762.500100002,22.1499999999942 +7286,3590,179777.500200003,373762.5009,22.4400000000023 +7287,3588,179772.500399999,373762.500300005,22.6399999999994 +7288,21216,179770.626663666,373759.263913423,22.7792000000045 +7289,22172,179770.704220008,373758.240587428,22.7841000000044 +7290,21219,179770.781776354,373757.217261434,22.7888999999996 +7291,22179,179770.870038174,373756.052680712,22.7945000000036 +7292,3611,179770.958299998,373754.888100002,22.8000000000029 +7293,22178,179770.80181022,373755.629565075,25.0008999999991 +7294,22180,179770.754395403,373756.255158618,25.0016000000032 +7295,21220,179770.697978094,373756.999531582,25.0025000000023 +7296,22175,179770.442117739,373757.247987382,25.4113999999972 +7297,22177,179770.523779437,373755.431496851,25.402900000001 +7298,3625,179767.068,373756.513999999,27.4199999999983 +7299,22170,179770.367817059,373758.900738709,25.4192000000039 +7300,22166,179770.288599759,373760.662855778,25.4275000000052 +7301,3626,179766.209000003,373764.372000001,27.2400000000052 +7302,22162,179770.2200929,373762.186728913,25.434699999998 +7303,3622,179770.170000006,373763.301000006,25.4400000000023 +7304,21223,179770.243116446,373763.001000352,25.0096000000049 +7305,3617,179770.220000003,373763.306000009,25.0099999999948 +7306,22158,179770.143296909,373763.977545798,25.0099999999948 +7307,22157,179770.065442119,373764.216418199,25.4425000000047 +7308,22161,179770.124121137,373764.145432245,25.0099999999948 +7309,22159,179770.104945354,373764.313318696,25.0099999999948 +7310,21231,179770.066593811,373764.64909159,25.0099999999948 +7311,21230,179770.149915826,373764.801079266,22.752800000002 +7312,22160,179770.234757915,373764.058289632,22.7563999999984 +7313,3612,179770.319600001,373763.315500002,22.7599999999948 +7314,21224,179770.359518755,373762.788787499,22.7624999999971 +7315,21222,179770.399437502,373762.262075,22.7649999999994 +7316,9511,179770.479275003,373761.208650004,22.7700000000041 +7317,21221,179770.312465794,373762.0860014,25.008600000001 +7318,22164,179770.296981953,373762.290295988,25.008799999996 +7319,22163,179770.277791124,373762.543500878,25.0090999999957 +7320,22165,179770.369471457,373761.333865713,25.0077000000019 +7321,22169,179770.397974283,373760.957797866,25.0071999999927 +7322,21215,179770.426477112,373760.581730027,25.0068000000028 +7323,22168,179770.459591608,373760.144815624,25.0062999999936 +7324,22167,179770.492706101,373759.707901224,25.0056999999942 +7325,21217,179770.55296934,373760.236281712,22.7746000000043 +7326,22174,179770.525820598,373759.270986833,25.0051999999996 +7327,21218,179770.558935087,373758.83407243,25.004700000005 +7328,22173,179770.593695838,373758.375437219,25.0041999999958 +7329,22171,179770.628456593,373757.916802008,25.0035999999964 +7330,3627,179772.500200003,373767.500399999,22.6399999999994 +7331,22153,179770.06507374,373765.543868903,22.7492000000057 +7332,21228,179769.98023165,373766.286658533,22.7456999999995 +7333,21226,179769.858809549,373767.349704985,22.7404999999999 +7334,9512,179769.738390811,373768.403967027,22.735400000005 +7335,21234,179769.643614877,373769.23372715,22.7314000000042 +7336,21233,179769.54883894,373770.063487273,22.7274000000034 +7337,137,179772.500300005,373772.500900008,22.6300000000047 +7338,21236,179769.403118458,373771.33926522,22.7213000000047 +7339,21238,179769.2732202,373772.476520106,22.7158000000054 +7340,21240,179769.159991339,373773.467834949,22.7109999999957 +7341,9513,179769.046762485,373774.459149804,22.7062000000005 +7342,3597,179772.500800002,373777.500400003,22.6100000000006 +7343,22126,179768.941132851,373775.383933689,22.7017000000051 +7344,21243,179768.835503221,373776.308717579,22.6972999999998 +7345,3613,179768.663500004,373777.814600002,22.6900000000023 +7346,22123,179768.564587407,373778.68057644,22.6858000000066 +7347,21253,179768.465674814,373779.546552885,22.6815999999963 +7348,3603,179772.500900004,373782.500799999,22.6000000000058 +7349,3602,179777.500799999,373782.500700008,22.3500000000058 +7350,3596,179777.5009,373777.500100005,22.3099999999977 +7351,3599,179782.500100005,373777.500700001,22.1300000000047 +7352,3595,179777.501000002,373772.500900008,22.3000000000029 +7353,3593,179782.500600003,373772.5002,22.1199999999953 +7354,3598,179787.5002,373777.500599999,22.2299999999959 +7355,3594,179787.500900004,373772.500599999,22.1499999999942 +7356,3592,179782.501000002,373767.501000002,22.1300000000047 +7357,3628,179787.500599999,373767.500700004,22.1100000000006 +7358,3591,179777.500500001,373767.500200003,22.3800000000047 +7359,8829,179793.455195166,373765.698181298,22.422900000005 +7360,9358,179793.692533802,373763.418946858,22.4262000000017 +7361,9361,179793.824516907,373762.151473433,22.4281000000046 +7362,9360,179793.84224337,373762.946668945,25.0200000000041 +7363,9362,179793.931020528,373762.094156839,25.0200000000041 +7364,3638,179794.056000005,373760.894000001,25.0200000000041 +7365,6648,179794.770108435,373761.829480834,25.3312000000005 +7366,3640,179794.568999998,373763.804000001,25.3340000000026 +7367,3639,179798.036500003,373764.550000008,27.1999999999971 +7368,8830,179794.370250005,373766.019500006,25.3413 +7369,8828,179794.171500001,373768.235000003,25.3485999999975 +7370,24208,179797.431249999,373771.113499999,27.1699999999983 +7371,24209,179793.972750004,373770.4505,25.355899999995 +7372,6649,179793.774,373772.666000005,25.3632000000071 +7373,136,179796.826000001,373777.677000005,27.1399999999994 +7374,24205,179801.041000005,373765.927999999,27.9137999999948 +7375,24200,179797.725000005,373796.465,27.8589999999967 +7376,3642,179795.065000001,373792.445700005,27.1399999999994 +7377,24202,179794.638944823,373796.018805407,27.1376000000018 +7378,24201,179794.212889634,373799.591910817,27.1352000000043 +7379,40,179793.304000001,373807.214300003,27.1300000000047 +7380,24195,179795.193999998,373821.638,27.8252000000066 +7381,24196,179792.423500001,373814.598650001,27.1300000000047 +7382,3694,179791.543000001,373821.983000003,27.1300000000047 +7383,24198,179790.958999999,373827.651250001,27.1300000000047 +7384,3671,179788.255000003,373824.548,25.323000000004 +7385,24199,179788.016864188,373826.633668762,25.3215000000055 +7386,8811,179787.778728385,373828.719337523,25.3200999999972 +7387,3687,179790.375,373833.319499999,27.1300000000047 +7388,6654,179787.302456759,373832.890675046,25.317200000005 +7389,9272,179787.042228382,373835.169837527,25.3156000000017 +7390,3722,179786.782000005,373837.449000005,25.3139999999985 +7391,3799,179789.206999999,373844.655999999,27.1399999999994 +7392,8808,179786.383411832,373841.12719515,25.3383000000031 +7393,6655,179785.984823667,373844.805390283,25.3625000000029 +7394,8806,179785.686422147,373847.559057057,25.3806999999942 +7395,3738,179784.919,373845.663000003,25.0200000000041 +7396,9256,179784.785372876,373846.884661835,25.0200000000041 +7397,9254,179784.67257534,373847.915892899,25.0200000000041 +7398,9249,179784.574738249,373848.810350846,25.0200000000041 +7399,6656,179785.388020627,373850.312723827,25.3987999999954 +7400,24194,179788.25,373850.973500002,27.1049999999959 +7401,3723,179785.221000001,373851.854000002,25.4089999999997 +7402,9240,179784.873572614,373854.672022134,25.3868999999977 +7403,3793,179787.293000001,373857.291000001,27.070000000007 +7404,24193,179790.747000001,373856.613000005,27.7255000000005 +7405,24159,179776.614000004,373985.287,27.4851000000053 +7406,24169,179776.725649998,373967.401149999,27.445000000007 +7407,24163,179779.267999999,373958.954000004,27.5206999999937 +7408,3936,179775.767299999,373976.019300003,27.4600000000064 +7409,24160,179774.808900002,373984.637400005,27.4700000000012 +7410,142,179770.659000006,373980.266000003,25.4089999999997 +7411,21640,179770.264739245,373983.830432687,25.3956000000035 +7412,21639,179769.753806211,373982.667836413,25 +7413,21641,179769.693316653,373983.210245352,25 +7414,21643,179769.569830127,373984.317547102,25 +7415,24161,179770.067608863,373985.612649031,25.3889000000054 +7416,21637,179769.431843191,373985.554873735,25 +7417,24162,179769.37316411,373986.081048116,25 +7418,8786,179769.306979153,373985.771971978,22.289499999999 +7419,21636,179769.314485028,373986.607222494,25 +7420,21634,179769.130384363,373987.355503988,22.2854999999981 +7421,21635,179769.222077984,373987.435835015,25 +7422,11225,179769.870478485,373987.394865375,25.3821999999927 +7423,21633,179769.094545867,373988.579413466,25 +7424,21632,179768.94102516,373989.956031259,25 +7425,3927,179769.409000006,373991.567000005,25.3665000000037 +7426,3932,179773.850499999,373993.255500004,27.4799999999959 +7427,21628,179769.18445541,373993.59706283,25.3589000000065 +7428,11227,179768.959910803,373995.627125662,25.3512000000046 +7429,11229,179768.38281396,374000.844542757,25.331600000005 +7430,3993,179771.933800004,374010.491799999,27.5 +7431,24153,179772.920000006,374019.175000004,27.4232999999949 +7432,24154,179770.975400001,374019.109899998,27.5099999999948 +7433,143,179770.017000005,374027.728,27.5200000000041 +7434,24152,179769.125999998,374052.789000005,27.354800000001 +7435,3997,179767.747800004,374044.458300002,27.4600000000064 +7436,3988,179764.542000003,374034.234499998,25.3589999999967 +7437,11237,179765.032243803,374029.917859104,25.3561999999947 +7438,21576,179764.280194804,374031.050858893,25 +7439,21573,179764.040870991,374033.130757995,25 +7440,21572,179763.960137706,374032.957230516,22.4704999999958 +7441,21571,179763.876125794,374034.56251432,25 +7442,8779,179763.730457067,374034.953323435,22.4906000000046 +7443,21568,179763.799141269,374035.231566187,25 +7444,21569,179763.574105155,374036.312135965,22.5041999999958 +7445,3982,179757.500100002,374037.500700001,22.3500000000058 +7446,21566,179763.417753249,374037.670948498,22.5179000000062 +7447,11239,179763.219028536,374039.398011714,22.5353000000032 +7448,3983,179757.500399999,374042.500900004,22.2799999999988 +7449,11240,179762.963314269,374041.620355859,22.5576000000001 +7450,3985,179762.707600001,374043.842700005,22.5800000000017 +7451,21561,179763.040282905,374041.826600838,25 +7452,21562,179763.093658552,374041.3627274,25 +7453,11238,179763.695521481,374041.687819708,25.3638999999966 +7454,11241,179763.842061602,374040.397520758,25.3631000000023 +7455,21565,179764.192030802,374037.316010375,25.3610000000044 +7456,21564,179763.464360196,374038.141058758,25 +7457,21567,179763.535018459,374037.526986796,25 +7458,21570,179763.662172593,374036.421924256,25 +7459,21563,179763.292135675,374039.637815915,25 +7460,11242,179763.341591176,374044.804207958,25.3659999999945 +7461,3989,179762.989999998,374047.899999999,25.3680000000022 +7462,21557,179762.538198743,374046.234644189,25 +7463,21556,179762.352351259,374047.880606506,25 +7464,21554,179762.289592061,374048.436434664,25 +7465,21547,179762.152756087,374049.648325466,25 +7466,8777,179762.073490269,374049.45903993,22.4823999999935 +7467,21548,179761.858292695,374051.365054946,22.4492999999929 +7468,3999,179757.500300005,374052.500599999,22.3699999999953 +7469,21551,179761.75069391,374052.318062454,22.432799999995 +7470,11244,179761.643095136,374053.271069963,22.4162000000069 +7471,21542,179761.418490183,374055.260406677,22.3816999999981 +7472,4000,179757.5009,374057.500800002,22.3800000000047 +7473,21543,179761.31559509,374056.171753336,22.3657999999996 +7474,4006,179761.212699998,374057.083099995,22.3500000000058 +7475,21544,179761.414478987,374056.186892617,25 +7476,21541,179761.463106342,374055.756223407,25 +7477,11243,179762.037176214,374056.05099513,25.398000000001 +7478,21545,179761.534222372,374055.126382731,25 +7479,21546,179761.719016559,374053.489749007,25 +7480,11245,179762.204376504,374054.620668992,25.3926999999967 +7481,21549,179762.597188253,374051.260334499,25.3803999999946 +7482,21552,179761.869618483,374052.155939769,25 +7483,21550,179761.888770103,374051.986323021,25 +7484,21553,179761.963857695,374051.321308192,25 +7485,24150,179766.613150001,374052.823400002,27.4250000000029 +7486,24151,179766.045825005,374057.005949996,27.4075000000012 +7487,11246,179761.655669056,374059.314623784,25.4100000000035 +7488,4012,179761.311999999,374057.094500005,25 +7489,21540,179761.064747494,374059.284297194,25 +7490,21535,179760.982536498,374060.012400672,25 +7491,4007,179761.528499998,374060.4025,25.4140000000043 +7492,21539,179760.970309749,374060.120687168,25 +7493,21538,179760.889410321,374060.837174725,25 +7494,21536,179760.796584547,374060.768407721,22.2859999999928 +7495,8775,179760.610072296,374062.420245055,22.2572999999975 +7496,4017,179757.500500001,374062.500900004,22.1499999999942 +7497,21532,179760.516641729,374063.247708652,22.2428999999975 +7498,21530,179760.423211168,374064.075172242,22.2284999999974 +7499,11248,179760.252306145,374065.58878481,22.2021999999997 +7500,4002,179752.500700004,374067.500700004,22.3000000000029 +7501,11250,179759.985003076,374067.956142407,22.1610999999975 +7502,21524,179759.851351537,374069.139821202,22.1405999999988 +7503,4018,179759.717700008,374070.323500004,22.1199999999953 +7504,4011,179759.817000002,374070.335000005,25 +7505,21525,179759.959866721,374069.069697779,25 +7506,24147,179760.328439027,374070.668502267,25.4517999999953 +7507,21522,179759.764086101,374070.78113734,25.0016000000032 +7508,24148,179759.693704788,374071.374549024,25.0035999999964 +7509,21521,179759.583926134,374071.451373518,22.1349999999948 +7510,21520,179759.623323482,374071.967960715,25.0056999999942 +7511,8774,179759.450152259,374072.579247035,22.1500999999989 +7512,21519,179759.534945663,374072.713107787,25.0083000000013 +7513,21516,179759.393346641,374073.906983245,25.0124999999971 +7514,21517,179759.26599773,374074.131889679,22.1708000000071 +7515,21518,179759.346431434,374074.302543212,25.0139000000054 +7516,21513,179759.785493489,374075.382673651,25.4511999999959 +7517,4008,179760.067000005,374072.905000001,25.4600000000064 +7518,24146,179763.7766,374073.736225005,27.3374999999942 +7519,24145,179764.343900003,374069.553650003,27.3549999999959 +7520,11249,179760.58987806,374068.432004537,25.4434999999939 +7521,21528,179760.874487273,374065.997295886,25.4345999999932 +7522,145,179765.478499997,374061.188499995,27.3899999999994 +7523,11247,179761.159096483,374063.562587224,25.4256000000023 +7524,21529,179760.480743445,374064.45654178,25 +7525,21527,179760.340029594,374065.702777069,25 +7526,21526,179760.09367292,374067.884640295,25 +7527,21523,179760.035057772,374068.403766621,25 +7528,21531,179760.549518548,374063.847433586,25 +7529,21533,179760.617451038,374063.245787997,25 +7530,21534,179760.715162825,374062.380401421,25 +7531,24149,179768.418827958,374059.255318496,27.3427999999985 +7532,24144,179766.534644742,374076.484122984,27.3684999999969 +7533,4015,179763.209300004,374077.9188,27.320000000007 +7534,24143,179765.331999999,374087.480999999,27.3791000000056 +7535,24134,179762.074650005,374086.2839,27.2850000000035 +7536,24135,179761.507325005,374090.466450002,27.2675000000017 +7537,24133,179764.953919146,374090.409717202,27.3880999999965 +7538,4126,179760.940000001,374094.649,27.25 +7539,146,179759.642000008,374105.839000002,27.2599999999948 +7540,24128,179761.040000003,374120.728000004,27.4214999999967 +7541,24124,179757.984000001,374147.017000001,27.4321000000054 +7542,24125,179756.124499999,374145.533000004,27.2700000000041 +7543,24126,179758.629999999,374141.457000002,27.4299000000028 +7544,147,179754.778000001,374149.753000002,27.1399999999994 +7545,24121,179754.279000003,374155.327,27.1600000000035 +7546,24120,179756.513497148,374158.583009105,27.4435999999987 +7547,4288,179744.917300005,374238.458700001,27.0200000000041 +7548,24102,179749.557999998,374214.938000005,27.2422999999981 +7549,24091,179745.105999999,374254.631999999,27.1463999999978 +7550,4281,179746.844700005,374221.367800001,27.0500000000029 +7551,24104,179747.247215323,374217.798397839,27.0562999999966 +7552,24103,179747.649730634,374214.228995677,27.0625 +7553,24105,179748.210865323,374209.252997834,27.071299999996 +7554,4227,179748.772000004,374204.277000003,27.0800000000017 +7555,8663,179745.628278494,374206.599525686,25.351800000004 +7556,4216,179745.410000004,374208.753000006,25.3600000000006 +7557,24107,179745.209092304,374210.459881589,25.3619999999937 +7558,4214,179744.530000009,374209.487000003,25 +7559,8659,179744.439636488,374210.318941101,25 +7560,8657,179744.349272978,374211.150882218,25 +7561,8658,179744.346054792,374210.254468676,22.5598000000027 +7562,8656,179744.17561375,374211.823640529,22.5593999999983 +7563,24111,179744.259394243,374211.978360195,25 +7564,6814,179744.168545954,374212.814764429,25 +7565,24106,179745.008184612,374212.166763175,25.3640000000014 +7566,24108,179744.8089591,374213.859353181,25.3659999999945 +7567,24109,179744.094457623,374213.496866424,25 +7568,24110,179744.057413455,374213.837917417,25 +7569,8654,179744.020369288,374214.178968415,25 +7570,6813,179744.609733589,374215.551943194,25.3680000000022 +7571,8652,179743.872192621,374215.543172404,25 +7572,6582,179743.807091907,374216.142528862,25 +7573,8648,179744.353082757,374217.732410043,25.3705999999947 +7574,8647,179743.710080422,374217.035675254,25 +7575,8649,179743.661574677,374217.482248448,25 +7576,8646,179743.613068927,374217.928821642,25 +7577,6811,179744.096431937,374219.912876889,25.3732000000018 +7578,6812,179743.419045951,374219.715114433,25 +7579,8638,179743.360090785,374220.257891335,25 +7580,8642,179743.277818087,374221.015343502,25 +7581,8639,179743.245242856,374220.389135215,22.5574000000051 +7582,8643,179743.114921533,374221.588943422,22.5571000000054 +7583,4241,179737.500300005,374222.500300005,22.3699999999953 +7584,4238,179737.500799999,374217.500700004,22.3500000000058 +7585,8637,179743.295599792,374219.925522193,22.5574999999953 +7586,8650,179743.520558644,374217.854430083,22.5580000000045 +7587,8645,179743.571072292,374217.389374264,22.5580999999947 +7588,8651,179743.74353607,374215.801579993,22.5584999999992 +7589,4230,179737.5009,374212.500800002,22.3399999999965 +7590,8655,179743.943904117,374213.956883989,22.5589000000036 +7591,8653,179744.007430207,374213.372028667,22.5590999999986 +7592,4236,179732.5009,374217.500300005,22.3000000000029 +7593,4212,179732.500200003,374212.500300001,22.3399999999965 +7594,4237,179727.500300009,374217.500399999,22.4700000000012 +7595,4213,179727.500300009,374212.500900004,22.5299999999988 +7596,4211,179727.500100002,374207.500900004,22.5299999999988 +7597,4223,179721.539700001,374209.519700002,22.6266999999934 +7598,9919,179722.017818879,374205.234420482,22.6682000000001 +7599,4207,179727.500400003,374202.5002,22.5299999999988 +7600,9920,179722.236107558,374203.277944606,22.6872000000003 +7601,9557,179722.454396248,374201.321468733,22.7060999999958 +7602,9910,179722.549269874,374200.471136302,22.7143999999971 +7603,9909,179722.644143492,374199.620803867,22.7225999999937 +7604,149,179727.500200007,374197.500799999,22.4700000000012 +7605,9912,179722.818676781,374198.056498472,22.7376999999979 +7606,9916,179722.940357585,374196.965898853,22.7483000000066 +7607,9914,179723.062038388,374195.875299234,22.7589000000007 +7608,4222,179723.305399999,374193.694099996,22.7799999999988 +7609,4202,179727.500900004,374192.500800002,22.429999999993 +7610,4205,179732.500700004,374197.500700004,22.4799999999959 +7611,4200,179732.500300005,374192.500399999,22.4900000000052 +7612,4228,179727.500400003,374187.500900004,22.5099999999948 +7613,9556,179723.607334606,374191.009742081,22.7697000000044 +7614,9907,179723.463675886,374192.286943868,22.7746000000043 +7615,9906,179723.444425061,374191.563313939,25 +7616,4225,179723.206000004,374193.683000002,25 +7617,4232,179720.103999998,374200.892099999,26.5299999999988 +7618,4231,179722.166999999,374181.940400001,26.570000000007 +7619,4280,179718.041000001,374219.843899999,26.4900000000052 +7620,4287,179715.978,374238.795600004,26.4400000000023 +7621,4285,179713.915000003,374257.747299999,26.3999999999942 +7622,4333,179709.7586,374293.7544,26.3600000000006 +7623,4329,179711.852000002,374276.699000005,26.3500000000058 +7624,9971,179715.277937941,374265.124705531,25 +7625,9973,179715.48258052,374263.260680653,25 +7626,9964,179715.754383884,374260.78490933,25 +7627,9965,179715.838166296,374260.938193794,22.4057999999932 +7628,9968,179715.790494986,374260.455984697,25 +7629,9969,179715.959299728,374259.834820341,22.4011000000028 +7630,9970,179715.851697084,374259.898514062,25 +7631,9967,179715.997729655,374258.568349291,25 +7632,9966,179716.080433153,374258.731446899,22.3962999999931 +7633,4275,179716.322700005,374256.524700001,22.3867000000027 +7634,4263,179722.500800002,374257.500800002,22.4499999999971 +7635,9962,179716.4987069,374254.921593241,22.379700000005 +7636,4260,179722.500400003,374252.500900004,22.4700000000012 +7637,4262,179727.500800002,374257.500500005,22.320000000007 +7638,4259,179727.500300009,374252.500100005,22.3600000000006 +7639,4257,179722.500400003,374247.500100005,22.3600000000006 +7640,9950,179717.068082426,374249.735604584,22.3571999999986 +7641,9562,179716.978990018,374250.547076486,22.3607000000047 +7642,9960,179716.706026889,374253.033280428,22.3714999999938 +7643,9959,179716.633363802,374252.778755143,25 +7644,9963,179716.382575907,374255.062982485,25 +7645,9948,179716.968160372,374249.729359582,25 +7646,9951,179717.12752809,374248.277805869,25 +7647,9949,179717.157174844,374248.924132679,22.3537000000069 +7648,9952,179717.320028976,374247.440823957,22.3472000000038 +7649,9953,179717.272724766,374246.955324844,25 +7650,9956,179717.490968853,374244.967513099,25 +7651,9958,179717.677871518,374243.265165471,25 +7652,4282,179717.909000006,374241.16,25 +7653,9946,179718.018131316,374240.181872748,25 +7654,9945,179718.175248381,374238.773656402,25 +7655,9943,179718.420997955,374236.571040411,25 +7656,9938,179719.020499423,374231.197800092,25 +7657,9944,179718.538494039,374236.419877946,22.3659999999945 +7658,9560,179719.10268236,374231.363175984,22.4149999999936 +7659,9940,179719.270536769,374229.858731993,22.4296000000031 +7660,4246,179722.500500005,374232.500100005,22.4600000000064 +7661,4243,179722.500800002,374227.500700001,22.3399999999965 +7662,4244,179727.500700001,374227.500700001,22.5099999999948 +7663,4239,179727.500200007,374222.500100002,22.5099999999948 +7664,4240,179722.500700001,374222.500200003,22.3399999999965 +7665,4273,179719.774100002,374225.345400002,22.4732999999978 +7666,9559,179719.92533977,374223.989784244,22.4863999999943 +7667,9935,179720.152199421,374221.956360601,22.5062000000034 +7668,9558,179720.379059073,374219.922936969,22.5258999999933 +7669,9925,179720.511179876,374218.7386913,22.5372999999963 +7670,9924,179720.643300675,374217.554445632,22.5488000000041 +7671,9928,179720.761893518,374216.491455842,22.5590999999986 +7672,9927,179720.880486358,374215.428466059,22.569399999993 +7673,9932,179721.045289777,374213.951274548,22.5837000000029 +7674,9929,179720.808528084,374215.171460357,25 +7675,9931,179721.030991521,374213.177454118,25 +7676,9930,179721.210093178,374212.474083032,22.5981000000029 +7677,4226,179721.440299999,374209.508700002,25 +7678,9922,179721.908586632,374205.311518278,25 +7679,9921,179722.140847296,374203.229801379,25 +7680,9918,179722.333021738,374201.507371157,25 +7681,9908,179722.437809199,374200.568177108,25 +7682,9917,179722.485320147,374200.142343726,25 +7683,9911,179722.599032264,374199.123159312,25 +7684,9913,179722.741213046,374197.84881464,25 +7685,9915,179722.908440251,374196.349982668,25 +7686,9926,179720.6165695,374216.892042458,25 +7687,9933,179720.47590977,374218.152817596,25 +7688,9923,179720.392812692,374218.89764154,25 +7689,9934,179720.268405393,374220.01274132,25 +7690,9936,179720.062750362,374221.856088769,25 +7691,9937,179719.823198523,374224.003263392,25 +7692,4276,179719.674700003,374225.3343,25 +7693,9939,179719.438391179,374228.354287993,22.4441999999981 +7694,9941,179719.294061486,374228.745905038,25 +7695,9942,179719.354463976,374229.106509995,22.4369000000006 +7696,4242,179732.501000002,374222.500600003,22.2799999999988 +7697,4245,179737.500700004,374227.500700001,22.3600000000006 +7698,8633,179742.758317206,374224.872046169,22.5562999999966 +7699,8631,179742.553026188,374226.76207938,22.5558000000019 +7700,6581,179742.844617151,374225.003640749,25 +7701,8634,179742.937808573,374224.145670373,25 +7702,6810,179743.648054995,374223.722220004,25.3776999999973 +7703,8636,179742.984404292,374223.716685191,25 +7704,4266,179743.030999999,374223.287700005,25 +7705,8635,179742.8882793,374223.675536543,22.5565999999963 +7706,4272,179742.931600004,374223.276700001,22.556700000001 +7707,8640,179743.195545394,374221.772795673,25 +7708,8641,179743.87224346,374221.817548446,25.3754999999946 +7709,8644,179743.236681744,374221.394069586,25 +7710,4269,179743.121000003,374228.200000007,25.3830000000016 +7711,8632,179742.654070701,374226.757913787,25 +7712,8630,179742.481403351,374228.34758234,25 +7713,6580,179742.41152763,374228.990895759,25 +7714,8627,179742.324923199,374229.788222689,25 +7715,8625,179742.205290265,374229.963546395,22.5550999999978 +7716,8626,179742.238318775,374230.585549615,25 +7717,8628,179742.145707686,374230.512099665,22.5549000000028 +7718,8629,179742.352610372,374228.607228477,22.5553999999975 +7719,4249,179737.500399999,374232.500900004,22.3600000000006 +7720,4277,179732.5009,374227.500700001,22.2700000000041 +7721,4248,179732.500300005,374232.500900004,22.2799999999988 +7722,4251,179732.5009,374237.500900004,22.3000000000029 +7723,4252,179737.500399999,374237.500900004,22.3899999999994 +7724,8619,179741.626385711,374235.293291658,22.553700000004 +7725,8624,179741.872255564,374233.029665176,22.5543000000034 +7726,8622,179741.944154758,374232.367717706,22.5544999999984 +7727,8623,179741.978713211,374232.975618053,25 +7728,8620,179742.065109916,374232.180203468,25 +7729,8621,179742.709785316,374231.972876161,25.3678000000073 +7730,6808,179742.298570629,374235.745752323,25.3524999999936 +7731,4268,179742.015000004,374238.347500004,25.3420000000042 +7732,4265,179741.532000002,374237.088300001,25 +7733,6809,179741.71869221,374235.369511183,25 +7734,4271,179741.432599999,374237.077400003,22.5532999999996 +7735,8618,179741.309375469,374238.21187133,22.5529999999999 +7736,8609,179741.167042568,374239.522264514,22.5527000000002 +7737,8614,179741.109502707,374240.052007411,22.5525999999954 +7738,8613,179741.257631648,374239.614300929,25 +7739,8611,179741.306049593,374239.16853606,25 +7740,8612,179741.8430879,374239.924785778,25.3356000000058 +7741,6579,179741.402885482,374238.277006321,25 +7742,8610,179741.209213704,374240.060065798,25 +7743,8617,179741.160795752,374240.505830664,25 +7744,6807,179741.671175793,374241.502071556,25.3292999999976 +7745,24092,179743.953649998,374247.004100006,27.0050000000047 +7746,8600,179741.290087897,374244.998535778,25.3151000000071 +7747,8607,179740.880218267,374243.088996597,25 +7748,6578,179741.015541922,374241.843125265,25 +7749,8606,179740.897983622,374241.999365889,22.5521000000008 +7750,8608,179740.789377261,374242.999254413,22.5519000000058 +7751,8602,179740.629655086,374244.469742641,22.5515000000014 +7752,4255,179737.500500001,374242.500600003,22.3999999999942 +7753,8604,179740.551054154,374245.193385065,22.5513999999966 +7754,8605,179740.674833201,374244.979895666,25 +7755,8601,179740.728539515,374244.485442862,25 +7756,8603,179740.621126886,374245.474348463,25 +7757,24094,179741.099543951,374246.746767897,25.3080999999947 +7758,8599,179740.513714254,374246.463254068,25 +7759,24095,179740.402104676,374247.490799259,25 +7760,4267,179740.909000002,374248.495000005,25.3010000000068 +7761,24093,179743.471825004,374251.276799999,26.9974999999977 +7762,6805,179740.595816713,374251.348744504,25.3037999999942 +7763,6802,179740.232192792,374254.662107032,25.3071000000054 +7764,6806,179739.87947103,374252.253433663,25 +7765,6576,179739.72594206,374253.617867321,25 +7766,8589,179739.567162097,374255.028967351,25 +7767,8590,179739.503672726,374255.593206357,25 +7768,8588,179739.445963245,374255.2116681,22.5184000000008 +7769,8584,179739.440183356,374256.157445364,25 +7770,8583,179739.266364161,374256.80777999,22.5068000000028 +7771,8587,179739.384464562,374256.652626202,25 +7772,8585,179739.32874576,374257.147807032,25 +7773,6803,179739.191600058,374258.366640303,25 +7774,8574,179739.050407488,374258.727004737,22.4928000000073 +7775,4261,179732.500300005,374257.5,22.3500000000058 +7776,8582,179739.012826469,374259.060990378,22.4903000000049 +7777,8576,179739.077264257,374259.382758703,25 +7778,8578,179738.822209962,374260.755015004,22.4780000000028 +7779,8575,179738.924429055,374260.741026796,25 +7780,8581,179738.857636303,374261.334623422,25 +7781,8580,179738.725090623,374261.6181226,22.4716999999946 +7782,4290,179732.500799999,374262.500600003,22.3099999999977 +7783,8570,179738.54683505,374263.202294569,22.4600999999966 +7784,8579,179738.790843554,374261.928220049,25 +7785,6575,179738.657258056,374263.115413293,25 +7786,4320,179739.314300001,374263.026000001,25.315300000002 +7787,8577,179739.601063095,374260.412997894,25.3126999999949 +7788,24099,179742.026349999,374264.094899997,26.9750000000058 +7789,4284,179742.989999998,374255.5495,26.9900000000052 +7790,6804,179739.887826186,374257.799995776,25.3102000000072 +7791,8586,179740.060009487,374256.231051408,25.3086000000039 +7792,4334,179741.0627,374272.640300002,26.9600000000064 +7793,24079,179740.730000004,374293.668000005,27.0521000000008 +7794,4331,179739.135300003,374289.731200002,26.929999999993 +7795,24081,179738.653475005,374294.003900003,26.9225000000006 +7796,24080,179738.171650004,374298.276600003,26.9149999999936 +7797,4382,179737.208000004,374306.822000001,26.8999999999942 +7798,10798,179734.737851847,374303.445375677,25.1420999999973 +7799,10814,179734.600859936,374304.864653438,25.1483000000007 +7800,10795,179734.463868022,374306.283931199,25.1545999999944 +7801,4377,179734.213000003,374308.883000001,25.1659999999974 +7802,10793,179734.063579455,374310.160690103,25.1588000000047 +7803,10788,179733.467673428,374315.256262638,25.1300000000047 +7804,4378,179733.327,374311.594000004,25 +7805,10836,179733.058919977,374313.90018943,25 +7806,10838,179732.965257149,374314.705934748,25 +7807,10840,179732.912226792,374315.162134554,25 +7808,10844,179732.84469974,374315.743043818,25 +7809,10842,179732.81871907,374315.966545496,25 +7810,10851,179733.271336716,374316.935131319,25.1205000000045 +7811,10854,179732.739484657,374316.648168709,25 +7812,6567,179732.707357951,374316.052068155,25 +7813,10853,179732.647658281,374316.565617036,25 +7814,8500,179732.605912939,374316.058359761,22.3763000000035 +7815,10847,179732.479993075,374317.141548447,22.3705999999947 +7816,4346,179727.500200007,374317.500400003,22.2599999999948 +7817,8498,179732.354073208,374318.22473713,22.3649000000005 +7818,10848,179732.52825895,374317.592714798,25 +7819,10850,179732.560984369,374317.311203901,25 +7820,10856,179732.574471492,374317.195184909,25 +7821,10846,179732.587958612,374317.079165917,25 +7822,10855,179732.675420079,374317.19929168,25 +7823,10852,179732.729230214,374316.73638374,25 +7824,10849,179732.666103862,374317.279435508,25 +7825,10845,179732.583003979,374317.994311865,25 +7826,4376,179733.075000003,374318.614,25.1110000000044 +7827,10857,179732.519135937,374318.543744072,25 +7828,10859,179732.465231542,374319.0074629,25 +7829,4375,179732.981000002,374319.114999998,25.1150000000052 +7830,4374,179732.853,374319.489000004,25.099000000002 +7831,4388,179735.565500002,374319.744000003,26.8399999999965 +7832,4380,179732.824999999,374320.833999999,25.2839999999997 +7833,4379,179732.333000004,374320.145,25 +7834,8495,179732.207953352,374320.348049577,25 +7835,8497,179732.248832792,374319.996396184,25 +7836,10862,179732.36936434,374319.83217163,25 +7837,10863,179732.269272521,374319.820569482,25 +7838,6566,179732.289712239,374319.644742791,25 +7839,10860,179732.41715626,374319.421036072,25 +7840,10861,179732.316539604,374319.413968261,25 +7841,8494,179732.343366966,374319.183193732,25 +7842,8493,179732.3970217,374318.721644673,25 +7843,8492,179732.205955364,374319.49887738,22.3580999999976 +7844,10858,179732.432790481,374318.413954176,25 +7845,8499,179732.468559269,374318.106263686,25 +7846,8496,179732.155752655,374319.930731412,22.355899999995 +7847,35,179727.500700001,374322.500200003,22.2200000000012 +7848,4351,179722.500900004,374322.500300009,22.2200000000012 +7849,4389,179727.500800002,374327.500300005,22.0800000000017 +7850,4354,179722.500800002,374327.500799999,22.2100000000064 +7851,4353,179717.500600003,374327.500500001,22.4400000000023 +7852,4350,179717.500600003,374322.500300009,22.4499999999971 +7853,4352,179712.500200003,374327.500100002,22.4600000000064 +7854,4349,179712.500399999,374322.500300009,22.3800000000047 +7855,10022,179708.687602952,374324.944240253,22.6180000000022 +7856,10027,179708.463125661,374326.929640304,22.6232000000018 +7857,10029,179708.315262835,374328.237420153,22.6266000000032 +7858,4370,179708.167399999,374329.545200005,22.6300000000047 +7859,4356,179712.500700004,374332.500700004,22.4400000000023 +7860,4355,179717.5002,374332.5002,22.3999999999942 +7861,4359,179717.5002,374337.500800002,22.3600000000006 +7862,4358,179722.5002,374337.500300001,22.2299999999959 +7863,4357,179722.500800002,374332.500700004,22.2100000000064 +7864,4385,179727.500599999,374332.500300005,22.1300000000047 +7865,8478,179730.278846066,374336.533459514,22.3418999999994 +7866,15382,179730.153636187,374337.654314067,22.3429999999935 +7867,8480,179730.028426304,374338.77516862,22.3441000000021 +7868,15386,179729.84266315,374340.438084308,22.3457999999955 +7869,4360,179722.500500005,374342.500500005,22.2299999999959 +7870,4366,179729.6569,374342.101000004,22.3475000000035 +7871,15387,179729.8533508,374341.243520074,25 +7872,4363,179729.756299995,374342.112300005,25 +7873,15384,179730.614833523,374341.85890292,25.480899999995 +7874,24076,179730.802736249,374340.212762956,25.482799999998 +7875,24071,179732.983500004,374341.443750005,26.7850000000035 +7876,24073,179730.990638964,374338.566622995,25.4847000000009 +7877,24072,179733.453250002,374337.054875005,26.7825000000012 +7878,24074,179731.17854169,374336.920483023,25.486699999994 +7879,15380,179731.366444409,374335.274343051,25.4885999999969 +7880,8477,179730.435553972,374336.031750232,25 +7881,24075,179730.3755682,374336.568731256,25 +7882,15381,179730.315582421,374337.10571228,25 +7883,24078,179730.230042811,374337.871446285,25 +7884,8476,179730.429168131,374335.187805537,22.3405000000057 +7885,15383,179730.520792771,374335.26870903,25 +7886,8474,179730.606031578,374334.505667824,25 +7887,8473,179730.556410048,374334.048760548,22.3393000000069 +7888,8475,179730.678314619,374333.858604059,25 +7889,6563,179730.750597663,374333.211540289,25 +7890,8481,179730.680271119,374332.939980324,22.3381999999983 +7891,8483,179730.798289057,374331.883506641,22.3371000000043 +7892,15378,179730.937370889,374330.638473015,22.3359000000055 +7893,15379,179731.008883569,374330.899414904,25 +7894,15377,179731.076373119,374330.295261592,25 +7895,8485,179731.076452732,374329.39343939,22.334600000002 +7896,24069,179731.20128534,374328.275962092,22.3334999999934 +7897,8488,179731.326117948,374327.158484798,22.3323999999993 +7898,8486,179731.386396173,374326.618885789,22.3317999999999 +7899,8487,179731.436919767,374327.067717932,25 +7900,15368,179731.53969571,374326.147687644,25 +7901,15369,179731.486498088,374325.722792897,22.3309000000008 +7902,15370,179731.608740646,374325.529610764,25 +7903,4367,179731.586599998,374324.826700002,22.3300000000017 +7904,15375,179731.670528926,374324.104726028,22.3337999999931 +7905,15372,179731.754457857,374323.382752061,22.3375999999989 +7906,8491,179731.922315724,374321.938804124,22.3451999999961 +7907,8489,179731.992479671,374321.335239317,22.3484000000026 +7908,8490,179732.044725586,374321.752168529,25 +7909,6565,179732.126194466,374321.051356364,25 +7910,15371,179731.865362789,374323.295084264,25 +7911,15373,179732.448352192,374324.687807091,25.3533000000025 +7912,24066,179734.74425,374326.205000002,26.8099999999977 +7913,15367,179732.358100004,374325.611254688,25.3699000000051 +7914,24067,179732.123032555,374328.016431496,25.4131999999954 +7915,15376,179731.887965109,374330.421608318,25.4565000000002 +7916,4386,179733.923,374332.666000005,26.7799999999988 +7917,4381,179731.695000004,374332.396000005,25.4919999999984 +7918,8484,179730.912421882,374331.76292121,25 +7919,8482,179730.829309359,374332.506928399,25 +7920,6564,179731.18783953,374329.297435861,25 +7921,24070,179731.267581534,374328.583600964,25 +7922,24068,179731.335258987,374327.977765512,25 +7923,4364,179731.686000001,374324.838000003,25 +7924,15374,179731.775681399,374324.066542137,25 +7925,8479,179730.144503199,374338.637180291,25 +7926,24077,179730.047452401,374339.505960215,25 +7927,15385,179729.950401597,374340.37474015,25 +7928,4428,179730.173300005,374345.727000002,25.4762999999948 +7929,6562,179729.51643011,374344.259445056,25 +7930,8472,179729.452302776,374344.833467428,25 +7931,8470,179729.388175447,374345.407489799,25 +7932,8468,179729.259920772,374346.555534545,25 +7933,15389,179729.140166439,374347.627490379,25 +7934,15388,179729.762552984,374349.325625468,25.472099999999 +7935,15391,179729.080289271,374348.163468301,25 +7936,6561,179729.020412099,374348.69944622,25 +7937,15392,179728.954796262,374349.286792617,25 +7938,8464,179728.88826305,374348.98137214,22.3545000000013 +7939,8466,179728.812399063,374349.660460562,22.3552000000054 +7940,4404,179722.500599999,374347.500700004,22.25 +7941,15390,179729.01168571,374347.876567278,22.3534000000072 +7942,8467,179729.135108374,374346.771762416,22.3521999999939 +7943,8471,179729.326626793,374345.057405636,22.3505000000005 +7944,8469,179729.418355126,374344.236309163,22.3497000000061 +7945,4362,179717.500799999,374342.500599999,22.3300000000017 +7946,4403,179717.500400007,374347.500399999,22.320000000007 +7947,4407,179717.5002,374352.501000002,22.3099999999977 +7948,4432,179722.500999998,374352.500500001,22.2700000000041 +7949,4410,179717.500400007,374357.500800002,22.2899999999936 +7950,4409,179712.500600003,374357.500800002,22.5099999999948 +7951,4412,179717.500799999,374362.500800002,22.2899999999936 +7952,4414,179722.500400003,374367.500300005,22.3699999999953 +7953,8446,179727.046357978,374365.469270501,22.3711999999941 +7954,8449,179727.21083197,374363.996931277,22.3696999999956 +7955,8448,179727.195267376,374365.037171967,25 +7956,8450,179727.315117873,374363.964293599,25 +7957,8447,179727.434968367,374362.891415238,25 +7958,15401,179727.119352054,374365.716751222,25 +7959,15402,179727.704862621,374367.35286044,25.4508999999962 +7960,6559,179727.043436732,374366.396330468,25 +7961,15404,179726.978349093,374366.978982341,25 +7962,8441,179726.891478438,374366.855722141,22.3726000000024 +7963,8442,179726.913261466,374367.561634213,25 +7964,8443,179726.778316077,374367.868729617,22.3736000000063 +7965,15403,179726.836099662,374368.252371743,25 +7966,8445,179726.648545593,374369.030409805,22.3748000000051 +7967,15407,179726.505075004,374370.314730737,22.376099999994 +7968,4418,179722.500500005,374372.500600003,22.3600000000006 +7969,8439,179726.361604404,374371.599051677,22.3773999999976 +7970,8434,179726.213025164,374372.929104242,22.3787000000011 +7971,8436,179726.145480942,374373.533746995,22.3793000000005 +7972,6558,179726.349252678,374372.610531397,25 +7973,24051,179726.068738744,374374.220728215,22.3800000000047 +7974,8438,179725.991996553,374374.907709431,22.3806999999942 +7975,4426,179725.797400005,374376.649700001,22.382500000007 +7976,4433,179722.500900004,374377.5009,22.2200000000012 +7977,24056,179725.7135082,374377.400644254,22.3833000000013 +7978,15413,179725.629616391,374378.151588514,22.3840000000055 +7979,8433,179725.498876207,374379.321888614,22.3852000000043 +7980,8428,179725.361947645,374380.547583051,22.3864000000031 +7981,15410,179725.434511814,374380.798875801,25 +7982,8432,179725.280491836,374381.276721839,22.3871999999974 +7983,15411,179725.392198503,374381.177634526,25 +7984,8430,179725.349885192,374381.556393251,25 +7985,8429,179725.180631947,374383.071428154,25 +7986,15414,179725.704342462,374385.240991127,25.4945000000007 +7987,15415,179725.011378706,374384.586463053,25 +7988,15417,179724.926752083,374385.343980506,25 +7989,8427,179724.842125461,374386.101497956,25 +7990,4448,179725.553700004,374386.599000003,25.4997000000003 +7991,6556,179724.721981838,374387.176938422,25 +7992,8420,179724.657190911,374387.756900825,25 +7993,8419,179724.592399985,374388.336863227,25 +7994,15421,179724.516808368,374389.013505686,25 +7995,8422,179724.43182243,374389.774239484,25 +7996,15419,179724.315616827,374390.814429611,25 +7997,8423,179724.300722312,374390.046974011,22.3960999999981 +7998,15420,179724.204028439,374390.912513994,22.396900000007 +7999,4437,179717.500700004,374392.500600003,22.3999999999942 +8000,8425,179724.107334558,374391.77805398,22.3978000000061 +8001,4447,179723.867600005,374393.924000002,22.3999999999942 +8002,15424,179723.757623341,374394.924623564,22.3910999999935 +8003,4439,179717.500799999,374397.500700004,22.320000000007 +8004,8417,179723.647646677,374395.925247125,22.3822999999975 +8005,8413,179723.307291884,374399.021968015,22.3549000000057 +8006,8411,179723.150276672,374400.450572163,22.3421999999991 +8007,4441,179717.500500008,374402.500599999,22.2899999999936 +8008,8409,179722.95272655,374402.247983571,22.3263000000006 +8009,8408,179722.796157837,374403.672525287,22.3136999999988 +8010,8405,179722.638502222,374405.106956232,22.3010000000068 +8011,4454,179717.500400007,374407.500599999,22.1900000000023 +8012,4440,179712.500799999,374402.500599999,22.2700000000041 +8013,4451,179712.500500001,374407.500199996,22.2599999999948 +8014,4461,179707.500900004,374407.500300001,22.5 +8015,4459,179707.500100002,374402.500400003,22.5099999999948 +8016,4438,179712.500600003,374397.500500001,22.3099999999977 +8017,4458,179707.500300005,374397.500500001,22.5 +8018,4436,179712.500200003,374392.500200003,22.3500000000058 +8019,4434,179717.500300001,374387.500200003,22.3800000000047 +8020,4435,179712.500399999,374387.500700001,22.3899999999994 +8021,4457,179707.500600006,374392.500200003,22.5099999999948 +8022,4474,179707.500200003,374387.500399999,22.3699999999953 +8023,10103,179701.530440163,374389.452259138,22.5619000000006 +8024,10104,179701.371210247,374390.903138693,22.5703000000067 +8025,10101,179701.211980328,374392.35401826,22.5786999999982 +8026,10098,179701.011095215,374394.184453849,22.5893000000069 +8027,10099,179700.911650948,374395.090575315,22.5945999999967 +8028,10095,179700.812206693,374395.996696785,22.5999000000011 +8029,10096,179700.700045779,374397.018690441,22.6058000000048 +8030,9575,179700.587884873,374398.040684097,22.6117999999988 +8031,4460,179702.500700001,374402.500599999,22.3800000000047 +8032,10107,179700.370719437,374400.019463599,22.6232000000018 +8033,10109,179700.18752506,374401.688703746,22.6328999999969 +8034,9576,179700.004330687,374403.357943885,22.6426000000065 +8035,4462,179702.500800002,374407.500700001,22.4199999999983 +8036,4470,179699.676399998,374406.346000005,22.6600000000035 +8037,10111,179699.898947924,374403.401457965,25 +8038,4473,179699.577,374406.335000005,25 +8039,10116,179699.423340291,374408.630413026,22.6520000000019 +8040,10117,179699.269617181,374409.109797034,25 +8041,153,179696.999000002,374400.416999999,26.429999999993 +8042,4475,179695.309999999,374416.215300001,26.3800000000047 +8043,10115,179699.077546224,374410.843654234,25 +8044,10112,179698.849592414,374412.901432022,25 +8045,10114,179699.021312755,374412.259584017,22.6394 +8046,10113,179699.170280587,374410.914826047,22.644100000005 +8047,10118,179699.296810441,374409.772619534,22.648000000001 +8048,4463,179702.5002,374412.500399999,22.3999999999942 +8049,4466,179702.500500005,374417.500399999,22.3800000000047 +8050,10120,179698.716490589,374415.011265531,22.6297999999952 +8051,10123,179698.558218189,374416.440017436,22.6248000000051 +8052,10125,179698.362069953,374418.21068088,22.6186000000016 +8053,9578,179698.165921725,374419.981344324,22.6123999999982 +8054,4467,179702.500400003,374422.500300001,22.4100000000035 +8055,4468,179707.500800002,374422.500599999,22.4499999999971 +8056,4477,179707.500600006,374427.500599999,22.3999999999942 +8057,4478,179702.5002,374427.500800002,22.3699999999953 +8058,4480,179702.500599999,374432.500500001,22.4199999999983 +8059,10133,179697.087695185,374429.714319162,22.5783999999985 +8060,10129,179696.995892774,374430.542990394,22.5755000000063 +8061,10130,179696.890442401,374431.494857449,22.5721999999951 +8062,9579,179696.784992028,374432.446724512,22.5688999999984 +8063,10140,179696.591386471,374434.194340356,22.5627999999997 +8064,4482,179702.500900004,374437.500399999,22.5200000000041 +8065,10139,179696.397780925,374435.941956196,22.556700000001 +8066,4499,179695.973700002,374439.77,22.5433000000048 +8067,4502,179702.500900004,374442.5009,22.5399999999936 +8068,10146,179695.500956673,374444.03753446,22.5283999999956 +8069,4484,179697.500800002,374447.500100005,22.3699999999953 +8070,10147,179695.384019319,374445.093147837,22.5246999999945 +8071,10144,179695.267081965,374446.14876122,22.5209999999934 +8072,9580,179695.151928049,374447.188275233,22.517399999997 +8073,10151,179695.039306618,374448.204928041,22.5139000000054 +8074,10149,179695.010473322,374447.556910351,25 +8075,10152,179694.900115829,374448.553126257,25 +8076,10153,179694.965285331,374448.873130821,22.5114999999932 +8077,10154,179694.768759798,374449.738899481,25 +8078,10150,179694.891264033,374449.541333605,22.5092000000004 +8079,4486,179697.500800002,374452.500300009,22.3699999999953 +8080,4485,179702.500900004,374447.500900004,22.5200000000041 +8081,4504,179702.500700001,374452.500700001,22.4799999999959 +8082,4487,179707.500300005,374452.500399999,22.2799999999988 +8083,4500,179707.500800002,374447.500500005,22.2700000000041 +8084,4483,179707.500200003,374442.500300001,22.3000000000029 +8085,4509,179712.500700004,374442.5002,22.320000000007 +8086,4481,179707.500700008,374437.500300005,22.3300000000017 +8087,4508,179712.5009,374437.500300005,22.3300000000017 +8088,4479,179707.500800002,374432.500399999,22.3600000000006 +8089,4507,179712.5009,374432.500399999,22.3500000000058 +8090,4506,179712.500600003,374427.500500005,22.3300000000017 +8091,8382,179719.886849578,374430.142801736,22.0795000000071 +8092,4520,179719.6446,374432.346900009,22.0599999999977 +8093,8381,179719.973481208,374430.270063348,25 +8094,8383,179720.036784738,374429.694095701,25 +8095,4515,179720.866999999,374429.024300005,25.5853000000061 +8096,6551,179720.100088261,374429.118128046,25 +8097,8390,179720.25036364,374427.750846315,25 +8098,15446,179721.040201101,374427.442987513,25.5880000000034 +8099,24031,179720.519951947,374432.192844272,25.5800000000017 +8100,15443,179721.297271799,374425.095952116,25.5918999999994 +8101,8387,179720.400639012,374426.383564595,25 +8102,15447,179720.311242528,374427.196939211,25 +8103,8389,179720.29561612,374426.423655365,22.1123999999982 +8104,8391,179720.184977341,374427.43029796,22.1034999999974 +8105,8380,179719.988501839,374429.217922617,22.0877000000037 +8106,8392,179720.4993091,374424.570362754,22.1288000000059 +8107,8386,179720.553000867,374424.081850339,22.1331000000064 +8108,8384,179720.624577936,374423.430609163,22.1389000000054 +8109,15441,179720.8228231,374421.626883332,22.1548999999941 +8110,15439,179720.834837578,374422.43300537,25 +8111,15442,179720.911349759,374421.73685874,25 +8112,15440,179720.987861931,374421.040712107,25 +8113,24037,179721.074618354,374420.251358029,25 +8114,15438,179721.638675515,374421.97896298,25.5972000000038 +8115,8385,179720.70118976,374423.64900114,25 +8116,15444,179720.629644603,374424.299955349,25 +8117,15445,179720.593872026,374424.62543245,25 +8118,8388,179720.558099449,374424.950909548,25 +8119,4513,179719.743999999,374432.358000003,25 +8120,15449,179719.570705518,374433.895997215,25 +8121,15448,179720.172903884,374435.361388538,25.5746000000072 +8122,24028,179719.857939932,374438.237005334,25.5697999999975 +8123,15450,179719.361252438,374435.754903801,25 +8124,8377,179719.061605386,374438.414286304,25 +8125,24029,179718.966132116,374439.261616383,25 +8126,8378,179718.943172999,374438.57209973,22.0720000000001 +8127,15453,179718.760452975,374440.193749033,22.0752000000066 +8128,8376,179719.274528798,374435.631300371,22.0663000000059 +8129,15452,179718.870658841,374440.108946465,25 +8130,24030,179719.700457949,374439.674813736,25.5673999999999 +8131,15451,179719.54297597,374441.112622138,25.5648999999976 +8132,4516,179719.333000004,374443.0297,25.5617000000057 +8133,8375,179718.679712296,374441.803606614,25 +8134,6549,179718.509888895,374443.31079777,25 +8135,8370,179718.433008708,374443.993113305,25 +8136,15455,179719.051325001,374445.601370744,25.5573000000004 +8137,8369,179718.356128518,374444.675428834,25 +8138,15456,179718.271283362,374445.428433798,25 +8139,15457,179718.223098814,374445.856074106,25 +8140,8372,179718.174914259,374446.283714421,25 +8141,15458,179718.716810919,374448.655458152,25.5522000000055 +8142,4512,179717.993700001,374447.892000005,25 +8143,8367,179717.887684334,374448.832840625,25 +8144,8365,179717.781668663,374449.773681249,25 +8145,15459,179717.675652988,374450.714521877,25 +8146,6548,179717.569637321,374451.655362498,25 +8147,24024,179717.508194916,374452.200635806,25 +8148,15461,179717.4467525,374452.745909095,25 +8149,15462,179717.326847907,374452.916810419,22.0997000000061 +8150,8361,179717.430017978,374452.001217272,22.0979999999981 +8151,4519,179712.500700004,374452.500600006,22.2200000000012 +8152,8363,179717.223677836,374453.832403578,22.1015000000043 +8153,8362,179717.323867686,374453.836455688,25 +8154,15463,179717.200982865,374454.927002288,25 +8155,15464,179717.0999621,374454.930331193,22.1036000000022 +8156,8360,179717.078098048,374456.017548885,25 +8157,8359,179716.976246372,374456.028258804,22.1057000000001 +8158,6547,179716.912962925,374457.483047575,25 +8159,8352,179716.761283085,374457.935972009,22.1094000000012 +8160,8354,179716.676929303,374458.684578095,22.1108999999997 +8161,4490,179707.500500001,374457.500700004,22.3000000000029 +8162,4488,179702.500800002,374457.500100002,22.4600000000064 +8163,4493,179702.500800002,374462.500700004,22.4400000000023 +8164,4492,179707.500500001,374462.500400007,22.3000000000029 +8165,8357,179716.436441246,374460.818813466,22.1150000000052 +8166,8358,179716.637443703,374459.034996994,22.1114999999991 +8167,15467,179716.290170621,374462.116906732,22.117499999993 +8168,4518,179716.1439,374463.414999999,22.1199999999953 +8169,8350,179716.07329696,374464.04160551,22.1211999999941 +8170,8345,179715.832373254,374466.179815441,22.1252999999997 +8171,4494,179707.500800002,374467.5002,22.2799999999988 +8172,8347,179715.713007957,374467.239188418,22.1273999999976 +8173,8346,179715.845823456,374466.953624237,25 +8174,15472,179715.767973013,374467.644550804,25 +8175,15473,179715.681839958,374468.408985935,25 +8176,8349,179715.50799641,374469.058676179,22.1309000000037 +8177,8348,179715.59570691,374469.173421063,25 +8178,15471,179716.587214481,374467.956947748,25.5396999999939 +8179,24017,179716.353607245,374470.062473878,25.5399999999936 +8180,8344,179715.345590364,374471.393217884,25 +8181,4528,179716.120000005,374472.168000001,25.5402999999933 +8182,24016,179718.438525002,374469.771725003,26.9524999999994 +8183,24005,179717.953050002,374474.287450001,26.9550000000017 +8184,24010,179715.920635588,374473.964892004,25.540599999993 +8185,24007,179715.721271176,374475.761783995,25.5409000000072 +8186,24006,179717.467575002,374478.803175006,26.9575000000041 +8187,24008,179715.521906763,374477.558675997,25.5412000000069 +8188,15474,179715.322542343,374479.355567988,25.5414000000019 +8189,7,179716.982100002,374483.318900004,26.9600000000064 +8190,24004,179720.382141136,374477.782319307,26.8197999999975 +8191,23994,179716.341689263,374489.276091855,26.9633000000031 +8192,15482,179714.684204355,374485.10897411,25.5424000000057 +8193,4527,179714.441000003,374487.300999999,25.5427000000054 +8194,23998,179714.197484966,374489.49582608,25.5430000000051 +8195,24000,179713.453910448,374488.589215048,25 +8196,6543,179713.515321497,374488.020120554,25 +8197,8322,179713.331948828,374488.78735042,22.1729999999952 +8198,8323,179713.39249941,374489.158309542,25 +8199,8324,179713.222798452,374489.798849918,22.1753000000026 +8200,23999,179713.33040588,374489.733728603,25 +8201,8327,179713.200740732,374490.003259465,22.1757999999973 +8202,4539,179707.500500001,374487.500300001,22.3300000000017 +8203,4542,179707.500700008,374492.500300001,22.1699999999983 +8204,4541,179702.500500005,374487.500800002,22.2899999999936 +8205,4545,179702.500900004,374492.500800002,22.2799999999988 +8206,4549,179707.500500001,374497.500500001,22.1900000000023 +8207,15488,179712.659858398,374495.015630834,22.1875 +8208,4524,179712.545100003,374496.079100002,22.1900000000023 +8209,8321,179712.138907928,374499.843271051,22.1987999999983 +8210,6542,179712.24034594,374499.835284892,25 +8211,15491,179712.124858752,374500.905501503,25 +8212,15492,179712.019382048,374500.950914208,22.2014000000054 +8213,4550,179707.500200003,374502.500300005,22.1699999999983 +8214,8319,179711.899856165,374502.058557373,22.2039999999979 +8215,8317,179711.767732877,374503.282940317,22.2067999999999 +8216,8316,179711.629489113,374504.564041626,22.2097999999969 +8217,6541,179711.832680501,374503.613109536,25 +8218,8318,179711.921014249,374502.794523057,25 +8219,4525,179712.762000002,374502.433999997,25.5449999999983 +8220,8320,179712.009371575,374501.975718118,25 +8221,15490,179712.999999747,374500.288883753,25.5446999999986 +8222,4529,179715.040300008,374501.381800007,26.9700000000012 +8223,15493,179712.306354791,374506.521727141,25.5402999999933 +8224,23973,179714.06935,374510.413199998,26.9750000000058 +8225,23984,179712.091920935,374508.445476301,25.5380000000005 +8226,15495,179711.459644865,374507.070020843,25 +8227,8315,179711.361958057,374507.975281868,25 +8228,23985,179711.270766057,374508.820355684,25 +8229,8314,179711.259615261,374507.991652682,22.2177999999985 +8230,23986,179711.158975128,374508.924282067,22.2200000000012 +8231,8312,179711.179574054,374509.665429503,25 +8232,8313,179711.058335003,374509.856911454,22.2222000000038 +8233,23981,179711.112077259,374510.290920526,25 +8234,23983,179710.877467506,374511.533005726,22.2260999999999 +8235,4565,179707.500600006,374507.500500005,22.1199999999953 +8236,4573,179702.500400003,374512.500300001,22.320000000007 +8237,4609,179710.696600001,374513.209100001,22.2299999999959 +8238,8307,179710.5445357,374514.581912141,22.2272999999986 +8239,23977,179710.413972013,374515.760620225,22.2250000000058 +8240,4577,179702.500599999,374517.500600006,22.3099999999977 +8241,4574,179697.500599999,374512.500599999,22.429999999993 +8242,4576,179697.500500005,374517.500600006,22.3999999999942 +8243,4575,179692.500399999,374517.500399999,22.3999999999942 +8244,4579,179692.500700004,374522.500500001,22.4700000000012 +8245,10210,179687.397872072,374517.369638842,22.3303000000014 +8246,4601,179686.838399999,374522.5086,22.3399999999965 +8247,10220,179686.483995698,374525.76391625,22.3460999999952 +8248,4582,179692.500600003,374527.500600003,22.5 +8249,10218,179686.263989169,374527.784746118,22.3500000000058 +8250,10215,179686.081245106,374529.463308416,22.353099999993 +8251,4585,179692.500300005,374532.500599999,22.5399999999936 +8252,10216,179685.983316172,374530.362816807,22.354800000001 +8253,9588,179685.885387238,374531.262325194,22.3564999999944 +8254,10224,179685.594017025,374533.938653246,22.3616000000038 +8255,4602,179687.500500001,374537.500400003,22.3699999999953 +8256,9589,179685.302646812,374536.614981297,22.3665999999939 +8257,4597,179685.108400002,374538.399200004,22.3699999999953 +8258,10228,179684.817128871,374541.074634768,22.3751000000047 +8259,4590,179687.500200003,374542.500100002,22.429999999993 +8260,10230,179684.683677837,374542.30043263,22.3773999999976 +8261,9590,179684.525857739,374543.75006954,22.3800999999949 +8262,10236,179684.329375777,374545.554830212,22.3834999999963 +8263,10227,179684.43450373,374543.665264037,25 +8264,10237,179684.187566362,374545.933476627,25 +8265,10238,179684.231134795,374546.457210548,22.3852000000043 +8266,10235,179684.050043348,374547.196677193,25 +8267,10234,179684.132893808,374547.359590881,22.3868999999977 +8268,4594,179687.500799999,374547.500300005,22.4400000000023 +8269,10232,179683.991617192,374548.657269694,22.3894 +8270,9591,179683.796657443,374550.448048249,22.3926999999967 +8271,4571,179687.5009,374552.500800002,22.4499999999971 +8272,4568,179692.500399999,374552.500300001,22.4799999999959 +8273,4566,179692.500600003,374547.500500001,22.5099999999948 +8274,4567,179697.5002,374547.500799999,22.2899999999936 +8275,4569,179697.500599999,374552.500599999,22.3099999999977 +8276,4595,179702.500599999,374547.500300005,22.2599999999948 +8277,4592,179697.500800002,374542.500500001,22.2700000000041 +8278,4591,179692.500799999,374542.500200003,22.5200000000041 +8279,4589,179697.500400003,374537.500400003,22.2799999999988 +8280,4587,179692.500799999,374537.500100005,22.5399999999936 +8281,4584,179697.5002,374532.500100005,22.3000000000029 +8282,4586,179702.500599999,374532.500800002,22.2299999999959 +8283,4588,179702.5002,374537.500100005,22.1999999999971 +8284,8288,179708.268818829,374535.126696263,22.1869000000006 +8285,8292,179708.433549806,374533.639539767,22.1897999999928 +8286,8290,179708.454879325,374533.446981374,22.1901999999973 +8287,15506,179708.589739669,374532.22949069,22.1925999999949 +8288,4611,179708.724600002,374531.011999998,22.195000000007 +8289,4583,179702.500999998,374527.5009,22.3300000000017 +8290,15508,179708.896551274,374529.459651444,22.1980999999942 +8291,8302,179709.068502553,374527.907302883,22.2011000000057 +8292,8300,179709.381380428,374525.082691543,22.2066999999952 +8293,4580,179702.500599999,374522.500600003,22.3500000000058 +8294,8298,179709.573810056,374523.345467716,22.2100999999966 +8295,8296,179709.723048832,374521.998163972,22.2127000000037 +8296,8294,179709.863454416,374520.73060488,22.215200000006 +8297,4578,179697.500599999,374522.500100002,22.3600000000006 +8298,4581,179697.500599999,374527.500100009,22.320000000007 +8299,8303,179710.044904541,374519.092502225,22.2183999999979 +8300,8305,179710.283408321,374516.939328302,22.2226999999984 +8301,8304,179710.18552383,374518.731311955,25 +8302,8306,179710.38240689,374516.95387334,25 +8303,23976,179710.506902229,374515.82994302,25 +8304,6540,179710.631397571,374514.7060127,25 +8305,15496,179711.405388463,374514.604560997,25.5308999999979 +8306,15497,179710.713632766,374513.963602383,25 +8307,4606,179710.796000008,374513.219999999,25 +8308,23982,179710.891893514,374512.331357375,25 +8309,23979,179711.641437769,374512.48689324,25.5334000000003 +8310,23980,179710.987787031,374511.442714751,25 +8311,23978,179711.877487082,374510.369225472,25.5357999999978 +8312,23974,179713.583875,374514.9289,26.9774999999936 +8313,23991,179716.187003419,374515.373003472,26.8703999999998 +8314,4610,179713.0984,374519.444600005,26.9799999999959 +8315,23975,179711.202344231,374516.426130503,25.5288 +8316,4607,179710.999299999,374518.247700002,25.5267000000022 +8317,15498,179710.737435266,374520.597083937,25.5240000000049 +8318,15501,179710.286813069,374524.639951959,25.5192999999999 +8319,23987,179712.348501332,374526.419904925,26.9839000000065 +8320,23989,179710.08991687,374526.406454712,25.517200000002 +8321,15502,179709.465563864,374525.231031731,25 +8322,8301,179709.184640061,374527.76718105,25 +8323,8299,179709.545280118,374524.511362098,25 +8324,23988,179709.893020667,374528.172957473,25.5151999999944 +8325,23990,179709.115862522,374528.388097174,25 +8326,15507,179709.004320029,374529.395090528,25 +8327,15504,179709.499228261,374531.705962986,25.5109999999986 +8328,156,179711.156500001,374537.507500004,26.9900000000052 +8329,23972,179715.653999999,374520.149000004,26.8754999999946 +8330,4608,179709.236699998,374534.061300002,25.5083000000013 +8331,15509,179708.926718865,374536.842231933,25.5050999999949 +8332,15512,179708.649568044,374539.328633402,25.5022000000026 +8333,6537,179708.037540533,374538.123069979,25 +8334,15516,179707.967235468,374538.757776372,25 +8335,8284,179707.951424591,374537.99206451,22.1812999999966 +8336,15515,179707.851370186,374538.89533456,22.1794999999984 +8337,8273,179707.751315784,374539.798604615,22.1777000000002 +8338,15514,179707.896930408,374539.392482769,25 +8339,8274,179707.824491829,374540.046450332,25 +8340,8275,179707.629440825,374540.898865998,22.1756000000023 +8341,15513,179707.728863496,374540.909772415,25 +8342,23961,179707.681049332,374541.341433458,25 +8343,8283,179707.55088608,374541.608041693,22.174199999994 +8344,4593,179702.500300001,374542.500600003,22.2599999999948 +8345,8281,179707.371357195,374543.228790563,22.1710000000021 +8346,8277,179707.633235171,374541.773094498,25 +8347,8282,179707.485740542,374543.104659829,25 +8348,15521,179707.411993228,374543.770442497,25 +8349,15522,179707.285010487,374544.008310452,22.1693999999989 +8350,15523,179707.375119574,374544.103333831,25 +8351,8276,179707.338245917,374544.436225168,25 +8352,15517,179708.110047691,374544.168829177,25.4965999999986 +8353,23969,179707.29772089,374544.802080635,25 +8354,8278,179707.198663779,374544.787830342,22.1679000000004 +8355,15518,179707.257195871,374545.167936102,25 +8356,15519,179707.094391968,374545.729174249,22.1661000000022 +8357,8280,179706.990120154,374546.67051816,22.1641999999993 +8358,15520,179707.176159412,374545.899524346,25 +8359,23968,179707.216677647,374545.53373022,25 +8360,23967,179707.951035768,374545.595371883,25.4949999999953 +8361,23966,179707.792023845,374547.021914586,25.4933000000019 +8362,23958,179710.229810439,374546.127254326,26.9948000000004 +8363,23959,179710.693155222,374541.817377165,26.9924000000028 +8364,23960,179708.379807867,374541.748731289,25.4994000000006 +8365,23957,179712.637810253,374546.500233561,26.9070000000065 +8366,23962,179709.722205222,374550.848827161,26.9973999999929 +8367,4600,179707.473999999,374549.875000004,25.4900000000052 +8368,23963,179707.261473592,374551.758973666,25.4891000000061 +8369,6536,179706.681625355,374550.323397879,25 +8370,23964,179706.587172054,374551.153534133,25 +8371,8266,179706.492718756,374551.983670384,25 +8372,8267,179706.398265455,374552.813806638,25 +8373,8268,179706.400496036,374551.909474347,22.1806999999972 +8374,8265,179706.257189959,374553.169004727,22.1891000000032 +8375,4570,179702.500900004,374552.500599999,22.3000000000029 +8376,8263,179706.129090887,374554.294879273,22.1965999999957 +8377,8254,179705.98851756,374555.530391268,22.204899999997 +8378,6535,179706.170501415,374554.815591503,25 +8379,15525,179706.237156786,374554.2297672,25 +8380,15524,179707.048947193,374553.642947331,25.4882999999973 +8381,8264,179706.303812157,374553.643942896,25 +8382,15526,179706.35103881,374553.228874769,25 +8383,15527,179706.779235613,374556.033847857,25.4872000000032 +8384,33,179709.214600004,374555.5704,27 +8385,23953,179711.087664418,374560.043232616,26.9179000000004 +8386,23954,179708.729150005,374560.086125005,27.0025000000023 +8387,23937,179708.243700001,374564.601850003,27.0050000000047 +8388,23945,179706.145343821,374561.653081067,25.4845999999961 +8389,4650,179705.914999999,374563.695,25.483699999997 +8390,23940,179705.745258566,374565.199699543,25.4829999999929 +8391,23941,179705.076115545,374564.433977176,25 +8392,6533,179705.032757595,374564.815041143,25 +8393,8251,179704.910242323,374565.891802244,25 +8394,8252,179704.969833013,374564.483608436,22.2648000000045 +8395,8250,179704.760033693,374566.327451129,22.2771000000066 +8396,4617,179697.500900008,374562.500799999,22.2799999999988 +8397,4642,179705.164700005,374562.771000005,22.2532999999967 +8398,6534,179705.206189401,374563.290785283,25 +8399,4638,179705.263999999,374562.782700002,25 +8400,23946,179705.375962552,374561.798677467,25 +8401,23947,179705.28593668,374561.705439616,22.2461999999941 +8402,23948,179705.43194383,374561.306666199,25 +8403,8262,179705.407173358,374560.639879227,22.2391000000061 +8404,4614,179697.501000002,374557.500999998,22.3000000000029 +8405,4613,179692.501000002,374557.500800002,22.4499999999971 +8406,4616,179692.500799999,374562.500799999,22.3999999999942 +8407,4618,179697.500400003,374567.500500001,22.3000000000029 +8408,4653,179692.500600003,374567.500600003,22.3699999999953 +8409,4619,179687.500799999,374567.500600003,22.5099999999948 +8410,4620,179692.500200003,374572.500700004,22.3399999999965 +8411,158,179687.500799999,374572.500599999,22.5500000000029 +8412,4623,179687.500600003,374577.500599999,22.5500000000029 +8413,4621,179692.5009,374577.5002,22.320000000007 +8414,4655,179697.500800002,374572.500500005,22.3399999999965 +8415,4622,179697.500800002,374577.500500005,22.3999999999942 +8416,8245,179703.785146747,374574.895344503,22.334400000007 +8417,4641,179703.576699998,374576.727300007,22.3466999999946 +8418,8244,179703.859566811,374575.125969674,25 +8419,15541,179703.951350223,374574.319304507,25 +8420,15540,179704.571559492,374575.60413906,25.4781999999977 +8421,15537,179704.892384134,374572.760138702,25.4795000000013 +8422,4659,179707.272799999,374573.633299999,27.0099999999948 +8423,15534,179705.23603427,374569.713798176,25.480899999995 +8424,23938,179707.758249994,374569.117575001,27.007500000007 +8425,23936,179709.522618156,374573.705369372,26.928899999999 +8426,23949,179706.641575426,374579.504706025,27.0164999999979 +8427,23942,179705.405775707,374568.209098637,25.4815999999992 +8428,23939,179705.57551714,374566.70439909,25.4823000000033 +8429,23952,179710.077000007,374568.873000003,26.9250000000029 +8430,23943,179704.72646942,374567.506943893,25 +8431,15536,179704.665211789,374568.045324445,25 +8432,8247,179704.542696513,374569.122085545,25 +8433,8248,179704.585664425,374567.859913234,22.2874000000011 +8434,8246,179704.388371788,374569.593839675,22.2989999999991 +8435,15535,179704.469934966,374569.761571575,25 +8436,6532,179704.339030389,374570.912064567,25 +8437,8239,179704.182562649,374571.402614322,22.3111000000063 +8438,8241,179704.052784707,374572.543181021,22.3187000000034 +8439,8243,179703.92789213,374573.640812144,22.3260000000009 +8440,15538,179704.125592992,374572.787921228,25 +8441,8240,179704.190167502,374572.220389355,25 +8442,15539,179704.264598943,374571.566226956,25 +8443,8242,179704.043133624,374573.512639344,25 +8444,8249,179704.787727054,374566.968563344,25 +8445,23944,179704.848984689,374566.430182792,25 +8446,4651,179704.355999999,374577.515000004,25.4772999999986 +8447,23950,179704.130332269,374579.515467014,25.4763999999996 +8448,8236,179703.5023125,374578.265814062,25 +8449,8234,179703.427875001,374578.920034379,25 +8450,23951,179703.353437502,374579.574254692,25 +8451,8233,179703.232923929,374579.748779681,22.3668999999936 +8452,6530,179703.279000003,374580.228475001,25 +8453,8221,179703.061104205,374581.258919135,22.3769999999931 +8454,23934,179703.169522833,374581.190653831,25 +8455,23935,179703.118441645,374581.639598943,25 +8456,8232,179703.002100457,374581.77750852,22.3804999999993 +8457,4624,179697.5002,374582.500100002,22.3699999999953 +8458,8231,179702.835627817,374583.240652002,22.3901999999944 +8459,8223,179703.067360457,374582.088544052,25 +8460,15545,179702.96154068,374583.018578582,25 +8461,23933,179702.908630792,374583.483595844,25 +8462,8222,179702.855720911,374583.948613103,25 +8463,23932,179703.684351392,374583.468934398,25.4746000000014 +8464,15543,179702.777180489,374584.638893347,25 +8465,15542,179703.46403826,374585.421934765,25.4737000000023 +8466,15544,179702.737910282,374584.984033465,25 +8467,8230,179702.698640075,374585.329173587,25 +8468,8225,179702.541559242,374586.709734075,25 +8469,23929,179703.22159183,374587.571139116,25.4726999999984 +8470,23930,179702.484864343,374587.208017316,25 +8471,15549,179702.428169437,374587.706300553,25 +8472,8227,179702.314779621,374588.702867039,25 +8473,15550,179702.313073017,374587.833434451,22.4208999999973 +8474,8228,179702.218836736,374588.661685869,22.4265000000014 +8475,15548,179702.103818372,374589.672592934,22.4331999999995 +8476,4628,179697.500700001,374587.500399999,22.4100000000035 +8477,4640,179701.988800004,374590.683500007,22.4400000000023 +8478,15547,179702.201389812,374589.699433517,25 +8479,4636,179702.088000003,374590.696000002,25 +8480,4635,179701.989,374591.41,25.0789999999979 +8481,4639,179701.889800001,374591.397300005,22.4199999999983 +8482,4632,179697.500800002,374592.500600003,22.4700000000012 +8483,8219,179701.855083358,374591.693789348,22.4262000000017 +8484,8217,179701.716508318,374592.877256818,22.450800000006 +8485,8218,179701.8967629,374592.197723564,25.0786999999982 +8486,8220,179701.94288145,374591.803861778,25.0788999999932 +8487,4652,179702.796999998,374591.335000001,25.471000000005 +8488,8216,179701.8045258,374592.98544712,25.0783999999985 +8489,15551,179702.728066526,374594.443487141,25.6967000000004 +8490,4658,179705.330900002,374591.6961,27.0299999999988 +8491,15546,179702.979145411,374589.720343463,25.4716999999946 +8492,23928,179705.670625418,374588.536106031,27.0265000000072 +8493,23927,179706.010350835,374585.376112055,27.023000000001 +8494,23926,179707.943749163,374587.467865556,26.9401000000071 +8495,23931,179703.904664535,374581.515934031,25.4755000000005 +8496,23918,179704.845425002,374596.211824998,27.0325000000012 +8497,4730,179702.68,374596.611000005,25.8540000000066 +8498,4727,179702.724000007,374596.666999999,25.8540000000066 +8499,23904,179702.538716126,374598.187357143,25.8518999999942 +8500,8212,179701.306045149,374597.242573056,25.0769 +8501,8206,179701.247888982,374597.739238549,25.0767000000051 +8502,23905,179701.804500002,374598.914999999,25.0950000000012 +8503,4694,179702.390000004,374598.989999998,25.1000000000058 +8504,15306,179702.413568299,374599.214264557,25.8505000000005 +8505,23890,179704.359950002,374600.727550004,27.0350000000035 +8506,23894,179702.369652677,374599.574616652,25.850099999996 +8507,23892,179702.325737052,374599.934968755,25.8496000000014 +8508,23891,179702.2379058,374600.655672945,25.8485999999975 +8509,15318,179702.112099897,374601.687980317,25.8472000000038 +8510,23901,179702.053488277,374602.168921206,25.8464999999997 +8511,23900,179701.994876657,374602.649862099,25.8459000000003 +8512,23919,179703.874475002,374605.243275002,27.0375000000058 +8513,23920,179701.93626504,374603.130802996,25.8451999999961 +8514,15323,179701.87765342,374603.61174389,25.8445999999967 +8515,23922,179701.790033389,374604.33071493,25.8435999999929 +8516,23923,179701.746223375,374604.690200455,25.8430999999982 +8517,15328,179701.702413358,374605.049685974,25.8426000000036 +8518,4728,179701.644000009,374605.529000003,25.8420000000042 +8519,4693,179701.594000004,374605.524,25.0890000000072 +8520,6521,179701.452133145,374606.856775444,25.0866999999998 +8521,15332,179701.492273849,374606.953352105,25.8420000000042 +8522,15333,179701.434538044,374607.022073478,25.0864000000001 +8523,8178,179701.336007502,374607.002718706,22.5146999999997 +8524,15335,179701.350578748,374607.810833391,25.0850999999966 +8525,8180,179701.219619256,374608.096217196,22.4814000000042 +8526,4732,179697.500700001,374607.500600003,22.3300000000017 +8527,15342,179701.143630572,374608.810151078,22.4597000000067 +8528,4699,179699.510899998,374610.2973,22.5800000000017 +8529,8147,179699.458128612,374610.914700944,22.5736000000034 +8530,4689,179699.602000006,374610.406000003,25.0739999999932 +8531,4700,179699.809100002,374610.324400004,22.5800000000017 +8532,4690,179699.701000001,374610.415000003,25.0739999999932 +8533,8151,179699.660362311,374610.891650971,25.0752000000066 +8534,8153,179699.748584937,374611.034149542,22.5298999999941 +8535,8175,179700.948297478,374610.645357475,22.4039000000048 +8536,15340,179701.007969681,374610.084721219,22.4210000000021 +8537,8177,179701.067641884,374609.524084959,22.4379999999946 +8538,15341,179701.198997773,374609.234868575,25.0825999999943 +8539,15345,179701.235065766,374608.896025974,25.0831999999937 +8540,15343,179701.25513643,374608.707471076,25.0834999999934 +8541,15344,179701.286745589,374608.882779453,25.8420000000042 +8542,15334,179701.360071212,374608.19442413,25.8420000000042 +8543,4731,179703.389000002,374609.759,27.0399999999936 +8544,15336,179701.387549125,374607.936471116,25.8420000000042 +8545,15337,179701.330926921,374607.995453492,25.0847999999969 +8546,8179,179701.311275084,374608.180073589,25.084400000007 +8547,23889,179705.184999999,374611.515000004,26.9946000000054 +8548,23908,179703.144722786,374612.812959693,27.0795999999973 +8549,23907,179702.900445566,374615.866919391,27.1190999999963 +8550,4744,179702.401000008,374622.111000001,27.1999999999971 +8551,4785,179700.589500003,374639.765800003,27.2299999999959 +8552,8969,179698.560291156,374630.503993273,25.6490999999951 +8553,4708,179698.202000003,374633.194000002,25.6119999999937 +8554,8972,179697.711552508,374637.49041554,25.6120999999985 +8555,8976,179697.384268813,374640.357484467,25.6122000000032 +8556,8979,179696.920568511,374644.419589467,25.6123999999982 +8557,23884,179699.586896874,374649.537070978,27.2465999999986 +8558,4778,179696.559,374647.587000001,25.6125000000029 +8559,23886,179696.234454211,374650.430084325,25.6125999999931 +8560,23885,179699.182448443,374653.478785489,27.2532999999967 +8561,8984,179695.909908421,374653.27316865,25.6126999999979 +8562,8991,179695.541781452,374656.498032626,25.6128000000026 +8563,4791,179698.778000005,374657.420500003,27.2599999999948 +8564,23883,179700.352000002,374655.330000002,27.1560999999929 +8565,23877,179698.325125001,374661.834199999,27.2649999999994 +8566,8995,179695.207577843,374659.425721373,25.6128999999928 +8567,4786,179694.916000005,374661.98,25.6129999999976 +8568,6506,179694.30231487,374660.947895166,25 +8569,8085,179694.222687311,374661.67161195,25 +8570,8083,179694.143059757,374662.395328734,25 +8571,6505,179694.05125948,374663.229680639,25 +8572,23882,179693.958149578,374664.075935412,25 +8573,8069,179693.822594102,374664.393744271,22.4676000000036 +8574,8071,179693.865039673,374664.922190178,25 +8575,8081,179693.647586107,374665.984352272,22.4679999999935 +8576,4759,179687.500399999,374662.500400003,22.4199999999983 +8577,8082,179693.992996566,374662.84499497,22.4673000000039 +8578,8084,179694.181338605,374661.133197021,22.4668999999994 +8579,4789,179692.500200003,374657.500700004,22.3099999999977 +8580,160,179687.500799999,374657.500799999,22.3699999999953 +8581,4758,179682.500500005,374657.500700004,22.3699999999953 +8582,4755,179682.500900004,374652.500700004,22.4199999999983 +8583,4754,179677.500800002,374652.500600003,22.429999999993 +8584,4757,179677.500800002,374657.500600003,22.4700000000012 +8585,10401,179672.762174856,374651.183520753,22.4510000000009 +8586,4784,179671.819600001,374659.630600005,22.4679999999935 +8587,4761,179677.500300001,374662.500800002,22.5 +8588,4760,179682.500700001,374662.500500005,22.3500000000058 +8589,4763,179677.500999998,374667.500900004,22.5099999999948 +8590,4764,179682.500900004,374667.500900004,22.320000000007 +8591,4762,179687.500399999,374667.500599999,22.429999999993 +8592,4767,179687.5009,374672.5009,22.4100000000035 +8593,8074,179693.23564839,374669.728360616,22.4688000000024 +8594,8076,179693.028982241,374671.606702331,22.4692000000068 +8595,8075,179693.155263949,374671.373180602,25 +8596,9002,179693.055447962,374672.28038545,25 +8597,9004,179692.947248537,374672.349561416,22.4694000000018 +8598,9003,179693.005539972,374672.733987875,25 +8599,8078,179692.865514837,374673.0924205,22.4695999999967 +8600,8077,179692.955631979,374673.187590305,25 +8601,9001,179693.73336963,374673.098044023,25.5852000000014 +8602,4772,179692.756000001,374675.002000004,25 +8603,9005,179693.418530259,374676.057885084,25.5777999999991 +8604,4788,179696.966499999,374675.075300004,27.2799999999988 +8605,8998,179694.142693721,374669.24994123,25.5948000000062 +8606,23876,179697.872249998,374666.247900002,27.2700000000041 +8607,23875,179699.212477751,374665.505990669,27.1803999999975 +8608,23879,179694.336020291,374667.432455916,25.5994000000064 +8609,23878,179694.529346861,374665.614970613,25.6039000000019 +8610,8070,179693.678819869,374666.614699725,25 +8611,23880,179693.607034102,374667.267144278,25 +8612,8080,179693.535248328,374667.919588834,25 +8613,9000,179693.463462561,374668.572033394,25 +8614,8079,179693.401011426,374668.225413516,22.4685000000027 +8615,8073,179693.391676795,374669.224477954,25 +8616,8999,179693.315902378,374669.913174387,25 +8617,8072,179693.490851134,374667.408880807,22.4682999999932 +8618,23881,179693.768543009,374665.799226433,25 +8619,23870,179696.513625003,374679.488975003,27.2875000000058 +8620,23871,179693.204869419,374678.066535182,25.5727999999945 +8621,8068,179692.578280646,374676.663617905,25 +8622,23872,179692.489420962,374677.494426854,25 +8623,23874,179692.444991127,374677.909831334,25 +8624,6504,179692.400561288,374678.32523581,25 +8625,9009,179692.330778748,374678.977679834,25 +8626,9008,179692.991208583,374680.075185269,25.5676999999996 +8627,8065,179692.260996196,374679.630123854,25 +8628,8063,179692.121431094,374680.935011901,25 +8629,8066,179692.182026006,374679.42831175,22.4260999999969 +8630,8062,179692.001202967,374681.118948098,22.4092999999993 +8631,4771,179687.500700004,374677.500600003,22.429999999993 +8632,8064,179692.27169821,374678.589905951,22.4343999999983 +8633,23873,179692.367734473,374677.691998299,22.443299999999 +8634,8067,179692.463770732,374676.794090658,22.452099999995 +8635,9007,179692.560185369,374675.892645326,22.4611000000004 +8636,4775,179692.656599998,374674.991200004,22.4700000000012 +8637,4768,179682.500800002,374677.500300005,22.320000000007 +8638,4765,179682.500100005,374672.500300005,22.320000000007 +8639,4766,179677.500999998,374672.500799999,22.5200000000041 +8640,9608,179670.671959545,374669.915417053,22.4887000000017 +8641,10405,179670.803994585,374668.732157782,22.4863000000041 +8642,10404,179670.93602962,374667.548898507,22.4839999999967 +8643,10408,179671.050716341,374666.521109782,22.4818999999989 +8644,10407,179671.165403061,374665.493321065,22.479800000001 +8645,10406,179670.914732412,374666.837964144,25 +8646,10409,179671.107905284,374665.106805589,25 +8647,4787,179667.3785,374668.894000005,26.6300000000047 +8648,10411,179671.299939137,374663.385854568,25 +8649,4782,179671.720200002,374659.619600002,25 +8650,4790,179669.629000001,374649.057999998,26.5800000000017 +8651,10402,179672.664672151,374651.155517764,25 +8652,10400,179672.864132058,374649.36801656,25 +8653,9607,179672.996647909,374649.082242057,22.4468000000052 +8654,10392,179672.985076644,374648.284146644,25 +8655,10399,179673.055650182,374647.651687309,25 +8656,10395,179673.210845742,374646.260870289,25 +8657,10398,179673.393363569,374644.625199024,25 +8658,4781,179673.824999996,374640.756999999,25 +8659,10390,179673.928115312,374639.816634521,25.0032000000065 +8660,4738,179671.879500002,374629.221999999,26.5299999999988 +8661,4505,179693.620999999,374432.013700008,26.3300000000017 +8662,4743,179674.129999999,374609.386000004,26.4799999999959 +8663,4726,179675.483000003,374612.465999998,25.9579999999987 +8664,10698,179675.653036427,374610.936696965,25.9572999999946 +8665,10702,179675.720522951,374610.329725001,25.9569999999949 +8666,10333,179675.735730264,374610.640725289,25.1119000000035 +8667,4721,179675.708000001,374610.890000008,25.1119999999937 +8668,4742,179675.816700004,374610.817700002,22.3099999999977 +8669,10699,179676.104425609,374611.00664736,25.1073000000033 +8670,10700,179676.107400004,374610.903250001,22.3000000000029 +8671,10335,179676.398100004,374610.9888,22.2899999999936 +8672,10701,179675.850297611,374610.515675999,22.3126000000047 +8673,10332,179675.883895215,374610.213651992,22.315300000002 +8674,10703,179675.777325656,374610.266813222,25.1117999999988 +8675,10704,179675.756527957,374610.453769255,25.1117999999988 +8676,10331,179675.818921044,374609.89290116,25.1116000000038 +8677,10705,179675.784571972,374609.753669895,25.9567999999999 +8678,10706,179675.846029308,374609.64921777,25.1114999999991 +8679,10707,179675.859400921,374609.080660313,25.9565000000002 +8680,10709,179675.931739401,374608.43004996,25.9562000000005 +8681,10716,179676.020185828,374607.634565268,25.9557999999961 +8682,10715,179676.053020887,374607.788515329,25.1107999999949 +8683,10719,179676.06757383,374607.657695029,25.1107000000047 +8684,9599,179676.139444545,374607.916404031,22.3353000000061 +8685,10718,179676.186308879,374607.495119423,22.3390000000072 +8686,9600,179677.346774999,374608.245325003,22.3150000000023 +8687,4714,179677.469200004,374607.273800001,22.3300000000017 +8688,10347,179677.458942011,374608.155151255,25.1024000000034 +8689,10349,179677.439899165,374608.306255441,25.1021000000037 +8690,10346,179677.420856319,374608.457359623,25.101800000004 +8691,10352,179677.385808948,374608.735459108,25.1012000000046 +8692,10343,179677.254956249,374608.973968752,22.303700000004 +8693,10344,179677.350761577,374609.013558581,25.1006999999954 +8694,10342,179677.274984982,374609.614842799,25.0994000000064 +8695,9602,179677.163137503,374609.702612504,22.2924999999959 +8696,10356,179677.256153509,374609.764269769,25.0991000000067 +8697,10337,179677.237322036,374609.913696736,25.098800000007 +8698,10341,179677.117228124,374610.066934373,22.2869000000064 +8699,10330,179675.951090422,374609.60960399,22.3205000000016 +8700,10338,179677.071318753,374610.431256253,22.2813000000024 +8701,10340,179677.209623948,374610.133479893,25.0984000000026 +8702,10359,179677.165644161,374610.482457727,25.0976999999984 +8703,10362,179677.140233118,374610.684093297,25.0972000000038 +8704,10361,179677.025409374,374610.795578126,22.2755999999936 +8705,10339,179676.688800007,374611.074350007,22.2799999999988 +8706,4713,179676.979499999,374611.159900002,22.2700000000041 +8707,10365,179677.089411039,374611.087364435,25.0963999999949 +8708,10360,179677.114822078,374610.885728866,25.0967999999993 +8709,10364,179677.195051935,374611.048897665,25.0950000000012 +8710,10363,179677.238711137,374610.702252157,25.0959000000003 +8711,10358,179677.343083147,374610.673919138,22.3173999999999 +8712,10357,179677.267787971,374610.471387811,25.0963999999949 +8713,9601,179677.475083537,374609.625896093,22.321299999996 +8714,10355,179677.357460693,374609.759403925,25.0981999999931 +8715,10354,179677.382689845,374609.559089404,25.0987000000023 +8716,10351,179677.452987086,374609.00094305,25.1000000000058 +8717,10353,179677.480769485,374608.780356221,25.1006000000052 +8718,10345,179677.620941777,374608.467848048,22.3257000000012 +8719,10350,179677.521590482,374608.456245538,25.1013999999996 +8720,10348,179677.549714539,374608.23294593,25.1018999999942 +8721,4715,179677.766800005,374607.309800003,22.3300000000017 +8722,4723,179677.655000001,374607.397000004,25.1040000000066 +8723,4722,179677.556000005,374607.385000009,25.1040000000066 +8724,10714,179676.373634998,374605.811160572,22.3536000000022 +8725,10325,179676.233173214,374607.073834807,22.3426000000036 +8726,10713,179676.138752259,374607.017853148,25.1104999999952 +8727,10324,179676.111232661,374607.265234131,25.1106 +8728,10717,179676.082126774,374607.526874732,25.1107000000047 +8729,10711,179676.063197419,374607.247720115,25.9557000000059 +8730,10720,179676.235894956,374605.694483235,25.9550000000017 +8731,10723,179676.411978818,374604.110789713,25.9542999999976 +8732,10725,179676.645812582,374602.007695217,25.9532999999938 +8733,10742,179677.06680277,374598.221320879,25.9516000000003 +8734,4657,179676.3805,374589.550000004,26.429999999993 +8735,154,179691.932000007,374447.811999999,26.2899999999936 +8736,4656,179678.631000001,374569.714000005,26.3800000000047 +8737,4603,179680.881500002,374549.877999999,26.3300000000017 +8738,157,179683.132000003,374530.041999999,26.2700000000041 +8739,4503,179690.499000002,374461.998000003,26.25 +8740,4564,179685.382500004,374510.206,26.2200000000012 +8741,4598,179686.739,374522.497700002,25 +8742,10211,179687.316430736,374517.193781756,25 +8743,10213,179687.501033284,374515.498137962,25 +8744,10209,179687.732988119,374513.367545702,25 +8745,10200,179687.902899519,374511.806845661,25 +8746,9587,179687.84554676,374513.257578593,22.3224999999948 +8747,10201,179688.03597936,374511.508383624,22.3191999999981 +8748,4572,179692.500300005,374512.5002,22.429999999993 +8749,10204,179688.141216207,374510.541743632,22.3173999999999 +8750,10203,179688.246453062,374509.575103633,22.3156000000017 +8751,4555,179692.500399999,374507.500800006,22.3899999999994 +8752,10206,179688.407426532,374508.09650182,22.3127999999997 +8753,4562,179688.568399999,374506.617899999,22.3099999999977 +8754,4560,179688.469000004,374506.607000005,25 +8755,10207,179688.286434121,374508.283936277,25 +8756,10194,179688.846512672,374503.199128918,25 +8757,10196,179688.985088848,374501.948178206,25 +8758,10198,179689.22836649,374499.752069525,25 +8759,155,179687.633000005,374490.370000008,26.1699999999983 +8760,10192,179689.59819714,374496.413545344,25 +8761,10187,179689.888112932,374493.796426173,25 +8762,9585,179689.943719946,374494.202652946,22.3533000000025 +8763,10188,179690.073820241,374493.028215453,22.3573999999935 +8764,4543,179692.5009,374492.500800002,22.4700000000012 +8765,10190,179690.201970298,374491.871383067,22.3613999999943 +8766,4557,179690.4197,374489.905900005,22.3683000000019 +8767,10191,179690.112681329,374491.76920912,25 +8768,4559,179690.320300005,374489.895000003,25 +8769,10186,179691.362655871,374480.48598453,25 +8770,4563,179689.066000003,374476.184,26.2100000000064 +8771,10177,179691.607032511,374478.280074164,25 +8772,10179,179691.690549299,374477.526194673,25 +8773,10184,179691.710918009,374477.342332777,25 +8774,10181,179691.850120477,374476.085796297,25 +8775,10183,179691.986545932,374474.854326993,25 +8776,4558,179692.171700008,374473.183000002,25 +8777,10176,179692.435908187,374470.797947779,25 +8778,4561,179692.271100003,374473.1939,22.4266999999963 +8779,10182,179692.097596314,374474.760062724,22.421199999997 +8780,4530,179697.500400003,374472.500200007,22.3800000000047 +8781,4533,179697.5002,374477.500100002,22.4400000000023 +8782,4531,179702.500300001,374472.500200007,22.3800000000047 +8783,4534,179702.500300001,374477.500500001,22.3600000000006 +8784,4537,179697.500900008,374482.500300005,22.4900000000052 +8785,9584,179691.463034339,374480.488052182,22.401199999993 +8786,4540,179697.500900008,374487.500700001,22.5099999999948 +8787,4536,179702.500500005,374482.500200003,22.3300000000017 +8788,4544,179697.500900008,374492.500800002,22.4900000000052 +8789,4548,179697.500300001,374497.500300005,22.4700000000012 +8790,4546,179702.5002,374497.500200003,22.2599999999948 +8791,4552,179702.5002,374502.500399999,22.2400000000052 +8792,4556,179702.500400003,374507.5009,22.2700000000041 +8793,8308,179711.479434472,374505.954593956,22.2130999999936 +8794,8311,179711.372234244,374506.948015612,22.215400000001 +8795,8309,179711.544342052,374506.28513423,25 +8796,15494,179711.613520928,374505.644055448,25 +8797,8310,179711.688511286,374504.949121885,25 +8798,4554,179697.500500005,374507.500500005,22.4400000000023 +8799,4553,179697.500300001,374502.500600003,22.4499999999971 +8800,4551,179692.500500001,374502.500399999,22.3899999999994 +8801,9586,179688.912229985,374503.51408824,22.3208000000013 +8802,10195,179689.073036782,374502.062457915,22.3258999999962 +8803,10199,179689.224714573,374500.693236757,22.3307000000059 +8804,10197,179689.376392357,374499.324015602,22.3353999999963 +8805,4547,179692.500600003,374497.500300005,22.4499999999971 +8806,10193,179689.679747924,374496.585573275,22.3450000000012 +8807,10178,179691.738776639,374477.999013994,22.4098999999987 +8808,10185,179691.831434634,374477.162619717,22.4128000000055 +8809,10180,179691.924092621,374476.326225437,22.4158000000025 +8810,4535,179707.500900004,374477.500700004,22.3300000000017 +8811,4532,179707.500999998,374472.500900004,22.2799999999988 +8812,8342,179714.751427665,374475.773261577,22.1438999999955 +8813,15479,179714.572513834,374477.361130793,22.146900000007 +8814,4526,179714.393600002,374478.949000001,22.1499999999942 +8815,24009,179714.586672004,374478.128656287,25 +8816,4523,179714.493000001,374478.960000005,25 +8817,15477,179714.415455583,374479.678602047,25 +8818,15475,179714.337911159,374480.397204097,25 +8819,15480,179714.965932909,374482.569725629,25.5418999999965 +8820,6544,179714.182822332,374481.834408186,25 +8821,8333,179714.024427358,374483.302250143,25 +8822,8337,179714.094610151,374481.719747093,22.1564999999973 +8823,8331,179713.886466432,374483.648620695,22.1609999999928 +8824,4538,179707.500800002,374482.500500001,22.3699999999953 +8825,8334,179713.781597406,374484.620444749,22.1631999999954 +8826,15481,179713.957351319,374483.923842009,25 +8827,8332,179713.890275277,374484.545433879,25 +8828,15483,179713.817138512,374485.223190296,25 +8829,8335,179713.744001754,374485.900946721,25 +8830,8336,179713.668463573,374485.668859039,22.1656999999977 +8831,8329,179713.480780236,374487.408125691,22.1698000000033 +8832,8330,179713.59772823,374487.256459568,25 +8833,15476,179714.244105078,374480.334373545,22.1532000000007 +8834,15478,179714.680344012,374477.297312573,25 +8835,24013,179714.781294733,374476.401369844,25 +8836,8341,179714.867688015,374475.634625141,25 +8837,24014,179714.984880742,374474.59453382,25 +8838,8340,179714.954097297,374473.974558469,22.1404000000039 +8839,24011,179715.031690501,374474.179094881,25 +8840,8339,179715.102073468,374473.554442503,25 +8841,8338,179715.043546308,374473.180694021,22.1389000000054 +8842,24012,179715.152818773,374473.104075391,25 +8843,6545,179715.203564081,374472.653708279,25 +8844,8343,179715.241753105,374471.421598811,22.135500000004 +8845,4495,179702.500500005,374467.500599999,22.4100000000035 +8846,4496,179697.500800002,374467.500700001,22.4199999999983 +8847,4491,179697.500700001,374462.5002,22.3800000000047 +8848,10172,179693.233251762,374464.508444376,22.4569999999949 +8849,10171,179693.122618757,374465.507141333,22.4535000000033 +8850,10175,179692.923771564,374467.302158058,22.4472999999998 +8851,9583,179692.539296195,374470.772861857,22.4351000000024 +8852,10174,179692.857891291,374466.988634489,25 +8853,10173,179693.072382804,374465.052383143,25 +8854,10170,179693.205840737,374463.847635675,25 +8855,10159,179693.321555432,374462.80305947,25 +8856,10169,179693.338858448,374462.646862186,25 +8857,10161,179693.445551757,374461.683723528,25 +8858,10168,179693.484811366,374461.32932033,25 +8859,10164,179693.636525132,374459.95977436,25 +8860,10166,179693.785340827,374458.616389755,25 +8861,4498,179694.022999998,374456.471000001,25 +8862,10165,179693.918105226,374458.326192632,22.4786000000022 +8863,4501,179694.122400004,374456.482000001,22.4850000000006 +8864,10158,179694.271487303,374455.136163611,22.4897000000055 +8865,4489,179697.500599999,374457.500500001,22.3600000000006 +8866,9581,179694.420574602,374453.790327221,22.4943999999959 +8867,10157,179694.301209223,374453.959557999,25 +8868,10156,179694.567335356,374451.557192128,25 +8869,10155,179694.676286213,374451.481975,22.5023999999976 +8870,10167,179693.815957841,374459.248288952,22.4753000000055 +8871,10162,179693.713810455,374460.170385271,22.472099999999 +8872,10163,179693.600257833,374461.195437968,22.4685999999929 +8873,10160,179693.486705214,374462.220490668,22.4649999999965 +8874,9582,179693.343884766,374463.50974742,22.460500000001 +8875,10189,179690.002698064,374492.762046736,25 +8876,10205,179688.16629586,374509.387451272,25 +8877,10208,179688.031666532,374510.624072254,25 +8878,10202,179687.987299625,374511.031598944,25 +8879,10212,179687.621709421,374515.313608717,22.3264000000054 +8880,10221,179686.376189917,374525.830225997,25 +8881,10219,179686.204206921,374527.409944486,25 +8882,10217,179686.050304912,374528.823583335,25 +8883,10222,179685.941062026,374529.827014003,25 +8884,10214,179685.881000429,374530.3786989,25 +8885,10223,179685.763463117,374531.458316401,25 +8886,10225,179685.504224692,374533.839503728,25 +8887,10226,179685.19343229,374536.694230769,25 +8888,4599,179685.009,374538.388300005,25 +8889,10229,179684.618131947,374541.978569899,25 +8890,10243,179682.57559038,374560.696711883,25.0163999999932 +8891,10246,179682.760904606,374559.005956918,25.0121000000072 +8892,10248,179682.982356325,374556.985493649,25.006899999993 +8893,4646,179683.279000003,374554.278999999,25 +8894,10239,179683.694560483,374550.461920846,25 +8895,4643,179683.378400002,374554.289900005,22.3999999999942 +8896,10247,179683.106519539,374556.770476718,22.3972000000067 +8897,4612,179687.500300005,374557.500400003,22.5200000000041 +8898,4615,179687.500100002,374562.500500001,22.4499999999971 +8899,10244,179682.838976972,374559.211475346,22.3944999999949 +8900,10245,179682.733062454,374560.177815754,22.3934000000008 +8901,10241,179682.627147943,374561.144156162,22.3923000000068 +8902,10242,179682.50674608,374562.242675893,22.3910999999935 +8903,9592,179682.386344217,374563.341195613,22.3898000000045 +8904,10252,179682.266379431,374564.435727548,22.3886000000057 +8905,10240,179682.362117708,374562.644376617,25.0213999999978 +8906,10250,179682.085453328,374565.168584809,25.0277999999962 +8907,10253,179681.850676931,374567.310618732,25.0332999999955 +8908,10251,179682.146414641,374565.530259475,22.3874000000069 +8909,10254,179681.917097319,374567.622499552,22.3849999999948 +8910,10255,179681.689482197,374568.78131422,25.0371000000014 +8911,10257,179681.816637851,374568.539069362,22.3840000000055 +8912,10256,179681.716178376,374569.455639165,22.3830000000016 +8913,10258,179681.578576174,374569.793189604,25.0396000000037 +8914,10260,179681.453008398,374570.938834783,25.0426000000007 +8915,10259,179681.571339186,374570.777119581,22.3815000000031 +8916,4644,179681.426500004,374572.0986,22.3800000000047 +8917,10270,179681.204919647,374574.120249718,22.3776999999973 +8918,4647,179681.327,374572.088500001,25.0454999999929 +8919,10271,179681.098065976,374574.177229807,25.0507999999973 +8920,10269,179680.910190325,374575.891354498,25.0552000000025 +8921,10268,179680.983339287,374576.14189944,22.3754999999946 +8922,10265,179680.777417235,374578.020686317,22.3733000000066 +8923,10266,179680.68108242,374578.899623696,22.3723999999929 +8924,4625,179682.500300001,374582.500200003,22.429999999993 +8925,4626,179687.500200003,374582.500900004,22.570000000007 +8926,4630,179682.500700001,374587.500700004,22.3999999999942 +8927,4629,179687.500700004,374587.500500001,22.5599999999977 +8928,4627,179692.500200003,374587.500200003,22.320000000007 +8929,4654,179692.500700004,374582.500600006,22.3000000000029 +8930,8229,179702.62351618,374585.104920764,22.402700000006 +8931,8224,179702.683533452,374584.577423457,22.3991999999998 +8932,8226,179702.407309305,374587.005183026,22.415399999998 +8933,4631,179692.500700004,374592.500300005,22.320000000007 +8934,4633,179687.501000002,374592.500700004,22.5299999999988 +8935,4662,179692.500700004,374597.500599999,22.2899999999936 +8936,4663,179697.500100005,374597.500599999,22.3899999999994 +8937,8215,179701.527996648,374594.487196323,22.4844000000012 +8938,15553,179701.622252483,374593.682226576,22.4676000000036 +8939,15552,179701.7122887,374593.773170672,25.0780999999988 +8940,6529,179701.6200516,374594.560894236,25.0777999999991 +8941,8214,179701.448845737,374596.023027077,25.0773000000045 +8942,8213,179701.313689608,374596.31743519,22.5225000000064 +8943,8205,179701.364201318,374596.745907567,25.0770000000048 +8944,8211,179701.180359043,374597.456113506,22.546199999997 +8945,8202,179701.043882955,374598.621655375,22.5705000000016 +8946,8207,179701.003020056,374598.97063534,22.5777999999991 +8947,6528,179701.131576642,374598.732569534,25.0763000000006 +8948,8209,179701.113733042,374598.884957522,25.0763000000006 +8949,8208,179701.095889434,374599.037345521,25.0761999999959 +8950,8203,179701.06020223,374599.342121512,25.0761000000057 +8951,8204,179701.180375002,374599.170187503,25.0886000000028 +8952,8210,179701.1996875,374599.00509375,25.0893000000069 +8953,4704,179701.306600004,374598.952,22.5200000000041 +8954,4695,179701.219000001,374598.840000004,25.0899999999965 +8955,23906,179701.792650003,374599.0143,22.5350000000035 +8956,4703,179702.278700005,374599.0766,22.5500000000029 +8957,23895,179702.229841892,374599.477640316,22.5506000000023 +8958,15308,179702.362724647,374599.213890895,25.0996000000014 +8959,23896,179702.341075853,374599.391595997,25.0993000000017 +8960,23893,179702.319427047,374599.569301102,25.099000000002 +8961,15313,179702.276129447,374599.924711313,25.0984000000026 +8962,15310,179702.180983778,374599.878680624,22.5512000000017 +8963,15315,179702.267693639,374599.993957017,25.0982999999978 +8964,15309,179702.083267547,374600.680761248,22.5525000000052 +8965,23899,179702.19202828,374600.615059309,25.097299999994 +8966,15307,179702.172662627,374600.774023142,25.0969999999943 +8967,15314,179701.98726679,374601.468760833,22.553700000004 +8968,15319,179702.068244409,374601.631144531,25.0956000000006 +8969,15321,179701.939266413,374601.862760633,22.5543000000034 +8970,8191,179701.025269561,374601.357139599,22.6088000000018 +8971,8193,179700.934394065,374602.134048991,22.6374999999971 +8972,8184,179701.891266033,374602.25676043,22.5549000000028 +8973,4705,179700.894699998,374602.473400004,22.6499999999942 +8974,8181,179701.822957072,374602.817458373,22.5558000000019 +8975,15326,179701.755063694,374603.374745172,22.556700000001 +8976,8183,179701.687170316,374603.932031982,22.5574999999953 +8977,15325,179701.819828283,374603.670278929,25.0920999999944 +8978,15327,179701.842411108,374603.484906819,25.0923999999941 +8979,15324,179701.864993937,374603.299534712,25.0926999999938 +8980,23921,179701.895938929,374603.045521442,25.093200000003 +8981,23903,179701.926883917,374602.791508168,25.0935999999929 +8982,6522,179701.955325246,374602.558046281,25.0939999999973 +8983,23902,179701.99037366,374602.270349894,25.0945000000065 +8984,15320,179702.011784829,374602.094595406,25.0948000000062 +8985,15322,179702.040182613,374601.861490976,25.0951999999961 +8986,8182,179701.774662625,374604.041023143,25.091499999995 +8987,23925,179701.738152828,374604.340715367,25.0910000000003 +8988,15330,179701.590885155,374604.722365994,22.5587999999989 +8989,4706,179700.597099997,374602.437300004,22.6499999999942 +8990,4667,179697.501000002,374602.500999998,22.3300000000017 +8991,4702,179701.494600005,374605.512699999,22.5599999999977 +8992,15329,179701.654461347,374605.027700491,25.0898000000016 +8993,23924,179701.683161117,374604.792117171,25.090200000006 +8994,15331,179701.701643031,374604.6404076,25.0905000000057 +8995,4665,179692.500799999,374602.500700001,22.2599999999948 +8996,8198,179700.860109799,374600.191126749,22.6031999999977 +8997,8196,179700.718971383,374601.396486171,22.6282999999967 +8998,8189,179700.902615879,374600.687940907,25.0755999999965 +8999,8199,179700.94572185,374600.319807198,25.0757000000012 +9000,8200,179700.967274833,374600.135740343,25.075800000006 +9001,6526,179700.988827817,374599.951673493,25.0758999999962 +9002,6527,179701.141750004,374599.500375003,25.0871999999945 +9003,23898,179701.161062501,374599.335281249,25.0878999999986 +9004,23897,179701.267182723,374599.288984727,22.5323999999964 +9005,8185,179701.227765445,374599.625969458,22.5448999999935 +9006,8186,179701.103125002,374599.830562502,25.0858000000007 +9007,15311,179701.17828181,374600.049013067,22.5605000000069 +9008,15312,179701.083812505,374599.995656248,25.0850999999966 +9009,6525,179701.064500004,374600.160750002,25.084400000007 +9010,8201,179701.045187499,374600.325843759,25.0837000000029 +9011,8187,179701.128798176,374600.472056676,22.5761000000057 +9012,8190,179701.025875006,374600.490937505,25.0829999999987 +9013,8188,179700.98725,374600.821125004,25.081600000005 +9014,15316,179701.07703387,374600.914598133,22.5924999999988 +9015,15317,179700.961582031,374601.040548783,25.0806000000011 +9016,8197,179700.847397618,374601.159516048,25.0754000000015 +9017,8192,179700.935914051,374601.259972561,25.079700000002 +9018,6523,179700.909999996,374601.481500003,25.078800000003 +9019,6524,179700.816403944,374601.424208324,25.0752999999968 +9020,8195,179700.762201976,374601.887104165,25.0752000000066 +9021,4697,179700.708000008,374602.350000005,25.0749999999971 +9022,8194,179700.844587296,374602.040683337,25.0764000000054 +9023,4696,179700.807000004,374602.362000003,25.0749999999971 +9024,4740,179692.500399999,374607.500300005,22.2400000000052 +9025,4733,179692.500700004,374612.500500001,22.25 +9026,4671,179687.500799999,374612.500799999,22.3500000000058 +9027,4673,179692.500300005,374617.500900004,22.3899999999994 +9028,8142,179699.131740376,374614.733292837,22.5339999999997 +9029,8136,179699.169327658,374614.293538954,22.5385999999999 +9030,8144,179699.296384253,374612.807035346,22.5540000000037 +9031,8148,179699.516549651,374611.4056434,25.0721000000049 +9032,6516,179699.431099307,374612.405286804,25.0702000000019 +9033,8156,179699.586045485,374611.763333965,25.0774999999994 +9034,6518,179699.538449224,374612.321603894,25.0788999999932 +9035,8171,179699.644080114,374612.259831943,22.4434000000037 +9036,8155,179699.686521415,374611.762060132,22.4784999999974 +9037,8170,179699.602885049,374611.565817956,25.0770000000048 +9038,8169,179699.717553176,374611.398104839,22.5041999999958 +9039,8174,179700.825356245,374611.800422974,22.3687999999966 +9040,8168,179700.880725242,374611.280216467,22.3846000000049 +9041,8154,179699.640043464,374611.129976463,25.0758999999962 +9042,8150,179699.619724616,374611.36830195,25.0764999999956 +9043,8152,179699.537912246,374611.15573255,25.0725999999995 +9044,8149,179699.559274826,374610.905821703,25.0730999999942 +9045,15352,179700.958977681,374611.489749528,25.0786999999982 +9046,23912,179700.972921476,374611.358753845,25.0789999999979 +9047,15349,179700.986865271,374611.227758165,25.0791999999929 +9048,6520,179701.026532561,374610.85510176,25.0798000000068 +9049,15347,179701.062503681,374610.517169259,25.0804000000062 +9050,15348,179701.068682987,374610.929874863,25.8420000000042 +9051,15346,179701.141667768,374610.244719274,25.8420000000042 +9052,15338,179701.226171382,374609.451428875,25.8420000000042 +9053,15339,179701.098474801,374610.179236755,25.0810000000056 +9054,8176,179701.170417041,374609.503371738,25.0822000000044 +9055,23911,179701.025069993,374611.339298368,25.8420000000042 +9056,15350,179700.981456999,374611.748721864,25.8420000000042 +9057,23913,179700.930308945,374612.22888191,25.8420000000042 +9058,15353,179700.879160892,374612.709041964,25.8420000000042 +9059,23909,179700.813149594,374613.328732882,25.8420000000042 +9060,15358,179700.79630062,374613.01802747,25.0761000000057 +9061,15360,179700.776281953,374613.206093907,25.075800000006 +9062,23910,179700.752551824,374613.429027837,25.0754000000015 +9063,15355,179700.718521297,374613.74872927,25.0749000000069 +9064,15364,179700.747138306,374613.948423807,25.8420000000042 +9065,15365,179700.682017412,374614.091666881,25.0742999999929 +9066,23915,179700.665510818,374614.714714088,25.8420000000042 +9067,23916,179700.620020613,374614.674099032,25.0733000000037 +9068,4692,179700.603000004,374614.833999999,25.073000000004 +9069,15366,179700.583883334,374615.481004365,25.8420000000042 +9070,4729,179700.478000004,374616.475000005,25.8420000000042 +9071,4707,179700.422999997,374616.519000001,25.8420000000042 +9072,6513,179699.099064402,374616.289606918,25.0629000000044 +9073,8134,179699.027545284,374617.126275431,25.0613000000012 +9074,8133,179698.980443105,374616.503401168,22.5157000000036 +9075,8135,179698.920355454,374617.206399016,22.5084000000061 +9076,4688,179698.786000002,374619.952000003,25.0559999999969 +9077,4698,179698.686500002,374619.942400005,22.4799999999959 +9078,8131,179698.628386986,374620.483041234,22.4790000000066 +9079,4675,179692.500700004,374622.500700001,22.4100000000035 +9080,8129,179698.467604026,374621.978848893,22.4762000000046 +9081,8122,179698.319542997,374623.356300943,22.4735999999975 +9082,8124,179698.191438306,374624.548093725,22.4713000000047 +9083,8123,179698.356894314,374623.944188543,25.0348999999987 +9084,8968,179698.428947154,374623.273844264,25.0384999999951 +9085,6512,179698.501000002,374622.603500001,25.0420000000013 +9086,8964,179699.393521521,374624.248200227,25.735400000005 +9087,8962,179699.825431969,374621.005468719,25.7801000000036 +9088,8132,179698.709764287,374620.66125961,25.0522999999957 +9089,8130,179698.633528575,374621.370519228,25.0485000000044 +9090,8963,179698.567264289,374621.987009615,25.045299999998 +9091,8967,179698.272590205,374624.728512544,25.0307999999932 +9092,8125,179698.183487646,374625.557479002,25.0264000000025 +9093,8965,179698.04911574,374626.807609245,25.0197999999946 +9094,8127,179697.914743822,374628.0577395,25.0132000000012 +9095,8970,179697.780371916,374629.307869751,25.0065999999933 +9096,4687,179697.646000002,374630.557999998,25 +9097,8121,179697.493905924,374631.940348569,25 +9098,4736,179697.546599999,374630.547200002,22.4600000000064 +9099,8120,179697.36861128,374632.164899096,22.4603999999963 +9100,6511,179697.402948119,374632.767043404,25 +9101,8119,179697.330775097,374633.423007626,25 +9102,8118,179697.231725026,374633.409027196,22.4606000000058 +9103,8117,179697.258602075,374634.078971852,25 +9104,8116,179697.091521185,374634.68330808,22.4609000000055 +9105,4681,179692.5009,374632.500600003,22.4600000000064 +9106,4683,179692.500200003,374637.500400003,22.4700000000012 +9107,4735,179687.500300005,374632.5009,22.3099999999977 +9108,4680,179687.500700004,374627.500600003,22.3000000000029 +9109,4679,179692.500700004,374627.500500001,22.4600000000064 +9110,8971,179697.677728575,374629.327275179,22.4622999999992 +9111,8128,179697.80885715,374628.107350357,22.4646000000066 +9112,8966,179697.923632938,374627.039559942,22.4665999999997 +9113,8126,179698.038408726,374625.971769534,22.4685999999929 +9114,4674,179687.500100002,374622.500599999,22.3099999999977 +9115,4677,179682.500400003,374627.500200003,22.5500000000029 +9116,4676,179682.500300001,374622.500900004,22.5500000000029 +9117,4678,179677.500500005,374627.500500001,22.3899999999994 +9118,4739,179682.500800002,374632.500600003,22.5299999999988 +9119,4682,179677.500599999,374632.500799999,22.3800000000047 +9120,4741,179675.174900003,374629.364400003,22.3600000000006 +9121,10380,179675.263923325,374628.552503597,22.3549999999959 +9122,10378,179675.352946643,374627.740607195,22.3500000000058 +9123,9604,179675.456018731,374626.800585497,22.344299999997 +9124,10373,179675.562211473,374625.832103282,22.3383000000031 +9125,10372,179675.66840421,374624.863621067,22.3323999999993 +9126,10371,179675.439175498,374626.036442377,25.0503000000026 +9127,10374,179675.616931334,374624.415388707,25.0559000000067 +9128,10377,179675.292505179,374627.374009985,25.0458000000071 +9129,10379,179675.15232259,374628.652412407,25.0414000000019 +9130,4725,179675.075500004,374629.353,25.0390000000043 +9131,10386,179675.039074622,374630.603023175,22.3675999999978 +9132,10387,179674.927990835,374630.69821756,25.0344000000041 +9133,10385,179674.818661168,374631.695255112,25.0310000000027 +9134,10384,179674.903249249,374631.841646347,22.3751999999949 +9135,10382,179674.773319069,374633.026509814,22.382500000007 +9136,9605,179674.641147569,374634.231812447,22.3898999999947 +9137,4686,179677.500400003,374637.500800006,22.3999999999942 +9138,4684,179682.5002,374637.500500005,22.5099999999948 +9139,4745,179677.500300001,374642.500100005,22.3999999999942 +9140,10391,179674.01399345,374639.950976554,22.4250000000029 +9141,4779,179673.924400002,374640.767999999,22.429999999993 +9142,10396,179673.487357762,374644.684644345,22.4379000000044 +9143,4752,179677.500300001,374647.500900004,22.4400000000023 +9144,10397,179673.374150075,374645.699178372,22.4398999999976 +9145,10393,179673.260942396,374646.713712402,22.4419999999955 +9146,10394,179673.128795154,374647.897977233,22.444399999993 +9147,4750,179682.500700001,374647.500600006,22.4499999999971 +9148,4746,179682.500900004,374642.500300001,22.4900000000052 +9149,4748,179687.5009,374642.500700001,22.3300000000017 +9150,4685,179687.500500001,374637.500500005,22.320000000007 +9151,4747,179692.500700004,374642.500300001,22.4199999999983 +9152,8107,179696.42417866,374640.74863283,22.4622999999992 +9153,8105,179696.546011034,374639.641325973,22.4619999999995 +9154,8106,179696.575647712,374640.286189061,25 +9155,8978,179696.644465309,374639.660721499,25 +9156,8104,179696.713282913,374639.035253935,25 +9157,8103,179696.673350066,374638.483970437,22.4618000000046 +9158,8973,179696.784814466,374638.385119822,25 +9159,6510,179696.85634603,374637.734985717,25 +9160,8112,179696.803408612,374637.301897842,22.4615000000049 +9161,8115,179696.940421659,374636.056617331,22.4612000000052 +9162,8114,179696.992996555,374636.493000135,25 +9163,8975,179697.061321817,374635.872007351,25 +9164,8113,179697.12964708,374635.251014564,25 +9165,8974,179696.923633534,374637.123424888,25 +9166,8977,179696.502291419,374640.952907681,25 +9167,8108,179696.417556446,374641.723044626,25 +9168,8980,179696.317167338,374642.635458473,25 +9169,8109,179696.285933174,374642.005114656,22.4625999999989 +9170,8981,179696.202567145,374642.762809537,22.4627000000037 +9171,8111,179696.11920112,374643.520504419,22.4628999999986 +9172,8110,179696.216778222,374643.547872312,25 +9173,8983,179696.01790056,374644.441202212,22.4630999999936 +9174,8982,179696.116389114,374644.460286155,25 +9175,4774,179696.015999999,374645.372700002,25 +9176,6509,179695.936153259,374646.098404005,25 +9177,4777,179695.916600004,374645.361900005,22.4633000000031 +9178,8101,179695.783719551,374646.569612082,22.4636000000028 +9179,4751,179692.5009,374647.500700001,22.4400000000023 +9180,8099,179695.638507798,374647.88939989,22.4639000000025 +9181,8092,179695.525347531,374648.917880889,22.4640999999974 +9182,8094,179695.421086989,374649.865474928,22.4643000000069 +9183,8093,179695.579399589,374649.340835243,25 +9184,6508,179695.696613036,374648.275516015,25 +9185,8100,179695.767269649,374647.633338511,25 +9186,8102,179695.851711448,374646.865871254,25 +9187,23887,179695.50411753,374650.025052182,25 +9188,8098,179695.332209621,374650.673255697,22.4645000000019 +9189,8096,179695.42883547,374650.709269132,25 +9190,8095,179695.278271347,374652.077703018,25 +9191,8097,179695.157665215,374652.259639438,22.4649000000063 +9192,8985,179695.185861256,374652.91759171,25 +9193,8988,179695.090291452,374652.871980127,22.4649999999965 +9194,4756,179692.500300005,374652.500700004,22.3999999999942 +9195,8990,179695.04264177,374653.305054355,22.4651000000013 +9196,8987,179695.022917692,374653.484320819,22.465200000006 +9197,8091,179694.888170168,374654.709002197,22.465400000001 +9198,4753,179687.5009,374652.500500001,22.3500000000058 +9199,4749,179687.5009,374647.500399999,22.3300000000017 +9200,8086,179694.707815304,374656.348195579,22.4658000000054 +9201,8994,179694.83647171,374656.093092527,25 +9202,6507,179694.977143105,374654.814570788,25 +9203,8986,179695.081502181,374653.866081245,25 +9204,8989,179695.133681715,374653.391836479,25 +9205,8087,179694.776619792,374656.637069341,25 +9206,8992,179694.703755792,374657.299309216,25 +9207,8089,179694.607810441,374658.171328887,25 +9208,8996,179694.496905223,374659.179314442,25 +9209,4773,179694.386000004,374660.187300004,25 +9210,8997,179694.392580733,374659.213271692,22.466499999995 +9211,4776,179694.286600001,374660.1765,22.4667000000045 +9212,8090,179694.498561464,374658.250043381,22.4663 +9213,8993,179694.569498014,374657.605321568,22.4661000000051 +9214,8088,179694.640434559,374656.960599754,22.4660000000003 +9215,9606,179674.103586897,374639.133953109,22.4199999999983 +9216,10389,179674.352761645,374636.861670684,22.4060000000027 +9217,10388,179674.237461258,374636.995538082,25.0129000000015 +9218,10381,179674.589144573,374633.78834372,25.0237999999954 +9219,10383,179674.705920931,374632.723395612,25.0274999999965 +9220,10376,179675.793990161,374622.800691564,25.061400000006 +9221,4724,179676.326000005,374617.949000005,25.0779999999941 +9222,4716,179676.425299998,374617.960700005,22.2899999999936 +9223,10370,179676.870541006,374613.625450954,25.088699999993 +9224,10367,179676.996457279,374612.625700422,25.0911000000051 +9225,10336,179676.500851206,374611.123294719,25.1025999999983 +9226,10366,179677.130522974,374611.561245006,25.0936999999976 +9227,10334,179676.725000001,374611.189250004,25.1000000000058 +9228,4737,179677.064000003,374611.289000005,25.096000000005 +9229,9603,179677.211082768,374611.721942175,22.3133999999991 +9230,10369,179677.093929406,374612.652086537,22.3098999999929 +9231,10368,179676.976776056,374613.582230907,22.3064000000013 +9232,4670,179682.500599999,374612.500200003,22.4400000000023 +9233,4672,179682.500900004,374617.500400003,22.5099999999948 +9234,4669,179687.500500001,374607.500100002,22.3899999999994 +9235,4668,179682.500800002,374607.500100002,22.4100000000035 +9236,4666,179682.500900004,374602.500800002,22.3999999999942 +9237,10321,179676.514096785,374604.548486337,22.3647000000055 +9238,10322,179676.701422911,374602.864527486,22.3793000000005 +9239,10728,179676.79508597,374602.022548065,22.3867000000027 +9240,4709,179678.740100008,374599.4778,22.3399999999965 +9241,9598,179676.888749033,374601.180568635,22.3940000000002 +9242,10320,179676.762983132,374601.406475466,25.1082000000024 +9243,10727,179676.716391888,374601.825296603,25.1083999999973 +9244,10729,179676.693096261,374602.034707174,25.1085000000021 +9245,10726,179676.669800635,374602.244117741,25.1086000000068 +9246,10724,179676.576618142,374603.081760023,25.1089000000065 +9247,10323,179676.443277393,374604.280395534,25.1094000000012 +9248,10721,179676.360266212,374605.026605181,25.1097000000009 +9249,10722,179676.301733308,374605.552773058,25.1098999999958 +9250,10712,179676.277255032,374605.772814829,25.1100000000006 +9251,10734,179677.035436776,374599.861926477,22.4054999999935 +9252,4710,179678.441600002,374599.456700005,22.3399999999965 +9253,10733,179677.182124518,374598.543284323,22.4170000000013 +9254,10739,179678.491992317,374598.799798269,22.357799999998 +9255,10741,179678.576269373,374599.008537933,25.1036000000022 +9256,10301,179678.59432774,374598.773143347,25.1040000000066 +9257,10740,179678.614097286,374598.515443113,25.1043999999965 +9258,10295,179678.542384639,374598.142896526,22.3757000000041 +9259,10297,179678.633866843,374598.257742871,25.104800000001 +9260,10303,179678.65774953,374597.94642688,25.1052999999956 +9261,10306,179678.59277695,374597.485994793,22.3935000000056 +9262,10307,179678.688925028,374597.540047679,25.1059999999998 +9263,10309,179678.711805042,374597.241801888,25.1064000000042 +9264,10305,179678.722088806,374597.107750908,25.1067000000039 +9265,9597,179678.643169265,374596.82909305,22.4113999999972 +9266,10735,179677.328812256,374597.224642158,22.4284999999945 +9267,4712,179677.475499999,374595.905999999,22.4400000000023 +9268,10732,179677.229495782,374597.212868866,25.1065999999992 +9269,10737,179677.205718689,374597.426607542,25.1065999999992 +9270,10730,179677.160596449,374597.377743017,25.9513000000006 +9271,10736,179677.151743673,374597.911803301,25.1067999999941 +9272,10743,179677.11286762,374598.261270516,25.1070000000036 +9273,10731,179677.073991571,374598.61073773,25.1070999999938 +9274,10738,179677.255468383,374597.883963238,22.4228000000003 +9275,4720,179677.385000002,374595.815000001,25.1059999999998 +9276,10744,179677.401359312,374595.212328367,25.9502999999968 +9277,4649,179677.474000003,374594.559000004,25.9499999999971 +9278,10283,179679.209997769,374592.048022192,25.0936999999976 +9279,4648,179679.375,374589.898000002,25.0910000000003 +9280,10277,179679.466729399,374589.061086763,25.0889000000025 +9281,10274,179679.629093651,374587.579720899,25.0850999999966 +9282,9594,179679.700286496,374587.848186739,22.3622999999934 +9283,10275,179679.841748938,374586.557515021,22.3638000000064 +9284,10273,179680.13897229,374583.845715478,22.3668000000034 +9285,10276,179679.740650937,374586.561903555,25.0825000000041 +9286,10272,179680.049264904,374583.746196318,25.0752999999968 +9287,10261,179680.371277459,374580.80824415,25.0678000000044 +9288,10264,179680.556781452,374579.115757786,25.0635000000038 +9289,10262,179680.584747598,374579.778561071,22.3714000000036 +9290,10263,179680.481046803,374580.724704012,22.370299999995 +9291,9593,179680.377346009,374581.670846954,22.369200000001 +9292,10278,179679.587443247,374588.877743371,22.3611999999994 +9293,4645,179679.474600002,374589.907300003,22.3600000000006 +9294,4634,179682.500900004,374592.500799999,22.3800000000047 +9295,10282,179679.3022907,374592.152481999,22.3552999999956 +9296,10281,179679.115564663,374593.278510302,25.0953000000009 +9297,10280,179679.193249702,374593.573280971,22.3522999999986 +9298,10284,179679.047508828,374594.165295575,25.0963999999949 +9299,10285,179679.1400197,374594.266865347,22.3509000000049 +9300,10279,179679.024871457,374594.460266456,25.0967999999993 +9301,9595,179679.086789705,374594.960449714,22.3494000000064 +9302,10286,179678.969167266,374595.186106559,25.0976999999984 +9303,10318,179677.958540138,374595.75439804,25.1071999999986 +9304,4719,179678.833000001,374595.662000004,25.1089999999967 +9305,10290,179678.93026581,374595.693002686,25.0982999999978 +9306,10288,179679.023211703,374595.788868003,22.3476999999984 +9307,10317,179678.919592205,374595.832082558,25.0984999999928 +9308,10291,179678.908918604,374595.971162431,25.0987000000023 +9309,10287,179678.886669856,374596.261069454,25.0991000000067 +9310,9596,179678.959633708,374596.617286295,22.346000000005 +9311,4660,179682.500599999,374597.5002,22.3699999999953 +9312,4661,179687.500600003,374597.500300001,22.4700000000012 +9313,4664,179687.500399999,374602.500300001,22.429999999993 +9314,10294,179678.867361788,374597.819584951,22.3435000000027 +9315,10299,179678.803730898,374598.648692485,22.3417000000045 +9316,10300,179678.681794379,374598.930650394,25.1024000000034 +9317,4717,179678.648000002,374599.370999999,25.1030000000028 +9318,4718,179678.548999999,374599.364,25.1030000000028 +9319,10302,179678.698691573,374598.710475598,25.1021999999939 +9320,10298,179678.71558876,374598.490300793,25.1018999999942 +9321,10296,179678.760616701,374597.90357488,25.1010999999999 +9322,10308,179678.775083739,374597.715065643,25.1009000000049 +9323,10304,179678.789550774,374597.526556406,25.1006999999954 +9324,10293,179678.818484843,374597.149537925,25.1002000000008 +9325,10311,179678.83856158,374596.887932848,25.0999000000011 +9326,10292,179678.858638313,374596.626327779,25.0994999999966 +9327,10310,179678.749649808,374596.748487376,25.1071999999986 +9328,10312,179678.742158193,374596.846142173,25.1070999999938 +9329,10289,179678.683634631,374596.30159653,22.4257000000071 +9330,10313,179678.777479082,374596.385726955,25.107799999998 +9331,10315,179678.791732997,374596.199924145,25.1080999999976 +9332,10314,179678.87265408,374596.443698611,25.0993000000017 +9333,4711,179678.724100001,374595.774100002,22.4400000000023 +9334,10316,179678.818138663,374595.855720703,25.108699999997 +9335,10319,179678.099800002,374595.840049997,22.4400000000023 +9336,159,179687.500200003,374617.500500005,22.3300000000017 +9337,10375,179675.892867066,374622.816510487,22.3197999999975 +9338,8137,179699.205988992,374615.038746443,25.065300000002 +9339,8143,179699.233093809,374614.721660025,25.0659000000014 +9340,6514,179699.260198615,374614.404573601,25.0665000000008 +9341,4691,179699.339000002,374614.660999998,25.0850000000064 +9342,6519,179699.359821044,374614.416784201,25.084400000007 +9343,8166,179699.270879906,374614.279618174,25.0666999999958 +9344,8165,179699.377240777,374614.212463152,25.0837999999931 +9345,8164,179699.462177392,374614.393273778,22.2927999999956 +9346,8141,179699.394660521,374614.008142099,25.0832999999984 +9347,8162,179699.514325101,374613.781660624,22.3359999999957 +9348,8167,179699.982188035,374614.648117431,22.2799999999988 +9349,15359,179700.572138708,374614.179469034,22.2964999999967 +9350,4734,179700.5145,374614.721000001,22.2799999999988 +9351,8138,179699.971000001,374614.747500002,25.0789999999979 +9352,4701,179699.446700003,374614.5748,22.2799999999988 +9353,15356,179700.629777417,374613.63793806,22.3129000000044 +9354,15361,179699.557981957,374613.269632183,22.3720999999932 +9355,15363,179700.649007205,374613.457269114,22.3184000000037 +9356,15357,179700.693907708,374613.035416979,22.3313000000053 +9357,8157,179699.601638809,374612.75760375,22.4082999999955 +9358,8146,179699.483974621,374612.960551947,25.0806000000011 +9359,15362,179699.45673731,374613.280025974,25.0813999999955 +9360,6515,179699.429500006,374613.599500004,25.0822000000044 +9361,6517,179699.345648959,374613.404930208,25.068299999999 +9362,8139,179699.302923787,374613.904751901,25.0673999999999 +9363,8163,179699.412080262,374613.80382105,25.0828000000038 +9364,8140,179699.2815612,374614.154662754,25.0669000000053 +9365,8145,179699.388374135,374612.905108504,25.0693000000028 +9366,8161,179699.399055425,374612.780153077,25.0694999999978 +9367,8160,179699.409736719,374612.65519765,25.0697999999975 +9368,8159,179699.497593269,374612.800814934,25.0801999999967 +9369,8158,179699.511211921,374612.641077925,25.0798000000068 +9370,8173,179700.758037988,374612.432895899,22.3496000000014 +9371,15354,179700.834042601,374612.663458548,25.0767000000051 +9372,23914,179700.859518193,374612.424126823,25.077099999995 +9373,8172,179700.88499378,374612.184795093,25.0776000000042 +9374,15351,179700.931090102,374611.751740888,25.0782999999938 +9375,10267,179680.728437427,374577.549616873,25.059500000003 +9376,10249,179682.972748257,374557.990976032,22.3957999999984 +9377,10231,179683.855315279,374548.985327631,25 +9378,10233,179683.93432603,374548.259584192,25 +9379,10327,179676.032848138,374608.874647118,22.3269 +9380,10329,179675.902158882,374609.144654099,25.1113000000041 +9381,10708,179675.930221759,374608.892389379,25.1111999999994 +9382,10710,179675.977219939,374608.469910264,25.1110000000044 +9383,10328,179676.086146343,374608.395525575,22.3310999999958 +9384,10326,179675.99480911,374608.311796524,25.1110000000044 +9385,4497,179695.874299999,374439.759,25 +9386,10148,179695.417040639,374443.886758029,25 +9387,10142,179696.285049085,374436.051298421,25 +9388,10145,179695.22538802,374445.61683888,25 +9389,10143,179695.127225991,374446.502964143,25 +9390,10141,179696.487345915,374434.225229204,25 +9391,10138,179696.662428129,374432.644817594,25 +9392,10128,179696.786611095,374431.523857374,25 +9393,10137,179696.840590227,374431.036604945,25 +9394,10131,179696.968352333,374429.883336961,25 +9395,10134,179697.122489672,374428.491988137,25 +9396,10136,179697.276447169,374427.102262691,25 +9397,4476,179697.725700002,374423.046999998,25 +9398,4471,179697.825100005,374423.057999998,22.6016999999993 +9399,10127,179698.056279674,374420.062801026,25 +9400,10126,179698.259671725,374418.226746444,25 +9401,10124,179698.437655397,374416.620057505,25 +9402,10122,179698.567387171,374415.448946774,25 +9403,10119,179698.692646116,374414.31821296,25 +9404,10121,179698.802230567,374414.237276208,22.632500000007 +9405,9577,179698.887970541,374413.46328688,22.6352000000043 +9406,10135,179697.373806592,374427.131682344,22.5874999999942 +9407,10132,179697.1794976,374428.88564793,22.5813000000053 +9408,4783,179669.615400001,374678.4822,25 +9409,10416,179669.857941642,374676.308613021,25 +9410,10415,179670.233027153,374672.94720671,25 +9411,10413,179670.551922504,374670.089360144,25 +9412,10403,179670.685955524,374668.888195571,25 +9413,10412,179670.784564417,374668.004491549,25 +9414,10414,179670.313024722,374673.132085655,22.4952000000048 +9415,9609,179669.954089887,374676.348754261,22.5016999999934 +9416,4769,179672.500700004,374677.500399999,22.4700000000012 +9417,4770,179677.500599999,374677.500399999,22.5200000000041 +9418,4835,179672.500600003,374682.500599999,22.3399999999965 +9419,4797,179677.500900004,374682.500900004,22.4600000000064 +9420,4800,179677.500700001,374687.500400003,22.4700000000012 +9421,4830,179682.500900004,374687.500300001,22.320000000007 +9422,4803,179682.500100005,374692.500300005,22.3399999999965 +9423,4802,179687.500100002,374692.500200003,22.3300000000017 +9424,4808,179682.500900004,374697.500799999,22.3500000000058 +9425,4809,179687.500799999,374697.500799999,22.3699999999953 +9426,161,179687.500300005,374702.500100005,22.3999999999942 +9427,4811,179682.500500005,374702.500500005,22.3399999999965 +9428,4810,179677.500400003,374702.5002,22.3500000000058 +9429,4806,179677.500300001,374697.500399999,22.3999999999942 +9430,4805,179672.500300005,374692.500799999,22.3600000000006 +9431,10427,179667.973917238,374694.094480563,22.5374000000011 +9432,9611,179668.314212166,374691.044857208,22.5313000000024 +9433,10426,179668.199901007,374691.167486642,25 +9434,10428,179667.884242274,374693.996327624,25 +9435,10424,179668.35984078,374689.734153327,25 +9436,10422,179668.52777756,374688.229153138,25 +9437,10423,179668.602831326,374688.458336957,22.5261000000028 +9438,10421,179668.813099124,374686.5739787,22.5222999999969 +9439,10420,179668.737086255,374686.353390101,25 +9440,9610,179669.059454836,374684.366211101,22.5178000000014 +9441,10417,179668.995537817,374684.03722303,25 +9442,10418,179669.227234524,374682.862618759,22.5148000000045 +9443,10419,179669.126611121,374682.862582572,25 +9444,4780,179669.7148,374678.4932,22.5059999999939 +9445,4799,179672.500200003,374687.5002,22.4199999999983 +9446,10425,179668.45852175,374689.751597084,22.5286999999953 +9447,4804,179677.500599999,374692.500500001,22.4400000000023 +9448,4812,179677.500500005,374707.500400003,22.3099999999977 +9449,4836,179682.500900004,374707.500900004,22.2700000000041 +9450,4814,179677.500500005,374712.500100002,22.2799999999988 +9451,4832,179682.500700001,374712.500600006,22.2299999999959 +9452,4816,179682.500300001,374717.500100002,22.25 +9453,8023,179688.242390949,374715.496612307,22.4976000000024 +9454,8029,179688.454080969,374713.580340166,22.4814000000042 +9455,8028,179688.538992599,374713.722344622,25 +9456,9036,179688.591493551,374713.247095834,25 +9457,9034,179689.466773346,374713.122499179,25.5369999999966 +9458,9035,179688.64399451,374712.771847054,25 +9459,8026,179688.732939027,374711.966704041,25 +9460,23852,179689.761513628,374710.370836169,25.5323000000062 +9461,23850,179693.079,374710.700750001,27.3000000000029 +9462,9030,179690.056253914,374707.619173154,25.5276000000013 +9463,9033,179689.093179476,374708.705737863,25 +9464,6500,179689.020672634,374709.362083815,25 +9465,23854,179688.948739234,374710.013238877,25 +9466,9031,179688.876805831,374710.664393928,25 +9467,23853,179688.804872427,374711.31554899,25 +9468,9032,179688.735372674,374711.03401576,22.4597999999969 +9469,8027,179688.609975051,374712.169147119,22.4694000000018 +9470,8025,179688.860770304,374709.898884412,22.4502000000066 +9471,8030,179689.034744579,374708.324024793,22.4367999999959 +9472,4823,179689.211300001,374706.7258,22.4232999999949 +9473,8037,179689.467272442,374704.408544004,22.4036999999953 +9474,9028,179689.538027436,374703.768016331,22.3983000000007 +9475,8035,179689.608782426,374703.127488658,22.3928000000014 +9476,8038,179689.704682935,374702.259324789,22.385500000004 +9477,8032,179689.728286304,374702.045649197,22.3837000000058 +9478,8039,179689.838364847,374701.049135052,22.3752999999997 +9479,6501,179689.906382389,374701.34409583,25 +9480,8040,179689.974450402,374700.727888409,25 +9481,4825,179690.789999999,374700.769000005,25.5160000000033 +9482,8042,179690.116332494,374699.44345573,25 +9483,9023,179690.941232234,374699.347248428,25.5195999999996 +9484,9024,179690.216909368,374698.532951556,25 +9485,6502,179690.317486245,374697.622447383,25 +9486,8043,179690.210786097,374697.677696422,22.3466999999946 +9487,9025,179690.110094029,374698.589237113,22.3543999999965 +9488,8041,179690.009401966,374699.500777803,22.3622000000032 +9489,23861,179690.314615201,374696.737756893,22.3387999999977 +9490,8048,179690.418444298,374695.797817368,22.3307999999961 +9491,23860,179690.421003751,374696.68532224,25 +9492,8047,179690.524521261,374695.748197097,25 +9493,9022,179690.66756542,374694.453244314,25 +9494,8046,179690.597743854,374694.174662314,22.3171000000002 +9495,8044,179690.665963974,374693.557082221,22.3117999999959 +9496,9018,179690.743281987,374692.857141107,22.3059000000067 +9497,4824,179690.820600003,374692.157200001,22.3000000000029 +9498,9020,179690.924587324,374691.184952486,22.3095999999932 +9499,8056,179691.028574649,374690.212704975,22.3193000000028 +9500,4801,179687.500799999,374687.500800002,22.3500000000058 +9501,9014,179691.118315309,374689.373659194,22.3276000000042 +9502,8054,179691.208055958,374688.534613419,22.3359000000055 +9503,9012,179691.282200441,374687.841386713,22.3426999999938 +9504,8057,179691.356344927,374687.148160014,22.3496000000014 +9505,8052,179691.423411477,374686.521109704,22.3558000000048 +9506,8049,179691.56206587,374685.224736419,22.3687000000064 +9507,4796,179687.500100002,374682.500599999,22.3800000000047 +9508,8059,179691.704527203,374683.892769516,22.3818000000028 +9509,23868,179691.785222296,374683.13829679,22.3892999999953 +9510,8060,179691.865917388,374682.383824069,22.3968000000023 +9511,8061,179692.05889022,374681.519748669,25 +9512,6503,179691.950302318,374682.535010044,25 +9513,4833,179692.853000008,374681.374500003,25.5644999999931 +9514,23865,179692.508406155,374684.614066359,25.5564000000013 +9515,23867,179691.844617747,374683.523126248,25 +9516,8051,179691.768682912,374684.23309214,25 +9517,23866,179691.677873209,374685.082133185,25 +9518,8050,179691.587063506,374685.931174237,25 +9519,9010,179692.163812302,374687.853632715,25.5482999999949 +9520,23864,179695.607875004,374688.316325001,27.3025000000052 +9521,23863,179696.06075,374683.902649999,27.2949999999983 +9522,23869,179697.656163044,374679.403958756,27.213699999993 +9523,23862,179696.149000004,374692.863000005,27.2367999999988 +9524,4837,179695.155000001,374692.73,27.3099999999977 +9525,23856,179696.062187981,374693.796484649,27.2372999999934 +9526,23858,179694.809000004,374695.725125,27.3074999999953 +9527,9021,179691.45992044,374694.471000992,25.5317000000068 +9528,23859,179691.200576339,374696.90912471,25.5256999999983 +9529,23857,179694.462999996,374698.720250003,27.304999999993 +9530,9016,179691.781121865,374691.451349501,25.539300000004 +9531,9017,179690.825778138,374693.020973407,25 +9532,8045,179690.731556278,374693.873946808,25 +9533,4821,179690.920000009,374692.168000001,25 +9534,9019,179691.024830315,374691.187870875,25 +9535,8055,179691.129660618,374690.207741749,25 +9536,9013,179691.246777572,374689.112736512,25 +9537,8053,179691.339321241,374688.247483496,25 +9538,9011,179691.401256803,374687.668406185,25 +9539,8058,179691.46319237,374687.089328863,25 +9540,9015,179691.52512794,374686.510251548,25 +9541,4829,179693.771000002,374704.710499998,27.3000000000029 +9542,23855,179694.364,374712.057,27.2554999999993 +9543,23851,179692.733000003,374713.695875,27.3000000000029 +9544,9026,179690.434529338,374704.087635167,25.5215999999928 +9545,4820,179689.310699999,374706.736699998,25 +9546,8031,179689.165686317,374708.049391907,25 +9547,8036,179689.572545432,374704.366261013,25 +9548,9029,179689.615938641,374703.973430134,25 +9549,9027,179689.659331858,374703.58059926,25 +9550,8033,179689.746118285,374702.794937517,25 +9551,8034,179689.82625033,374702.06951667,25 +9552,4798,179682.500900004,374682.500900004,22.3300000000017 +9553,9037,179689.149168339,374716.087624796,25.5420000000013 +9554,4834,179692.386999998,374716.691000003,27.3000000000029 +9555,23849,179694.208631955,374713.633570883,27.2577000000019 +9556,4826,179689.043300003,374717.076000005,25.5436999999947 +9557,9038,179688.247818347,374716.358110234,25 +9558,9040,179688.199204441,374716.798172753,25 +9559,6499,179688.150590532,374717.238235276,25 +9560,8019,179688.071440578,374717.954715952,25 +9561,8021,179687.88637029,374719.630007979,25 +9562,9041,179688.6197966,374721.030007783,25.5503999999928 +9563,4819,179687.701300003,374721.305300005,25 +9564,6498,179687.426157754,374723.79611272,25 +9565,23846,179688.207448769,374724.879862361,25.5568999999959 +9566,23848,179687.341660727,374724.561048865,25 +9567,8017,179687.332713749,374723.731377456,22.5672999999952 +9568,9047,179687.22384927,374724.71690096,22.5757000000012 +9569,4840,179682.5002,374722.5009,22.3399999999965 +9570,8012,179687.114984803,374725.702424455,22.5840000000026 +9571,4844,179682.500300001,374727.500800002,22.3399999999965 +9572,8014,179686.970192146,374727.01319699,22.5951000000059 +9573,8013,179687.105298389,374726.700794101,25 +9574,23847,179687.185513228,374725.974623751,25 +9575,9046,179687.265728071,374725.248453412,25 +9576,9042,179687.795100946,374728.729716938,25.5633999999991 +9577,23844,179691.521499999,374725.234000001,27.3150000000023 +9578,23845,179691.088750001,374729.505500004,27.3224999999948 +9579,9048,179687.421300236,374732.21967924,25.5693000000028 +9580,4876,179690.655999999,374733.777000006,27.3300000000017 +9581,23843,179692.772058465,374728.210956898,27.2397000000055 +9582,4877,179688.925000001,374750.863000005,27.3699999999953 +9583,9059,179686.131145775,374744.264486697,25.5898000000016 +9584,9064,179685.695286445,374748.333621677,25.5966999999946 +9585,7997,179685.090014402,374745.137370344,25 +9586,7995,179684.858871821,374747.274286572,25 +9587,9065,179684.739657555,374748.376424074,25 +9588,7994,179684.752874952,374747.324303895,22.5400999999983 +9589,9066,179684.632971901,374748.432802334,22.5276000000013 +9590,6495,179684.620443292,374749.47856158,25 +9591,7990,179684.513068855,374749.54130077,22.5149999999994 +9592,7993,179684.55090747,374750.121421181,25 +9593,7992,179684.42155863,374750.387308817,22.5053999999946 +9594,4856,179682.500900004,374747.500599999,22.320000000007 +9595,4858,179677.500700001,374752.500400003,22.2700000000041 +9596,4867,179684.242900003,374752.039000005,22.486699999994 +9597,7991,179684.481371649,374750.764280789,25 +9598,4865,179684.342300002,374752.050000004,25 +9599,9068,179684.171016231,374753.63361131,25 +9600,9069,179684.06638873,374753.67094231,22.468200000003 +9601,7988,179683.999732453,374755.217222612,25 +9602,7989,179683.889877465,374755.302884616,22.4496999999974 +9603,23839,179683.91409057,374756.009028267,25 +9604,9073,179683.73887118,374756.699019589,22.4339000000036 +9605,4862,179677.500599999,374757.500500001,22.1600000000035 +9606,7987,179683.587864887,374758.09515455,22.4180000000051 +9607,9076,179683.742806792,374757.592639573,25 +9608,9072,179683.828448676,374756.800833926,25 +9609,23838,179684.833256062,374756.13188719,25.573000000004 +9610,9075,179684.503479995,374759.09581909,25.5610000000015 +9611,7984,179683.657164905,374758.38444522,25 +9612,9074,179683.53129987,374759.548135675,25 +9613,9070,179684.421947468,374759.828609861,25.5580999999947 +9614,23836,179687.945803046,374759.81073777,27.360400000005 +9615,23840,179684.094907641,374762.76794916,25.546199999997 +9616,4927,179686.895000003,374769.412800003,27.3500000000058 +9617,23835,179689.769691505,374758.618367843,27.2568000000028 +9618,9077,179683.767867826,374765.707288451,25.5342999999993 +9619,4924,179683.491300005,374768.193000004,25.5243000000046 +9620,7980,179682.757669125,374766.700771067,25 +9621,4922,179682.592700001,374768.226,25 +9622,7975,179682.503277712,374769.052710328,25 +9623,4923,179682.493299998,374768.215,22.3032999999996 +9624,7974,179682.400452405,374769.073371965,22.2936000000045 +9625,4900,179677.500500005,374767.500400003,22.320000000007 +9626,7981,179682.673817992,374766.54601334,22.3221999999951 +9627,9078,179682.846890181,374765.875874083,25 +9628,7979,179682.806105573,374765.322943028,22.3361000000004 +9629,7977,179682.922638249,374765.175542131,25 +9630,7982,179683.002895262,374763.503515679,22.3567000000039 +9631,4873,179677.500400003,374762.500500001,22.1600000000035 +9632,7976,179683.094567537,374762.655955829,22.3662999999942 +9633,7983,179683.25111375,374761.20860124,22.3827000000019 +9634,6494,179683.2525765,374762.125084251,25 +9635,9071,179683.353723597,374761.189924501,25 +9636,7985,179683.454870701,374760.254764739,25 +9637,7986,179683.413854197,374759.703977644,22.3997999999992 +9638,23841,179683.17607021,374762.832426321,25 +9639,7978,179683.08760738,374763.650313191,25 +9640,4872,179672.500799999,374757.500600003,22.2599999999948 +9641,4860,179672.500200003,374752.500700001,22.3000000000029 +9642,4855,179672.500600003,374747.500599999,22.3399999999965 +9643,4859,179667.500700004,374752.500700001,22.3899999999994 +9644,4854,179667.500300005,374747.500500005,22.3899999999994 +9645,4853,179672.500200003,374742.501000002,22.3800000000047 +9646,9616,179662.37014281,374744.429030187,22.6294000000053 +9647,10479,179662.088510707,374746.984416757,22.6319999999978 +9648,10469,179662.499565583,374743.254713729,22.6282000000065 +9649,4850,179672.500500001,374737.500100002,22.4199999999983 +9650,4875,179677.500599999,374742.500200003,22.2100000000064 +9651,4852,179677.500300001,374737.500700004,22.2899999999936 +9652,4848,179672.500200003,374732.500900004,22.4499999999971 +9653,4846,179677.500800002,374732.500400003,22.3099999999977 +9654,4843,179672.500500001,374727.500700001,22.4499999999971 +9655,4842,179677.500700001,374727.500500005,22.3000000000029 +9656,4847,179682.500800002,374732.500500005,22.3600000000006 +9657,4849,179682.5002,374737.5,22.3999999999942 +9658,4868,179685.992600005,374735.863100003,22.6699999999983 +9659,8004,179685.928967644,374736.451378357,22.6633000000002 +9660,9058,179686.043531973,374736.322087571,25 +9661,4866,179686.092,374735.874000005,25 +9662,8008,179686.290505428,374734.076966494,25 +9663,8009,179686.196563896,374734.016664721,22.6543999999994 +9664,8007,179686.271833394,374733.335268263,22.6486000000004 +9665,6497,179686.385655228,374733.215592705,25 +9666,9052,179686.344021805,374732.68176426,22.6431000000011 +9667,9051,179686.455565974,374732.582703412,25 +9668,4869,179687.296700008,374733.383000001,25.571299999996 +9669,9049,179686.525476728,374731.949814111,25 +9670,8011,179686.665298223,374730.684035517,25 +9671,8010,179686.560587015,374730.721252248,22.6264999999985 +9672,9050,179686.416210208,374732.028260253,22.6374999999971 +9673,8016,179686.78641421,374728.676893767,22.6092000000062 +9674,9044,179686.878303181,374727.845045377,22.6021000000037 +9675,9045,179686.940298326,374728.194509629,25 +9676,9043,179686.995298348,374727.696604449,25 +9677,8015,179686.885298312,374728.692414809,25 +9678,9053,179686.900354151,374737.0832415,25.5776000000042 +9679,8005,179685.995063942,374736.770175125,25 +9680,8003,179685.898127895,374737.666350257,25 +9681,9056,179685.801191837,374738.56252538,25 +9682,8000,179685.704255782,374739.458700504,25 +9683,9054,179685.51270638,374741.229577314,25 +9684,9063,179685.416931681,374742.11501573,25 +9685,6496,179685.321156979,374743.000454128,25 +9686,9060,179685.237117894,374743.777396545,25 +9687,9062,179685.163566146,374744.45738345,25 +9688,9061,179685.080448601,374744.295899842,22.5743999999977 +9689,7998,179684.979248155,374745.231493492,22.5638000000035 +9690,163,179682.500300001,374742.500200003,22.4900000000052 +9691,7996,179685.181649044,374743.360306181,22.5850000000064 +9692,7999,179685.289044939,374742.367435809,22.5963000000047 +9693,9055,179685.436760988,374741.001807358,22.6117999999988 +9694,8001,179685.584477045,374739.636178911,22.6272000000026 +9695,9057,179685.678381048,374738.768040478,22.6371000000072 +9696,8002,179685.772285059,374737.899902049,22.646900000007 +9697,8006,179685.911800578,374736.61008716,22.661500000002 +9698,4857,179677.500800002,374747.500700001,22.2599999999948 +9699,4838,179672.500799999,374722.500600003,22.4700000000012 +9700,4839,179677.500999998,374722.5009,22.2799999999988 +9701,4817,179677.500300001,374717.500200003,22.2700000000041 +9702,8022,179687.80519025,374719.454264719,22.5310999999929 +9703,8020,179687.95086981,374718.135536179,22.5198999999993 +9704,8018,179688.018351182,374717.52467753,22.5148000000045 +9705,9039,179688.130371068,374716.51064492,22.5062000000034 +9706,4822,179687.601900008,374721.294500001,22.5467000000062 +9707,10447,179665.663924426,374714.795958303,22.5791000000027 +9708,9613,179665.822648849,374713.373516604,22.5763000000006 +9709,4880,179661.4859,374752.452200003,22.6374999999971 +9710,10487,179661.181338675,374755.215650588,22.6402999999991 +9711,10488,179661.009931363,374755.858092453,25 +9712,10489,179661.029058017,374756.597375885,22.6416999999929 +9713,10486,179660.80065522,374757.756957844,25 +9714,10485,179660.876777355,374757.979101181,22.6431000000011 +9715,4861,179667.500100002,374757.500399999,22.4600000000064 +9716,10482,179660.674232863,374759.816897545,22.6448999999993 +9717,4878,179662.500599999,374762.500200003,22.3800000000047 +9718,4864,179667.500700004,374762.500700004,22.4700000000012 +9719,4863,179672.500399999,374762.500100002,22.2700000000041 +9720,4902,179672.500799999,374767.500800006,22.2899999999936 +9721,4901,179667.500200003,374767.500500005,22.4799999999959 +9722,4905,179667.5009,374772.500900004,22.4900000000052 +9723,4903,179672.500799999,374772.500400003,22.2400000000052 +9724,4904,179677.500599999,374772.500500005,22.3500000000058 +9725,7971,179682.251671191,374770.448847771,22.2780000000057 +9726,7968,179682.09038328,374771.939947467,22.2611000000034 +9727,6493,179682.235010818,374771.532841314,25 +9728,7973,179682.324433118,374770.706130985,25 +9729,9079,179683.129455581,374771.445310965,25.5111999999936 +9730,7972,179682.413855411,374769.879420657,25 +9731,9080,179682.160048775,374772.225866437,25 +9732,23830,179682.82087731,374774.218857888,25.5 +9733,7969,179682.002187286,374773.685298033,25 +9734,23831,179681.952601161,374774.143722385,25 +9735,9085,179681.903015036,374774.602146737,25 +9736,23832,179681.853428919,374775.060571101,25 +9737,9083,179681.803842794,374775.518995453,25 +9738,9081,179682.512299042,374776.992404807,25.4888000000064 +9739,23828,179686.106093619,374776.621694356,27.3421999999991 +9740,23829,179686.500546813,374773.017247178,27.3460999999952 +9741,23827,179688.202075921,374773.934010826,27.2939000000042 +9742,164,179684.865000002,374787.962600004,27.3300000000017 +9743,9088,179681.801517852,374783.381010879,25.4630999999936 +9744,4925,179681.432699997,374786.695999999,25.4496999999974 +9745,9093,179681.077159464,374789.891495463,25.4367999999959 +9746,6491,179680.378837775,374788.464100532,25 +9747,7955,179680.549359083,374786.971788868,25 +9748,6492,179680.719880395,374785.479477204,25 +9749,7956,179680.451002773,374786.951555096,22.1254999999946 +9750,7957,179680.629395206,374785.390359525,22.1220999999932 +9751,4913,179677.500700001,374787.500500001,22.1699999999983 +9752,7954,179680.277017616,374788.474180497,22.1288000000059 +9753,9096,179680.173251837,374789.382283341,22.1306999999942 +9754,7939,179680.069486059,374790.290386178,22.1327000000019 +9755,7941,179679.896112546,374791.807658769,22.1358999999939 +9756,9094,179680.029247861,374791.52352529,25 +9757,7940,179680.136818089,374790.582127918,25 +9758,9095,179680.212141424,374789.922938276,25 +9759,9097,179680.291169174,374789.231329445,25 +9760,23822,179680.786834657,374792.500850841,25.4263000000064 +9761,23824,179679.975462742,374791.994223978,25 +9762,7943,179679.92167763,374792.464922674,25 +9763,23823,179679.843860604,374793.1459358,25 +9764,7952,179679.766043585,374793.826948926,25 +9765,9098,179680.496509854,374795.11020622,25.4156999999977 +9766,23826,179684.357499998,374792.600050002,27.3249999999971 +9767,23818,179683.850000001,374797.237500004,27.320000000007 +9768,23825,179686.314248901,374792.378127374,27.2703000000038 +9769,23820,179680.125938263,374798.440796442,25.4023000000016 +9770,23819,179683.342500001,374801.874950003,27.3150000000023 +9771,9101,179679.755366676,374801.771386672,25.3888000000006 +9772,4926,179679.374000005,374805.199000001,25.375 +9773,4953,179682.835000005,374806.512400001,27.3099999999977 +9774,23817,179685.467999998,374800.646000002,27.2597999999998 +9775,9106,179678.990603339,374808.53375835,25.3776000000071 +9776,23810,179682.432373498,374810.191533562,27.3059999999969 +9777,23811,179678.676736522,374811.263750892,25.379700000005 +9778,7930,179677.94364481,374809.775928598,25 +9779,23812,179677.839044873,374810.691374522,25 +9780,7931,179677.814346023,374810.026461553,22.1750000000029 +9781,23813,179677.714637846,374810.899090722,22.1769000000058 +9782,4933,179672.500500001,374812.500800002,22.3399999999965 +9783,9109,179677.614929661,374811.771719892,22.1787999999942 +9784,9113,179677.515221484,374812.644349061,22.180600000007 +9785,7919,179677.415513307,374813.516978227,22.1824999999953 +9786,7921,179677.308738828,374814.451450471,22.184500000003 +9787,7920,179677.498475034,374813.672000296,25 +9788,9112,179677.609767478,374812.697982375,25 +9789,9110,179678.362869699,374813.993743435,25.3818000000028 +9790,23809,179682.029746998,374813.870667119,27.3021000000008 +9791,23815,179677.990165189,374817.235502154,25.3843000000052 +9792,9115,179677.617460687,374820.477260869,25.3867999999929 +9793,166,179680.805000003,374825.062200002,27.2899999999936 +9794,23807,179682.629661288,374827.313201487,27.2287000000069 +9795,23806,179680.297499999,374829.699649997,27.2850000000035 +9796,9120,179676.852405299,374827.131521083,25.3919000000024 +9797,23800,179676.529881895,374829.936691623,25.394100000005 +9798,6487,179675.829376005,374828.279441863,25 +9799,23801,179675.687857967,374829.517932322,25 +9800,23803,179675.610491421,374830.19500313,25 +9801,7903,179675.533124875,374830.872073945,25 +9802,9122,179676.207358494,374832.741862159,25.3962999999931 +9803,9126,179675.341301963,374832.550805897,25 +9804,9127,179675.289087854,374833.007755961,25 +9805,7902,179675.236873746,374833.464706019,25 +9806,9123,179675.11546836,374834.527181275,25 +9807,23798,179675.842136804,374835.918404024,25.3987000000052 +9808,23799,179675.048269469,374835.115270108,25 +9809,9125,179674.981070593,374835.703358945,25 +9810,7905,179674.846672826,374836.879536606,25 +9811,9128,179675.476915121,374839.094945882,25.401199999993 +9812,23797,179679.790000003,374834.337100003,27.2799999999988 +9813,4952,179678.774999999,374843.612,27.2700000000041 +9814,23796,179680.808267694,374844.452106994,27.2087000000029 +9815,23804,179678.222750001,374847.930750005,27.25 +9816,23792,179677.670499995,374852.249499999,27.2299999999959 +9817,9138,179674.111632325,374850.969950538,25.4103999999934 +9818,23793,179673.77786082,374853.873072665,25.412599999996 +9819,9143,179673.444089312,374856.776194792,25.4147999999986 +9820,167,179676.566000003,374860.886999998,27.1900000000023 +9821,23791,179678.997901879,374861.500281304,27.1888000000035 +9822,9147,179673.091522325,374859.842798695,25.4171999999962 +9823,6484,179672.431834817,374858.40640416,25 +9824,9148,179672.358895447,374859.058956116,25 +9825,7883,179672.321130823,374858.496543624,22.1281000000017 +9826,7885,179672.212966543,374859.464241039,22.1220999999932 +9827,5008,179667.500200003,374857.500100005,22.2200000000012 +9828,5018,179672.477900002,374857.094000004,22.1367000000027 +9829,9145,179672.63611345,374855.678602077,22.145399999994 +9830,5007,179667.500200003,374852.5002,22.2100000000064 +9831,7893,179672.794326905,374854.263204154,22.1540999999997 +9832,9140,179672.936427176,374852.991956834,22.1619000000064 +9833,7891,179673.078527447,374851.720709514,22.1698000000033 +9834,7894,179673.25117578,374850.176175233,22.1793000000034 +9835,7889,179673.237006828,374851.203248061,25 +9836,9142,179673.357616216,374850.124273762,25 +9837,7890,179673.49384509,374848.905567251,25 +9838,7895,179673.428161509,374848.592838075,22.1889999999985 +9839,23795,179673.548392788,374848.417582344,25 +9840,7888,179673.500130352,374847.948995568,22.1929999999993 +9841,4943,179667.500500001,374847.5009,22.2700000000041 +9842,7886,179673.632999342,374846.760332443,22.2002999999968 +9843,7887,179673.712035876,374846.953627616,25 +9844,9133,179673.826683499,374845.927987423,25 +9845,9135,179673.791742247,374845.340198006,22.2090000000026 +9846,9136,179673.884815812,374845.407934472,25 +9847,9132,179674.722166948,374845.659561403,25.4063000000024 +9848,9134,179673.942948122,374844.887881517,25 +9849,6485,179674.059212744,374843.847775619,25 +9850,7896,179673.950485148,374843.920063548,22.2177999999985 +9851,4942,179667.500300005,374842.500800002,22.3000000000029 +9852,4968,179662.500300009,374847.500200003,22.2799999999988 +9853,4978,179662.500599999,374852.500600003,22.2599999999948 +9854,4977,179657.500400003,374852.500400007,22.5200000000041 +9855,4969,179657.500400003,374847.500600003,22.5200000000041 +9856,4967,179657.500400003,374842.500300005,22.4900000000052 +9857,4966,179662.500500005,374842.500100002,22.3300000000017 +9858,4965,179657.500500005,374837.500800002,22.4600000000064 +9859,4964,179662.500500005,374837.500400003,22.3600000000006 +9860,4962,179657.5002,374832.5002,22.4499999999971 +9861,4963,179662.500400003,374832.5002,22.3999999999942 +9862,4960,179662.500300009,374827.500500001,22.4400000000023 +9863,4959,179662.500900004,374822.5009,22.4799999999959 +9864,4938,179667.500600003,374827.500700004,22.3300000000017 +9865,4937,179667.500799999,374822.500799999,22.3099999999977 +9866,4934,179667.5009,374817.500900004,22.3099999999977 +9867,4936,179672.500500001,374822.500500001,22.3300000000017 +9868,4951,179672.500399999,374827.500799999,22.2899999999936 +9869,7914,179676.11315874,374824.914830636,22.2069999999949 +9870,7916,179676.290320832,374823.364402354,22.2035999999935 +9871,7918,179676.421486314,374822.216511898,22.2011999999959 +9872,4948,179676.484300006,374821.6668,22.1999999999971 +9873,9117,179676.610312957,374820.563955851,22.1975999999995 +9874,4935,179672.5009,374817.500900004,22.3699999999953 +9875,7925,179676.736325916,374819.461111691,22.1953000000067 +9876,9119,179676.842871562,374818.528642237,22.193299999999 +9877,7924,179676.837245241,374819.459002957,25 +9878,9118,179676.964017857,374818.34950443,25 +9879,7923,179676.949417196,374817.596172772,22.1913000000059 +9880,23816,179677.027404163,374817.794755172,25 +9881,7922,179677.090790473,374817.24000591,25 +9882,7926,179677.117643528,374816.123884294,22.1880999999994 +9883,7928,179677.277274087,374814.726824567,22.1851000000024 +9884,7927,179677.294632748,374815.456003107,25 +9885,9111,179677.19271161,374816.348004509,25 +9886,9114,179677.396553889,374814.564001709,25 +9887,4932,179667.5009,374812.500500005,22.3099999999977 +9888,4931,179672.5009,374807.500799999,22.320000000007 +9889,4947,179667.500600003,374807.500100002,22.3000000000029 +9890,4919,179672.500300005,374802.500600003,22.3300000000017 +9891,4918,179667.500300005,374802.500399999,22.3000000000029 +9892,4892,179662.500999998,374802.500600003,22.5299999999988 +9893,4917,179667.500500001,374797.500800002,22.320000000007 +9894,4891,179662.500100002,374797.500400003,22.429999999993 +9895,4914,179667.500100002,374792.500400003,22.3500000000058 +9896,4911,179667.500200003,374787.500500001,22.3800000000047 +9897,4912,179672.500200003,374787.500500001,22.1699999999983 +9898,4915,179672.500399999,374792.500400003,22.320000000007 +9899,4916,179672.500500001,374797.500100005,22.3099999999977 +9900,7944,179679.427193429,374795.911389101,22.1447000000044 +9901,7951,179679.60871524,374794.322806913,22.141300000003 +9902,7942,179679.610409539,374795.188975185,25 +9903,9100,179679.688226558,374794.507962059,25 +9904,9099,179679.5082242,374796.083246872,25 +9905,7950,179679.399577402,374797.034065727,25 +9906,7949,179679.324217532,374796.812579352,22.1466999999975 +9907,7945,179679.188745268,374798.879156265,25 +9908,23821,179679.129314613,374799.399261728,25 +9909,9104,179679.069883954,374799.919367198,25 +9910,9105,179678.957992144,374800.017588902,22.1535000000003 +9911,7946,179679.057341736,374799.148134116,22.1517000000022 +9912,7948,179678.858642533,374800.887043692,22.1554000000033 +9913,9103,179678.736271266,374801.957971845,22.1576999999961 +9914,4930,179678.613899998,374803.028900005,22.1600000000035 +9915,9102,179678.832161319,374801.999789063,25 +9916,7947,179678.95102264,374800.959578134,25 +9917,4920,179678.713300005,374803.039999999,25 +9918,7938,179678.642463394,374803.659953367,25 +9919,7937,179678.511861514,374803.921923622,22.1619000000064 +9920,6490,179678.571626786,374804.279906742,25 +9921,7936,179678.44680341,374805.372345772,25 +9922,7933,179678.321980026,374806.464784805,25 +9923,7935,179678.332712326,374805.489807121,22.1652999999933 +9924,7932,179678.160320956,374806.998547327,22.1684999999998 +9925,7934,179678.234293584,374807.232205883,25 +9926,6489,179678.146607138,374807.999626957,25 +9927,9107,179678.071012337,374808.66122346,25 +9928,7929,179677.992562298,374808.466742828,22.1717000000062 +9929,7953,179679.805834513,374792.597724047,22.1376000000018 +9930,4928,179672.500600003,374782.500799999,22.1300000000047 +9931,4910,179677.500500005,374782.500399999,22.2200000000012 +9932,4906,179672.500500001,374777.500300005,22.1600000000035 +9933,4909,179667.500300005,374782.500200003,22.4199999999983 +9934,4888,179662.500400003,374782.500100002,22.3699999999953 +9935,4887,179662.500599999,374777.500600006,22.320000000007 +9936,10512,179658.55056566,374779.086032033,22.664300000004 +9937,10516,179658.263209213,374781.69335838,22.6670000000013 +9938,10517,179658.177514426,374781.558071844,25 +9939,10514,179658.448304996,374779.101041708,25 +9940,10511,179658.582861159,374777.880140424,25 +9941,10509,179658.702615928,374776.793540273,25 +9942,10502,179658.846770708,374775.485545482,25 +9943,10505,179658.999660276,374774.098295301,25 +9944,10507,179659.165141929,374772.596790198,25 +9945,4895,179659.472000003,374769.8125,25 +9946,10506,179659.321579654,374772.090242911,22.6573000000062 +9947,4893,179659.571400002,374769.8235,22.6549999999988 +9948,10501,179659.674834117,374768.884986024,22.6540999999997 +9949,4885,179662.500800002,374767.500300001,22.3500000000058 +9950,9618,179659.778268229,374767.946472052,22.6530999999959 +9951,10500,179659.63793477,374768.306892227,25 +9952,10499,179659.880530909,374767.018587116,22.6521999999968 +9953,10498,179659.840850454,374766.465738475,25 +9954,10497,179659.982793592,374766.09070218,22.651199999993 +9955,10496,179659.987694297,374765.133352067,25 +9956,10493,179660.130891237,374764.746931635,22.649900000004 +9957,10495,179660.107132975,374764.04962616,25 +9958,10494,179660.25091406,374763.657899287,22.6487999999954 +9959,10491,179660.361423869,374762.655183721,22.6478000000061 +9960,10492,179660.216410886,374763.058093987,25 +9961,10490,179660.328153782,374762.044195749,25 +9962,9617,179660.465762027,374761.708466787,22.6468000000023 +9963,10481,179660.459151801,374760.855586328,25 +9964,10483,179660.569997441,374760.762682166,22.6459000000032 +9965,10484,179660.635794435,374759.252820846,25 +9966,4886,179662.500100002,374772.500900004,22.3500000000058 +9967,10508,179659.201517798,374773.179623146,22.6584000000003 +9968,10503,179659.081455946,374774.269003376,22.6594999999943 +9969,10504,179658.987820908,374775.118600171,22.6603000000032 +9970,4907,179667.500399999,374777.500399999,22.4499999999971 +9971,9619,179658.89418586,374775.968196977,22.6612000000023 +9972,10510,179658.752501018,374777.253773186,22.6625000000058 +9973,10513,179658.651533335,374778.169902612,22.6634000000049 +9974,4908,179677.500400003,374777.500399999,22.25 +9975,7962,179681.156311966,374780.575395957,22.1631999999954 +9976,7965,179681.315936334,374779.099675614,22.179999999993 +9977,7967,179681.440313894,374777.949810535,22.1929999999993 +9978,7960,179681.510365985,374777.302181978,22.2002999999968 +9979,7958,179681.614695746,374776.337657917,22.2112999999954 +9980,9084,179681.753327012,374775.056017958,22.2258000000002 +9981,7970,179681.89195827,374773.774378002,22.2403000000049 +9982,7959,179681.694079403,374776.533759478,25 +9983,9086,179681.599575467,374777.407449674,25 +9984,9087,179681.547234818,374777.891339652,25 +9985,7966,179681.494894173,374778.375229634,25 +9986,23833,179682.156908445,374780.186707839,25.4759000000049 +9987,9082,179681.395301554,374779.295964722,25 +9988,7961,179681.295708943,374780.216699801,25 +9989,23834,179681.239120319,374780.739862327,25 +9990,9091,179681.1825317,374781.263024855,25 +9991,7963,179681.069354471,374782.309349902,25 +9992,9089,179680.956177238,374783.355674949,25 +9993,4921,179680.843000002,374784.402000003,25 +9994,9090,179680.852810696,374783.381251886,22.1313999999984 +9995,4929,179680.743600007,374784.390900005,22.1199999999953 +9996,7964,179680.962021396,374782.371603757,22.1429000000062 +9997,9092,179681.059166681,374781.473499849,22.1530999999959 +9998,9116,179676.710472625,374820.568501476,25 +9999,4945,179676.583700001,374821.678000003,25 +10000,4946,179677.240699999,374823.754300002,25.3892999999953 +10001,7917,179676.480530042,374822.580888528,25 +10002,6488,179676.377360091,374823.483777042,25 +10003,7915,179676.240364067,374824.68269325,25 +10004,7911,179676.103368044,374825.881609455,25 +10005,9121,179676.034870036,374826.481067561,25 +10006,7912,179675.966372021,374827.080525659,25 +10007,7913,179675.876165461,374826.988869566,22.2114000000001 +10008,7909,179675.714059956,374828.407530617,22.2145000000019 +10009,23802,179675.57206801,374829.650168508,22.2170999999944 +10010,7908,179675.430076059,374830.892806392,22.2198000000062 +10011,4940,179672.500100009,374832.5009,22.3399999999965 +10012,4939,179667.5009,374832.5009,22.320000000007 +10013,4941,179667.500100002,374837.500500005,22.3099999999977 +10014,7906,179674.728009798,374837.03691636,22.2329999999929 +10015,9124,179674.91054133,374835.439497605,22.229600000006 +10016,7904,179675.065781064,374834.080922179,22.2265999999945 +10017,7907,179675.17749105,374833.103295851,22.2244999999966 +10018,7901,179675.229339663,374832.649544381,22.2235999999975 +10019,9130,179674.541304901,374838.670858182,22.2364999999991 +10020,4949,179674.354600009,374840.304800004,22.2400000000052 +10021,9131,179674.598667137,374839.049950313,25 +10022,4944,179674.454000004,374840.316000003,25 +10023,9129,179674.669588942,374838.429280415,25 +10024,4950,179675.107300002,374842.309700001,25.4036999999953 +10025,6486,179674.355303191,374841.198943906,25 +10026,7900,179674.287792187,374841.802898835,25 +10027,7898,179674.22028118,374842.406853762,25 +10028,7899,179674.146438535,374842.16703926,22.2284999999974 +10029,7897,179674.248729296,374841.251932997,22.2342000000062 +10030,7910,179675.954199605,374826.305956289,22.2100000000064 +10031,10565,179652.471839476,374834.552113384,22.6554000000033 +10032,10569,179652.198297486,374837.060089719,22.6524999999965 +10033,10566,179652.637004253,374833.03779617,22.6572000000015 +10034,9625,179652.802169017,374831.523478959,22.6588999999949 +10035,10557,179652.895375509,374830.66891297,22.6598999999987 +10036,10579,179651.261504706,374845.649112292,22.6426000000065 +10037,10577,179651.032699645,374847.746928021,22.6401999999944 +10038,10574,179650.845085625,374849.467080694,22.6382000000012 +10039,4979,179652.501000002,374852.5009,22.4799999999959 +10040,10575,179650.745784201,374850.37753297,22.6371999999974 +10041,4973,179651.5792,374842.736299999,22.6459999999934 +10042,4982,179657.500700001,374857.500500005,22.4499999999971 +10043,4981,179652.500600003,374857.500300001,22.4499999999971 +10044,10583,179650.25720362,374854.857119355,22.6319999999978 +10045,10589,179650.021012157,374857.02265783,22.6294999999955 +10046,10591,179649.904933091,374858.086937129,22.6282999999967 +10047,9628,179649.784820694,374859.188196309,22.6269999999931 +10048,4983,179652.500600003,374862.500500005,22.429999999993 +10049,4999,179649.4976,374861.821600005,22.6239999999962 +10050,10598,179649.306738537,374863.571517956,22.622000000003 +10051,10600,179649.211307809,374864.446476933,22.6209999999992 +10052,5004,179652.501000002,374867.5009,22.4100000000035 +10053,10595,179649.115877073,374865.321435906,22.6199999999953 +10054,10596,179648.992617082,374866.4515482,22.6187000000064 +10055,10593,179648.869357068,374867.581660498,22.6174000000028 +10056,9629,179648.73310966,374868.830848228,22.6159000000043 +10057,5005,179652.5009,374872.500500001,22.4100000000035 +10058,4989,179657.5002,374872.5009,22.4499999999971 +10059,4986,179657.500300001,374867.500600003,22.4600000000064 +10060,4987,179662.500100002,374867.500600003,22.1999999999971 +10061,4984,179657.500700001,374862.500599999,22.4600000000064 +10062,4985,179662.500900004,374862.500800002,22.1999999999971 +10063,4980,179662.500800002,374857.5002,22.25 +10064,5009,179667.500100002,374862.500300001,22.2299999999959 +10065,5010,179667.500799999,374867.500600003,22.1399999999994 +10066,4988,179662.500800002,374872.500399999,22.3099999999977 +10067,5011,179667.500200003,374872.500799999,22.3000000000029 +10068,7875,179670.978649002,374870.507127434,22.0540999999939 +10069,7876,179671.153576817,374868.942126576,22.0636999999988 +10070,9160,179671.215550028,374869.287894752,25 +10071,7873,179671.112580024,374870.209115811,25 +10072,9157,179671.031840399,374870.931452785,25 +10073,9158,179670.824239116,374871.888563618,22.0455999999976 +10074,9159,179670.915908985,374871.968633037,25 +10075,5016,179670.601300005,374873.883100003,22.0332999999955 +10076,7869,179670.46150732,374875.133703362,22.0255999999936 +10077,5013,179670.7007,374873.894000001,25 +10078,6482,179670.551722232,374875.226758514,25 +10079,5015,179671.298999999,374876.195700005,25.3859999999986 +10080,9156,179671.832264014,374871.314917538,25.3962000000029 +10081,5019,179674.357000005,374878.162000004,27.1199999999953 +10082,23779,179675.4615,374869.524499997,27.1549999999988 +10083,23778,179677.083607897,374878.842539005,27.108699999997 +10084,23789,179678.807,374863.298000004,27.1805000000022 +10085,23713,179689.164000005,374926.298,26.6171999999933 +10086,23712,179689.175744738,374926.318752915,26.6152000000002 +10087,23714,179689.027748603,374926.137665052,26.6398999999947 +10088,23711,179689.232316025,374926.418714277,26.5948999999964 +10089,23715,179689.019300014,374926.127723098,26.6321000000025 +10090,23716,179689.010980681,374926.117933258,26.6309999999939 +10091,23717,179688.989981081,374926.093221802,26.6198000000004 +10092,23710,179689.419726633,374926.749868445,26.5807999999961 +10093,23709,179689.451675426,374926.806321908,26.5734999999986 +10094,23777,179676.172000002,374887.065000005,27.0749000000069 +10095,23785,179673.804750003,374882.480750002,27.1024999999936 +10096,23768,179673.252499998,374886.799500007,27.0850000000064 +10097,23769,179672.70025,374891.118250001,27.0675000000047 +10098,23776,179675.118598904,374893.543147475,27.0494000000035 +10099,5031,179672.148000002,374895.436999999,27.0500000000029 +10100,23775,179674.93268647,374894.686461404,27.0384000000049 +10101,23767,179674.803000003,374895.484000005,27.0353000000032 +10102,5028,179669.547000002,374916.865000002,26.8099999999977 +10103,23758,179677.638999999,374914.436000001,26.9489000000031 +10104,23757,179678.12753617,374915.055848695,26.9446000000025 +10105,169,179669.958000004,374915.300999999,26.8600000000006 +10106,9182,179667.035840958,374915.063299511,25.3571999999986 +10107,5029,179668.453000002,374917.899,26.7899999999936 +10108,9187,179666.763795506,374917.50809427,25.3677000000025 +10109,5030,179668.149,374918.911000002,26.6900000000023 +10110,9189,179666.537297871,374919.543563832,25.3764999999985 +10111,9192,179666.16987161,374922.845518716,25.3905999999988 +10112,23694,179667.351500001,374926.045650002,26.6549999999988 +10113,5027,179665.991999999,374924.444000002,25.3975000000064 +10114,23696,179665.829933349,374925.900446717,25.4038 +10115,23695,179665.667866692,374927.356893435,25.4100000000035 +10116,9194,179665.343733389,374930.269786868,25.4225000000006 +10117,23743,179685.477442544,374922.250153519,26.6861000000063 +10118,23744,179685.272826184,374922.067184646,26.7021999999997 +10119,23745,179685.045568407,374921.863969725,26.7176000000036 +10120,23746,179684.79168826,374921.636948958,26.7375000000029 +10121,23747,179684.558885984,374921.428776123,26.7437999999966 +10122,23737,179686.611621249,374923.294467427,26.5951999999961 +10123,23739,179686.493652001,374923.158852562,26.5997999999963 +10124,23738,179686.505000003,374923.169,26.5994000000064 +10125,23740,179686.364248507,374923.043139376,26.6049000000057 +10126,23736,179686.720943511,374923.42311329,26.5908000000054 +10127,23741,179686.224143192,374922.917856578,26.6103000000003 +10128,23735,179686.946237769,374923.688230146,26.579700000002 +10129,23734,179687.061111346,374923.823408566,26.5731999999989 +10130,23742,179685.662638471,374922.415756546,26.6714000000065 +10131,23733,179687.168218616,374923.949447937,26.567200000005 +10132,23732,179687.26832144,374924.067244742,26.5629000000044 +10133,23731,179687.362085145,374924.177581944,26.5574999999953 +10134,23723,179687.621912982,374924.483336478,26.5648999999976 +10135,23722,179688.237496432,374925.20772934,26.6040999999968 +10136,23721,179688.288143527,374925.267328721,26.6100000000006 +10137,9197,179665.072007544,374932.711709399,25.4330000000045 +10138,9199,179664.84776859,374934.726880882,25.4416000000056 +10139,23706,179664.584976446,374937.088518824,25.4517999999953 +10140,9200,179664.025434822,374935.885627896,25 +10141,23707,179663.934232447,374936.715464581,25 +10142,9202,179663.874924347,374937.255099989,25 +10143,7800,179663.724413875,374938.62457208,25 +10144,9204,179664.322184302,374939.450156756,25.4618999999948 +10145,23704,179664.178592157,374940.740578379,25.4674999999988 +10146,9205,179663.558555327,374940.133693974,25 +10147,23705,179663.503394119,374940.635597505,25 +10148,9207,179663.448232904,374941.137501039,25 +10149,5103,179664.035,374942.030999999,25.4729999999981 +10150,9209,179663.393071696,374941.639404573,25 +10151,6472,179663.337910488,374942.141308106,25 +10152,7797,179663.248380803,374942.955925174,25 +10153,7796,179663.221062653,374942.289363328,22.3905999999988 +10154,7798,179663.147615045,374942.957651991,22.3867000000027 +10155,5078,179657.500100005,374942.500800002,22.320000000007 +10156,5102,179662.896599997,374945.241599996,22.3733000000066 +10157,5116,179657.500400003,374947.500400003,22.070000000007 +10158,7794,179662.8011958,374946.109668452,22.3681999999972 +10159,7795,179662.921736322,374945.928018782,25 +10160,9211,179662.884604473,374946.265878167,25 +10161,6471,179662.847472642,374946.603737559,25 +10162,9210,179663.49264114,374945.814727724,25.4630000000034 +10163,9212,179663.24500047,374947.542375084,25.4584999999934 +10164,9215,179662.961127277,374949.522796068,25.4532999999938 +10165,9213,179662.637746036,374948.51202165,25 +10166,7789,179662.5730596,374949.100597925,25 +10167,9217,179662.487475079,374949.879324067,25 +10168,6470,179662.401890554,374950.658050213,25 +10169,9216,179662.284250364,374951.7284481,25 +10170,9220,179662.225430261,374952.263647035,25 +10171,7780,179662.166610166,374952.798845977,25 +10172,9219,179662.045034412,374953.905053236,25 +10173,7779,179661.916945275,374955.07052511,25 +10174,7786,179661.943475019,374953.913940381,22.3224999999948 +10175,7781,179661.775685579,374955.440631207,22.313599999994 +10176,5083,179657.500500005,374952.500500001,22.2700000000041 +10177,9224,179661.671676356,374956.38699542,22.3080999999947 +10178,7783,179661.567667134,374957.333359633,22.3025000000052 +10179,7785,179661.478458289,374958.145057473,22.2978000000003 +10180,7782,179661.674472637,374957.276762553,25 +10181,9223,179661.7350908,374956.725203194,25 +10182,9222,179661.795708958,374956.173643827,25 +10183,7784,179661.553236321,374958.379881278,25 +10184,9227,179661.405529145,374958.808628738,22.2939000000042 +10185,9228,179661.516785607,374958.711543128,25 +10186,9226,179661.492618158,374958.931440637,25 +10187,7787,179662.094312515,374952.541492768,22.3306000000011 +10188,7778,179662.206935309,374951.516754963,22.3365999999951 +10189,7788,179662.356485315,374950.156022053,22.3445000000065 +10190,5110,179652.5002,374947.500500005,22.2599999999948 +10191,5080,179647.500399999,374947.500400003,22.5599999999977 +10192,5079,179647.5009,374942.500900004,22.5899999999965 +10193,5077,179652.500700004,374942.500500005,22.2700000000041 +10194,5075,179647.500799999,374937.500799999,22.6000000000058 +10195,5074,179652.500400007,374937.500300005,22.320000000007 +10196,5076,179657.500800002,374937.500799999,22.4100000000035 +10197,5060,179657.500700001,374932.500500001,22.4600000000064 +10198,5071,179657.5002,374927.500800002,22.1499999999942 +10199,5062,179664.4606,374931.011,22.4566999999952 +10200,9196,179664.601974398,374929.724655729,22.4642000000022 +10201,5061,179664.559999999,374931.021700002,25 +10202,9195,179664.7015929,374929.733358528,25 +10203,7810,179664.743348785,374928.438311458,22.4717999999993 +10204,7809,179664.843185797,374928.445017055,25 +10205,23700,179664.936972566,374927.591659382,25 +10206,23701,179664.862957131,374927.350013219,22.478099999993 +10207,23702,179664.983865954,374927.164980549,25 +10208,23698,179665.030759342,374926.738301713,25 +10209,7808,179664.98256547,374926.261714973,22.4845000000059 +10210,5055,179662.500300009,374922.500599999,22.1699999999983 +10211,7806,179665.070507467,374925.461543981,22.4891999999963 +10212,7811,179665.201219026,374924.272219267,22.4961000000039 +10213,6474,179665.226723593,374924.955240019,25 +10214,23697,179665.176547594,374925.411787067,25 +10215,7807,179665.126371596,374925.868334111,25 +10216,23699,179665.078565471,374926.303317916,25 +10217,7812,179665.311135609,374924.187182419,25 +10218,7815,179665.356189039,374922.862170488,22.5044000000053 +10219,7814,179665.449339829,374922.929674227,25 +10220,9193,179665.518441942,374922.300920136,25 +10221,7813,179665.455734182,374921.956424244,22.5096999999951 +10222,7816,179665.607411783,374920.576332714,22.5178000000014 +10223,9190,179665.669202022,374920.929167271,25 +10224,7817,179665.750859994,374920.186168499,25 +10225,9191,179665.810616501,374919.642449256,25 +10226,7819,179665.870373007,374919.098730005,25 +10227,6476,179665.989886016,374918.011291511,25 +10228,7820,179665.90478339,374917.870593231,22.5335999999952 +10229,7818,179665.756231904,374919.222240787,22.5256999999983 +10230,5050,179662.500200007,374917.5002,22.5200000000041 +10231,5023,179666.024600003,374916.780400001,22.5399999999936 +10232,9184,179666.140255503,374915.662054099,22.5139000000054 +10233,5048,179662.500400003,374912.500799999,22.3999999999942 +10234,5046,179657.500599999,374912.500399999,22.3300000000017 +10235,5044,179657.500700001,374907.500399999,22.2899999999936 +10236,5042,179662.500400003,374907.500100002,22.2400000000052 +10237,5040,179657.500500005,374902.500400003,22.2799999999988 +10238,5045,179652.500300001,374907.500500001,22.5399999999936 +10239,5039,179652.5002,374902.5002,22.5200000000041 +10240,5038,179652.501000002,374897.5009,22.4700000000012 +10241,5069,179647.500100002,374902.500900004,22.3699999999953 +10242,5043,179647.501000002,374907.500300005,22.4400000000023 +10243,9632,179644.83575844,374904.444476616,22.5917000000045 +10244,10629,179644.614778247,374906.417655814,22.5969000000041 +10245,10631,179644.442971624,374907.951753721,22.6009000000049 +10246,10633,179644.323465135,374909.018852673,22.6037000000069 +10247,9633,179644.203958634,374910.085951623,22.6064999999944 +10248,30,179647.500700004,374912.500399999,22.4900000000052 +10249,5047,179652.500500008,374912.500799999,22.5200000000041 +10250,5051,179657.500500005,374917.500500001,22.320000000007 +10251,5052,179652.500600003,374917.500600003,22.4799999999959 +10252,5053,179652.500500008,374922.5002,22.4400000000023 +10253,5056,179657.500999998,374922.500700001,22.1999999999971 +10254,5049,179647.500500001,374917.500100005,22.429999999993 +10255,10643,179643.14921565,374919.504200406,22.6312999999936 +10256,10644,179643.020355172,374920.654882997,22.6343000000052 +10257,10640,179642.891494695,374921.805565592,22.6374000000069 +10258,10641,179642.757281885,374923.004042849,22.6404999999941 +10259,5064,179643.6307,374915.204700001,22.6199999999953 +10260,10638,179643.921588764,374912.607292309,22.6132000000071 +10261,10637,179643.879857939,374912.081352003,25 +10262,10636,179644.055424694,374911.412242807,22.6100000000006 +10263,10635,179644.052769512,374910.537387747,25 +10264,10632,179644.193255283,374909.282960359,25 +10265,10634,179644.21270293,374909.109308179,25 +10266,10630,179644.367846057,374907.724002164,25 +10267,10628,179644.539137803,374906.194501709,25 +10268,10625,179644.762486983,374904.200169295,25 +10269,10627,179644.89587032,374903.009161133,25 +10270,5066,179645.234999999,374899.980999999,25 +10271,10626,179645.010542318,374902.883794211,22.5875999999989 +10272,5063,179645.334400006,374899.992000002,22.5800000000017 +10273,10623,179646.199380029,374892.061409697,22.5890999999974 +10274,5035,179652.500500008,374892.500799999,22.570000000007 +10275,5033,179657.500100005,374892.500700004,22.3000000000029 +10276,4996,179652.500400007,374887.500399999,22.5299999999988 +10277,9631,179646.477639575,374889.510180324,22.5920999999944 +10278,10611,179646.651055016,374887.920216635,22.5939000000071 +10279,10614,179646.767402411,374886.853482697,22.5951000000059 +10280,10613,179646.883749809,374885.786748763,22.5963999999949 +10281,10617,179647.007138338,374884.655458048,22.5976999999984 +10282,4993,179652.500300001,374882.5002,22.4799999999959 +10283,4995,179657.500900004,374882.500900004,22.3800000000047 +10284,4990,179657.5002,374877.500599999,22.429999999993 +10285,4994,179662.500599999,374882.500300001,22.3000000000029 +10286,4991,179662.500700001,374877.500599999,22.320000000007 +10287,4992,179652.501000002,374877.500800002,22.4499999999971 +10288,5012,179667.500500001,374877.500500005,22.4700000000012 +10289,7857,179669.816296089,374880.905846164,21.9900999999954 +10290,7855,179669.974621288,374879.48944851,21.9988000000012 +10291,7866,179670.121796444,374878.172800615,22.006899999993 +10292,7868,179670.284107924,374876.720741231,22.0157999999938 +10293,7867,179670.381466869,374876.749866717,25 +10294,6481,179670.211211514,374878.272974916,25 +10295,9161,179670.962853912,374879.272309687,25.3796000000002 +10296,9163,179670.104409974,374879.22842392,25 +10297,7856,179670.033440627,374879.863317203,25 +10298,9162,179669.941938426,374880.681897938,25 +10299,23786,179670.721896954,374881.477691643,25.375 +10300,23788,179669.896187328,374881.091188308,25 +10301,7859,179669.850436226,374881.500478677,25 +10302,23787,179669.797721744,374881.972063672,25 +10303,9168,179669.74500725,374882.443648662,25 +10304,9164,179670.480939995,374883.683073595,25.3703999999998 +10305,7864,179669.639578272,374883.386818644,25 +10306,9167,179669.565485984,374884.049649902,25 +10307,23771,179670.266704999,374885.643880203,25.3662999999942 +10308,7858,179669.428720318,374885.273158602,25 +10309,23772,179669.357300267,374885.912083972,25 +10310,7860,179669.278939631,374885.713106245,21.960500000001 +10311,23773,179669.353130281,374885.94938878,25 +10312,9165,179669.277540237,374886.62561895,25 +10313,9166,179669.149693213,374886.869361382,21.9533999999985 +10314,4997,179662.500599999,374887.500399999,22.2599999999948 +10315,7862,179669.020446792,374888.025616519,21.946299999996 +10316,23774,179669.201950196,374887.301849127,25 +10317,7861,179669.126360159,374887.978079304,25 +10318,23770,179670.052469999,374887.6046868,25.3622000000032 +10319,5022,179668.824000005,374890.682999995,25 +10320,5025,179669.624000005,374891.526299998,25.3540000000066 +10321,7854,179668.775774024,374891.149327382,25 +10322,7853,179668.685662545,374891.048813626,21.9388000000035 +10323,6480,179668.727548037,374891.615654767,25 +10324,7851,179668.537478149,374892.481712867,21.972299999994 +10325,5034,179662.500900004,374892.500700004,22.1600000000035 +10326,5032,179668.724599998,374890.6723,21.929999999993 +10327,4998,179657.500800002,374887.500500001,22.320000000007 +10328,5037,179662.500200007,374897.500800006,22.3000000000029 +10329,7839,179668.244067173,374895.318910122,22.0385999999999 +10330,7841,179668.122704856,374896.49244773,22.0660000000062 +10331,7843,179668.00237792,374897.655973542,22.093200000003 +10332,7842,179668.165142257,374897.053910356,25 +10333,9170,179668.233215079,374896.395671371,25 +10334,7840,179668.301287912,374895.73743239,25 +10335,9169,179669.266885251,374894.794848714,25.3472000000038 +10336,9172,179668.931695785,374897.862722855,25.3408000000054 +10337,7849,179668.582870096,374893.014636919,25 +10338,7850,179668.51053112,374893.714127995,25 +10339,6479,179668.438192148,374894.413619075,25 +10340,9171,179668.369740028,374895.075525731,25 +10341,7848,179668.392887872,374893.879857998,22.0048999999999 +10342,7852,179668.655209068,374892.315145843,25 +10343,23765,179671.600499999,374900.402999997,27.0025000000023 +10344,23729,179668.618293393,374900.731187392,25.3347999999969 +10345,9173,179667.893630087,374899.67933251,25 +10346,23730,179667.818594269,374900.404901028,25 +10347,7846,179667.739497095,374901.169741459,25 +10348,9178,179667.606748547,374902.453370731,25 +10349,9176,179668.304891001,374903.599651918,25.328800000003 +10350,5021,179667.473999999,374903.737,25 +10351,9177,179667.422888309,374904.231231172,25 +10352,23725,179668.126945496,374905.228325963,25.3254000000015 +10353,7837,179667.371776611,374904.725462347,25 +10354,6478,179667.269553218,374905.713924687,25 +10355,5026,179667.949000001,374906.857000008,25.3220000000001 +10356,23724,179671.053000003,374905.369000003,26.9550000000017 +10357,23760,179670.5055,374910.335000001,26.9075000000012 +10358,23726,179667.663219552,374909.425227303,25.3329999999987 +10359,7831,179667.044849984,374907.886721741,25 +10360,23728,179666.974040229,374908.571425874,25 +10361,6477,179666.903230466,374909.256130006,25 +10362,23727,179666.851437714,374909.756946787,25 +10363,7829,179666.799644951,374910.257763568,25 +10364,9180,179667.377439097,374911.993454609,25.3441000000021 +10365,7822,179666.696059436,374911.259397127,25 +10366,9181,179666.626177426,374911.935130347,25 +10367,7824,179666.527274467,374912.891485311,25 +10368,9185,179666.443732627,374913.699303959,25 +10369,7826,179666.360190786,374914.50712261,25 +10370,9183,179666.253909502,374915.534823235,25 +10371,5020,179666.124000002,374916.791000001,25 +10372,7827,179666.255911011,374914.543708201,22.4876999999979 +10373,9186,179666.326343641,374913.862650838,22.4717999999993 +10374,7825,179666.396776259,374913.181593467,22.4559000000008 +10375,7823,179666.543350227,374911.76427744,22.4228000000003 +10376,7828,179666.677079584,374910.471164085,22.3926000000065 +10377,7821,179666.726376325,374909.994482893,22.3815000000031 +10378,7830,179666.855788406,374908.743115969,22.3521999999939 +10379,7832,179666.983775236,374907.505530737,22.3233000000037 +10380,7834,179667.135694169,374906.036530945,22.2890000000043 +10381,5041,179662.500900004,374902.500599999,22.3500000000058 +10382,7838,179667.299443357,374904.45313688,22.2519999999931 +10383,7836,179667.324002091,374904.215663075,22.2464000000036 +10384,5024,179667.374600001,374903.726399999,22.2350000000006 +10385,9179,179667.502626188,374902.488424737,22.2060999999958 +10386,7847,179667.630652368,374901.250449471,22.1772000000055 +10387,9174,179667.745519776,374900.139715627,22.151199999993 +10388,5036,179657.5002,374897.500700001,22.3099999999977 +10389,7845,179667.860387195,374899.028981779,22.1251999999949 +10390,7844,179668.004994188,374898.602482911,25 +10391,9175,179668.086566202,374897.813711721,25 +10392,7835,179667.195815425,374906.426941816,25 +10393,7833,179667.122077633,374907.13995894,25 +10394,23759,179676.443000004,374911.897000004,26.9637999999977 +10395,23763,179675.389518801,374907.799342494,26.9737000000023 +10396,23762,179675.662999999,374909.25,26.9717999999993 +10397,23761,179675.943450272,374910.201733153,26.9728000000032 +10398,23766,179674.563999999,374900.401000004,27.013300000006 +10399,7863,179669.485570412,374883.864560641,21.9719000000041 +10400,7865,179669.678685799,374882.136925496,21.9824999999983 +10401,5000,179647.416000001,374880.906800006,22.601999999999 +10402,10616,179647.13052687,374883.524167325,22.599000000002 +10403,5002,179647.316599999,374880.895799998,25 +10404,10618,179647.011305828,374883.694896989,25 +10405,10609,179647.632682342,374877.99779138,25 +10406,10619,179646.844102006,374885.22790933,25 +10407,10615,179646.820734855,374885.442151599,25 +10408,10620,179646.665068805,374886.869379576,25 +10409,10612,179646.623004604,374887.255046159,25 +10410,10621,179646.512014955,374888.272657454,25 +10411,10610,179646.471974034,374888.639773618,25 +10412,10622,179646.348296665,374889.773712587,25 +10413,10624,179646.101958189,374892.032272849,25 +10414,9630,179647.74527742,374877.887812056,22.6055000000051 +10415,10605,179648.135939863,374874.306013983,22.6095999999961 +10416,10606,179648.05540397,374874.122057911,25 +10417,10608,179648.217406839,374872.636730712,25 +10418,10604,179648.42247586,374870.756550428,25 +10419,10602,179648.597112026,374869.155394502,25 +10420,10592,179648.706422683,374868.153177083,25 +10421,10603,179648.526602302,374870.724215917,22.6137000000017 +10422,10594,179648.823612913,374867.078715637,25 +10423,10601,179648.865121514,374866.698143005,25 +10424,10597,179649.026397184,374865.21948313,25 +10425,10599,179649.153434314,374864.054740142,25 +10426,5001,179649.398200005,374861.810600001,25 +10427,10607,179648.331271082,374872.515114944,22.611699999994 +10428,9188,179666.056943007,374917.401145756,25 +10429,6475,179665.587544054,374921.672166042,25 +10430,9198,179664.483619411,374931.716675505,25 +10431,7804,179664.326922506,374932.227311388,22.4496000000072 +10432,7805,179664.407238811,374932.411651012,25 +10433,6473,179664.25447762,374933.801602028,25 +10434,7801,179664.114286292,374934.162056211,22.4382000000041 +10435,9203,179664.188277528,374934.403946698,25 +10436,7803,179663.999395851,374935.207427002,22.4321000000054 +10437,7802,179664.122077435,374935.006291363,25 +10438,9201,179663.81333442,374936.900371842,22.4222000000009 +10439,7799,179663.625451617,374938.609889142,22.4122000000061 +10440,9206,179663.423257135,374940.449626233,22.4014000000025 +10441,9208,179663.322159894,374941.369494781,22.3959999999934 +10442,10652,179640.864133965,374939.90875005,22.6849999999977 +10443,10653,179640.757641345,374940.859645288,22.6875 +10444,9635,179640.651148733,374941.81054052,22.6900000000023 +10445,7790,179662.511767842,374948.743129794,22.3527999999933 +10446,7792,179662.654097091,374947.448097419,22.360400000005 +10447,7791,179662.70243248,374947.923445381,25 +10448,9214,179662.738692515,374947.593518425,25 +10449,7793,179662.774952557,374947.263591468,25 +10450,5100,179662.996000003,374945.252300002,25 +10451,23755,179679.688974924,374916.96015038,26.9370000000054 +10452,23756,179679.462000001,374916.749000005,26.9377999999997 +10453,23754,179680.820664536,374918.01293933,26.9003999999986 +10454,23753,179681.725989133,374918.855145287,26.8711999999941 +10455,23764,179675.006000001,374905.765000004,26.985400000005 +10456,23752,179682.466691341,374919.544206213,26.8472000000038 +10457,23751,179682.847000003,374919.898000002,26.8350000000064 +10458,23750,179683.084142242,374920.110053651,26.8273000000045 +10459,23749,179683.607036561,374920.577628098,26.8105000000069 +10460,23748,179683.979313388,374920.910519704,26.7786000000051 +10461,23790,179676.013750006,374865.205750003,27.1725000000006 +10462,5017,179672.974000003,374860.865000006,25.4180000000051 +10463,9149,179672.578150962,374864.48807032,25.4103999999934 +10464,23780,179672.205207489,374867.901493929,25.4033000000054 +10465,7871,179671.524460047,374866.524231609,25 +10466,23783,179671.421490043,374867.445452653,25 +10467,23784,179671.370005034,374867.906063184,25 +10468,7874,179671.318520032,374868.366673708,25 +10469,23782,179671.26703503,374868.827284228,25 +10470,7877,179671.277503438,374867.833410587,22.0706000000064 +10471,23781,179672.018735752,374869.608205739,25.3996999999945 +10472,7872,179671.344450697,374867.234463464,22.0742000000027 +10473,7870,179671.445644341,374866.329129227,22.0798000000068 +10474,9151,179671.554143317,374865.358437475,22.0858000000007 +10475,9150,179671.639470495,374865.495290719,25 +10476,9152,179671.696975723,374864.980820276,25 +10477,7880,179671.662642293,374864.387745723,22.0917999999947 +10478,9154,179671.756850824,374863.54490415,22.0969999999943 +10479,7878,179671.851059362,374862.702062566,22.1021999999939 +10480,7881,179672.031125389,374861.091092475,22.1120999999985 +10481,6483,179671.984501854,374862.408468064,25 +10482,7882,179672.142073486,374860.998753585,25 +10483,7884,179672.286954153,374859.702578869,25 +10484,9153,179671.869491398,374863.43740895,25 +10485,9155,179671.811986171,374863.951879397,25 +10486,7879,179671.754480951,374864.466349833,25 +10487,23794,179674.416899633,374848.314755972,25.4082999999955 +10488,9137,179673.602940481,374847.929597434,25 +10489,9139,179673.149084795,374851.989800543,25 +10490,9141,179673.028119102,374853.07196229,25 +10491,7892,179672.907153416,374854.154124029,25 +10492,9144,179672.742226709,374855.629562017,25 +10493,9146,179672.659763355,374856.367281009,25 +10494,5014,179672.577300005,374857.105000004,25 +10495,23805,179682.022999998,374833.013000008,27.222099999999 +10496,9108,179677.721059922,374811.723964445,25 +10497,23814,179677.780052397,374811.207669485,25 +10498,23808,179684.461454544,374810.102852475,27.2488000000012 +10499,23837,179688.435401522,374755.336868886,27.3652000000002 +10500,9067,179685.163032129,374753.167955279,25.5850000000064 +10501,4870,179685.550000001,374749.690000001,25.599000000002 +10502,23842,179689.925000001,374757.101000004,27.2556000000041 +10503,8024,179688.34504617,374715.4779852,25 +10504,10410,179671.411676329,374663.286292266,22.4753999999957 +10505,9006,179692.667140324,374675.832808957,25 +10506,23888,179700.751121905,374651.711641628,27.1478999999963 +10507,23917,179706.347473163,374601.382093109,26.9514000000054 +10508,8235,179703.391831417,374578.352127053,22.357600000003 +10509,8237,179703.530482855,374577.133506771,22.3494000000064 +10510,6531,179703.576750003,374577.611593757,25 +10511,8238,179703.626375005,374577.175446879,25 +10512,4637,179703.676000003,374576.739300001,25 +10513,8258,179705.752886735,374557.601372398,22.2186999999976 +10514,8256,179705.873084646,374556.544941831,22.2116999999998 +10515,8257,179705.902470272,374557.171278067,25 +10516,15528,179705.971105494,374556.568053119,25 +10517,8255,179706.039740726,374555.964828167,25 +10518,15529,179706.105121065,374555.390209835,25 +10519,23955,179706.57746163,374557.822504997,25.4863999999943 +10520,23956,179705.854815256,374557.590111017,25 +10521,15531,179705.807160247,374558.008943971,25 +10522,8259,179705.711850218,374558.846609857,25 +10523,15530,179706.375687644,374559.611162137,25.4856 +10524,15532,179705.640232299,374559.476049341,25 +10525,8260,179705.588564485,374559.045615908,22.2284000000072 +10526,15533,179705.5640787,374560.145352133,25 +10527,8261,179705.487925112,374560.814654931,25 +10528,8253,179705.119473495,374564.052913211,25 +10529,23965,179706.497152649,374551.059950445,22.1750000000029 +10530,8269,179706.593809254,374550.210426543,22.1692999999941 +10531,8271,179706.712902319,374549.163706638,22.1622999999963 +10532,8270,179706.766812678,374549.57469894,25 +10533,8272,179706.80940634,374549.200349472,25 +10534,4596,179706.852000002,374548.826000001,25 +10535,4604,179706.752599999,374548.814800005,22.1600000000035 +10536,23971,179706.871360078,374547.742659077,22.1621000000014 +10537,23970,179706.977613974,374547.6919709,25 +10538,8279,179707.095122959,374546.631112587,25 +10539,8287,179708.109418493,374536.565728929,22.1840999999986 +10540,15510,179708.103132684,374537.5309112,25 +10541,8286,179708.168724835,374536.938752428,25 +10542,15511,179708.231451895,374536.372459441,25 +10543,8285,179708.299909145,374535.75443488,25 +10544,8289,179708.414805051,374534.717167184,25 +10545,8291,179708.488541406,374534.051483482,25 +10546,8293,179708.525409583,374533.718641628,25 +10547,6538,179708.562277757,374533.38579978,25 +10548,15505,179708.693138883,374532.204399891,25 +10549,4605,179708.824000005,374531.023000002,25 +10550,15503,179709.65369926,374523.532566,25 +10551,8297,179709.762118399,374522.553769894,25 +10552,15499,179709.845792647,374521.798367903,25 +10553,8295,179709.929466903,374521.042965915,25 +10554,15500,179709.992759723,374520.471565206,25 +10555,6539,179710.086539637,374519.624930445,25 +10556,15484,179713.4573033,374496.167159718,25.5439999999944 +10557,4522,179712.644499999,374496.09,25 +10558,15489,179712.706953157,374495.511248227,25 +10559,15487,179712.769406326,374494.932496447,25 +10560,23996,179713.705636617,374493.928905934,25.5436999999947 +10561,23993,179715.701278523,374495.233283713,26.9665999999997 +10562,24002,179713.949151654,374491.734079856,25.543399999995 +10563,23992,179718.277802281,374496.638324253,26.8451999999961 +10564,23995,179713.953969941,374491.690652151,25.543399999995 +10565,24003,179713.11177035,374491.759818193,25 +10566,8325,179713.144125294,374491.459985781,25 +10567,8326,179713.004133575,374491.825223338,22.1800999999978 +10568,24001,179713.079415407,374492.059650596,25 +10569,15486,179712.774616789,374493.95216167,22.1849999999977 +10570,15485,179712.894312646,374493.774992894,25 +10571,23997,179712.831859488,374494.353744667,25 +10572,8328,179713.26831235,374490.309147663,25 +10573,15469,179715.914594736,374466.343275651,25 +10574,6546,179715.983366024,374465.732927073,25 +10575,8351,179716.116359852,374464.552600142,25 +10576,15470,179716.179829925,374463.989300068,25 +10577,8364,179717.622849941,374450.2899107,22.0947000000015 +10578,4510,179712.500500001,374447.500500005,22.3000000000029 +10579,8366,179717.785355799,374448.847736232,22.0918999999994 +10580,4514,179717.894299995,374447.880900003,22.0899999999965 +10581,8373,179718.09223729,374446.124196678,22.0865999999951 +10582,8371,179718.238101896,374444.829640973,22.0840999999928 +10583,8368,179718.371362772,374443.64694405,22.0817999999999 +10584,8374,179718.577732962,374441.815398335,22.0782999999938 +10585,15454,179718.77518557,374440.956276536,25 +10586,6550,179719.443498485,374435.024965998,25 +10587,8379,179719.456569903,374434.015676517,22.0632000000041 +10588,10110,179700.087392554,374401.68437827,25 +10589,10108,179700.265682541,374400.059826143,25 +10590,10106,179700.444120068,374398.433929656,25 +10591,10094,179700.601824205,374396.996952787,25 +10592,10097,179700.792024449,374395.2638762,25 +10593,10100,179700.964524299,374393.692082986,25 +10594,10102,179701.140413005,374392.089410994,25 +10595,4402,179699.192000002,374381.196500003,26.4100000000035 +10596,10105,179701.405817792,374389.671081703,25 +10597,4472,179701.749500003,374386.539500006,25 +10598,10093,179701.967464805,374384.553436831,25 +10599,10091,179702.173171509,374382.679067608,25 +10600,10088,179702.306127246,374381.467594527,25 +10601,10090,179702.339055214,374381.167559735,25 +10602,10086,179702.512616284,374379.586096857,25 +10603,10084,179702.819743745,374376.787596662,25 +10604,10076,179703.139617689,374373.872952357,25 +10605,10078,179703.276912175,374372.621945236,25 +10606,10080,179703.420138232,374371.316890534,25 +10607,10079,179703.503266923,374371.476152323,22.4573999999993 +10608,10083,179703.632800188,374370.295864243,22.4505999999965 +10609,4393,179707.500900004,374372.500799999,22.429999999993 +10610,4392,179707.500800002,374367.500500001,22.3999999999942 +10611,4419,179712.500200003,374372.500700004,22.4799999999959 +10612,4415,179712.500300005,374367.500500001,22.4900000000052 +10613,4413,179712.500200003,374362.500900004,22.4900000000052 +10614,4416,179717.500799999,374367.500700008,22.2899999999936 +10615,4417,179717.500799999,374372.500500001,22.2700000000041 +10616,4420,179717.500500008,374377.500500008,22.2700000000041 +10617,4421,179712.5009,374377.5009,22.4499999999971 +10618,4394,179707.500399999,374377.500300001,22.3999999999942 +10619,4395,179707.500700008,374382.500400003,22.3800000000047 +10620,10087,179702.59439759,374379.757635795,22.5054999999993 +10621,10089,179702.442714188,374381.139752619,22.5136000000057 +10622,9574,179702.291030787,374382.521869447,22.5215999999928 +10623,10092,179702.069965392,374384.536184724,22.5332999999955 +10624,4469,179701.848900001,374386.550500005,22.5449999999983 +10625,10085,179702.8977644,374376.993402138,22.489499999996 +10626,9573,179703.182425305,374374.399613865,22.4744000000064 +10627,10077,179703.338322166,374372.979104627,22.4661999999953 +10628,4422,179712.500399999,374382.500100005,22.4199999999983 +10629,4423,179717.500799999,374382.500400003,22.320000000007 +10630,8426,179724.737371184,374386.138380613,22.3920999999973 +10631,8418,179724.555777106,374387.763891309,22.3938000000053 +10632,8421,179724.441175938,374388.789725557,22.3947999999946 +10633,15416,179724.904211331,374384.644937344,22.3905999999988 +10634,8431,179725.071051486,374383.151494071,22.3891000000003 +10635,4401,179707.500800002,374362.500800002,22.3600000000006 +10636,10072,179704.234284017,374364.844394226,22.440300000002 +10637,10075,179704.127842013,374365.799697116,22.4351000000024 +10638,4397,179704.021400005,374366.754999999,22.429999999993 +10639,10081,179703.76233346,374369.115576163,22.4437000000034 +10640,4399,179703.921999998,374366.744000006,25 +10641,10082,179703.630779538,374369.397557966,25 +10642,152,179701.385000002,374361.976,26.3899999999994 +10643,10074,179704.085603599,374365.275671545,25 +10644,10071,179704.227165993,374364.005160987,25 +10645,10070,179704.353310458,374362.873025049,25 +10646,10068,179704.463826578,374361.881152194,25 +10647,10069,179704.506851286,374362.398139086,22.4533999999985 +10648,10067,179704.605878122,374361.509386409,22.4581999999937 +10649,10066,179704.579486795,374360.843111556,25 +10650,10064,179704.737673838,374360.326537337,22.4646000000066 +10651,10063,179704.710613679,374359.666258827,25 +10652,10065,179704.817350443,374359.611450355,22.4683999999979 +10653,10061,179704.897027053,374358.896363374,22.4722000000038 +10654,10060,179704.873925917,374358.200545285,25 +10655,10062,179705.006743629,374357.911671687,22.4774999999936 +10656,9571,179705.1164602,374356.926980004,22.482799999998 +10657,10052,179705.097767729,374356.191583894,25 +10658,10053,179705.238347393,374355.833058633,22.4887000000017 +10659,10054,179705.206469402,374355.215995558,25 +10660,10056,179705.346970331,374354.858182162,22.4939000000013 +10661,4391,179707.500500001,374357.500700001,22.4100000000035 +10662,10055,179705.455593262,374353.883305702,22.4992000000057 +10663,4406,179712.500300005,374352.500700004,22.5 +10664,10058,179705.696373224,374351.722337507,22.5108000000037 +10665,4396,179706.0944,374348.1501,22.5299999999988 +10666,10059,179705.609333415,374351.600325052,25 +10667,10057,179705.399254467,374353.485765893,25 +10668,4400,179703.478399999,374344.920600004,26.3800000000047 +10669,4398,179705.995000005,374348.139000002,25 +10670,10051,179706.1908875,374346.38092624,25 +10671,10050,179706.290264264,374346.392244235,22.5393999999942 +10672,4405,179712.5009,374347.5009,22.4799999999959 +10673,10047,179706.486128528,374344.634388477,22.5488999999943 +10674,4361,179712.501000002,374342.500599999,22.4700000000012 +10675,10048,179706.584211312,374343.754108444,22.5535999999993 +10676,10045,179706.682294108,374342.873828415,22.5583999999944 +10677,10046,179706.494536892,374343.655698624,25 +10678,10044,179706.634904522,374342.395910941,25 +10679,10049,179706.365532637,374344.813500881,25 +10680,10042,179706.826680485,374340.674737845,25 +10681,10031,179707.06099242,374338.571808096,25 +10682,10034,179707.29468675,374336.474421222,25 +10683,150,179705.571800001,374327.865200002,26.3800000000047 +10684,4390,179707.665200002,374310.809800003,26.3699999999953 +10685,10020,179709.225413341,374319.297275268,25 +10686,10017,179708.999179728,374321.29819499,25 +10687,10024,179708.728625018,374323.691112071,25 +10688,10021,179708.613390405,374324.710302826,25 +10689,10025,179708.781707063,374324.111932002,22.6159000000043 +10690,10023,179708.875811167,374323.279623739,22.6137000000017 +10691,9569,179709.064019382,374321.615007229,22.6094000000012 +10692,10019,179709.19593209,374320.448299032,22.6062999999995 +10693,10018,179709.327844795,374319.281590834,22.6033000000025 +10694,4347,179712.500200003,374317.500700001,22.429999999993 +10695,4345,179717.500400007,374317.500400003,22.4799999999959 +10696,4387,179712.500799999,374312.500500008,22.3600000000006 +10697,4369,179709.7621,374315.4408,22.5932999999932 +10698,10015,179710.03906757,374312.991010945,22.5868999999948 +10699,9568,179710.239554606,374311.217695169,22.5822999999946 +10700,10006,179710.344188683,374310.292202637,22.579899999997 +10701,10005,179710.448822755,374309.366710104,22.5774999999994 +10702,4340,179717.500600003,374307.500399999,22.5 +10703,10008,179710.643497504,374307.644804254,22.5730999999942 +10704,10011,179710.793031823,374306.322167333,22.5696000000025 +10705,10010,179710.942566138,374304.999530416,22.5662000000011 +10706,4338,179717.5002,374302.500799999,22.429999999993 +10707,4383,179711.356699999,374301.3365,22.556700000001 +10708,4313,179717.500100005,374297.500900004,22.4400000000023 +10709,10002,179711.795629181,374297.454369981,22.5466000000015 +10710,9567,179712.107974328,374294.691818509,22.5393999999942 +10711,4309,179717.500799999,374292.500400003,22.429999999993 +10712,9993,179712.280541278,374293.165541895,22.5353999999934 +10713,9995,179712.449691519,374291.669484548,22.5314999999973 +10714,9999,179712.575118642,374290.560138412,22.5286999999953 +10715,9997,179712.700545762,374289.450792275,22.5258000000031 +10716,4305,179717.501000002,374287.500700004,22.3800000000047 +10717,4306,179722.5002,374287.500799999,22.4400000000023 +10718,4302,179717.5009,374282.500600003,22.3399999999965 +10719,4303,179722.500800002,374282.500700004,22.429999999993 +10720,4307,179727.500900004,374287.500799999,22.320000000007 +10721,4310,179727.500200007,374292.500500005,22.2899999999936 +10722,4308,179732.5009,374287.5009,22.320000000007 +10723,4304,179732.500700004,374282.500700004,22.320000000007 +10724,8536,179736.023409829,374285.629171476,22.2966000000015 +10725,8534,179735.893066175,374286.787546244,22.2881999999954 +10726,8535,179736.060638178,374286.192730036,25 +10727,8540,179736.132770903,374285.551676277,25 +10728,6795,179736.630812652,374287.479005475,25.3395000000019 +10729,8539,179736.998391844,374284.129602261,25.3362000000052 +10730,6796,179737.36597104,374280.780199055,25.332899999994 +10731,8544,179736.493434545,374282.346407514,25 +10732,8545,179736.421301819,374282.987461261,25 +10733,8537,179736.349169087,374283.62851502,25 +10734,8542,179736.277036361,374284.269568771,25 +10735,8538,179736.204903636,374284.91062253,25 +10736,8541,179736.16417291,374284.3781984,22.3058000000019 +10737,8543,179736.293979533,374283.224596161,22.3141999999934 +10738,8546,179736.427580319,374282.037274975,22.3227999999945 +10739,4326,179736.5383,374281.053300004,22.3300000000017 +10740,4335,179732.500600003,374277.500400003,22.1399999999994 +10741,4301,179727.500999998,374282.500500001,22.3399999999965 +10742,16,179727.500800002,374277.500599999,22.320000000007 +10743,4299,179722.500999998,374277.500100005,22.4700000000012 +10744,4300,179717.501000002,374277.500900004,22.3300000000017 +10745,4330,179722.500400003,374272.500700001,22.5099999999948 +10746,4297,179717.5002,374272.500400003,22.5 +10747,4295,179717.500500008,374267.500799999,22.570000000007 +10748,9564,179714.816233147,374270.246721901,22.4462000000058 +10749,4332,179714.6371,374271.878400002,22.4532999999938 +10750,9979,179714.431376632,374273.752170507,22.4614000000001 +10751,9976,179714.225653257,374275.625941001,22.4695999999967 +10752,9978,179714.154154763,374275.360708382,25 +10753,9981,179714.033044036,374276.463809665,25 +10754,9975,179713.94791609,374277.239172358,25 +10755,9982,179713.849203221,374278.138269324,25 +10756,9985,179713.72330315,374279.2849929,25 +10757,9984,179713.855465554,374278.997686263,22.4842000000062 +10758,9565,179713.981951978,374277.845622048,22.4792000000016 +10759,9977,179714.103802618,374276.735781524,22.4744000000064 +10760,9983,179713.728979126,374280.149750486,22.4891999999963 +10761,9987,179713.583856188,374281.471559893,22.4949999999953 +10762,9989,179713.396447089,374283.178520203,22.5023999999976 +10763,9566,179713.209037993,374284.885480508,22.5097999999998 +10764,9988,179713.302469905,374283.11802813,25 +10765,9990,179712.959597815,374286.240977142,25 +10766,9991,179713.080218997,374286.058790259,22.5148999999947 +10767,4321,179712.951400001,374287.232099999,22.5200000000041 +10768,4323,179712.852000002,374287.221000005,25 +10769,9998,179712.562535055,374289.781168345,25 +10770,9996,179712.380535629,374291.390859518,25 +10771,9994,179712.240198087,374292.63207281,25 +10772,10000,179712.135944098,374293.554145604,25 +10773,9992,179712.092292044,374293.940225568,25 +10774,10001,179711.984281648,374294.895521853,25 +10775,10003,179711.710057914,374297.320889521,25 +10776,4371,179711.257300001,374301.325300004,25 +10777,10012,179710.818359099,374305.207777157,25 +10778,10009,179710.591029964,374307.218526628,25 +10779,10007,179710.428930443,374308.652313411,25 +10780,10013,179710.303208433,374309.764337491,25 +10781,10004,179710.249778364,374310.236931887,25 +10782,10014,179710.125456054,374311.336575426,25 +10783,10016,179709.941085603,374312.967350911,25 +10784,4372,179709.662700001,374315.429700002,25 +10785,9986,179713.562745657,374280.747383371,25 +10786,9980,179714.306816645,374273.970232803,25 +10787,4322,179714.537700001,374271.867300004,25 +10788,9974,179714.704638887,374270.346706223,25 +10789,9563,179715.353632595,374265.351687584,22.4250000000029 +10790,9972,179715.595899444,374263.144940685,22.415399999998 +10791,4289,179722.500500005,374262.500500001,22.4499999999971 +10792,4292,179722.500999998,374267.5002,22.4799999999959 +10793,4291,179727.500200007,374262.500700004,22.3000000000029 +10794,4293,179727.500500005,374267.500300005,22.3000000000029 +10795,4294,179732.500399999,374267.500399996,22.3399999999965 +10796,4279,179732.500600003,374252.500599999,22.1900000000023 +10797,8591,179739.653776333,374253.364816077,22.5319000000018 +10798,8592,179739.832415685,374251.777233358,22.543399999995 +10799,4278,179737.500500001,374247.500500008,22.3099999999977 +10800,4270,179739.933600001,374250.877999999,22.5500000000029 +10801,8596,179740.105015751,374249.299854424,22.5503999999928 +10802,8595,179740.191341829,374249.431209438,25 +10803,8597,179740.240918465,374248.974776942,25 +10804,6577,179740.290495105,374248.518344443,25 +10805,24097,179740.346299894,374248.004571851,25 +10806,24098,179740.237743668,374248.077889878,22.5507000000071 +10807,8594,179740.179634731,374248.612872008,22.5504999999976 +10808,24096,179740.295852609,374247.542907752,22.5507999999973 +10809,8598,179740.412070487,374246.472943496,22.5510999999969 +10810,4264,179740.033000004,374250.888999999,25 +10811,8593,179739.956235521,374251.571216829,25 +10812,4286,179732.500300005,374247.500100005,22.1399999999994 +10813,4254,179732.500500001,374242.500300005,22.3000000000029 +10814,4253,179727.500500005,374242.500200003,22.3999999999942 +10815,36,179727.500999998,374237.500900004,22.4499999999971 +10816,4250,179722.500300001,374237.500399999,22.3600000000006 +10817,4256,179722.500300001,374242.5009,22.2899999999936 +10818,9947,179718.133266449,374240.051848166,22.3307999999961 +10819,4274,179718.008400004,374241.171,22.320000000007 +10820,9957,179717.78771764,374243.181020077,22.3286999999982 +10821,9954,179717.567035269,374245.191040147,22.3374999999942 +10822,4258,179727.500599999,374247.500500008,22.3800000000047 +10823,9955,179717.44353212,374246.315932054,22.3423999999941 +10824,9561,179718.258132894,374238.93269632,22.3417000000045 +10825,4247,179727.500500005,374232.500700001,22.4900000000052 +10826,4325,179738.235900003,374265.965600003,22.4400000000023 +10827,8568,179738.178278066,374266.477724425,22.4363000000012 +10828,4317,179738.335299999,374265.9767,25 +10829,8571,179738.496279024,374264.546056647,25 +10830,8573,179738.426948585,374264.267735519,22.4523999999947 +10831,24101,179738.536523778,374264.188395809,25 +10832,24100,179739.158249948,374264.448026422,25.3166999999958 +10833,8572,179738.576768536,374263.830734972,25 +10834,6801,179739.002199892,374265.870052844,25.3181000000041 +10835,8563,179738.707528755,374268.555281986,25.3208000000013 +10836,8566,179738.208901469,374267.100080382,25 +10837,8567,179738.145702198,374267.661770567,25 +10838,8561,179738.082502935,374268.223460753,25 +10839,8564,179738.019303665,374268.785150941,25 +10840,8562,179737.956104398,374269.346841134,25 +10841,6798,179738.412857611,374271.240511127,25.3233999999939 +10842,6800,179738.1527615,374273.610670764,25.325800000006 +10843,8555,179737.626193315,374272.278960854,25 +10844,8557,179737.727949589,374271.374591179,25 +10845,8559,179737.778827723,374270.922406346,25 +10846,6574,179737.829705864,374270.470221505,25 +10847,8558,179737.682312228,374270.885702662,22.4040999999997 +10848,8560,179737.868476976,374269.231132753,22.4162000000069 +10849,4296,179732.500100002,374272.500100005,22.3300000000017 +10850,8556,179737.53167595,374272.22450741,22.3944000000047 +10851,8554,179737.316526443,374274.136684146,22.3803999999946 +10852,8552,179737.034916602,374276.639538076,22.3622000000032 +10853,8550,179736.875146486,374278.059521325,22.351800000004 +10854,8548,179736.739725649,374279.263096362,22.3430999999982 +10855,8549,179736.921166759,374278.54495915,25 +10856,8551,179736.968411215,374278.125069011,25 +10857,6573,179737.015655678,374277.705178868,25 +10858,4319,179737.719700005,374277.557,25.329700000002 +10859,8553,179737.13947843,374276.604691003,25 +10860,6799,179737.422680773,374274.087700192,25 +10861,6797,179736.826677836,374279.384739436,25 +10862,4316,179736.637699999,374281.064300004,25 +10863,8547,179736.565567274,374281.705353756,25 +10864,8565,179738.026009623,374267.831035398,22.4263999999966 +10865,8569,179738.272100732,374266.538390189,25 +10866,4298,179727.500500005,374272.500400003,22.2899999999936 +10867,8526,179736.377906322,374289.783502735,25.3417000000045 +10868,8530,179735.812452126,374288.398394603,25 +10869,8531,179735.74127949,374289.03091586,25 +10870,8524,179735.670106854,374289.663437124,25 +10871,8528,179735.596400816,374290.318473138,25 +10872,8527,179735.514370047,374290.153049991,22.2636999999959 +10873,8525,179735.435665764,374291.746948332,25 +10874,8523,179735.298722755,374292.069525249,22.2497000000003 +10875,6571,179735.374175057,374292.293424878,25 +10876,4328,179736.125000004,374292.088,25.3439999999973 +10877,8522,179735.21988526,374293.66462012,25 +10878,6793,179735.867202349,374294.065751866,25.2948000000033 +10879,6794,179735.157087531,374294.222712442,25 +10880,24084,179735.04854377,374295.187356222,25 +10881,24085,179734.958934963,374295.089247465,22.2277000000031 +10882,4327,179734.840600006,374296.140900001,22.2200000000012 +10883,4315,179734.940000001,374296.152000003,25 +10884,8520,179734.739465415,374297.051866952,22.2305999999953 +10885,4314,179727.500999998,374297.500900004,22.3300000000017 +10886,8518,179734.555390205,374298.709919337,22.25 +10887,8519,179734.715366349,374298.175407648,25 +10888,24089,179734.661580641,374298.659887165,25 +10889,6570,179734.607794937,374299.144366682,25 +10890,24086,179735.211444844,374299.096540891,25.1695999999938 +10891,4324,179734.687000003,374299.339000009,25 +10892,24087,179734.845500007,374300.013500001,25.0650000000023 +10893,24088,179734.62780723,374299.872387793,25 +10894,10801,179734.587381195,374300.236667994,25 +10895,4318,179735.004000001,374300.688000001,25.1300000000047 +10896,10803,179734.540485121,374300.659249902,25 +10897,10804,179734.4772182,374301.229349975,25 +10898,6569,179734.383133341,374301.168026067,25 +10899,10805,179734.326338232,374301.67961305,25 +10900,8505,179734.203221787,374301.882066596,22.2869999999966 +10901,10807,179734.297940679,374301.935406543,25 +10902,8507,179734.269543123,374302.191200033,25 +10903,8512,179734.094145324,374302.864569854,22.2983999999997 +10904,10799,179734.190422367,374302.903887279,25 +10905,10800,179734.15086199,374303.260230906,25 +10906,8514,179734.032241676,374303.422165226,22.3049000000028 +10907,4337,179727.500900004,374302.500700008,22.3300000000017 +10908,8508,179733.824407678,374305.294224162,22.3267999999953 +10909,8506,179733.953060102,374305.041949026,25 +10910,8513,179734.111301612,374303.61657453,25 +10911,10810,179734.131081805,374303.438402716,25 +10912,10809,179734.233990572,374303.421081301,25 +10913,10808,179734.280928873,374302.998118866,25 +10914,10806,179734.373919502,374302.160177555,25 +10915,10811,179734.182770349,374303.882628232,25 +10916,10815,179734.064515911,374304.948222447,25 +10917,10812,179734.04505967,374305.123543192,25 +10918,10813,179733.926180527,374305.284069214,25 +10919,10797,179733.899300948,374305.526189402,25 +10920,10816,179733.973658554,374305.766940739,25 +10921,8510,179733.845541794,374306.010429773,25 +10922,10817,179733.924343731,374306.211318094,25 +10923,10818,179733.873614166,374306.668443687,25 +10924,10820,179733.788556661,374307.434899326,25 +10925,8509,179733.738023486,374306.978910509,25 +10926,10822,179733.684264332,374307.463150878,25 +10927,10821,179733.630505174,374307.947391246,25 +10928,10824,179733.700436126,374308.228956126,25 +10929,10826,179733.627809014,374308.883401178,25 +10930,10827,179733.545958675,374309.620956931,25 +10931,6568,179733.522986867,374308.915871989,25 +10932,8504,179733.448990148,374309.582403984,25 +10933,10794,179733.41199179,374309.915669993,25 +10934,8503,179733.309218667,374309.934774872,22.3809000000037 +10935,10829,179733.393492613,374310.082302991,25 +10936,8502,179733.374993432,374310.248935997,25 +10937,10828,179733.494553249,374310.084172774,25 +10938,10830,179733.439597115,374310.579384107,25 +10939,10834,179733.352741387,374311.362043604,25 +10940,10831,179733.300996725,374310.915467996,25 +10941,10835,179733.262206886,374311.264870904,25 +10942,4365,179733.227000006,374311.581999999,25 +10943,10789,179732.967178978,374313.817034081,25 +10944,4368,179733.127600003,374311.570700001,22.3999999999942 +10945,10791,179732.866756469,374313.814529885,22.3882000000012 +10946,4343,179727.500400003,374312.500599999,22.3500000000058 +10947,10792,179732.736334708,374314.936444823,22.3821999999927 +10948,4344,179722.500999998,374312.500700004,22.2899999999936 +10949,4348,179722.500700001,374317.500700001,22.2700000000041 +10950,4342,179717.500700004,374312.500599999,22.5399999999936 +10951,4339,179722.500300001,374307.500300005,22.3099999999977 +10952,4341,179727.500200007,374307.500500001,22.3500000000058 +10953,4336,179722.5002,374302.500200003,22.3300000000017 +10954,8515,179734.375441175,374300.330805209,22.2688999999955 +10955,4312,179722.500599999,374297.500500005,22.3600000000006 +10956,8521,179735.077269915,374294.037594922,22.2353000000003 +10957,4311,179722.500999998,374292.500999998,22.3899999999994 +10958,10832,179733.218409341,374310.752737433,22.3904999999941 +10959,8501,179733.417769112,374308.957009777,22.3695000000007 +10960,10823,179733.53189636,374307.92901174,22.3574999999983 +10961,10825,179733.591203317,374308.301406264,25 +10962,8511,179733.646023609,374306.901013706,22.3454999999958 +10963,10796,179733.79178264,374306.494670141,25 +10964,10819,179733.764903061,374306.736790322,25 +10965,10839,179732.877190582,374314.591132812,25 +10966,10837,179732.930917829,374314.128959946,25 +10967,10790,179732.837268468,374314.93455112,25 +10968,10841,179732.803444486,374315.225511964,25 +10969,10843,179732.750983316,374315.676793747,25 +10970,10833,179733.337345868,374310.588049818,25 +10971,8517,179734.439298738,374300.662111226,25 +10972,10802,179734.469743159,374300.387880407,25 +10973,8516,179734.495464139,374300.156196374,25 +10974,24082,179735.418889698,374297.50508178,25.2091999999975 +10975,24083,179735.643046021,374295.785416819,25.2519999999931 +10976,24090,179734.827683177,374297.163703825,25 +10977,8529,179735.646553036,374288.978328899,22.2722000000067 +10978,8532,179735.763529804,374287.938746657,22.2798000000039 +10979,8533,179735.889245387,374287.715921983,25 +10980,6572,179735.966038655,374287.033449363,25 +10981,10026,179708.390814923,374326.678868346,25 +10982,10028,179708.248286013,374327.939463083,25 +10983,10030,179708.12504511,374329.0294654,25 +10984,4373,179708.068,374329.534000002,25 +10985,10041,179707.83759011,374331.601909328,25 +10986,10040,179707.936238538,374331.619843446,22.6187999999966 +10987,10039,179707.652445711,374333.263564691,25 +10988,10038,179707.72119955,374333.549789846,22.6085000000021 +10989,10035,179707.531681549,374335.250688791,22.5993000000017 +10990,4384,179712.500799999,374337.500700001,22.4100000000035 +10991,10036,179707.425352395,374336.20497888,22.5942000000068 +10992,10032,179707.319023229,374337.159268968,22.5890999999974 +10993,10033,179707.188588534,374338.329903111,22.5828000000038 +10994,9570,179707.05815383,374339.500537246,22.5764999999956 +10995,10043,179706.86924592,374341.195960689,22.5673999999999 +10996,10037,179707.484526265,374334.770627532,25 +10997,9572,179704.40782446,374363.286891755,22.4486000000034 +10998,10073,179704.321054235,374364.065642986,22.4444999999978 +10999,8398,179722.486468323,374406.490237866,22.2887999999948 +11000,8400,179722.376403265,374407.491665669,22.2798999999941 +11001,8399,179722.538259894,374406.934403554,25 +11002,15433,179722.600784846,374406.365519743,25 +11003,15432,179722.473876715,374407.520194408,25 +11004,8401,179722.409493539,374408.105985261,25 +11005,15431,179722.323031552,374408.89266042,25 +11006,8402,179722.262844902,374408.524877373,22.2707999999984 +11007,8404,179722.111083552,374409.905679271,22.258600000001 +11008,15436,179721.933591779,374411.520589631,22.2443000000058 +11009,4452,179721.756099999,374413.135499999,22.2299999999959 +11010,15437,179722.026397564,374411.591587137,25 +11011,15435,179722.169057742,374410.293592323,25 +11012,8403,179722.236569554,374409.679335579,25 +11013,4445,179721.855500001,374413.146499999,25 +11014,8397,179721.782079186,374413.814519871,25 +11015,8396,179721.634357464,374414.243169736,22.2201999999961 +11016,6553,179721.708658375,374414.482539739,25 +11017,8440,179726.466999352,374371.556486044,25 +11018,15408,179726.578894731,374370.554820299,25 +11019,15406,179726.644112226,374369.971005943,25 +11020,8444,179726.758937847,374368.94310927,25 +11021,8462,179728.613280483,374351.442849476,22.3570000000036 +11022,8463,179728.743449651,374351.178617515,25 +11023,15395,179728.67264463,374351.812413812,25 +11024,8459,179728.3926428,374353.417864248,22.3589999999967 +11025,8458,179728.527100231,374353.115223926,25 +11026,8465,179728.881930873,374349.939031865,25 +11027,15393,179728.918363571,374349.612912245,25 +11028,8616,179741.03819539,374240.708500896,22.5524000000005 +11029,8615,179741.112377807,374240.951595526,25 +11030,9961,179716.320006665,374255.632875968,25 +11031,4283,179716.223299999,374256.513700008,25 +11032,4189,179724.230000008,374162.988699999,26.6199999999953 +11033,4184,179726.293000005,374144.037,26.6600000000035 +11034,9874,179727.623549759,374154.409265928,25 +11035,9871,179727.468405332,374155.788556665,25 +11036,4183,179726.922000002,374160.646300007,25 +11037,9881,179726.685207982,374162.751480479,25 +11038,4180,179727.021500003,374160.656800006,22.6533000000054 +11039,9872,179727.551336076,374155.946277816,22.6352000000043 +11040,4162,179732.500500001,374157.500200003,22.5299999999988 +11041,9875,179727.673687011,374154.858513467,22.6310999999987 +11042,37,179732.500600003,374152.500500001,22.5099999999948 +11043,4160,179737.500600003,374152.500600003,22.4700000000012 +11044,4158,179737.500700004,374147.500599999,22.4799999999959 +11045,4187,179742.500599999,374152.500600003,22.3300000000017 +11046,4156,179742.500400003,374147.500300001,22.2799999999988 +11047,4154,179737.501000002,374142.500800002,22.5099999999948 +11048,4152,179742.500400003,374142.500100005,22.2799999999988 +11049,4151,179742.500100005,374137.5009,22.2899999999936 +11050,4149,179747.500999998,374137.500600003,22.2599999999948 +11051,4186,179747.500400003,374132.500799999,22.2200000000012 +11052,4146,179742.500700001,374132.500399999,22.2899999999936 +11053,4147,179737.500300005,374132.500799999,22.5 +11054,4148,179737.500700004,374137.500600003,22.5200000000041 +11055,4150,179732.5009,374137.500799999,22.4900000000052 +11056,4153,179732.500700004,374142.500599999,22.4799999999959 +11057,4178,179729.427500002,374138.2656,22.7599999999948 +11058,4179,179728.879500005,374144.1382,22.5899999999965 +11059,4159,179732.500100002,374147.500800002,22.4700000000012 +11060,9869,179728.719932433,374145.556839813,22.5954000000056 +11061,9867,179728.560364872,374146.975479625,22.6009000000049 +11062,9865,179728.399262745,374148.407762568,22.6064000000042 +11063,9862,179728.234746318,374149.870400354,22.6119999999937 +11064,9863,179728.137743071,374150.732810389,22.6153000000049 +11065,9553,179728.040739819,374151.595220417,22.6186000000016 +11066,9873,179727.796037957,374153.770749114,22.6269000000029 +11067,9861,179728.022483297,374150.862600766,25 +11068,9864,179728.196046848,374149.319557231,25 +11069,9866,179728.342566978,374148.016939685,25 +11070,9868,179728.484503895,374146.755068582,25 +11071,9870,179728.619030647,374145.559076507,25 +11072,4182,179728.780000001,374144.127999999,25 +11073,4181,179729.328000005,374138.256000001,25 +11074,23511,179729.396888524,374137.562772039,25 +11075,23509,179729.541507922,374136.107461125,25 +11076,23506,179729.686807293,374134.645307589,25 +11077,23503,179729.852876443,374132.974146977,25 +11078,23492,179730.055550519,374130.934629451,25 +11079,9552,179730.060837734,374131.89256075,22.6738999999943 +11080,23505,179729.965229798,374132.854627423,22.6869000000006 +11081,23504,179729.869621858,374133.816694099,22.6999000000069 +11082,4185,179732.500500001,374132.500500001,22.429999999993 +11083,23508,179729.796909098,374134.548375305,22.7097999999969 +11084,23507,179729.724196333,374135.28005651,22.7195999999967 +11085,23510,179729.599619176,374136.533629544,22.7366000000038 +11086,23512,179729.513559584,374137.399614774,22.7483000000066 +11087,23494,179730.156674787,374130.928188521,22.6607999999978 +11088,23493,179730.252511848,374129.963816304,22.6478000000061 +11089,23497,179730.340391804,374129.079513378,22.6358000000037 +11090,4068,179737.5009,374127.500800002,22.5399999999936 +11091,23496,179730.428271759,374128.195210468,22.623900000006 +11092,23495,179730.22703917,374129.208932165,25 +11093,23498,179730.383737668,374127.632068772,25 +11094,4096,179726.395000007,374121.483000003,27.0200000000041 +11095,23500,179730.542307317,374126.036375951,25 +11096,23502,179730.729831025,374124.149317205,25 +11097,4089,179730.946000002,374121.973999999,25 +11098,4088,179731.406000003,374119.539000001,25 +11099,4078,179731.0451,374121.988300003,22.5399999999936 +11100,4077,179731.504800007,374119.554800004,22.5200000000041 +11101,4064,179737.500600003,374122.500400003,22.4900000000052 +11102,4062,179737.5009,374117.500700004,22.4900000000052 +11103,4065,179742.500400003,374122.500400003,22.3399999999965 +11104,4069,179742.500900004,374127.500900004,22.2899999999936 +11105,4066,179747.500400003,374122.500700001,22.4100000000035 +11106,4063,179747.500599999,374117.500799995,22.3500000000058 +11107,4061,179742.500300001,374117.500599999,22.3899999999994 +11108,4059,179742.500500005,374112.500700004,22.4100000000035 +11109,4058,179747.500400003,374112.500100002,22.3600000000006 +11110,4055,179742.500700001,374107.500500001,22.429999999993 +11111,4057,179737.500600003,374107.500700008,22.4100000000035 +11112,4060,179737.5009,374112.500799999,22.4900000000052 +11113,11188,179732.755092293,374109.68800386,22.5657000000065 +11114,11192,179732.537589606,374111.462616649,22.5436999999947 +11115,9551,179732.320086911,374113.237229433,22.5216999999975 +11116,4093,179732.105200008,374114.990499999,22.5 +11117,11194,179732.213279404,374113.286702726,25.0151000000042 +11118,11193,179732.438002948,374111.453069918,25.0314999999973 +11119,4091,179729.419000003,374114.673999999,26.8399999999965 +11120,15,179731.304000005,374108.863000005,26.0749999999971 +11121,4094,179730.873,374101.008000005,26.8800000000047 +11122,4043,179732.022999998,374087.256999999,26.8899999999994 +11123,38,179733.173000004,374073.506000005,26.8999999999942 +11124,4042,179734.184500009,374063.1395,26.9100000000035 +11125,4044,179735.196000002,374052.772999998,26.9199999999983 +11126,144,179737.313200001,374033.287800003,26.9499999999971 +11127,3962,179739.430399999,374013.8026,26.9799999999959 +11128,39,179741.547599997,373994.317400005,27.0099999999948 +11129,11007,179744.142469626,374005.152556185,25 +11130,3959,179743.862500001,374007.612000003,25 +11131,11014,179743.518890548,374010.630499423,25 +11132,3956,179743.961900003,374007.623300001,22.6450000000041 +11133,11013,179743.615949575,374010.662344452,22.6107000000047 +11134,3946,179747.500400003,374007.5009,22.5399999999936 +11135,9533,179744.243018504,374005.153763678,22.672900000005 +11136,11006,179744.70189365,374001.122692022,22.7185000000027 +11137,11005,179744.635634065,374000.820264,25 +11138,11003,179744.889853332,373999.471526138,22.7370999999985 +11139,11002,179744.866273407,373998.794171043,25 +11140,11004,179744.988113675,373998.608340412,22.7468999999983 +11141,9532,179745.086374015,373997.745154697,22.7565999999933 +11142,10995,179745.047530167,373997.201888207,25 +11143,10996,179745.197021186,373996.77315456,22.7676000000065 +11144,10997,179745.144982465,373996.345800884,25 +11145,10998,179745.319287024,373995.699088264,22.7798000000039 +11146,10999,179745.251340255,373995.411481649,25 +11147,11001,179745.418125939,373993.946322594,25 +11148,3943,179745.625000007,373992.129000001,25 +11149,3942,179746.973000005,373980.181000005,25 +11150,3945,179743.664799999,373974.832200002,27.0399999999936 +11151,10994,179747.164794751,373978.481026951,25 +11152,10992,179747.341026295,373976.918998443,25 +11153,10983,179747.475409888,373975.72788921,25 +11154,10991,179747.518829871,373975.343036126,25 +11155,10986,179747.645518325,373974.220132839,25 +11156,10988,179747.790900871,373972.931534443,25 +11157,10990,179747.935973998,373971.645678524,25 +11158,3941,179748.321000002,373968.233000003,25 +11159,10981,179748.624496043,373965.385298226,25 +11160,10982,179748.719852384,373965.434139904,22.5492999999988 +11161,3938,179748.420400005,373968.243900001,22.5200000000041 +11162,3931,179752.500600003,373967.500700001,22.5099999999948 +11163,3880,179752.500399999,373962.500799999,22.5099999999948 +11164,9530,179749.01930476,373962.624379806,22.5785999999935 +11165,10975,179749.130560204,373961.580470584,22.5895000000019 +11166,10974,179749.241815649,373960.536561355,22.6003000000055 +11167,3876,179752.5009,373957.5009,22.5800000000017 +11168,3878,179757.500799999,373962.500399999,22.5 +11169,3877,179757.500100002,373957.5009,22.5299999999988 +11170,3896,179762.500599999,373957.500700004,22.25 +11171,3873,179757.500600003,373952.500500005,22.5299999999988 +11172,3871,179752.501000002,373952.500300001,22.6300000000047 +11173,3869,179757.500200003,373947.500500005,22.5200000000041 +11174,3894,179762.500100005,373947.500800002,22.2799999999988 +11175,3867,179757.5009,373942.500399996,22.6199999999953 +11176,10967,179751.058862973,373944.125689343,22.6880999999994 +11177,3893,179751.296399999,373942.012699999,22.695000000007 +11178,10955,179751.530724641,373939.928136267,22.7017999999953 +11179,3865,179757.500399999,373937.500500001,22.5500000000029 +11180,10956,179751.638690453,373938.967666943,22.7050000000017 +11181,9528,179751.746656273,373938.00719763,22.7081000000035 +11182,10954,179751.587480001,373938.527944434,25.0062999999936 +11183,10957,179751.437153567,373939.865188926,25.005799999999 +11184,14,179747.288300004,373940.304699998,27.0800000000017 +11185,10943,179751.744941391,373937.127230141,25.0068000000028 +11186,10946,179751.947393335,373935.326297756,25.0074000000022 +11187,10944,179751.973357964,373935.990448028,22.7146999999968 +11188,10945,179751.860007118,373936.998822823,22.7114000000001 +11189,10948,179752.070273437,373935.128283113,22.7174999999988 +11190,10947,179752.167188909,373934.266118206,22.7203000000009 +11191,3860,179757.500300005,373932.500200003,22.6300000000047 +11192,10950,179752.352006298,373932.621973436,22.7256999999954 +11193,10952,179752.592699323,373930.480756212,22.7326999999932 +11194,3897,179757.500200003,373927.500100005,22.6199999999953 +11195,3885,179752.8433,373928.251400005,22.7400000000052 +11196,10942,179752.958630946,373927.266982973,22.7314000000042 +11197,10940,179753.073961895,373926.282565944,22.7228000000032 +11198,10936,179753.261548344,373924.681405935,22.7088999999978 +11199,3854,179757.500600003,373922.500500008,22.5800000000017 +11200,3858,179762.500700001,373927.500700001,22.4199999999983 +11201,3855,179762.501000002,373922.500599999,22.4199999999983 +11202,3827,179762.500800002,373917.500700004,22.4199999999983 +11203,3825,179757.500799999,373917.500399999,22.6000000000058 +11204,9527,179753.806219216,373920.032321643,22.6683000000048 +11205,10934,179753.561740458,373922.119090717,22.6864999999962 +11206,10937,179753.411644403,373923.40024833,22.6977000000043 +11207,10933,179753.48717092,373921.896268293,25.0099999999948 +11208,10938,179753.286836717,373923.60632766,25.0099999999948 +11209,10935,179753.198816687,373924.357669614,25.0099999999948 +11210,10939,179753.023276743,373925.856084395,25.0099999999948 +11211,3851,179748.794700004,373925.2623,27.0800000000017 +11212,10941,179752.869141813,373927.171785299,25.0099999999948 +11213,3886,179752.743999999,373928.240000002,25.0099999999948 +11214,10953,179752.485421643,373930.540210806,25.0092000000004 +11215,10951,179752.282221198,373932.347801574,25.0084999999963 +11216,10949,179752.11963658,373933.794089966,25.0080000000016 +11217,3852,179745.782000005,373955.346999999,27.070000000007 +11218,10961,179750.398466058,373949.104942076,25.0023999999976 +11219,10958,179750.206841126,373950.809561618,25.0017999999982 +11220,10959,179750.419072628,373949.816887084,22.6695000000036 +11221,10960,179750.311969891,373950.769609932,22.6664000000019 +11222,9529,179750.204867147,373951.722332764,22.6631999999954 +11223,10970,179750.088293921,373952.75929952,22.6598999999987 +11224,10972,179749.918846961,373954.266599763,22.6548999999941 +11225,3849,179749.749400005,373955.773900002,22.6499999999942 +11226,10979,179749.58263655,373957.338640593,22.6337000000058 +11227,3850,179749.650000002,373955.763000004,25 +11228,10980,179749.475693237,373957.398519497,25 +11229,10978,179749.337696042,373958.693346433,25 +11230,10977,179749.415873095,373958.903381176,22.6174000000028 +11231,10976,179749.185190491,373960.124305174,25 +11232,10973,179748.987352125,373961.980621528,25 +11233,10971,179749.83230732,373954.141266216,25.0005999999994 +11234,10969,179750.025760755,373952.420380961,25.0011999999988 +11235,10963,179750.517743487,373948.939169314,22.6723000000056 +11236,10962,179750.616414342,373948.061451547,22.6751999999979 +11237,10964,179750.574357253,373947.540283609,25.002999999997 +11238,10965,179750.82132595,373946.23867869,22.6812000000064 +11239,10966,179750.755479049,373945.92909576,25.0035999999964 +11240,10968,179750.958220828,373944.125585072,25.0041999999958 +11241,3887,179751.197000004,373942.001500003,25.0050000000047 +11242,3839,179750.301000003,373910.220000003,27.0800000000017 +11243,3843,179752.236500002,373892.528500002,27.1100000000006 +11244,3796,179753.861000009,373868.875000004,27.1000000000058 +11245,14562,179756.911856525,373867.920398861,24.9600000000064 +11246,3768,179756.701000001,373869.795000002,24.9600000000064 +11247,3801,179754.488000005,373870.772999998,27.1499999999942 +11248,3748,179758.157000005,373870.842000004,24.9140000000043 +11249,23227,179758.233022884,373870.190945048,24.9183000000048 +11250,23228,179758.326298006,373870.340584539,22.4529000000039 +11251,3745,179758.267999999,373870.764200002,22.4700000000012 +11252,23230,179758.568,373870.933000002,24.9619999999995 +11253,10886,179758.872333769,373872.384416297,25.0099999999948 +11254,3749,179758.979000002,373871.024,25.0099999999948 +11255,23229,179758.676750001,373870.854699999,22.4700000000012 +11256,3746,179759.085500002,373870.945200004,22.4700000000012 +11257,9523,179758.384596013,373869.916969076,22.4358000000066 +11258,23224,179758.483272009,373869.199951809,22.406799999997 +11259,14564,179758.581948012,373868.482934538,22.3779000000068 +11260,3719,179762.501000002,373872.5009,22.3699999999953 +11261,10885,179758.966531068,373872.462565191,22.4389999999985 +11262,9524,179758.847562131,373873.979930386,22.4079999999958 +11263,3720,179762.500800002,373877.500100009,22.3000000000029 +11264,3721,179767.500599999,373877.500700004,22.3000000000029 +11265,3717,179767.500900004,373872.500799999,22.3399999999965 +11266,3797,179772.500500001,373877.500600003,22.179999999993 +11267,3803,179772.500100002,373882.5002,22.2400000000052 +11268,3804,179777.500399999,373882.5002,22.3399999999965 +11269,3807,179772.500399999,373887.500100005,22.2200000000012 +11270,3809,179777.500200003,373887.500800002,22.429999999993 +11271,3812,179772.500300005,373892.500399999,22.25 +11272,21754,179779.858478159,373891.462318566,22.385500000004 +11273,21757,179780.013314717,373890.100852996,22.391300000003 +11274,8797,179780.168151263,373888.73938743,22.3972000000067 +11275,3828,179780.374600004,373886.924100004,22.4049999999988 +11276,24190,179780.589056514,373885.038386077,22.4131000000052 +11277,24189,179780.682619318,373885.100603513,25.0099999999948 +11278,24191,179780.788178973,373884.172405265,25.0099999999948 +11279,24184,179781.643466312,373884.772384871,25.3760000000038 +11280,21760,179780.893738635,373883.244207021,25.0099999999948 +11281,24186,179781.869745385,373882.718801897,25.3803999999946 +11282,24187,179781.001388859,373882.297626182,25.0099999999948 +11283,21763,179781.109039087,373881.351045337,25.0099999999948 +11284,11204,179782.096024454,373880.66521892,25.3846999999951 +11285,21761,179781.138385534,373881.092998587,25.0099999999948 +11286,21764,179781.31419827,373879.547056917,25.0099999999948 +11287,8798,179781.232426062,373879.381244298,22.4373999999953 +11288,21762,179781.017969545,373881.266958226,22.4293000000034 +11289,24188,179780.910741288,373882.209815189,22.4253000000026 +11290,11205,179780.803513031,373883.152672153,22.421199999997 +11291,24192,179780.696284771,373884.095529113,22.4171999999962 +11292,3790,179777.500100002,373877.500100009,22.2299999999959 +11293,21766,179781.443749268,373877.523081549,22.4453999999969 +11294,21768,179781.549410865,373876.594000172,22.4493999999977 +11295,8799,179781.655072469,373875.664918795,22.4533999999985 +11296,3716,179777.500700004,373872.500300005,22.2599999999948 +11297,3718,179772.500900004,373872.500799999,22.1999999999971 +11298,3789,179772.500600003,373867.500700001,22.179999999993 +11299,3715,179777.5009,373867.500599995,22.2599999999948 +11300,8801,179782.864522208,373869.818405934,22.4714999999997 +11301,23456,179782.701528523,373871.246553179,22.4673000000039 +11302,23458,179782.620031677,373871.960626796,22.4651000000013 +11303,8800,179782.538534835,373872.674700417,22.4630000000034 +11304,3728,179781.829599999,373874.1303,22.4600000000064 +11305,3729,179782.4221,373873.694900002,22.4600000000064 +11306,3776,179782.623400003,373872.809300009,25.0071999999927 +11307,3775,179782.516000003,373873.750000004,25.0099999999948 +11308,3756,179782.737,373872.785,24.9900000000052 +11309,3752,179783.653000005,373873.932999998,25.4079999999958 +11310,3757,179784.245000001,373873.135000005,24.9900000000052 +11311,3751,179784.283,373873.260000002,25.4070000000065 +11312,3777,179786.046,373873.463000007,26.8800000000047 +11313,22766,179784.56310166,373870.340578064,24.9900000000052 +11314,3783,179786.793000001,373867.159000006,26.8899999999994 +11315,3778,179786.217999998,373874.094000004,27.0599999999977 +11316,3782,179787.036000002,373866.576000005,27.0200000000041 +11317,3727,179785.022000004,373866.943999998,25.4020000000019 +11318,3758,179784.937000003,373867.056000002,24.9900000000052 +11319,3734,179783.329500005,373866.033100005,25.0188000000053 +11320,3759,179783.382000003,373867.055,24.9900000000052 +11321,22767,179784.823524639,373868.05284499,24.9900000000052 +11322,23466,179783.226500001,373868.441000003,24.9900000000052 +11323,23468,179783.087117627,373868.35916071,25.0166000000027 +11324,23469,179783.217939436,373867.103708573,25.0184000000008 +11325,23470,179783.235953495,373866.930833831,25.0187000000005 +11326,3730,179783.192200005,373866.947299998,22.4799999999959 +11327,23467,179783.028361108,373868.382852968,22.4756999999954 +11328,3732,179782.711300004,373865.379500002,22.429999999993 +11329,3712,179777.501000002,373862.500700001,22.3399999999965 +11330,9230,179782.946291864,373863.09490205,22.3185999999987 +11331,9231,179783.022891708,373863.327681798,25.0200000000041 +11332,9229,179783.083580345,373862.737609949,25.0200000000041 +11333,8802,179783.138257656,373861.228604868,22.2274999999936 +11334,9232,179783.224437628,373861.368063282,25.0200000000041 +11335,9235,179783.224071138,373860.394323628,22.1869000000006 +11336,9233,179783.337467857,373860.269077346,25.0200000000041 +11337,8803,179784.221072614,373859.964522127,25.3454000000056 +11338,3724,179783.916000001,373862.438999999,25.3260000000009 +11339,3780,179786.898000002,373862.522000007,27.0599999999977 +11340,6657,179784.526145227,373857.49004427,25.3647999999957 +11341,3737,179783.590999998,373857.804000005,25.0200000000041 +11342,9236,179783.41204061,373859.544011071,25.0200000000041 +11343,3802,179783.491599999,373857.793400005,22.0599999999977 +11344,9234,179783.309884619,373859.560042385,22.1462000000029 +11345,3709,179777.501000002,373857.500799995,22.3399999999965 +11346,139,179772.500399999,373857.5009,22.25 +11347,3706,179777.500799999,373852.500399999,22.3600000000006 +11348,3707,179772.500200003,373852.500500001,22.2700000000041 +11349,3705,179777.500200003,373847.500900004,22.2899999999936 +11350,3703,179782.5009,373847.500799999,22.2899999999936 +11351,3701,179782.5009,373842.500800002,22.320000000007 +11352,3733,179784.819600005,373845.652199998,22.2599999999948 +11353,9258,179785.009001479,373843.920602743,22.2884999999951 +11354,9259,179785.091003202,373844.09049188,25.0200000000041 +11355,9255,179784.691107381,373846.826939903,22.2406999999948 +11356,9257,179785.118020795,373843.843488343,25.0200000000041 +11357,8807,179785.198402949,373842.189005483,22.3169999999955 +11358,9260,179785.300529733,373842.174933385,25.0200000000041 +11359,9264,179785.316146445,373841.112539079,22.3347999999969 +11360,9265,179785.41388448,373841.138608083,25.0200000000041 +11361,9263,179785.509498861,373840.264470939,25.0200000000041 +11362,9261,179785.5535389,373839.861842819,25.0200000000041 +11363,9262,179785.433889948,373840.036072671,22.3524999999936 +11364,3695,179782.500600003,373837.500599999,22.2299999999959 +11365,3700,179777.500399999,373842.500400003,22.2200000000012 +11366,3698,179777.500200003,373837.500999998,22.179999999993 +11367,3692,179777.500399999,373832.500100002,22.1699999999983 +11368,3668,179782.5009,373832.500700004,22.3999999999942 +11369,3664,179782.500400007,373827.500200003,22.2700000000041 +11370,9278,179786.584959872,373829.598674722,22.4489999999932 +11371,9280,179786.685125578,373828.702660106,22.4465000000055 +11372,8810,179786.785291292,373827.806645487,22.4440000000031 +11373,9283,179787.045004826,373825.483424064,22.4375 +11374,3662,179782.5009,373822.500599999,22.3399999999965 +11375,3691,179777.500500001,373822.500400003,22.1399999999994 +11376,3663,179777.500399999,373827.500100002,22.1499999999942 +11377,3661,179772.500900004,373822.500300001,22.3600000000006 +11378,3690,179772.500399999,373827.500799999,22.3600000000006 +11379,3667,179772.500999998,373832.500600003,22.3399999999965 +11380,3666,179767.500599999,373832.500600003,22.5500000000029 +11381,3696,179772.500200003,373837.500900008,22.2899999999936 +11382,3788,179772.500700008,373842.500300001,22.2400000000052 +11383,3699,179767.5002,373842.5002,22.3800000000047 +11384,3704,179767.500999998,373847.500900004,22.4499999999971 +11385,3702,179772.500600003,373847.500600003,22.2700000000041 +11386,3708,179767.500800002,373852.500799999,22.4600000000064 +11387,9521,179761.081890415,373848.913664613,22.6199999999953 +11388,21317,179760.897501096,373850.619919106,22.6199999999953 +11389,21319,179760.792250544,373851.59385955,22.6199999999953 +11390,3740,179760.687000003,373852.567800004,22.6199999999953 +11391,21324,179760.086167101,373854.780415174,22.6199999999953 +11392,3710,179767.500300001,373857.5009,22.4799999999959 +11393,3713,179767.500800002,373862.500800002,22.3699999999953 +11394,3711,179772.500300005,373862.500599999,22.2200000000012 +11395,3714,179767.500500005,373867.500599995,22.3300000000017 +11396,3743,179759.082600001,373864.0403,22.6000000000058 +11397,23205,179758.930950001,373865.544600006,22.4600000000064 +11398,3744,179758.779300001,373867.048900001,22.320000000007 +11399,23213,179758.667505782,373866.470062003,24.9658000000054 +11400,23215,179758.718477543,373866.03354314,24.9713999999949 +11401,23214,179758.67857537,373866.047719393,25.0200000000041 +11402,23211,179758.628150731,373866.547938775,25.0200000000041 +11403,23216,179758.628904589,373866.800640054,24.9615999999951 +11404,23212,179758.606575366,373866.761969391,25.0200000000041 +11405,23210,179758.623491984,373866.846993249,24.9609999999957 +11406,23217,179758.605729818,373866.999107275,24.9590000000026 +11407,23218,179758.591949392,373867.117121946,24.9575000000041 +11408,23219,179758.516607475,373867.762345184,24.9492999999929 +11409,14563,179758.473999999,373867.794749998,25.0068000000028 +11410,23220,179758.45104786,373868.323793445,24.9421000000002 +11411,14565,179758.390217721,373868.396097321,25.0166000000027 +11412,3763,179757.123000003,373866.981000002,24.9729999999981 +11413,14561,179757.052429896,373866.670643836,24.9600000000064 +11414,3764,179757.129000004,373866.881000001,24.9729999999981 +11415,3769,179758.574000005,373867.077000003,24.9949999999953 +11416,3765,179758.585000001,373866.976,25.0200000000041 +11417,23222,179758.282108866,373869.172048658,25.0292999999947 +11418,23221,179758.431774486,373868.488849349,24.9400000000023 +11419,23223,179758.355631541,373869.140932538,24.931700000001 +11420,23225,179758.327693123,373869.380195323,24.928700000004 +11421,3794,179758.173999999,373869.947999999,25.0420000000013 +11422,23226,179758.267332263,373869.897121772,24.9220999999961 +11423,23204,179758.729000006,373865.547500003,25.0200000000041 +11424,3767,179757.357999999,373863.954,24.9600000000064 +11425,3786,179754.349000003,373863.693999998,27.0800000000017 +11426,3631,179763.951499999,373790.7095,27.1100000000006 +11427,3693,179762.089000002,373809.426000003,27.0099999999948 +11428,22089,179765.785868526,373802.520298883,25.4655000000057 +11429,3620,179766.858000003,373792.298000004,25.5200000000041 +11430,22100,179766.952975016,373791.466481097,25.5176999999967 +11431,22095,179767.011067487,373790.957873803,25.516300000003 +11432,22102,179767.095836345,373790.215711236,25.5142999999953 +11433,22103,179767.183042578,373789.452209026,25.5121000000072 +11434,22105,179767.299209632,373788.435151074,25.5093000000052 +11435,22104,179767.252193049,373789.289544135,25.0099999999948 +11436,21257,179767.33227209,373788.588441521,25.0099999999948 +11437,22106,179767.36943939,373788.263036855,25.0099999999948 +11438,21259,179767.479056422,373788.184363872,22.6398999999947 +11439,22108,179767.479037043,373787.303494841,25.0099999999948 +11440,21256,179767.590664115,373787.207242209,22.6447000000044 +11441,22111,179767.498797778,373787.13048698,25.0099999999948 +11442,21255,179767.536459249,373786.800755791,25.0099999999948 +11443,22107,179767.489543643,373786.768751536,25.504700000005 +11444,22110,179767.445820961,373787.151549377,25.505799999999 +11445,22112,179767.64949581,373785.368349031,25.5008999999991 +11446,22115,179767.864659339,373783.484563779,25.4956999999995 +11447,22118,179768.108803228,373781.347051587,25.4897999999957 +11448,21250,179768.067043014,373782.155424461,25.0099999999948 +11449,22119,179768.160113871,373781.340576731,25.0099999999948 +11450,21251,179768.267849624,373781.278505772,22.6732999999949 +11451,21252,179768.207753085,373780.923489068,25.0099999999948 +11452,21254,179768.385352232,373779.368584938,25.0099999999948 +11453,22120,179768.366693329,373779.089189496,25.4836000000068 +11454,3630,179765.814000007,373771.993000001,27.2100000000064 +11455,3621,179768.514000002,373777.7995,25.4799999999959 +11456,22121,179768.474676117,373778.586542476,25.0099999999948 +11457,3618,179768.564000003,373777.804500002,25.0099999999948 +11458,21242,179768.701122407,373776.603975102,25.0099999999948 +11459,22124,179768.678598534,373776.358417984,25.4759999999951 +11460,21244,179768.731992789,373776.333700765,25.0099999999948 +11461,22127,179768.792760711,373775.801669627,25.0099999999948 +11462,22128,179768.798095573,373775.312205523,25.4731000000029 +11463,22131,179768.902609605,373774.397171278,25.4706000000006 +11464,22133,179769.023939237,373773.334914275,25.4676999999938 +11465,22135,179769.111530419,373772.568041835,25.4655999999959 +11466,22137,179769.202010363,373771.775877863,25.4633999999933 +11467,22139,179769.294904474,373770.962577596,25.4611000000004 +11468,22142,179769.402430434,373770.021173526,25.4584999999934 +11469,22144,179769.51461073,373769.039020166,25.4557999999961 +11470,22147,179769.660248198,373767.76394479,25.4523000000045 +11471,22149,179769.777116932,373766.740743484,25.4495000000024 +11472,22151,179769.883488081,373765.80944993,25.4468999999954 +11473,22150,179769.859823424,373766.459393788,25.0099999999948 +11474,21229,179769.914394669,373765.981615271,25.0099999999948 +11475,22154,179769.952444453,373765.64848436,25.0099999999948 +11476,22152,179769.99049424,373765.315353431,25.0099999999948 +11477,22155,179769.974605665,373765.011703409,25.4446999999927 +11478,22156,179770.028544024,373764.982222512,25.0099999999948 +11479,21227,179769.80525218,373766.937172301,25.0099999999948 +11480,22148,179769.747014742,373767.44704878,25.0099999999948 +11481,21225,179769.696955711,373767.885322224,25.0099999999948 +11482,22145,179769.600766137,373768.727474734,25.0099999999948 +11483,22146,179769.554111242,373769.13594453,25.0099999999948 +11484,21232,179769.504576564,373769.569627251,25.0099999999948 +11485,22143,179769.454638425,373770.006842297,25.0099999999948 +11486,22140,179769.430920918,373770.214492183,25.0099999999948 +11487,21235,179769.357265275,373770.859357115,25.0099999999948 +11488,22141,179769.321838506,373771.169523213,25.0099999999948 +11489,22138,179769.286411736,373771.479689315,25.0099999999948 +11490,21237,179769.230649173,373771.967897944,25.0099999999948 +11491,22136,179769.167382125,373772.521809354,25.0099999999948 +11492,21239,179769.110172637,373773.02268599,25.0099999999948 +11493,22134,179769.066888329,373773.401645903,25.0099999999948 +11494,21241,179768.975064445,373774.205576204,25.0099999999948 +11495,22132,179768.947903439,373774.443374377,25.0099999999948 +11496,22129,179768.914296534,373774.737607349,25.0099999999948 +11497,22125,179768.853528623,373775.269638482,25.0099999999948 +11498,22130,179768.8362724,373775.42071899,25.0099999999948 +11499,22122,179768.430014178,373778.977563709,25.0099999999948 +11500,21249,179768.111363545,373782.648536194,22.6667000000016 +11501,21246,179767.954250317,373784.024057239,22.6600000000035 +11502,21247,179767.86545245,373784.801479574,22.6563000000024 +11503,3629,179772.500700008,373787.500600003,22.6000000000058 +11504,3604,179777.500700004,373787.500399999,22.320000000007 +11505,3608,179777.500100002,373792.500700004,22.2599999999948 +11506,3606,179772.500399999,373792.500300001,22.5500000000029 +11507,3646,179772.500500001,373797.500700001,22.4199999999983 +11508,3645,179777.500799999,373797.500599999,22.2100000000064 +11509,3633,179782.500100005,373792.5009,22.0899999999965 +11510,3643,179782.500500008,373797.500500005,22.1499999999942 +11511,3647,179782.500500008,373802.500200003,22.1499999999942 +11512,3644,179787.500300001,373797.500500005,22.3000000000029 +11513,3607,179787.500400003,373792.500599999,22.320000000007 +11514,9322,179790.42200847,373794.825925995,22.379700000005 +11515,8821,179790.515964918,373793.923633989,22.3809999999939 +11516,9325,179790.683941156,373792.310507592,22.3834000000061 +11517,9327,179790.767929275,373791.503944397,22.3846000000049 +11518,8823,179790.851917394,373790.697381202,22.3858000000037 +11519,3605,179787.500400003,373787.500399999,22.3999999999942 +11520,3632,179782.5002,373787.500300005,22.1100000000006 +11521,3600,179782.500500008,373782.500399999,22.1399999999994 +11522,3601,179787.500700001,373782.500600003,22.3000000000029 +11523,9333,179791.388037305,373785.54900888,22.3935000000056 +11524,3609,179791.145200003,373787.880899999,22.3899999999994 +11525,9330,179790.9985587,373789.289140601,22.3879000000015 +11526,9331,179791.113993745,373789.146450192,25.0200000000041 +11527,3610,179791.244700003,373787.891300004,25.0200000000041 +11528,9335,179791.472806141,373785.7006956,25.0200000000041 +11529,6650,179792.446339473,373785.114145335,25.3886999999959 +11530,9332,179791.543264963,373785.024048328,25.0200000000041 +11531,9334,179791.477157056,373784.693219628,22.3947000000044 +11532,9336,179791.602372814,373784.456409372,25.0200000000041 +11533,8824,179791.566276807,373783.837430369,22.3959999999934 +11534,9338,179791.775961488,373781.823893566,22.3990000000049 +11535,8826,179792.019833256,373779.482068852,22.4024000000063 +11536,9343,179792.164284173,373778.094951607,22.4045000000042 +11537,9346,179792.384332567,373775.981895309,22.4076000000059 +11538,9347,179792.46761629,373775.182147652,22.4088000000047 +11539,9349,179792.537693862,373775.474106658,25.0200000000041 +11540,9345,179792.555967376,373775.298618048,25.0200000000041 +11541,3637,179792.650300004,373774.392700005,25.0200000000041 +11542,3635,179792.550899997,373774.382400002,22.4100000000035 +11543,9350,179792.870873179,373772.274573002,25.0200000000041 +11544,9351,179792.777557749,373772.205737408,22.4131999999954 +11545,24210,179792.9794834,373771.231607385,25.0200000000041 +11546,24211,179792.890886627,373771.117406119,22.4147999999986 +11547,24212,179793.03378851,373770.710124582,25.0200000000041 +11548,8827,179793.004215498,373770.029074822,22.4165000000066 +11549,9352,179793.08809362,373770.188641768,25.0200000000041 +11550,24213,179793.161072768,373769.487835314,25.0200000000041 +11551,24214,179793.093715195,373769.1695823,22.4177000000054 +11552,9353,179793.234051913,373768.787028853,25.0200000000041 +11553,9355,179793.296762891,373768.184825934,25.0200000000041 +11554,9356,179793.529994506,373765.945142068,25.0200000000041 +11555,9354,179793.183214888,373768.310089767,22.4189999999944 +11556,9357,179793.588755015,373765.380874794,25.0200000000041 +11557,3641,179793.509000003,373775.620000005,25.3730000000069 +11558,9348,179792.466384731,373776.158919916,25.0200000000041 +11559,9342,179793.243334871,373777.993536334,25.3769000000029 +11560,9344,179792.272969496,373778.016372152,25.0200000000041 +11561,9341,179792.197059091,373778.745373454,25.0200000000041 +11562,8825,179792.977669738,373780.367072664,25.380799999999 +11563,9340,179792.095220231,373779.723377138,25.0200000000041 +11564,9339,179791.885571785,373781.736724149,25.0200000000041 +11565,9337,179791.688994247,373783.624545362,25.0200000000041 +11566,3634,179792.017000001,373788.950000003,25.3950000000041 +11567,8822,179791.680336565,373792.326338664,25.377800000002 +11568,9328,179790.920490105,373791.004632995,25.0200000000041 +11569,9329,179791.043311868,373789.825196285,25.0200000000041 +11570,9326,179790.838822331,373791.788874831,25.0200000000041 +11571,9324,179790.768832654,373792.460973848,25.0200000000041 +11572,9323,179790.60851508,373794.000476498,25.0200000000041 +11573,6651,179791.343673121,373795.702677317,25.3607000000047 +11574,9321,179790.499013551,373795.052001204,25.0200000000041 +11575,9320,179790.416381046,373795.845507264,25.0200000000041 +11576,9318,179790.253322504,373797.411330882,25.0200000000041 +11577,3669,179791.114999998,373797.996000003,25.349000000002 +11578,9312,179790.190494686,373798.01465581,25.0200000000041 +11579,9314,179790.113542497,373798.753614768,25.0200000000041 +11580,9316,179790.017759662,373799.673401121,25.0200000000041 +11581,24203,179790.791010931,373800.827181559,25.3564000000042 +11582,24204,179789.939909775,373800.420980461,25.0200000000041 +11583,3677,179789.839000002,373801.390000001,25.0200000000041 +11584,9311,179789.688763041,373802.733934853,25.0200000000041 +11585,6652,179790.467021853,373803.658363115,25.3638999999966 +11586,9310,179789.588322442,373803.632419657,25.0200000000041 +11587,8819,179789.589528672,373802.721744847,22.3738000000012 +11588,9309,179789.47697518,373803.728578478,22.3766000000032 +11589,9307,179789.364421681,373804.735412106,22.3794000000053 +11590,3651,179782.500500008,373807.500399999,22.2200000000012 +11591,8817,179789.139314689,373806.749079376,22.3849999999948 +11592,9306,179789.425225295,373805.09139448,25.0200000000041 +11593,9308,179789.516154379,373804.277994312,25.0200000000041 +11594,8818,179790.226516385,373805.760022338,25.3693999999959 +11595,8816,179789.986010924,373807.861681562,25.3748999999953 +11596,3670,179789.504999999,373812.065000001,25.3859999999986 +11597,9303,179788.864062872,373810.111236047,25.0200000000041 +11598,9301,179789.026283227,373808.66010455,25.0200000000041 +11599,9304,179789.096780058,373808.029479731,25.0200000000041 +11600,9300,179788.956466131,373808.384728987,22.389599999995 +11601,9302,179788.772377219,373810.031474054,22.3941999999952 +11602,3655,179782.500799999,373812.500700004,22.2200000000012 +11603,3654,179777.500500001,373812.500500001,22.1499999999942 +11604,3658,179782.500600003,373817.500400003,22.2700000000041 +11605,3657,179777.500399999,373817.500400003,22.1600000000035 +11606,3653,179772.500500001,373812.500399999,22.3600000000006 +11607,138,179772.500399999,373817.500599999,22.3800000000047 +11608,3660,179767.500599999,373822.500300001,22.5200000000041 +11609,3659,179767.500700001,373817.500700001,22.5500000000029 +11610,3656,179767.500400003,373812.5009,22.5599999999977 +11611,22065,179764.7617236,373814.35321831,22.5733000000037 +11612,22066,179764.671835396,373815.20317746,22.5749999999971 +11613,21279,179764.581947193,373816.053136606,22.5767000000051 +11614,21277,179764.437107209,373817.422705367,22.5792999999976 +11615,9517,179764.311213948,373818.613118868,22.5816999999952 +11616,22059,179764.211679485,373819.554290537,22.5834999999934 +11617,22057,179764.120414533,373819.466015253,25.0099999999948 +11618,22058,179764.015574429,373820.457340132,25.0099999999948 +11619,22056,179763.898795731,373820.511775736,25.3784000000014 +11620,21281,179763.98469254,373820.749346524,25.0099999999948 +11621,21282,179764.112145014,373820.495462213,22.5853000000061 +11622,9518,179763.938740514,373822.135129515,22.5886000000028 +11623,22054,179763.851680387,373822.958347138,22.590200000006 +11624,21285,179763.764620256,373823.781564757,22.5917999999947 +11625,22049,179763.677560128,373824.60478238,22.5933999999979 +11626,3665,179767.500500005,373827.500799999,22.4499999999971 +11627,3680,179763.590500001,373825.427999999,22.5950000000012 +11628,22044,179763.514716804,373826.144527297,22.5963999999949 +11629,21296,179763.438933615,373826.861054592,22.5978000000032 +11630,22040,179763.363150414,373827.57758189,22.5991999999969 +11631,21294,179763.287367217,373828.294109188,22.6006000000052 +11632,22036,179763.195179205,373829.165743344,22.6022999999986 +11633,21291,179763.102991197,373830.037377499,22.6040000000066 +11634,21292,179763.002067998,373830.991602629,22.605899999995 +11635,21288,179762.901144788,373831.945827756,22.607799999998 +11636,21289,179762.775794469,373833.131010365,22.6101000000053 +11637,9519,179762.650444143,373834.316192977,22.6123999999982 +11638,3697,179767.500100005,373837.500999998,22.4199999999983 +11639,21299,179762.491060734,373835.823157206,22.6153000000049 +11640,9520,179762.331677318,373837.330121435,22.6183000000019 +11641,3739,179762.239399999,373838.202600002,22.6199999999953 +11642,22023,179762.147309083,373839.05476727,22.6199999999953 +11643,21314,179762.055218168,373839.90693453,22.6199999999953 +11644,21312,179761.871036332,373841.611269064,22.6199999999953 +11645,21310,179761.690905139,373843.278120708,22.6199999999953 +11646,21307,179761.513434645,373844.920351561,22.6199999999953 +11647,21309,179761.484718818,373844.255688213,25.0099999999948 +11648,22012,179761.563741159,373843.524449717,25.0099999999948 +11649,22015,179761.603252329,373843.158830464,25.0099999999948 +11650,21311,179761.642763495,373842.793211222,25.0099999999948 +11651,22013,179761.561852865,373842.79298079,25.2608999999939 +11652,22014,179761.722151779,373842.058586452,25.0099999999948 +11653,22016,179761.691194594,373841.559851252,25.267399999997 +11654,22017,179761.76992951,373841.616472043,25.0099999999948 +11655,21313,179761.801540058,373841.323961679,25.0099999999948 +11656,22018,179761.836419009,373840.175297935,25.2747999999992 +11657,3791,179758.855,373838.929300003,26.9400000000023 +11658,22020,179761.950887654,373839.083966713,25.2805999999982 +11659,22025,179762.068175681,373837.965755757,25.2866000000067 +11660,3684,179762.135299999,373837.325800002,25.2899999999936 +11661,22027,179762.280972891,373835.936873477,25.2973999999958 +11662,22029,179762.469616197,373834.138243113,25.3070000000007 +11663,21298,179762.444189854,373835.315705981,25.0099999999948 +11664,22030,179762.557125229,373834.247835547,25.0099999999948 +11665,21287,179762.638513926,373833.478257537,25.0099999999948 +11666,22033,179762.791164812,373832.034853544,25.0099999999948 +11667,22031,179762.767810598,373831.295091495,25.3221000000049 +11668,21290,179762.862766687,373831.357815735,25.0099999999948 +11669,22032,179762.90338438,373830.973751489,25.0099999999948 +11670,21293,179763.042294271,373829.660276763,25.0099999999948 +11671,22034,179762.998851407,373829.092219688,25.3338999999978 +11672,22037,179763.093490433,373829.176186886,25.0099999999948 +11673,22035,179763.123041302,373828.896766037,25.0099999999948 +11674,21295,179763.203788336,373828.133255307,25.0099999999948 +11675,22038,179763.165217586,373827.505991846,25.3423000000039 +11676,22039,179763.266044069,373827.544590738,25.0099999999948 +11677,21297,179763.328299798,373826.955926169,25.0099999999948 +11678,22041,179763.300515715,373826.215984058,25.3491999999969 +11679,22042,179763.399358943,373826.284020174,25.0099999999948 +11680,22045,179763.422269203,373826.067390133,25.0099999999948 +11681,22043,179763.445179474,373825.850760087,25.0099999999948 +11682,22046,179763.418599933,373825.090103347,25.3552000000054 +11683,3683,179763.491000004,373825.4175,25.0099999999948 +11684,22048,179763.531706642,373825.032594774,25.0099999999948 +11685,22047,179763.583891783,373824.539153591,25.0099999999948 +11686,22050,179763.525399957,373824.071812447,25.3606 +11687,3688,179760.471999999,373824.177700002,26.9799999999959 +11688,22052,179763.645550326,373822.926231828,25.3668000000034 +11689,3685,179763.7095,373822.316500001,25.3699999999953 +11690,21283,179763.843160279,373822.087617364,25.0099999999948 +11691,21284,179763.815433111,373822.349794075,25.0099999999948 +11692,22055,179763.770919926,373822.770692412,25.0099999999948 +11693,22053,179763.746108331,373823.005300622,25.0099999999948 +11694,21286,179763.676783558,373823.66080717,25.0099999999948 +11695,22060,179764.110905845,373818.489541605,25.3877999999968 +11696,22062,179764.396516647,373815.766560208,25.4005000000034 +11697,21278,179764.366982579,373817.134569254,25.0099999999948 +11698,21280,179764.492319081,373815.949438907,25.0099999999948 +11699,22067,179764.536029197,373815.536134046,25.0099999999948 +11700,22064,179764.57973931,373815.122829184,25.0099999999948 +11701,22068,179764.614821009,373813.685270824,25.4103000000032 +11702,22063,179764.667159542,373814.296219453,25.0099999999948 +11703,22070,179764.710869659,373813.882914592,25.0099999999948 +11704,22072,179764.732724715,373813.676262163,25.0099999999948 +11705,22069,179764.754579771,373813.46960973,25.0099999999948 +11706,3682,179764.842000004,373812.642999999,25.0099999999948 +11707,22073,179764.777502872,373812.134280171,25.4174999999959 +11708,22080,179764.909725264,373810.873686664,25.4233999999997 +11709,21275,179764.927531753,373811.800930373,25.0099999999948 +11710,22078,179764.988041695,373811.205203228,25.0099999999948 +11711,21273,179765.048551649,373810.609476078,25.0099999999948 +11712,21270,179765.169531688,373810.408346787,22.5755000000063 +11713,22079,179765.105454966,373810.049256623,25.0099999999948 +11714,21271,179765.283547536,373809.28587018,22.5782999999938 +11715,21272,179765.162358273,373809.48903716,25.0099999999948 +11716,22081,179765.035149835,373809.677902851,25.428899999999 +11717,22077,179764.926099066,373810.71758071,25.4241000000038 +11718,22085,179765.14726463,373808.609012961,25.4339000000036 +11719,22084,179765.220675953,373808.914893143,25.0099999999948 +11720,21269,179765.278993629,373808.340749126,25.0099999999948 +11721,9516,179765.397563383,373808.163393579,22.5810000000056 +11722,22083,179765.302637082,373808.107976705,25.0099999999948 +11723,21267,179765.460966781,373807.539192315,22.5825999999943 +11724,21268,179765.367245007,373807.471904431,25.0099999999948 +11725,22082,179765.184452146,373808.254471324,25.4355999999971 +11726,3686,179765.283799998,373807.307299998,25.4400000000023 +11727,22086,179765.433953252,373805.875655267,25.4475999999995 +11728,22093,179765.65531132,373803.76510407,25.4588999999978 +11729,22090,179765.71061423,373804.091396205,25.0099999999948 +11730,21265,179765.546228461,373805.709792394,25.0099999999948 +11731,21264,179765.646420423,373805.713416461,22.5871000000043 +11732,22092,179765.810460214,373804.09845823,22.5910000000003 +11733,22094,179765.747783236,373803.725463226,25.0099999999948 +11734,3678,179765.9745,373802.483500004,22.5950000000012 +11735,3689,179772.500200003,373802.500900004,22.3699999999953 +11736,3652,179767.500800002,373807.500799999,22.5599999999977 +11737,3650,179772.500399999,373807.500399999,22.3999999999942 +11738,3649,179777.500600003,373807.500300005,22.1699999999983 +11739,3648,179777.500500001,373802.500500005,22.1900000000023 +11740,3614,179767.007400002,373792.313700002,22.6199999999953 +11741,3681,179765.875000004,373802.473000005,25.0099999999948 +11742,22091,179765.841713015,373802.800714102,25.0099999999948 +11743,3619,179766.908,373792.302999999,25.0099999999948 +11744,22097,179766.986809261,373791.613014482,25.0099999999948 +11745,22098,179767.097412176,373791.525646389,22.6238000000012 +11746,22101,179767.006110068,373791.444033328,25.0099999999948 +11747,22099,179767.026213888,373791.26802171,25.0099999999948 +11748,21261,179767.187424362,373790.737592772,22.6276000000071 +11749,21258,179767.367448717,373789.161485542,22.6352000000043 +11750,21260,179767.199255195,373789.753022086,25.0099999999948 +11751,22096,179767.121515717,373790.433641553,25.0099999999948 +11752,21262,179767.065618515,373790.923028946,25.0099999999948 +11753,22088,179765.585395303,373806.314203758,22.5856000000058 +11754,9515,179765.524370179,373806.914991055,22.5840999999928 +11755,21266,179765.398109157,373807.168043464,25.0099999999948 +11756,21263,179765.450578272,373806.651479177,25.0099999999948 +11757,22087,179765.516742196,373806.00008801,25.0099999999948 +11758,21274,179765.055515852,373811.530823395,22.5727999999945 +11759,22075,179764.998507924,373812.092061698,22.5714000000007 +11760,3679,179764.941500004,373812.653300002,22.570000000007 +11761,22071,179764.8516118,373813.503259156,22.5717000000004 +11762,22074,179764.884765878,373812.221965186,25.0099999999948 +11763,22076,179764.906148814,373812.01144778,25.0099999999948 +11764,21276,179764.256136518,373818.182683982,25.0099999999948 +11765,22061,179764.212897439,373818.591534924,25.0099999999948 +11766,22051,179763.635036413,373824.055551011,25.0099999999948 +11767,3792,179756.331,373857.378000002,26.9199999999983 +11768,3784,179757.238000005,373853.681000002,26.9100000000035 +11769,22007,179761.18061962,373846.4276159,25.2415000000037 +11770,22004,179760.964030001,373848.492557112,25.2305000000051 +11771,21303,179761.098270614,373847.831712469,25.0099999999948 +11772,22008,179761.231161389,373846.601998769,25.0099999999948 +11773,21304,179761.315872081,373846.748505283,22.6199999999953 +11774,22009,179761.269593488,373846.24636481,25.0099999999948 +11775,21308,179761.414653361,373845.834428426,22.6199999999953 +11776,22011,179761.414889004,373844.901863061,25.0099999999948 +11777,21306,179761.308025584,373845.89073085,25.0099999999948 +11778,22010,179761.406401854,373844.275033351,25.252999999997 +11779,21305,179761.198881246,373847.831084952,22.6199999999953 +11780,22006,179761.050875016,373848.270290807,25.0099999999948 +11781,22005,179761.003479421,373848.708869137,25.0099999999948 +11782,21316,179760.892888278,373849.732231662,25.0099999999948 +11783,22002,179760.790634666,373850.145688802,25.2216999999946 +11784,22003,179760.852706496,373850.104056492,25.0099999999948 +11785,22000,179760.81252471,373850.475881312,25.0099999999948 +11786,21999,179760.670285422,373851.293085102,25.2155999999959 +11787,21318,179760.732161142,373851.219530966,25.0099999999948 +11788,22001,179760.710581165,373851.41922269,25.0099999999948 +11789,21998,179760.689001191,373851.618914414,25.0099999999948 +11790,21997,179760.60171888,373851.946790796,25.2121000000043 +11791,21320,179760.647982884,373851.9984801,25.0099999999948 +11792,3779,179760.561000001,373852.335000001,25.2100000000064 +11793,21322,179760.323849402,373852.440750238,25.0099999999948 +11794,3771,179760.598000001,373852.461000003,25.0099999999948 +11795,3741,179760.334800001,373852.5418,22.6199999999953 +11796,21321,179760.61049572,373852.345370024,25.0099999999948 +11797,3772,179760.245999999,373852.435000002,25.0099999999948 +11798,21323,179759.989406426,373854.745435033,25.0099999999948 +11799,21327,179759.708138477,373857.278044462,25.0099999999948 +11800,21326,179759.791087672,373857.437220734,22.6199999999953 +11801,21325,179759.497886524,373859.17120748,25.0099999999948 +11802,9522,179759.54649042,373859.639500171,22.6199999999953 +11803,21328,179759.350853141,373860.495134123,25.0099999999948 +11804,3800,179755.619000003,373862.07,27.0500000000029 +11805,3785,179754.670000002,373863.079000004,27.070000000007 +11806,21330,179759.220583268,373861.668117825,25.0099999999948 +11807,3773,179759.072000001,373863.006000001,25.0099999999948 +11808,23202,179758.956801083,373863.992555987,24.9973999999929 +11809,3766,179758.873000003,373864.119000003,25.0200000000041 +11810,23203,179758.934547845,373864.183131285,24.9949999999953 +11811,23207,179758.801000003,373864.833250005,25.0200000000041 +11812,23208,179758.853530899,373864.876955111,24.9860999999946 +11813,23206,179758.790685564,373865.415158428,24.9793000000063 +11814,23209,179758.771171141,373865.582278613,24.9771000000037 +11815,3742,179759.171500005,373863.015800003,22.6199999999953 +11816,21329,179759.358995207,373861.327650089,22.6199999999953 +11817,22028,179762.381778896,373835.905838259,25.0099999999948 +11818,21300,179762.28149192,373836.854110632,25.0099999999948 +11819,21301,179762.234479032,373837.298645198,25.0099999999948 +11820,21302,179762.200687122,373837.618167583,25.0099999999948 +11821,22026,179762.170343563,373837.905083794,25.0099999999948 +11822,3770,179762.140000001,373838.192000005,25.0099999999948 +11823,22021,179762.048630431,373839.037494417,25.0099999999948 +11824,22024,179762.025788046,373839.248868026,25.0099999999948 +11825,22022,179762.002945647,373839.460241627,25.0099999999948 +11826,21315,179761.957260862,373839.882988837,25.0099999999948 +11827,22019,179761.920103807,373840.226824112,25.0099999999948 +11828,9295,179788.179120768,373815.338377539,22.4091000000044 +11829,3673,179787.943600003,373817.4452,22.4149999999936 +11830,8814,179787.783879597,373818.873950657,22.4189999999944 +11831,9291,179787.928809132,373818.477486908,25.0200000000041 +11832,3676,179788.043000005,373817.456000008,25.0200000000041 +11833,6653,179788.842928838,373818.676707476,25.3525999999983 +11834,24197,179789.173964418,373815.370853741,25.3693000000058 +11835,9296,179788.279691663,373815.338690281,25.0200000000041 +11836,9294,179788.485133644,373813.500922572,25.0200000000041 +11837,9293,179788.41464154,373813.231555078,22.4032000000007 +11838,9297,179788.585230906,373812.605509084,25.0200000000041 +11839,9292,179788.609964091,373812.384260029,25.0200000000041 +11840,8815,179788.588288296,373811.678219128,22.3987999999954 +11841,9298,179788.69078809,373811.661254231,25.0200000000041 +11842,9290,179787.861367229,373819.080784027,25.0200000000041 +11843,8813,179788.548964418,373821.612353742,25.3377999999939 +11844,9288,179787.634479284,373821.110395271,25.0200000000041 +11845,9287,179787.404214289,373823.170215648,25.0200000000041 +11846,8812,179787.304718353,373823.16020263,22.4309999999969 +11847,9285,179787.28236435,373824.26021624,25.0200000000041 +11848,9286,179787.174861588,373824.321813349,22.4342999999935 +11849,9289,179787.544298973,373821.017076645,22.4250000000029 +11850,9284,179787.13846232,373825.547482435,25.0200000000041 +11851,9282,179786.903065529,373827.653209012,25.0200000000041 +11852,9299,179789.131694335,373807.717156388,25.0200000000041 +11853,9305,179789.238647453,373806.760414269,25.0200000000041 +11854,3674,179789.739600003,373801.379299998,22.3699999999953 +11855,9315,179789.886307009,373799.970428456,22.3720999999932 +11856,9317,179789.959660508,373799.26599269,22.3730999999971 +11857,9313,179790.033014011,373798.561556913,22.3742000000057 +11858,8820,179790.140139144,373797.532802023,22.3757000000041 +11859,9319,179790.328052029,373795.728218,22.3784000000014 +11860,9514,179767.776654586,373785.578901902,22.6524999999965 +11861,22114,179767.731100518,373785.096645605,25.0099999999948 +11862,22113,179767.696271393,373785.401579253,25.0099999999948 +11863,22109,179767.651194446,373785.796233878,25.0099999999948 +11864,21245,179767.765929651,373784.791711956,25.0099999999948 +11865,22117,179767.867048472,373783.906403288,25.0099999999948 +11866,21248,179767.925713632,373783.392781936,25.0099999999948 +11867,22116,179767.996378321,373782.774103202,25.0099999999948 +11868,9279,179786.823550176,373828.364508282,25.0200000000041 +11869,9281,179786.785320871,373828.706486035,25.0200000000041 +11870,9277,179786.679003872,373829.657537781,25.0200000000041 +11871,9275,179786.463550102,373831.584865324,25.0200000000041 +11872,9276,179786.384628452,373831.390703946,22.4541000000027 +11873,3672,179786.147599999,373833.511,22.4600000000064 +11874,3675,179786.247000001,373833.522000004,25.0200000000041 +11875,9274,179786.088768303,373834.968604706,25.0200000000041 +11876,9273,179786.02218369,373835.577342514,25.0200000000041 +11877,9269,179785.943228133,373836.299179435,25.0200000000041 +11878,9271,179785.887431525,373835.889582448,22.4208000000071 +11879,9268,179785.8007087,373836.682443261,22.4078000000009 +11880,9267,179785.866523925,373837.000433762,25.0200000000041 +11881,9266,179785.74659463,373838.096865654,25.0200000000041 +11882,8809,179785.653609436,373838.027293868,22.3855999999942 +11883,9270,179785.974154353,373835.096721634,22.4339000000036 +11884,8805,179784.562614765,373848.001679808,22.2213000000047 +11885,9250,179784.443079084,373849.094531141,22.2032999999938 +11886,9252,179784.315705672,373850.259038709,22.1840999999986 +11887,8804,179784.188332263,373851.423546277,22.1649000000034 +11888,9248,179784.291500602,373851.399799876,25.0200000000041 +11889,9253,179784.411658734,373850.301275868,25.0200000000041 +11890,9251,179784.516175713,373849.345748249,25.0200000000041 +11891,9245,179784.207767744,373852.165312394,25.0200000000041 +11892,9247,179784.19162285,373852.31291417,25.0200000000041 +11893,9244,179784.071177047,373853.414068107,25.0200000000041 +11894,9243,179783.985073902,373853.281829745,22.1343000000052 +11895,9242,179783.913079131,373854.859449774,25.0200000000041 +11896,9237,179783.843786933,373855.492941216,25.0200000000041 +11897,9241,179783.725612417,373856.573330298,25.0200000000041 +11898,9239,179783.636707775,373856.466756608,22.0819000000047 +11899,9238,179783.781815533,373855.140113216,22.1037000000069 +11900,9246,179784.086703084,373852.352688011,22.1496000000043 +11901,3725,179783.880000003,373863.517000005,25.3300000000017 +11902,3726,179783.980999999,373864.561999999,25.3340000000026 +11903,3736,179782.815000005,373865.348999999,25.0200000000041 +11904,3735,179783.331000004,373865.995000005,25.0200000000041 +11905,3781,179787.142000001,373865.399999999,27.0299999999988 +11906,3731,179783.229600009,373866.028200004,22.4799999999959 +11907,23465,179783.068299089,373868.539755728,25.016300000003 +11908,23464,179782.934061807,373869.82798494,25.0144 +11909,3760,179783.071000002,373869.827000003,24.9900000000052 +11910,3755,179783.057000004,373869.921999998,24.9900000000052 +11911,3761,179784.420000002,373870.045000006,24.9900000000052 +11912,3762,179784.403999999,373870.142999999,24.9900000000052 +11913,23462,179782.976999998,373870.637750003,24.9900000000052 +11914,23454,179782.897000004,373871.353500009,24.9900000000052 +11915,23461,179782.805070989,373871.065865722,25.0126000000018 +11916,23460,179782.776812412,373871.337053645,25.0121999999974 +11917,23463,179782.909904491,373870.059814479,25.0141000000003 +11918,23457,179782.715513006,373871.925323065,25.0112999999983 +11919,23459,179782.702685535,373872.048423871,25.0111000000034 +11920,23455,179782.817000005,373872.069250003,24.9900000000052 +11921,23453,179782.64557017,373872.596540507,25.0102999999945 +11922,24181,179787.732999999,373882.096000005,27.665599999993 +11923,3795,179785.975000001,373877.165000003,27.1199999999953 +11924,3753,179783.263999999,373874.638,25.4239999999991 +11925,3754,179782.526000001,373876.763,25.3929999999964 +11926,24183,179785.489,373881.816174999,27.1275000000023 +11927,21770,179781.778632086,373875.463236835,25.0099999999948 +11928,21767,179781.692579933,373876.219903335,25.0099999999948 +11929,3774,179781.923999999,373874.185000002,25.0099999999948 +11930,21769,179781.646796521,373876.622482181,25.0099999999948 +11931,21765,179781.540140498,373877.560320843,25.0099999999948 +11932,24182,179785.003000002,373886.467349999,27.1349999999948 +11933,3848,179784.031000003,373895.769699998,27.1499999999942 +11934,21753,179780.844454087,373892.023775417,25.3607000000047 +11935,11206,179781.190908175,373888.87955083,25.3672999999981 +11936,21758,179780.133178242,373889.931902245,25.0099999999948 +11937,21756,179780.003943585,373891.068277545,25.0099999999948 +11938,21755,179779.928966813,373891.727556884,25.0099999999948 +11939,21752,179779.667645715,373894.025383476,25.0099999999948 +11940,3833,179780.498000003,373895.168000001,25.3540000000066 +11941,21751,179779.584956799,373894.752476681,25.0099999999948 +11942,8796,179779.548805058,373894.185249701,22.3738000000012 +11943,21743,179779.444082219,373895.106069311,22.3698000000004 +11944,3816,179772.500999998,373897.500799999,22.3300000000017 +11945,3815,179767.5002,373897.500600003,22.2700000000041 +11946,3817,179767.500900004,373902.500100005,22.25 +11947,140,179772.500200003,373902.500100005,22.3600000000006 +11948,3841,179778.919600002,373899.717799999,22.3500000000058 +11949,21746,179779.129479691,373897.872344464,22.3579000000027 +11950,21747,179779.216849826,373897.9892837,25.0099999999948 +11951,3837,179779.019000001,373899.728999998,25.0099999999948 +11952,11207,179779.926423021,373900.134191465,25.3525999999983 +11953,21738,179778.837544665,373901.361448813,25.0099999999948 +11954,21740,179778.79814807,373901.71587722,25.0099999999948 +11955,3834,179779.281000003,373905.741999999,25.3509999999951 +11956,21745,179780.212211508,373897.651095733,25.3533000000025 +11957,21744,179779.403169271,373896.350955307,25.0099999999948 +11958,21748,179779.307992674,373897.187854119,25.0099999999948 +11959,21749,179779.234419536,373896.949616693,22.3619000000035 +11960,21742,179779.33935938,373896.026888926,22.3659000000043 +11961,21750,179779.48918746,373895.594587486,25.0099999999948 +11962,21741,179779.518740688,373895.334722564,25.0099999999948 +11963,3845,179782.087000005,373914.374299999,27.179999999993 +11964,11210,179778.598848838,373911.668923892,25.3493000000017 +11965,11208,179778.425289176,373913.176910654,25.3488999999972 +11966,3835,179778.063999999,373916.316,25.3479999999981 +11967,3836,179777.342000004,373914.816,25.0099999999948 +11968,21725,179777.219376609,373915.919171795,25.0099999999948 +11969,21723,179777.152340621,373916.52225589,25.0099999999948 +11970,21724,179777.108665634,373916.009730149,22.3500000000058 +11971,8794,179776.974731259,373917.214660283,22.3500000000058 +11972,21720,179777.056811705,373917.38167436,25.0099999999948 +11973,21721,179776.80480884,373918.743354127,22.3500000000058 +11974,3826,179772.500300005,373917.500500001,22.3699999999953 +11975,24175,179776.719847627,373919.50770105,22.3500000000058 +11976,21717,179776.634886421,373920.27204797,22.3500000000058 +11977,3853,179772.500300005,373922.500400003,22.25 +11978,3847,179767.500999998,373917.500799999,22.2100000000064 +11979,3856,179767.500700001,373922.500599999,22.2400000000052 +11980,3857,179767.500500005,373927.500300001,22.2599999999948 +11981,3859,179772.500900004,373927.500700001,22.3300000000017 +11982,3862,179767.5002,373932.500300009,22.2799999999988 +11983,3861,179762.500700001,373932.500300009,22.3800000000047 +11984,3864,179767.500100005,373937.500300005,22.3000000000029 +11985,3866,179762.500800002,373937.500600003,22.3600000000006 +11986,3868,179762.500599999,373942.500700004,22.3300000000017 +11987,141,179767.500900004,373942.500799999,22.3399999999965 +11988,8791,179774.382152438,373940.538593911,22.3500000000058 +11989,21696,179774.148968518,373942.636414886,22.3500000000058 +11990,3883,179773.888600003,373944.978799999,22.3500000000058 +11991,21697,179774.23157385,373942.798706837,25.0099999999948 +11992,3890,179773.988000005,373944.990000002,25.0099999999948 +11993,3898,179775.100000005,373942.280000001,25.3940000000002 +11994,11215,179774.690804534,373945.897757437,25.3858999999939 +11995,3901,179778.913500004,373945.881000001,27.320000000007 +11996,11214,179775.689851534,373937.113027968,25.3847999999998 +11997,21698,179774.467463017,373940.676548332,25.0099999999948 +11998,21695,179774.293652043,373942.240225192,25.0099999999948 +11999,21699,179774.770665169,373937.948813718,25.0099999999948 +12000,21700,179774.659620535,373938.042373795,22.3500000000058 +12001,21701,179775.006952807,373935.823070388,25.0099999999948 +12002,11212,179776.156905506,373933.021736011,25.3776000000071 +12003,3892,179780.143000003,373932.979000002,27.2200000000012 +12004,3895,179776.582000002,373929.298000004,25.3709999999992 +12005,11211,179776.93406431,373926.21399264,25.3654999999999 +12006,24171,179781.188117336,373922.976893794,27.1984999999986 +12007,24170,179783.341000002,373922.287000004,27.5917999999947 +12008,24172,179781.637558673,373918.6755969,27.1891999999934 +12009,21715,179777.499032155,373921.26499632,25.3567999999941 +12010,24176,179777.216548238,373923.73949448,25.3611999999994 +12011,21713,179776.546406183,373921.973497905,25.0099999999948 +12012,24179,179776.435263507,373922.973384295,25.0099999999948 +12013,24177,179776.324120842,373923.973270673,25.0099999999948 +12014,21712,179776.101835497,373925.973043445,25.0099999999948 +12015,21710,179775.993721191,373926.945685424,25.0099999999948 +12016,21708,179775.847419765,373928.261874817,25.0099999999948 +12017,21709,179775.771542754,373928.039052054,22.3500000000058 +12018,3884,179775.565600004,373929.891800005,22.3500000000058 +12019,3891,179775.665000003,373929.903000001,25.0099999999948 +12020,21707,179775.441887781,373931.910211753,25.0099999999948 +12021,8792,179775.338859532,373931.931653,22.3500000000058 +12022,21706,179775.343906611,373932.791691709,25.0099999999948 +12023,21704,179775.278497245,373933.380141996,25.0099999999948 +12024,21702,179775.197477121,373934.109033238,25.0099999999948 +12025,21703,179775.127573065,373933.832475249,22.3500000000058 +12026,11213,179774.937088624,373935.546153687,22.3500000000058 +12027,3863,179772.500700008,373932.500599995,22.2799999999988 +12028,21705,179775.233216301,373932.882064123,22.3500000000058 +12029,21711,179775.889165081,373926.980871931,22.3500000000058 +12030,8793,179776.006787412,373925.922691811,22.3500000000058 +12031,24178,179776.23124823,373923.903347503,22.3500000000058 +12032,24180,179776.343478646,373922.89367535,22.3500000000058 +12033,21714,179776.455709051,373921.884003192,22.3500000000058 +12034,21718,179776.545297734,373921.078025583,22.3500000000058 +12035,21716,179776.649540622,373921.045656901,25.0099999999948 +12036,21719,179776.740303203,373920.229118448,25.0099999999948 +12037,24173,179777.781516083,373918.79049816,25.3524000000034 +12038,24174,179776.827139713,373919.447900511,25.0099999999948 +12039,21722,179776.913976233,373918.666682582,25.0099999999948 +12040,11216,179774.230128296,373949.970663864,25.3766999999934 +12041,21692,179773.637932573,373948.06167924,25.0077000000019 +12042,21685,179773.5196734,373949.099348567,25.006899999993 +12043,8790,179773.512832057,373948.275989261,22.3524999999936 +12044,21687,179773.409056578,373949.186570928,22.3531999999977 +12045,3870,179767.500500005,373947.500800002,22.3800000000047 +12046,21686,179773.305281103,373950.097152591,22.3539000000019 +12047,3874,179767.500500005,373952.500500005,22.3000000000029 +12048,21689,179773.125998564,373951.670273613,22.3551000000007 +12049,24167,179773.036357298,373952.456834119,22.3557000000001 +12050,11217,179772.946716029,373953.243394632,22.3561999999947 +12051,21682,179772.805187024,373954.485245977,22.3571999999986 +12052,11219,179772.663658015,373955.72709731,22.3580999999976 +12053,3875,179767.500599999,373957.500799999,22.2899999999936 +12054,21679,179772.52212901,373956.968948662,22.3591000000015 +12055,3882,179772.380600002,373958.2108,22.3600000000006 +12056,21680,179772.614734128,373957.039770588,25.0008999999991 +12057,21678,179772.738394432,373955.954708803,25.0016999999934 +12058,11218,179773.622023951,373955.347003948,25.3647000000055 +12059,21681,179772.805144221,373955.369010441,25.0022000000026 +12060,21683,179772.903783932,373954.503492732,25.002800000002 +12061,24165,179773.926076125,373952.658833906,25.3706999999995 +12062,24164,179778.298750002,373952.332000002,27.375 +12063,21690,179773.253231782,373951.437250044,25.0050999999949 +12064,24166,179773.162044749,373952.237373944,25.0044999999955 +12065,24168,179773.109192237,373952.701130189,25.0041999999958 +12066,21684,179773.056339726,373953.164886445,25.0038000000059 +12067,21688,179773.375246167,373950.366630457,25.0059000000037 +12068,21691,179773.43493291,373949.842907045,25.0062999999936 +12069,3900,179777.684000004,373958.783,27.429999999993 +12070,3888,179773.287,373958.309000004,25.3579999999929 +12071,3899,179772.892000005,373962.065000001,25.3650000000052 +12072,21675,179772.285255611,373959.968280148,25 +12073,21673,179772.368194435,373959.224564679,25 +12074,21674,179772.212905768,373959.714511555,22.3561999999947 +12075,3889,179772.480000004,373958.222000003,25 +12076,21676,179772.071359597,373960.983753845,22.352899999998 +12077,3879,179767.500700001,373962.500600003,22.3600000000006 +12078,8789,179771.929813422,373962.252996143,22.3497000000061 +12079,21677,179772.161880322,373961.074590966,25 +12080,21672,179772.03277773,373962.2322587,25 +12081,21671,179771.932322871,373963.133041132,25 +12082,21661,179771.805135615,373964.273533951,25 +12083,21663,179771.793708805,373963.473444033,22.3466000000044 +12084,21662,179771.657604195,373964.693891928,22.3433999999979 +12085,21670,179771.761850223,373964.661675677,25 +12086,21664,179772.401035272,373966.066813271,25.3747000000003 +12087,21669,179771.650927417,373965.656324625,25 +12088,21667,179771.584661245,373966.250535816,25 +12089,21668,179771.542707901,373965.724165209,22.3408000000054 +12090,21665,179771.427811597,373966.75443849,22.3381999999983 +12091,21666,179771.506199025,373966.954109438,25 +12092,8788,179771.198019005,373968.814985055,22.332899999994 +12093,21660,179771.277580891,373969.004136689,25 +12094,11220,179771.91007055,373970.068626545,25.3843000000052 +12095,21659,179771.102859054,373970.57087392,25 +12096,21657,179771.009768628,373971.405619185,25 +12097,11222,179771.404593822,373974.188725874,25.3942999999999 +12098,11223,179770.971078895,373977.722270548,25.402900000001 +12099,3930,179770.59,373975.1697,25 +12100,21651,179770.423834652,373976.659702044,25 +12101,21650,179770.312723972,373977.656029735,25 +12102,21649,179770.191808045,373978.740280945,25 +12103,21647,179770.073626682,373979.800011396,25 +12104,21644,179770.021486849,373980.267548434,25 +12105,21646,179769.911370691,373981.254958287,25 +12106,21645,179769.790715333,373981.434291758,22.3006000000023 +12107,21638,179769.629469942,373982.880185168,22.2969000000012 +12108,3912,179762.500300001,373982.500300005,22.25 +12109,21642,179769.468224544,373984.326078568,22.2932000000001 +12110,3935,179762.500300001,373987.500799995,22.1999999999971 +12111,3914,179757.500799999,373982.500600003,22.3600000000006 +12112,3915,179757.5009,373987.500700004,22.3300000000017 +12113,3933,179762.500400003,373992.500100005,22.1900000000023 +12114,3917,179757.500200003,373992.500100005,22.3099999999977 +12115,3916,179752.5009,373987.5009,22.5399999999936 +12116,3918,179752.5009,373992.500900004,22.5500000000029 +12117,3921,179757.500300005,373997.500800002,22.2799999999988 +12118,3920,179752.500100002,373997.500300009,22.4900000000052 +12119,3944,179747.500300001,373997.500900004,22.3999999999942 +12120,3937,179747.500500005,374002.500300005,22.4700000000012 +12121,3924,179752.500600003,374002.500700004,22.5299999999988 +12122,3966,179752.5009,374007.5009,22.5200000000041 +12123,3922,179757.500100002,374002.500300005,22.2599999999948 +12124,3923,179762.500300001,374002.500399999,22.2400000000052 +12125,3919,179762.5002,373997.500200003,22.3600000000006 +12126,21621,179767.686303359,374000.304583531,22.2523999999976 +12127,11228,179767.826759357,373999.045116801,22.2556000000041 +12128,21624,179768.048121221,373997.060168471,22.2605999999942 +12129,8785,179768.269483086,373995.075220153,22.2657000000036 +12130,21627,179768.435041543,373993.590660073,22.2694999999949 +12131,3925,179768.6006,373992.106100004,22.2733000000007 +12132,21631,179768.777194791,373990.522567999,22.2774000000063 +12133,21630,179768.83856323,373990.874805745,25 +12134,11226,179768.953789581,373988.939035993,22.2814000000071 +12135,3929,179768.700000003,373992.1173,25 +12136,21629,179768.531857133,373993.625043351,25 +12137,21626,179768.429936349,373994.538970746,25 +12138,21625,179768.347483821,373995.278325625,25 +12139,21623,179768.166521043,373996.901025593,25 +12140,21620,179767.893873841,373999.345863119,25 +12141,21622,179767.773906879,374000.421611328,25 +12142,21618,179767.545847356,374001.56405025,22.2491000000009 +12143,21619,179767.651089121,374001.522922695,25 +12144,3928,179768.159000002,374002.868000001,25.3239999999932 +12145,21617,179767.54493678,374002.47479466,25 +12146,21616,179767.473540947,374003.115003783,25 +12147,8784,179767.384035625,374003.015013453,22.2453999999998 +12148,21609,179767.216543235,374004.516915064,22.2415999999939 +12149,21608,179767.049050841,374006.018816669,22.2378000000026 +12150,3964,179762.5002,374007.500500001,22.3099999999977 +12151,3965,179757.500500001,374007.500700004,22.2599999999948 +12152,3967,179762.5002,374012.500100005,22.320000000007 +12153,3969,179757.500600003,374012.500400003,22.2599999999948 +12154,3971,179757.501000002,374017.500500005,22.2700000000041 +12155,3972,179762.500900008,374017.500900004,22.3500000000058 +12156,11232,179766.063758884,374014.675222758,22.2866000000067 +12157,21601,179766.284120742,374012.760116946,22.2673000000068 +12158,8783,179766.451863553,374011.302309103,22.2526000000071 +12159,21605,179766.581231777,374010.178004552,22.2412999999942 +12160,21603,179766.544174295,374011.375219926,25 +12161,21606,179766.703853164,374009.987493701,25 +12162,11231,179767.044005729,374012.425633699,25.3380000000034 +12163,21600,179766.424340259,374012.416665461,25 +12164,21602,179766.371783804,374012.873419493,25 +12165,24158,179766.771329861,374014.762987476,25.341499999995 +12166,21599,179766.163204275,374014.686128255,25 +12167,21598,179765.965209328,374016.406849295,25 +12168,11233,179766.498654,374017.100341242,25.3448999999964 +12169,3987,179766.094000001,374020.569000002,25.3500000000058 +12170,24155,179765.837978341,374022.823293801,25.3515000000043 +12171,24157,179765.348878514,374021.763215184,25 +12172,21592,179765.409114067,374021.239724182,25 +12173,8781,179765.289589461,374021.403321721,22.3542000000016 +12174,21591,179765.217028275,374022.033931505,22.3606 +12175,3975,179762.500900008,374022.500700004,22.4600000000064 +12176,21589,179765.144467093,374022.664541293,22.3668999999936 +12177,11235,179764.999344733,374023.925760861,22.3796000000002 +12178,21587,179764.926783547,374024.556370642,22.3859999999986 +12179,21585,179764.854222365,374025.186980426,22.3923000000068 +12180,3976,179762.500500005,374027.500500001,22.429999999993 +12181,3986,179764.709100004,374026.448199999,22.4049999999988 +12182,21584,179764.944510549,374025.277468815,25 +12183,21586,179765.018715493,374024.632573534,25 +12184,11236,179765.581956688,374025.07758759,25.3530000000028 +12185,21588,179765.112943932,374023.813659385,25 +12186,24156,179765.225141823,374022.838577583,25 +12187,21590,179765.288642965,374022.286706176,25 +12188,11234,179765.494530685,374025.847381428,25.3534999999974 +12189,21579,179765.263387244,374027.882620268,25.354800000001 +12190,3991,179764.808499999,374026.459500004,25 +12191,21583,179764.715787359,374027.265240699,25 +12192,21581,179764.643824853,374027.890647579,25 +12193,21578,179764.587444425,374028.380634751,25 +12194,21580,179764.515171774,374028.133578245,22.4220000000059 +12195,8780,179764.36758481,374029.416217051,22.4348999999929 +12196,21577,179764.4525938,374029.552585423,25 +12197,21574,179764.315975796,374030.73989585,25 +12198,21575,179764.173899893,374031.099480703,22.4517999999953 +12199,3979,179757.500700004,374032.500500005,22.3000000000029 +12200,3978,179757.500399999,374027.5009,22.2700000000041 +12201,3974,179757.5009,374022.500300005,22.25 +12202,3973,179752.500700004,374022.500100002,22.4199999999983 +12203,3970,179752.500500001,374017.500500005,22.4499999999971 +12204,3947,179747.500900004,374017.500800002,22.4499999999971 +12205,3948,179747.500300001,374022.5009,22.429999999993 +12206,3977,179752.500300005,374027.5009,22.3800000000047 +12207,3949,179747.500500005,374027.500399999,22.4600000000064 +12208,11033,179741.922088902,374025.592009164,22.478099999993 +12209,3957,179742.1994,374023.106200002,22.4700000000012 +12210,3960,179742.100000001,374023.094999999,25 +12211,11034,179741.751472548,374026.219190586,25 +12212,11035,179741.783433348,374026.834913753,22.4821999999986 +12213,11032,179741.562467225,374027.913429163,25 +12214,11031,179741.644777793,374028.07781833,22.4861999999994 +12215,11028,179741.443596717,374029.881200038,22.4921000000031 +12216,3950,179747.500500005,374032.500700001,22.4600000000064 +12217,11029,179741.340167366,374030.808337927,22.4951000000001 +12218,11025,179741.236738015,374031.735475816,22.4980999999971 +12219,11026,179741.115770813,374032.819822472,22.5016999999934 +12220,9535,179740.994803619,374033.904169135,22.5051999999996 +12221,3951,179747.500500005,374037.500100005,22.4499999999971 +12222,3980,179752.500300005,374032.500800002,22.3500000000058 +12223,3981,179752.501000002,374037.500700001,22.3099999999977 +12224,3952,179747.500599999,374042.500300005,22.4700000000012 +12225,3995,179752.500399999,374042.500799999,22.2700000000041 +12226,3984,179752.500799999,374047.500500001,22.2799999999988 +12227,3996,179757.500500001,374047.500399999,22.2299999999959 +12228,3998,179752.500500001,374052.500400003,22.2700000000041 +12229,3955,179747.500999998,374047.500700004,22.4900000000052 +12230,4019,179747.5002,374052.500400003,22.4700000000012 +12231,4022,179747.500700001,374057.500599999,22.4600000000064 +12232,4001,179752.500100002,374057.500999998,22.25 +12233,4024,179747.500300001,374062.500500005,22.4400000000023 +12234,4016,179752.500700004,374062.500500005,22.1900000000023 +12235,4025,179747.500300001,374067.500300005,22.4199999999983 +12236,4027,179747.500500005,374072.500300005,22.3699999999953 +12237,4003,179752.500399999,374072.500500001,22.3399999999965 +12238,4030,179747.500500005,374077.5002,22.3300000000017 +12239,4013,179752.500300005,374077.500400003,22.3000000000029 +12240,4031,179747.500700001,374082.500400003,22.3099999999977 +12241,4004,179752.500399999,374082.500700001,22.3600000000006 +12242,21506,179758.470258381,374080.840922754,22.2602000000043 +12243,21489,179758.593384027,374079.802826542,22.2464000000036 +12244,21490,179758.705507178,374078.85749447,22.2338000000018 +12245,8773,179758.817630328,374077.912162386,22.2212 +12246,21512,179758.949736759,374076.798347354,22.2063000000053 +12247,21510,179758.974789672,374077.435996864,25.024900000004 +12248,21514,179759.065723807,374076.669296399,25.0222000000067 +12249,21511,179759.081843197,374075.684532326,22.1915000000008 +12250,21515,179759.183367189,374075.677400153,25.0187000000005 +12251,11251,179759.503986977,374077.86034729,25.4423999999999 +12252,21492,179759.298557993,374079.668426167,25.4360000000015 +12253,21494,179759.112135895,374081.30921635,25.4300999999978 +12254,21491,179759.093129013,374081.476505037,25.4294999999984 +12255,21505,179758.519318245,374081.276250247,25.0383000000002 +12256,21507,179758.580894493,374080.757077444,25.036500000002 +12257,21503,179758.347132742,374081.879018974,22.2740999999951 +12258,21504,179758.438007761,374081.961810015,25.0406999999977 +12259,21502,179758.236855499,374083.657801487,25.0466000000015 +12260,21493,179758.100881457,374083.955211401,22.3018000000011 +12261,21495,179758.149578664,374084.393665835,25.049199999994 +12262,21498,179757.980011262,374084.974291522,22.315300000002 +12263,4005,179752.500799999,374087.500300005,22.3399999999965 +12264,21497,179757.859141067,374085.993371639,22.3288999999932 +12265,24141,179757.720920533,374087.158735815,22.3445000000065 +12266,4014,179757.582699999,374088.324099999,22.3600000000006 +12267,24140,179757.807774492,374087.2755473,25.0592999999935 +12268,24142,179757.870661732,374086.745320957,25.0574000000051 +12269,24139,179758.50503226,374086.652626257,25.4110999999975 +12270,21499,179757.933548976,374086.215094607,25.055600000007 +12271,21500,179758.036426853,374085.347691916,25.0525000000052 +12272,21496,179758.701064508,374084.92725252,25.417300000001 +12273,21501,179758.094482858,374084.858199567,25.0507999999973 +12274,4009,179758.309,374088.377999999,25.4049999999988 +12275,4010,179757.682000004,374088.335999999,25.0629999999946 +12276,21486,179757.576566625,374089.205357492,25.0635000000038 +12277,24136,179758.330000002,374090.334000003,25.4848999999958 +12278,24137,179757.487756625,374089.937645812,25.0638999999937 +12279,24138,179757.428927228,374090.422727294,25.0641000000032 +12280,21483,179757.370097823,374090.907808777,25.0644000000029 +12281,11252,179758.351,374092.289999999,25.5647999999928 +12282,21485,179757.251526654,374091.885494709,25.0648999999976 +12283,21480,179757.121150997,374092.960515294,25.065499999997 +12284,4113,179758.365000002,374093.594000001,25.6180000000022 +12285,4111,179758.409000002,374093.649,25.6180000000022 +12286,9776,179758.187991899,374095.662199572,25.6245000000054 +12287,9777,179758.057058144,374096.854896948,25.6284000000014 +12288,21437,179757.945693206,374097.869338658,25.6316999999981 +12289,9781,179757.834328271,374098.883780375,25.6349000000046 +12290,21430,179757.696855687,374100.136041012,25.6389999999956 +12291,21432,179757.714372158,374099.516352963,25.0892000000022 +12292,21428,179757.652911238,374100.076443247,25.0896999999968 +12293,21431,179757.628717374,374100.296920683,25.0899000000063 +12294,9783,179757.559383098,374101.388301656,25.6429999999964 +12295,21427,179757.523150455,374101.258946642,25.0908000000054 +12296,21426,179757.504950967,374101.424797699,25.0908999999956 +12297,21422,179757.428976566,374102.117148507,25.091499999995 +12298,9784,179757.324661251,374102.150943004,22.3032999999996 +12299,21425,179757.419298008,374102.205348767,25.0915999999997 +12300,21423,179757.461438544,374102.280494899,25.6459000000032 +12301,21424,179757.399370272,374102.386949163,25.0917000000045 +12302,9786,179757.36349399,374103.172688145,25.6487999999954 +12303,21417,179757.291425493,374103.829172064,25.6508999999933 +12304,9788,179757.219356999,374104.485655971,25.6530999999959 +12305,21413,179757.153440587,374105.086099535,25.6549999999988 +12306,9790,179757.087524168,374105.686543096,25.6570000000065 +12307,21408,179757.00988625,374106.393759858,25.6591999999946 +12308,9791,179756.932248324,374107.100976612,25.661500000002 +12309,21403,179756.861850515,374107.742241945,25.6635999999999 +12310,21405,179756.863188107,374107.273150083,25.096000000005 +12311,21404,179756.816426393,374107.699287165,25.0963999999949 +12312,8766,179756.748733804,374107.399141677,22.2136000000028 +12313,21401,179756.687786348,374107.954531688,22.2041000000027 +12314,4106,179755.6699,374107.490600009,22.320000000007 +12315,21359,179755.603187546,374108.127077326,22.2932000000001 +12316,4128,179755.559999999,374107.579999998,25.0779999999941 +12317,21360,179755.505941804,374108.095715154,25.0816999999952 +12318,21363,179755.463841479,374108.497352298,25.084600000002 +12319,8765,179755.536475088,374108.763554644,22.2663999999932 +12320,21397,179756.626838889,374108.509921711,22.1946000000025 +12321,9793,179756.504943982,374109.620701745,22.1757000000071 +12322,21396,179756.606435802,374109.612920769,25.0981000000029 +12323,21399,179756.724488944,374108.5371085,25.097099999999 +12324,21400,179756.743869342,374108.360495873,25.0969999999943 +12325,21402,179756.790949658,374107.931455381,25.0966000000044 +12326,21398,179756.79145271,374108.383507267,25.6656999999977 +12327,9792,179756.650657095,374109.666037917,25.6698000000033 +12328,21388,179756.529996384,374110.765156444,25.6733999999997 +12329,21395,179756.581021782,374109.844517466,25.0982999999978 +12330,21387,179756.49156126,374110.659766618,25.099000000002 +12331,21392,179756.485914085,374110.711229034,25.099000000002 +12332,21389,179756.466145866,374110.89137581,25.0991999999969 +12333,21391,179756.443385966,374111.098785609,25.0994000000064 +12334,21390,179756.333085995,374111.186775435,22.1489000000001 +12335,4121,179756.366000004,374111.804000005,25.1000000000058 +12336,4130,179756.275800008,374111.708800003,22.1399999999994 +12337,21384,179756.052000001,374111.821249999,25.1021999999939 +12338,9794,179756.409335669,374111.864274964,25.6769000000058 +12339,4112,179756.238000002,374113.425000004,25.6820000000007 +12340,4127,179758.905999999,374116.815000005,27.3399999999965 +12341,4114,179756.18,374113.495000005,25.4290000000037 +12342,21345,179754.892560516,374112.985134054,25.0924999999988 +12343,21386,179755.85735042,374111.831943326,25.1036000000022 +12344,21346,179754.996480025,374111.995163985,25.0899000000063 +12345,21344,179754.791695803,374112.987895958,22.3601000000053 +12346,21343,179754.788958926,374113.972075492,25.0951999999961 +12347,8758,179754.679332346,374114.058342077,22.3678999999975 +12348,21342,179754.603078302,374114.784786817,22.3730999999971 +12349,21341,179754.686124027,374114.951713253,25.0978000000032 +12350,21339,179754.526824258,374115.511231557,22.3784000000014 +12351,21338,179754.608946346,374115.686932161,25.0997999999963 +12352,20203,179754.374316175,374116.964121036,22.3889000000054 +12353,21337,179754.461340494,374117.093072157,25.1034999999974 +12354,21335,179754.221808087,374118.417010523,22.3994999999995 +12355,21334,179754.322367892,374118.416969046,25.1070999999938 +12356,20202,179755.234116372,374118.035241414,25.3540000000066 +12357,20204,179755.339647267,374117.528693117,25.3622999999934 +12358,24129,179759.199000005,374120.963500001,27.4100000000035 +12359,4115,179754.995000001,374119.182999998,25.3350000000064 +12360,24130,179754.844625,374121.198250003,25.3597000000009 +12361,20205,179754.694250006,374123.213499997,25.3845000000001 +12362,4132,179759.492000002,374125.112000003,27.4799999999959 +12363,24127,179760.577000003,374125.257000003,27.4198999999935 +12364,23231,179753.286209613,374131.195904691,25.0265000000072 +12365,23245,179753.490955915,374129.301129945,25.021900000007 +12366,8757,179753.300827067,374130.130104933,22.468200000003 +12367,23233,179753.173070997,374131.3123817,22.4762000000046 +12368,23232,179753.045314927,374132.494658448,22.4842000000062 +12369,23234,179753.056450009,374133.322159003,25.0317000000068 +12370,23236,179752.941375777,374133.456529304,22.4906999999948 +12371,23235,179752.837436628,374134.418400157,22.497199999998 +12372,23237,179752.869632907,374135.051012419,25.0359999999928 +12373,4144,179757.471000001,374141.313000005,27.3999999999942 +12374,23240,179752.708874546,374136.538711514,25.0396000000037 +12375,23238,179752.658355892,374136.075644221,22.5084000000061 +12376,23241,179752.486232921,374137.668499976,22.519100000005 +12377,23243,179752.31901646,374139.21594999,22.5295999999944 +12378,4142,179752.151799999,374140.7634,22.5399999999936 +12379,23244,179752.406680118,374139.335296277,25.0464999999967 +12380,23242,179752.554778837,374137.964752734,25.0430999999953 +12381,4143,179752.916000005,374140.863000005,25.4309999999969 +12382,4136,179752.250999998,374140.776000001,25.0489999999991 +12383,6593,179752.140009165,374141.540234432,25.0273000000016 +12384,8753,179752.604500011,374142.756500002,25.4089999999997 +12385,8754,179752.025756873,374142.326925822,25.0050000000047 +12386,8751,179752.010929484,374141.733342391,22.5002999999997 +12387,8755,179751.825037926,374143.013270233,22.4478999999992 +12388,8756,179751.968630727,374142.720271513,24.9937999999966 +12389,8752,179751.911504585,374143.113617208,24.9826999999932 +12390,4138,179752.293000005,374144.650000002,25.3870000000024 +12391,4135,179751.682999998,374144.686999999,24.9379999999946 +12392,8750,179751.581500001,374145.418000001,24.9535000000033 +12393,6838,179752.068878781,374146.726619072,25.3846000000049 +12394,6839,179751.479999997,374146.149,24.9689999999973 +12395,4134,179751.276999999,374147.611000001,25 +12396,6836,179751.760031383,374149.588277567,25.3812999999936 +12397,6834,179751.43630245,374152.587822501,25.3779000000068 +12398,8746,179750.886862654,374151.302931342,25 +12399,6835,179750.772953704,374152.38086972,25 +12400,8743,179750.704664893,374153.027097482,25 +12401,24122,179751.175977513,374154.999890905,25.3751999999949 +12402,6832,179750.5451358,374154.536746483,25 +12403,24123,179750.47980433,374155.154988538,25 +12404,8739,179750.432302412,374154.653154481,22.5714000000007 +12405,8741,179750.325239215,374155.666373525,22.5758999999962 +12406,4161,179747.500700001,374152.500700004,22.3600000000006 +12407,4164,179747.500900004,374157.500600003,22.4600000000064 +12408,8735,179750.176981091,374157.069451001,22.5820999999996 +12409,8737,179750.111644518,374157.687779818,22.5849000000017 +12410,8738,179750.240763083,374157.417073537,25 +12411,6833,179750.283809904,374157.009714711,25 +12412,8740,179750.414472856,374155.773230597,25 +12413,6831,179750.915652581,374157.411959317,25.3723999999929 +12414,4145,179753.780000005,374160.901000004,27.179999999993 +12415,4137,179750.595000003,374160.383000001,25.3690000000061 +12416,6828,179750.374291245,374162.219209049,25.376099999994 +12417,6830,179750.244275898,374163.300885104,25.3801999999996 +12418,24113,179752.826500002,374168.122500006,27.1499999999942 +12419,24116,179749.97822044,374165.514360655,25.3886999999959 +12420,6829,179749.504608326,374164.383422259,25 +12421,24118,179749.449250102,374164.907285888,25 +12422,8723,179749.392521657,374164.492850285,22.6152000000002 +12423,8725,179749.26293049,374165.719154179,22.6205999999947 +12424,4168,179742.500400003,374162.500400003,22.3899999999994 +12425,4169,179742.500599999,374167.5002,22.3600000000006 +12426,4171,179737.501000002,374167.500500005,22.3399999999965 +12427,4173,179742.500300001,374172.500300005,22.3000000000029 +12428,4177,179748.8026,374170.075200003,22.6399999999994 +12429,8721,179748.982549585,374168.372361183,22.6324000000022 +12430,8719,179749.069894448,374167.545828376,22.6287000000011 +12431,8722,179749.113355234,374168.085912049,25 +12432,6827,179749.173074625,374167.520778038,25 +12433,8724,179749.338841476,374165.95210015,25 +12434,24117,179749.393891875,374165.431149527,25 +12435,6826,179749.712164983,374167.727836195,25.3972000000067 +12436,8720,179749.053635847,374168.65104606,25 +12437,24115,179749.449582491,374169.912418101,25.4055999999982 +12438,4175,179748.902000003,374170.085999999,25 +12439,6589,179748.834327023,374170.695877187,25 +12440,8717,179748.700375509,374170.996459696,22.6380999999965 +12441,8718,179748.771974832,374171.257802777,25 +12442,8716,179748.709622636,374171.819728367,25 +12443,8715,179748.538547609,374172.454872523,22.6352000000043 +12444,6588,179748.631308086,374172.525508754,25 +12445,4176,179749.187000003,374172.097000007,25.4140000000043 +12446,6823,179748.989314962,374173.972095244,25.397100000002 +12447,24114,179752.349750005,374171.733250003,27.1349999999948 +12448,24119,179754.761,374172.367000002,27.372000000003 +12449,24112,179754.643155016,374173.331208892,27.367499999993 +12450,4235,179751.873000003,374175.344000001,27.1199999999953 +12451,148,179750.322500002,374189.810500007,27.1000000000058 +12452,8695,179747.994129933,374183.411690481,25.3123000000051 +12453,4218,179747.592000004,374187.226000004,25.2780000000057 +12454,8688,179747.430617429,374188.818155181,25.2841000000044 +12455,6818,179747.269234862,374190.410310362,25.2900999999983 +12456,6821,179747.037128512,374192.700206503,25.2988999999943 +12457,4217,179746.500999998,374197.989500001,25.3190000000031 +12458,6817,179746.163128354,374201.322846945,25.3316999999952 +12459,6815,179745.846556973,374204.446051378,25.3435999999929 +12460,8669,179745.210341308,374203.35568076,25 +12461,8667,179745.105148505,374204.303691149,25 +12462,6816,179745.041795664,374204.874634769,25 +12463,8665,179744.939477775,374205.796736088,25 +12464,8664,179744.812782444,374206.031842455,22.5669999999955 +12465,8661,179744.869609509,374206.42639751,25 +12466,8662,179744.783516429,374207.202278882,25 +12467,8660,179744.62753344,374207.701320782,22.563599999994 +12468,6583,179744.697423354,374207.978160251,25 +12469,4219,179744.430600002,374209.476100005,22.5599999999977 +12470,4210,179737.500700004,374207.500500005,22.3000000000029 +12471,4208,179742.500999998,374202.500500001,22.4499999999971 +12472,4209,179737.500200003,374202.500600003,22.2899999999936 +12473,4229,179732.500100002,374207.500700001,22.3899999999994 +12474,4206,179732.500200003,374202.500100009,22.4400000000023 +12475,4204,179737.500799999,374197.500600003,22.3000000000029 +12476,4234,179737.500300005,374192.500900004,22.25 +12477,4201,179742.500700001,374192.500599995,22.3300000000017 +12478,4233,179737.500399999,374187.500900004,22.2700000000041 +12479,4198,179742.500100005,374187.5002,22.3500000000058 +12480,4196,179737.500399999,374182.500500008,22.2700000000041 +12481,4197,179732.501000002,374182.5009,22.570000000007 +12482,4193,179737.500600003,374177.500600003,22.2899999999936 +12483,4190,179732.500500001,374177.500200003,22.570000000007 +12484,4194,179727.500700001,374182.500100005,22.5200000000041 +12485,4192,179727.500300009,374177.500600003,22.5299999999988 +12486,9894,179724.879183382,374179.702335648,22.7263999999996 +12487,9895,179724.756812871,374180.79027408,22.7305999999953 +12488,9892,179724.634442352,374181.878212519,22.7347000000009 +12489,9555,179724.51313844,374182.956668314,22.7388999999966 +12490,9900,179724.395273909,374184.004546143,22.7428999999975 +12491,9899,179724.277409375,374185.052423965,22.7468999999983 +12492,4199,179732.500100002,374187.500599999,22.5399999999936 +12493,9903,179724.134257004,374186.325124066,22.7517999999982 +12494,9905,179723.909200598,374188.325994231,22.7593999999954 +12495,9904,179723.829927079,374188.13605994,25 +12496,9902,179724.098413035,374185.749121532,25 +12497,9901,179724.254099201,374184.365014505,25 +12498,9898,179724.375331953,374183.28721099,25 +12499,9891,179724.477410432,374182.379695944,25 +12500,9893,179724.581513356,374181.454182882,25 +12501,9897,179724.636189301,374180.968093734,25 +12502,9896,179724.779401168,374179.694887787,25 +12503,4224,179725.063999999,374177.164700005,25 +12504,9889,179725.304035012,374175.030687973,25 +12505,9887,179725.699885927,374171.511407152,25 +12506,9884,179725.658059079,374172.777929995,22.6998000000021 +12507,9888,179725.786809877,374171.633322176,22.6953999999969 +12508,4172,179732.500399999,374172.500100002,22.5899999999965 +12509,9885,179725.91556067,374170.488714349,22.6910000000062 +12510,9886,179726.03413941,374169.434537172,22.6870000000054 +12511,4170,179732.500399999,374167.500400003,22.5200000000041 +12512,9554,179726.152718145,374168.380359996,22.6828999999998 +12513,9878,179726.352783039,374166.60176257,22.6760999999969 +12514,9877,179726.552847926,374164.823165156,22.6692999999941 +12515,4167,179732.500500001,374162.500400003,22.5299999999988 +12516,4166,179737.500600003,374162.500300001,22.3800000000047 +12517,4165,179737.500399999,374157.500700004,22.429999999993 +12518,4163,179742.500700001,374157.500600003,22.3800000000047 +12519,8726,179749.721850693,374161.376453646,22.6012999999948 +12520,8733,179749.87090366,374159.965985335,22.5950000000012 +12521,8732,179749.931151271,374160.346979044,25 +12522,8734,179749.97865589,374159.89743533,25 +12523,6591,179750.026160508,374159.447891623,25 +12524,8731,179749.929039478,374159.415853899,22.5926000000036 +12525,4133,179750.089499999,374158.848499998,25 +12526,4139,179749.990200002,374158.837100007,22.5899999999965 +12527,8736,179750.19771627,374157.824432362,25 +12528,6590,179749.836142033,374161.246066473,25 +12529,8728,179749.753428105,374162.028801441,25 +12530,8729,179749.592162296,374162.603677601,22.6067999999941 +12531,8730,179749.711901646,374162.421772905,25 +12532,8727,179749.670375176,374162.814744364,25 +12533,9880,179726.772431675,374162.871042989,22.6618000000017 +12534,9879,179726.498400684,374164.412275776,25 +12535,9876,179726.422283825,374165.08898662,25 +12536,9882,179726.234695032,374166.756729677,25 +12537,9883,179726.003221165,374168.814629536,25 +12538,4174,179737.501000002,374172.500399999,22.3099999999977 +12539,9890,179725.410729542,374174.976714998,22.7082999999984 +12540,4221,179725.163400002,374177.175500002,22.7167000000045 +12541,4191,179742.500500005,374177.500399999,22.3399999999965 +12542,8707,179748.131591216,374176.122413412,22.6276999999973 +12543,8711,179748.025678366,374177.076913066,22.6257999999943 +12544,8712,179748.175384346,374176.634349387,25 +12545,6824,179748.242888339,374176.02599512,25 +12546,8708,179748.437098213,374174.275751937,25 +12547,8713,179748.351493411,374174.140627883,22.6316999999981 +12548,8714,179748.495078709,374173.753224596,25 +12549,6825,179748.788942013,374175.872686099,25.3800999999949 +12550,8710,179748.592600938,374177.735033523,25.3632999999973 +12551,6822,179748.396259855,374179.597380955,25.3466000000044 +12552,8706,179747.945969999,374178.701859575,25 +12553,6587,179747.854468592,374179.526481494,25 +12554,8704,179747.772743043,374180.263002161,25 +12555,8703,179747.68421014,374180.154266514,22.6195000000007 +12556,8694,179747.639236316,374181.466181163,25 +12557,8701,179747.497453969,374181.837336082,22.6160999999993 +12558,4195,179742.500900004,374182.5002,22.3300000000017 +12559,8692,179747.34050383,374183.251789931,22.6132000000071 +12560,8697,179747.293042693,374183.67951547,22.6123999999982 +12561,8693,179747.424004033,374183.405880824,25 +12562,8696,179747.487029176,374182.837890539,25 +12563,8702,179747.563132748,374182.152035847,25 +12564,8699,179747.364412181,374183.942929957,25 +12565,8698,179747.208771765,374185.345580492,25 +12566,8700,179747.110075705,374185.328436468,22.6089999999967 +12567,6586,179746.993539486,374187.285280161,25 +12568,8687,179746.885757089,374188.256628308,25 +12569,8686,179746.882494844,374187.37942306,22.6049000000057 +12570,8690,179746.752624676,374188.549828924,22.6024999999936 +12571,4220,179746.616599999,374189.775699999,22.6000000000058 +12572,8689,179746.800878543,374189.021564152,25 +12573,8691,179746.843317814,374188.639096227,25 +12574,4215,179746.715999998,374189.786500003,25 +12575,8685,179746.641506765,374190.457842153,25 +12576,8684,179746.472880505,374191.07091118,22.5973999999987 +12577,8682,179746.283799339,374192.774925124,22.5939000000071 +12578,8683,179746.392788913,374192.699317936,25 +12579,6820,179746.567013536,374191.129184302,25 +12580,6819,179746.273540866,374193.773995996,25 +12581,8680,179746.052311298,374195.767743997,25 +12582,8679,179746.137464292,374194.0937078,22.5911999999953 +12583,8681,179745.946238581,374195.81704862,22.5877000000037 +12584,6585,179745.831081726,374197.761491992,25 +12585,8675,179745.724542201,374197.814993501,22.5837000000029 +12586,8678,179745.776159611,374198.256456833,25 +12587,8677,179745.644829147,374198.533373658,22.5822000000044 +12588,4203,179742.500800002,374197.500300005,22.3500000000058 +12589,8672,179745.505897049,374199.785440344,22.579700000002 +12590,8676,179745.721237496,374198.751421675,25 +12591,8671,179745.608624846,374199.766300637,25 +12592,8674,179745.421385895,374200.547061395,22.5780999999988 +12593,8673,179745.497396413,374200.768704958,25 +12594,6584,179745.386167973,374201.771109279,25 +12595,8670,179745.282502692,374201.798687451,22.5755999999965 +12596,8668,179745.09875647,374203.454622552,22.5721999999951 +12597,8666,179744.970066495,374204.614386529,22.5699000000022 +12598,8705,179747.836721227,374178.779817902,22.6223000000027 +12599,8709,179748.10788035,374177.242703658,25 +12600,4157,179747.500900004,374147.500300001,22.3000000000029 +12601,8745,179750.891715415,374150.305385873,22.551999999996 +12602,8748,179751.053240106,374148.776757035,22.5451999999932 +12603,4140,179751.177700005,374147.598900005,22.5399999999936 +12604,8749,179751.394095011,374146.040515095,22.4548000000068 +12605,4155,179747.500900004,374142.500800002,22.2799999999988 +12606,4141,179751.584000003,374144.672899999,22.3800000000047 +12607,6837,179751.1388858,374148.917996481,25 +12608,6592,179751.000771604,374150.224992957,25 +12609,8747,179750.801398318,374151.16012406,22.5558000000019 +12610,8742,179750.659776248,374152.500399612,22.5617999999959 +12611,8744,179750.606532238,374153.004287429,22.5641000000032 +12612,23239,179752.747896262,374135.247022185,22.502800000002 +12613,4067,179747.500700001,374127.500599995,22.3800000000047 +12614,23246,179753.471443836,374128.551187884,22.4575999999943 +12615,23248,179753.641087729,374126.981273971,22.4470000000001 +12616,23250,179753.777143862,374125.72218699,22.4385000000038 +12617,4102,179753.913199998,374124.463100005,22.429999999993 +12618,21332,179753.970847908,374122.5612913,22.4061999999976 +12619,24132,179754.00247395,374121.517945647,22.3931000000011 +12620,4103,179754.034100004,374120.474600002,22.3800000000047 +12621,24131,179754.104684696,374121.445920445,24.9747000000061 +12622,4117,179754.134000003,374120.479000002,24.9640000000072 +12623,4118,179754.169000007,374119.877999999,25.1110000000044 +12624,4104,179754.069300003,374119.869900007,22.4100000000035 +12625,21336,179754.306894425,374118.564374186,25.1074999999983 +12626,21333,179754.075369399,374122.412840899,24.9853000000003 +12627,21331,179754.057159964,374123.013451368,24.9918999999936 +12628,4116,179754.013000004,374124.470000006,25.0080000000016 +12629,4129,179754.594000004,374124.557000004,25.400999999998 +12630,23251,179753.927709565,374125.259299558,25.0118999999977 +12631,23249,179753.828063816,374126.181446921,25.0142000000051 +12632,23247,179753.669449829,374127.649301462,25.0178000000014 +12633,21340,179755.759823639,374115.511846561,25.3956999999937 +12634,4101,179752.500600003,374112.500399999,22.25 +12635,8759,179754.904059261,374111.917449843,22.3522999999986 +12636,21351,179754.991779402,374111.081771746,22.3463000000047 +12637,8762,179755.079499539,374110.246093653,22.340200000006 +12638,4100,179752.500500001,374107.500500001,22.2899999999936 +12639,4056,179747.500700001,374107.500600003,22.2799999999988 +12640,4099,179752.500399999,374102.500300001,22.3699999999953 +12641,4054,179747.5002,374102.500599999,22.2599999999948 +12642,4050,179747.500999998,374097.500400003,22.2799999999988 +12643,4051,179742.500300001,374097.500500005,22.4199999999983 +12644,4048,179742.500999998,374092.500700004,22.3600000000006 +12645,4095,179737.500700004,374092.500600003,22.2100000000064 +12646,4033,179742.500400003,374087.500300005,22.5200000000041 +12647,4034,179737.500799999,374087.500799999,22.5399999999936 +12648,4039,179734.830599997,374089.283300001,22.6000000000058 +12649,11094,179734.979149032,374087.902983345,22.6346000000049 +12650,9540,179735.127698068,374086.522666678,22.6690999999992 +12651,11081,179735.229934897,374085.572682697,22.6928999999946 +12652,11080,179735.332171731,374084.622698717,22.7167000000045 +12653,11084,179735.424715791,374083.76277988,22.7382999999973 +12654,4032,179742.500500005,374082.500500005,22.5399999999936 +12655,11083,179735.517259855,374082.902861044,22.7597999999998 +12656,11082,179735.324480686,374083.75944373,25.0580999999947 +12657,11085,179735.490117859,374082.220361631,25.0475000000006 +12658,11092,179735.174478687,374085.153245557,25.0676999999996 +12659,11079,179735.142740723,374085.448151175,25.0696999999927 +12660,11093,179735.007794347,374086.702057846,25.0782999999938 +12661,11095,179734.869662352,374087.985564943,25.0871999999945 +12662,4041,179734.730999999,374089.274,25.096000000005 +12663,4090,179733.181000002,374090.963,26.1009999999951 +12664,11098,179734.609778911,374090.811150759,25.0945999999967 +12665,11096,179734.522578519,374091.916900195,25.0935000000027 +12666,11130,179733.694409821,374092.317223202,25.0822000000044 +12667,4081,179734.389000002,374092.344000004,25.0639999999985 +12668,4092,179734.281100005,374092.439900003,22.2400000000052 +12669,11126,179734.371918343,374092.559998244,25.0657000000065 +12670,11127,179734.473680258,374092.536957275,25.0929000000033 +12671,11104,179734.453514662,374092.792668298,25.0926999999938 +12672,11103,179734.546675973,374092.883332428,22.5001000000047 +12673,9541,179734.599262737,374092.216555294,22.5185999999958 +12674,11099,179734.493845865,374092.281246249,25.093200000003 +12675,11097,179734.703965966,374090.888964131,22.5555000000022 +12676,9544,179734.494089209,374093.550109562,22.4815999999992 +12677,11115,179734.441502444,374094.216886692,22.4631999999983 +12678,9542,179734.388915688,374094.883663826,22.4446999999927 +12679,4049,179737.500300005,374097.500300001,22.3300000000017 +12680,4070,179734.318799999,374095.772699997,22.4199999999983 +12681,9545,179732.648208849,374097.483883411,22.4281999999948 +12682,14545,179732.710506722,374096.889926311,22.420299999998 +12683,4071,179734.019400001,374095.748700004,22.4199999999983 +12684,11133,179732.772804592,374096.295969211,22.4122999999963 +12685,11138,179732.835102461,374095.702012111,22.4042999999947 +12686,11132,179732.897400331,374095.10805501,22.3963999999978 +12687,11135,179734.06055975,374095.22829733,22.3916999999929 +12688,11108,179734.101719499,374094.707894657,22.363400000002 +12689,14554,179733.03955017,374093.752777509,22.3782000000065 +12690,11134,179734.142879259,374094.187491983,22.3350999999966 +12691,9543,179734.184039,374093.667089313,22.3068000000058 +12692,14559,179733.082868244,374093.339776557,22.3726000000024 +12693,11101,179734.232569505,374093.053494655,22.2734000000055 +12694,11123,179734.323897142,374093.167228092,25.0705000000016 +12695,11124,179734.338273376,374092.985440087,25.0690000000031 +12696,11105,179734.429477025,374093.097478911,25.0923999999941 +12697,11125,179734.441495843,374092.945073608,25.0926000000036 +12698,11102,179734.417588249,374093.248235218,25.0923000000039 +12699,11100,179734.407785464,374093.372539923,25.0921999999991 +12700,11122,179734.396125175,374093.520398881,25.0920000000042 +12701,11106,179734.384464882,374093.66825784,25.0918999999994 +12702,11116,179734.362283096,374093.949535213,25.0915999999997 +12703,11120,179734.277372181,374093.755538039,25.0751000000018 +12704,11113,179734.249404028,374094.109196384,25.0779000000039 +12705,11114,179734.340995301,374094.219476253,25.0914000000048 +12706,11117,179734.237074543,374094.26510321,25.0791000000027 +12707,11118,179734.319260512,374094.49508547,25.0911000000051 +12708,11119,179734.219984639,374094.481205743,25.0807999999961 +12709,11112,179734.198391676,374094.754249562,25.082899999994 +12710,11107,179734.297525726,374094.770694673,25.0908000000054 +12711,11111,179734.27926841,374095.002207551,25.0905999999959 +12712,11109,179734.261011098,374095.233720429,25.090400000001 +12713,11110,179734.173345845,374095.07095506,25.0853999999963 +12714,11136,179734.155752484,374095.293423738,25.0871000000043 +12715,4079,179734.227000006,374095.664999999,25.0899999999965 +12716,4080,179734.127,374095.657000002,25.0899999999965 +12717,11121,179734.291710563,374093.574228644,25.0736999999936 +12718,14555,179733.126186326,374092.926775601,22.3671000000031 +12719,11129,179733.731399998,374092.418700006,22.3000000000029 +12720,4072,179733.181699999,374092.397500005,22.3600000000006 +12721,14553,179733.049642295,374092.697856523,25.0981999999931 +12722,14557,179733.002194237,374093.150246628,25.0982999999978 +12723,14556,179732.948292583,374093.182213038,26.0978000000032 +12724,14560,179732.986259237,374093.302177735,25.0984000000026 +12725,14558,179732.970324237,374093.454108838,25.0984999999928 +12726,14552,179732.938454248,374093.757971052,25.0985999999975 +12727,14548,179732.694961283,374095.598105516,26.094299999997 +12728,14549,179732.784908481,374095.221942101,25.0991999999969 +12729,14550,179732.749377754,374095.560707256,25.0993000000017 +12730,11137,179732.732070718,374095.725719932,25.0994000000064 +12731,14544,179732.646318283,374096.543320421,25.0997000000061 +12732,14543,179732.510010723,374097.36188551,26.0917000000045 +12733,14538,179732.380703539,374098.595022734,26.0899000000063 +12734,14541,179732.356374331,374098.827038139,26.0896000000066 +12735,14534,179732.244055014,374099.898170687,26.0880000000034 +12736,14531,179732.184510224,374100.466019195,26.0871999999945 +12737,11139,179732.267722089,374100.153018653,25.1010999999999 +12738,14532,179732.212098386,374100.683358856,25.1012999999948 +12739,14533,179732.165527917,374100.647043929,26.0868999999948 +12740,11143,179732.156474683,374101.213699069,25.1015000000043 +12741,11141,179732.255784824,374101.225311961,22.4784000000072 +12742,11140,179732.386592831,374099.97816911,22.4616999999998 +12743,4052,179737.500300005,374102.500100005,22.429999999993 +12744,4076,179733.490400001,374103.688600004,22.6399999999994 +12745,11160,179733.348076824,374104.849820297,22.6255999999994 +12746,11159,179733.304890484,374104.379696969,25.0945999999967 +12747,11166,179733.259520579,374104.749892954,25.0913 +12748,11169,179733.235086557,374104.949262433,25.0895000000019 +12749,11167,179733.230504151,374104.986652575,25.0892000000022 +12750,11170,179733.14095141,374105.717358597,25.082699999999 +12751,9548,179733.205753643,374106.011040598,22.6111999999994 +12752,11172,179733.105788745,374106.004268549,25.0801000000065 +12753,11173,179733.065143459,374106.335913941,25.077099999995 +12754,11174,179733.085250646,374106.994229164,22.5991000000067 +12755,11177,179733.003503263,374106.838867426,25.0727000000043 +12756,11179,179732.979908973,374107.031385146,25.0709000000061 +12757,11180,179732.930753596,374107.432468701,25.0673999999999 +12758,11186,179732.864132546,374107.141821675,25.0991000000067 +12759,11176,179732.843421698,374107.310547788,25.0991000000067 +12760,11181,179732.822710853,374107.479273893,25.099000000002 +12761,4074,179732.7159,374107.528600007,22.5599999999977 +12762,4084,179732.802000001,374107.647999998,25.099000000002 +12763,11183,179732.155500006,374107.517500002,25.1015000000043 +12764,11184,179732.166900001,374107.417800002,22.5599999999977 +12765,4073,179731.617899999,374107.307000004,22.5599999999977 +12766,4083,179731.509,374107.386999998,25.1040000000066 +12767,11190,179732.757876363,374108.843061268,25.0547999999981 +12768,11182,179732.879060373,374107.854259778,25.063599999994 +12769,9550,179732.964747652,374107.977417737,22.5868999999948 +12770,11189,179732.859919973,374108.832710799,22.5763000000006 +12771,11187,179732.73224441,374109.05220535,25.0528999999951 +12772,11191,179732.636454128,374109.833806619,25.0458999999973 +12773,14506,179731.548938133,374106.527148906,26.0783999999985 +12774,14507,179731.595474169,374106.562518261,25.1037000000069 +12775,14514,179731.618151162,374106.346306112,25.1036000000022 +12776,14513,179731.640828155,374106.130093955,25.1034999999974 +12777,14508,179731.686182138,374105.697669651,25.1033000000025 +12778,14517,179731.721801564,374104.878637802,26.0807999999961 +12779,14521,179731.847275242,374103.682058752,26.0825000000041 +12780,14523,179731.978547975,374102.430177063,26.0843000000023 +12781,14526,179732.050150916,374101.747336015,26.0853000000061 +12782,14529,179732.099108703,374101.280450329,26.0859999999957 +12783,14527,179732.124255572,374101.520889916,25.1016999999993 +12784,14530,179732.140365127,374101.36729449,25.1015999999945 +12785,14525,179732.190380823,374101.848883387,22.4867999999988 +12786,14528,179732.108146008,374101.674485344,25.1016999999993 +12787,14524,179732.092036452,374101.82808077,25.101800000004 +12788,11144,179732.027598221,374102.44246247,25.101999999999 +12789,9546,179732.124976814,374102.472454805,22.4951000000001 +12790,4075,179733.192000002,374103.649900004,22.6399999999994 +12791,4085,179733.279000003,374103.761999998,25.1000000000058 +12792,11158,179733.264754422,374103.878055178,25.1000000000058 +12793,4086,179733.379000001,374103.774999999,25.1000000000058 +12794,11156,179733.222017687,374104.226220697,25.0999000000011 +12795,11164,179733.189508628,374104.491063911,25.0997999999963 +12796,11157,179733.132487506,374104.134737503,22.6300000000047 +12797,9547,179733.07297501,374104.619575005,22.6199999999953 +12798,11165,179733.176103458,374104.600272499,25.0997999999963 +12799,11161,179733.156999562,374104.755907126,25.0997000000061 +12800,11163,179733.02834063,374104.983203124,22.6125000000029 +12801,11145,179731.871438406,374104.889727402,22.5276000000013 +12802,11154,179732.983706251,374105.346831251,22.6049999999959 +12803,14510,179731.820136677,374105.378845695,22.5341000000044 +12804,14519,179731.731536124,374105.265245341,25.1031999999977 +12805,14509,179731.768834941,374105.867963985,22.5406999999977 +12806,14511,179732.939071879,374105.710459378,22.5975000000035 +12807,9549,179732.894437499,374106.074087501,22.5899999999965 +12808,11153,179733.005430002,374105.990706563,25.0994000000064 +12809,11171,179733.042796008,374105.68629501,25.0994999999966 +12810,11155,179733.080162015,374105.38188345,25.0996000000014 +12811,11162,179733.118580788,374105.068895288,25.0997000000061 +12812,11168,179733.137790177,374104.912401211,25.0997000000061 +12813,11150,179732.969326649,374106.284831543,25.0994000000064 +12814,11151,179732.805168752,374106.801343754,22.5749999999971 +12815,11152,179732.926838264,374106.630973816,25.0993000000017 +12816,11178,179732.905840833,374106.802034695,25.0991999999969 +12817,11175,179732.88484339,374106.97309557,25.0991999999969 +12818,11185,179732.76053438,374107.164971873,22.5675000000047 +12819,14512,179731.69336747,374106.58748199,22.5503000000026 +12820,14516,179731.718992155,374106.343172461,22.5470999999961 +12821,14515,179731.731101211,374106.227722988,22.5454999999929 +12822,14520,179731.76121268,374104.982296281,25.1030000000028 +12823,11146,179731.776890106,374104.832821034,25.1030000000028 +12824,14518,179731.827913638,374104.346340779,25.1027999999933 +12825,11149,179731.934823014,374104.285409253,22.5194999999949 +12826,11148,179731.878937181,374103.859860525,25.1025999999983 +12827,11147,179731.998207614,374103.681091107,22.5114000000031 +12828,14522,179731.900568876,374103.653614659,25.1024999999936 +12829,4053,179742.500400003,374102.5002,22.4400000000023 +12830,14537,179732.517400835,374098.731026258,22.445000000007 +12831,14540,179732.399387989,374098.897659544,25.1006000000052 +12832,11142,179732.298835997,374099.856365371,25.1009999999951 +12833,14535,179732.283279039,374100.004692011,25.1010999999999 +12834,14542,179732.414544456,374098.753151339,25.1006000000052 +12835,14536,179732.429700915,374098.608643133,25.1005000000005 +12836,14539,179732.495133381,374097.984782021,25.1003000000055 +12837,14547,179732.537392709,374097.581863429,25.100099999996 +12838,11131,179732.56056584,374097.360920902,25.1000000000058 +12839,14546,179732.603442062,374096.952120665,25.0999000000011 +12840,14551,179733.043743219,374092.271948569,26.0991000000067 +12841,4082,179733.092000004,374092.294,25.0979999999981 +12842,11128,179733.60453843,374092.313758615,25.084600000002 +12843,11088,179735.699099913,374080.278523762,25.0341999999946 +12844,11086,179735.751753353,374080.723948956,22.8144000000029 +12845,11087,179735.634506606,374081.813405,22.7871000000014 +12846,11090,179735.867572244,374079.647760507,22.8413 +12847,4029,179742.500500005,374077.5002,22.4499999999971 +12848,4028,179742.500400003,374072.500700004,22.3999999999942 +12849,4038,179736.334400006,374075.309999999,22.9499999999971 +12850,11089,179735.983391143,374078.571572069,22.8683000000019 +12851,11091,179735.902791239,374078.385846719,25.0212000000029 +12852,4046,179736.234999999,374075.298999999,25 +12853,11078,179736.479559865,374073.139248285,25 +12854,11064,179736.616904102,374071.926336877,25 +12855,11077,179736.662906356,374071.520082776,25 +12856,11066,179736.71887596,374071.914651915,22.8960999999981 +12857,9539,179736.606375828,374072.908152603,22.9119000000064 +12858,11065,179736.831376102,374070.921151232,22.8803999999946 +12859,11069,179736.926932096,374070.077286076,22.8669999999984 +12860,11068,179737.022488091,374069.233420923,22.8536000000022 +12861,4026,179742.500900004,374067.5009,22.4100000000035 +12862,11071,179737.19767952,374067.686286837,22.8291000000027 +12863,11073,179737.38578603,374066.025098164,22.8027000000002 +12864,11075,179737.556093019,374064.521099083,22.7789000000048 +12865,4023,179742.500400003,374062.500100002,22.4199999999983 +12866,4037,179737.726399999,374063.017100003,22.7550000000047 +12867,4045,179737.627000004,374063.006000001,25 +12868,11076,179737.451520074,374064.555694543,25 +12869,11074,179737.310069591,374065.804868918,25 +12870,11072,179737.145010367,374067.262536325,25 +12871,11070,179736.989252944,374068.638057917,25 +12872,11062,179737.720375564,374062.181383803,25 +12873,11063,179737.809786875,374062.280701671,22.7433000000019 +12874,11061,179737.893173743,374061.544303339,22.7315999999992 +12875,11060,179737.856969148,374060.975101519,25 +12876,11058,179738.0557267,374060.108780928,22.7088999999978 +12877,11057,179738.024595127,374059.494766597,25 +12878,11047,179738.232820813,374057.655888509,25 +12879,9538,179738.238783535,374058.492186561,22.6831999999995 +12880,11059,179738.147255115,374059.300483737,22.6959999999963 +12881,4021,179742.500400003,374057.500500005,22.4199999999983 +12882,11049,179738.362211708,374057.402179245,22.6659000000072 +12883,11048,179738.485639878,374056.31217194,22.6486000000004 +12884,11052,179738.584938992,374055.435250871,22.6346999999951 +12885,11051,179738.68423811,374054.558329802,22.6208000000042 +12886,4020,179742.500599999,374052.500500008,22.3500000000058 +12887,3954,179742.500500005,374047.500399999,22.3999999999942 +12888,11046,179739.229660135,374049.726867225,22.556700000001 +12889,9537,179739.340920266,374048.729534447,22.5534999999945 +12890,11044,179739.53114488,374047.024366196,22.547900000005 +12891,9536,179740.008481044,374042.74553778,22.5339999999997 +12892,3953,179742.500900004,374042.500500001,22.4100000000035 +12893,11039,179740.12051595,374041.741259988,22.530700000003 +12894,11041,179740.267249957,374040.425940327,22.5264000000025 +12895,3958,179740.658900004,374036.915199999,22.5149999999994 +12896,11042,179740.178712714,374040.317366861,25 +12897,11040,179740.052036092,374041.452892672,25 +12898,3961,179740.559500001,374036.903999999,25 +12899,11037,179740.873311482,374034.091002434,25 +12900,11024,179741.013055727,374032.838338874,25 +12901,11036,179741.084403645,374032.198778067,25 +12902,11027,179741.222985897,374030.956530556,25 +12903,11030,179741.398678765,374029.381624453,25 +12904,11038,179739.953654785,374042.334780019,25 +12905,11043,179739.409576178,374047.211885829,25 +12906,11045,179739.191997819,374049.162252322,25 +12907,4040,179739.019000009,374050.713000003,25 +12908,4036,179739.118400004,374050.724199999,22.5599999999977 +12909,11055,179738.776833761,374052.851613227,25 +12910,11054,179738.868177637,374052.933940314,22.5951000000059 +12911,11053,179738.621281158,374054.225325998,25 +12912,11050,179738.446889654,374055.765408397,25 +12913,11056,179738.26255849,374057.393269785,25 +12914,11067,179736.818488292,374070.146110982,25 +12915,4035,179747.500100005,374087.5009,22.3099999999977 +12916,4097,179752.500500001,374092.500399999,22.3999999999942 +12917,8772,179757.297524419,374090.675549228,22.3662999999942 +12918,21487,179757.440112211,374089.499824613,22.3631000000023 +12919,21484,179757.156361736,374091.839522954,22.3693999999959 +12920,21481,179757.015199058,374093.003496677,22.3724999999977 +12921,8771,179756.732873693,374095.331444133,22.3787000000011 +12922,4098,179752.500300005,374097.500100005,22.3600000000006 +12923,4047,179747.500700001,374092.500300005,22.3099999999977 +12924,21446,179756.595008783,374096.468225706,22.3816999999981 +12925,8769,179756.457143862,374097.605007302,22.3847999999998 +12926,21468,179756.647027552,374096.869929653,25.0675999999949 +12927,21470,179756.686905626,374096.541112497,25.0673999999999 +12928,21472,179756.709729601,374096.352915984,25.0672999999952 +12929,21471,179756.800701678,374096.431807905,25.0752000000066 +12930,21450,179756.783739839,374096.571681645,25.0749000000069 +12931,21445,179756.907237504,374096.384,22.4063000000024 +12932,21447,179756.817663521,374096.291934174,25.0754000000015 +12933,21449,179756.837320011,374096.129839376,25.075800000006 +12934,21473,179756.801809989,374095.593661431,25.0669000000053 +12935,21474,179756.874660008,374095.821919691,25.0764000000054 +12936,21475,179756.89333,374095.667959847,25.0767000000051 +12937,4123,179756.912000004,374095.513999999,25.0770000000048 +12938,21476,179756.830753956,374095.355002131,25.0668000000005 +12939,21482,179757.089508928,374093.221421964,25.0656000000017 +12940,21477,179757.301609579,374095.615679383,25.079899999997 +12941,21442,179757.691219155,374095.717358768,25.0828000000038 +12942,21443,179757.503849998,374095.771800004,22.4100000000035 +12943,4107,179758.010200001,374095.903900001,22.4100000000035 +12944,4122,179758.118999999,374095.829,25.0859999999957 +12945,21441,179758.014050722,374096.785397477,25.0868000000046 +12946,21439,179757.99255364,374096.981299326,25.0869999999995 +12947,21438,179757.912809178,374097.708006524,25.0875999999989 +12948,21440,179757.875529949,374097.131094832,22.3889999999956 +12949,9778,179757.830639936,374097.540159773,22.3819999999978 +12950,21436,179757.874547333,374098.056684718,25.0880000000034 +12951,21435,179757.753737081,374098.240945023,22.3701000000001 +12952,21434,179757.792799365,374098.801649842,25.0886000000028 +12953,21433,179757.775929071,374098.955387991,25.088699999993 +12954,9782,179757.676834222,374098.941730268,22.3580999999976 +12955,21429,179757.598083485,374099.65935456,22.3457999999955 +12956,4109,179756.516100004,374099.609299999,22.3899999999994 +12957,8767,179757.523028512,374100.343300764,22.3341999999975 +12958,9785,179757.423844885,374101.247121885,22.3187000000034 +12959,4110,179756.218800001,374099.570300005,22.3899999999994 +12960,4124,179756.429000001,374099.497000005,25.0690000000031 +12961,4125,179756.329999998,374099.484000001,25.0690000000031 +12962,21458,179756.422685865,374098.71975293,25.0685999999987 +12963,21456,179756.337971933,374098.587653652,22.3874000000069 +12964,21418,179757.231039122,374103.004084375,22.2887000000046 +12965,9787,179757.137416996,374103.857225746,22.2740999999951 +12966,9789,179756.97003641,374105.382498756,22.2480999999971 +12967,4105,179755.3719,374107.460500006,22.320000000007 +12968,21409,179756.886346109,374106.145135269,22.2350000000006 +12969,8764,179756.802655812,374106.907771774,22.2219999999943 +12970,21410,179756.950752683,374106.475178514,25.0953000000009 +12971,21411,179756.977139812,374106.234713957,25.0951000000059 +12972,21407,179757.019521523,374105.848491617,25.0948000000062 +12973,21406,179756.891498964,374107.015154663,25.0957999999955 +12974,21412,179757.054264002,374105.531885125,25.0945000000065 +12975,21414,179757.096127871,374105.150381785,25.0942000000068 +12976,21415,179757.183611091,374104.353151631,25.0935000000027 +12977,21419,179757.23546866,374103.880576242,25.0930999999982 +12978,21420,179757.252259765,374103.727559805,25.0929000000033 +12979,21416,179757.289486915,374103.388310675,25.0926000000036 +12980,21421,179757.320003491,374103.110214639,25.0923999999941 +12981,21459,179756.446773879,374098.521133725,25.0684999999939 +12982,21457,179756.543379415,374098.553784274,25.0709000000061 +12983,21455,179756.524258468,374098.711462781,25.0706000000064 +12984,8768,179756.63645,374098.616899997,22.3950000000041 +12985,21461,179756.681581251,374098.244750004,22.396900000007 +12986,9780,179756.726712503,374097.8726,22.3987999999954 +12987,21463,179756.608131483,374098.01981432,25.0720000000001 +12988,21460,179756.586547457,374098.197804309,25.0715999999957 +12989,21462,179756.50551945,374098.036743477,25.0681999999942 +12990,21454,179756.629715502,374097.841824342,25.0722999999998 +12991,21464,179756.547079407,374097.694058299,25.0679999999993 +12992,21466,179756.571091104,374097.496068299,25.0678999999946 +12993,21465,179756.652411625,374097.654663578,25.0727000000043 +12994,21452,179756.675107747,374097.467502821,25.0730999999942 +12995,21467,179756.706036597,374097.212451857,25.0736000000034 +12996,21444,179756.736965448,374096.957400892,25.074099999998 +12997,21469,179756.760352641,374096.764541265,25.0745000000024 +12998,21451,179756.862106252,374096.756150004,22.4043999999994 +12999,8770,179756.816975001,374097.128300004,22.4024999999965 +13000,9779,179757.920419969,374096.722029887,22.3959999999934 +13001,21448,179756.952368747,374096.011849999,22.4081000000006 +13002,21478,179757.250675004,374095.70575,22.4100000000035 +13003,21479,179756.974934377,374095.825774997,22.4091000000044 +13004,4108,179756.997500002,374095.639700003,22.4100000000035 +13005,21453,179756.771843754,374097.50045,22.4005999999936 +13006,21362,179755.313419916,374108.017618731,22.3239999999932 +13007,8760,179755.254939813,374108.574737459,22.3280999999988 +13008,21356,179755.362755124,374108.505911741,25.0804999999964 +13009,21361,179755.411877561,374108.037955873,25.0792999999976 +13010,4119,179755.461000003,374107.57,25.0779999999941 +13011,21358,179755.347728882,374108.649056435,25.0809000000008 +13012,21355,179755.332702648,374108.792201128,25.0813000000053 +13013,21364,179755.436339844,374108.759717867,25.0865000000049 +13014,21357,179755.458381828,374108.549437359,25.0850000000064 +13015,21365,179755.380294453,374109.294390954,25.090400000001 +13016,21366,179755.469762634,374109.400031973,22.2396000000008 +13017,21370,179755.358172204,374109.505437203,25.0918999999994 +13018,8761,179755.403050181,374110.036509302,22.2127999999939 +13019,21394,179756.447657984,374110.142726306,22.1668000000063 +13020,21350,179756.390371993,374110.664750874,22.1578000000009 +13021,21349,179755.335043862,374110.685330812,22.1855000000069 +13022,8763,179755.267037548,374111.334152322,22.1582000000053 +13023,21385,179755.748750005,374111.737750005,22.1399999999994 +13024,4131,179755.221700002,374111.766700003,22.1399999999994 +13025,21380,179755.144496236,374111.543905895,25.1065999999992 +13026,21383,179755.117399622,374111.8024076,25.1085000000021 +13027,21347,179755.016297717,374111.80637439,25.0893999999971 +13028,4120,179755.109999999,374111.873,25.1089999999967 +13029,21381,179755.048813142,374111.496622194,25.088499999998 +13030,21382,179755.15134133,374111.478603709,25.1061000000045 +13031,21352,179755.081328563,374111.186869994,25.0877000000037 +13032,21378,179755.104572166,374110.965444118,25.0871000000043 +13033,21379,179755.17875573,374111.217070319,25.1043000000063 +13034,21377,179755.22275063,374110.79735906,25.1012000000046 +13035,21353,179755.127815764,374110.744018242,25.0865000000049 +13036,21376,179755.2429667,374110.60449766,25.0997999999963 +13037,21374,179755.278772026,374110.262914911,25.0973999999987 +13038,21375,179755.165135395,374110.388499644,25.0856000000058 +13039,21348,179755.141761474,374110.611167047,25.0862000000052 +13040,21354,179755.186948124,374110.180704717,25.0850000000064 +13041,21372,179755.223386757,374109.833578814,25.0840999999928 +13042,21371,179755.304575283,374110.016751837,25.0956000000006 +13043,21373,179755.313660968,374109.930074345,25.0950000000012 +13044,21367,179755.259825386,374109.486452918,25.0831000000035 +13045,21368,179755.167219676,374109.410415556,22.3340999999928 +13046,21369,179755.285296474,374109.243807267,25.0825000000041 +13047,21393,179756.59168933,374109.747304618,25.0981999999931 +13048,21508,179758.691799387,374079.821995933,25.0332000000053 +13049,21488,179758.79362008,374078.963506814,25.0301999999938 +13050,21509,179758.906109344,374078.015066862,25.0268999999971 +13051,21537,179760.880702406,374060.023421735,22.2988999999943 +13052,8776,179760.964820255,374059.278435756,22.3119000000006 +13053,21559,179762.581699796,374044.957804076,22.5605999999971 +13054,8778,179762.455799591,374046.072908148,22.5412999999971 +13055,21555,179762.242432933,374047.96270676,22.5084000000061 +13056,21558,179762.656470295,374045.187169634,25 +13057,21560,179762.710143343,374044.711813122,25 +13058,3990,179762.807,374043.853999998,25 +13059,11023,179742.399671372,374021.346891299,22.4899000000005 +13060,11022,179742.397651337,374020.480228052,25 +13061,11021,179742.620403495,374018.523421407,25 +13062,11018,179742.813932057,374016.823334765,25 +13063,11016,179742.975452181,374015.404431991,25 +13064,11017,179742.939919665,374016.601013098,22.5434999999998 +13065,9534,179743.121273894,374015.007884398,22.5614999999962 +13066,11008,179743.10272916,374014.286344346,25 +13067,11009,179743.285891853,374013.56177748,22.5779000000039 +13068,11015,179743.118856765,374014.144668538,25 +13069,11010,179743.24580054,374013.029508028,25 +13070,11011,179743.436740845,374012.236625802,22.5929000000033 +13071,3963,179747.500800002,374012.500300001,22.3600000000006 +13072,11012,179743.374210812,374011.901464686,25 +13073,11020,179742.754789751,374018.227309827,22.5250999999989 +13074,11019,179742.569659837,374019.853606548,22.5068000000028 +13075,3968,179752.5009,374012.500400003,22.4799999999959 +13076,21582,179764.612135895,374027.290889125,22.4134999999951 +13077,21593,179765.482621841,374019.725729063,22.337400000004 +13078,8782,179765.675654214,374018.048136413,22.3205000000016 +13079,21597,179765.838910036,374016.629323814,22.3062000000064 +13080,21596,179765.905853137,374016.922698062,25 +13081,21595,179765.772392109,374018.082572084,25 +13082,21594,179765.563186366,374019.90072313,25 +13083,11230,179767.442595482,374009.00895714,25.3329999999987 +13084,21610,179767.800797738,374005.93847857,25.3285000000033 +13085,21615,179767.309078358,374004.589745913,25 +13086,21607,179767.175288465,374005.789444786,25 +13087,21614,179767.167971551,374005.855055824,25 +13088,21611,179767.115049649,374006.329608489,25 +13089,21613,179766.9651566,374007.673705053,25 +13090,21612,179766.879825424,374007.536258332,22.2339000000065 +13091,3994,179766.710600004,374009.053700004,22.2299999999959 +13092,21604,179766.743543576,374009.642554987,25 +13093,3992,179766.809999999,374009.065000005,25 +13094,11000,179745.521843512,373993.919694129,22.7998999999982 +13095,3940,179745.724400003,373992.140299998,22.820000000007 +13096,3939,179747.0724,373980.1921,22.6699999999983 +13097,3913,179752.501000002,373982.500399999,22.5099999999948 +13098,3910,179757.500399999,373977.500300005,22.3899999999994 +13099,3934,179752.500799999,373977.500700008,22.5 +13100,3905,179752.500700004,373972.500100005,22.5299999999988 +13101,3907,179757.5009,373972.500300001,22.429999999993 +13102,3906,179762.500300001,373972.5002,22.2700000000041 +13103,3903,179757.5009,373967.500599999,22.4700000000012 +13104,3904,179762.500500005,373967.500700001,22.2700000000041 +13105,3881,179762.500900008,373962.5009,22.2700000000041 +13106,3902,179767.500300001,373967.500500005,22.3500000000058 +13107,3908,179767.500300001,373972.500800002,22.3000000000029 +13108,21658,179770.983736973,373970.736448638,22.3279999999941 +13109,11221,179770.844309505,373971.986692525,22.3248000000021 +13110,21656,179770.755882133,373972.779619392,22.3227999999945 +13111,21654,179770.667454757,373973.572546266,22.3208000000013 +13112,3926,179770.490600005,373975.158399999,22.3166999999958 +13113,21653,179770.748593546,373973.747585811,25 +13114,21655,179770.860425629,373972.744783401,25 +13115,21652,179770.355940185,373976.365899585,22.313599999994 +13116,3909,179767.500500005,373977.500100002,22.320000000007 +13117,11224,179770.221280362,373977.573399175,22.3105000000069 +13118,21648,179770.086620543,373978.780898761,22.3074000000051 +13119,8787,179769.951960731,373979.988398347,22.3043000000034 +13120,3911,179762.500700001,373977.500600003,22.25 +13121,10984,179747.677777823,373974.826242961,22.6025999999983 +13122,10985,179747.580391496,373975.689441286,22.6135000000068 +13123,9531,179747.483005166,373976.552639604,22.6242999999959 +13124,10993,179747.29013513,373978.262172047,22.6457999999984 +13125,10987,179747.847417746,373973.322614159,22.5837999999931 +13126,10989,179748.024062499,373971.756896842,22.5641000000032 +13127,3872,179762.500500005,373952.500400003,22.25 +13128,21693,179773.700716034,373946.627394639,22.3512000000046 +13129,21694,179773.803328987,373946.610402424,25.008799999996 +13130,3824,179762.500800002,373912.500700008,22.4199999999983 +13131,3821,179767.500800002,373912.500200003,22.2299999999959 +13132,3819,179762.500800002,373907.500800002,22.4700000000012 +13133,3840,179767.500900004,373907.500500005,22.2400000000052 +13134,3818,179762.500599999,373902.500599999,22.5 +13135,10919,179755.675368369,373904.077454932,22.5292000000045 +13136,10920,179755.545218918,373905.188422702,22.5388999999996 +13137,10916,179755.415069476,373906.299390472,22.5485000000044 +13138,10917,179755.285155222,373907.408350561,22.5581999999995 +13139,10913,179755.155240979,373908.517310649,22.5678999999946 +13140,3822,179757.500600003,373912.500500001,22.5800000000017 +13141,10914,179755.048695486,373909.426792823,22.575800000006 +13142,9526,179754.94215,373910.336275,22.5837000000029 +13143,10924,179754.782028187,373911.703089669,22.5957000000053 +13144,10926,179754.652214095,373912.811194833,22.6052999999956 +13145,3846,179754.522399995,373913.919300001,22.6150000000052 +13146,10931,179754.161862444,373916.996698756,22.6417999999976 +13147,10929,179753.98100983,373918.540381599,22.6552999999985 +13148,10930,179753.912637655,373918.264470018,25.0099999999948 +13149,10928,179753.759237375,373919.573899917,25.0099999999948 +13150,10932,179754.067282055,373916.944420263,25.0099999999948 +13151,3832,179754.423,373913.908,25.0099999999948 +13152,10927,179754.495903745,373913.285691243,25.0099999999948 +13153,10925,179754.650692854,373911.964406207,25.0099999999948 +13154,10923,179754.808169957,373910.620176408,25.0099999999948 +13155,10912,179754.963339962,373909.29564007,25.0099999999948 +13156,10922,179754.990909003,373909.060309857,25.0099999999948 +13157,10915,179755.148895141,373907.711734887,25.0099999999948 +13158,10918,179755.370743252,373905.818032008,25.0099999999948 +13159,10921,179755.58172626,373904.017074045,25.0099999999948 +13160,3830,179756.201400001,373899.587200005,22.4900000000052 +13161,3844,179756.102000006,373899.576000005,25.0099999999948 +13162,10910,179756.245495781,373898.24039837,25.0099999999948 +13163,10908,179756.429173175,373896.530802254,25.0099999999948 +13164,10909,179756.44330794,373897.335574687,22.5013000000035 +13165,10905,179756.609619517,373895.787583482,22.5090999999957 +13166,10907,179756.584169321,373895.088159721,25.0099999999948 +13167,10906,179756.733970307,373894.630153943,22.5148999999947 +13168,10904,179756.722646385,373893.79927025,25.0099999999948 +13169,10891,179756.860573944,373892.515495434,25.0099999999948 +13170,10903,179756.917996243,373891.98103147,25.0099999999948 +13171,10894,179757.056209266,373890.694599628,25.0099999999948 +13172,10897,179757.218301725,373889.185907491,25.0099999999948 +13173,10899,179757.369944829,373887.774473745,25.0099999999948 +13174,10901,179757.526560567,373886.316756722,25.0099999999948 +13175,3831,179757.812000003,373883.66,25.0099999999948 +13176,3787,179754.172000002,373874.837000005,27.1399999999994 +13177,3750,179758.410000004,373878.280999999,25.0099999999948 +13178,3829,179757.911400001,373883.670899998,22.570000000007 +13179,3747,179758.509599999,373878.290400002,22.320000000007 +13180,10889,179758.50348324,373877.088719018,25.0099999999948 +13181,10890,179758.60530144,373877.06979537,22.3448999999964 +13182,10888,179758.701002881,373875.849190727,22.3699000000051 +13183,10887,179758.627272855,373875.509911925,25.0099999999948 +13184,10884,179758.767696895,373873.718950193,25.0099999999948 +13185,3806,179762.500599999,373882.500599999,22.2899999999936 +13186,3808,179762.500100005,373887.500500005,22.5500000000029 +13187,3805,179767.500500005,373882.500400003,22.2899999999936 +13188,3810,179767.500999998,373887.500900004,22.3099999999977 +13189,3811,179762.500400003,373892.500300005,22.5500000000029 +13190,3813,179767.500599999,373892.500799999,22.2899999999936 +13191,3814,179762.500700001,373897.500399999,22.5299999999988 +13192,10911,179756.322353974,373898.46138734,22.4956999999995 +13193,9525,179756.8583211,373893.472724412,22.5206999999937 +13194,10893,179756.970417514,373892.429355904,22.525999999998 +13195,10892,179757.082513925,373891.385987401,22.5311999999976 +13196,10896,179757.177250955,373890.504196171,22.5356999999931 +13197,10895,179757.271987986,373889.62240494,22.5400999999983 +13198,10898,179757.45680359,373887.902182385,22.5486999999994 +13199,10902,179757.570452698,373886.844361793,22.5540000000037 +13200,10900,179757.684101801,373885.78654119,22.5593999999983 +13201,3820,179772.500900004,373907.500900004,22.3500000000058 +13202,8795,179778.194553718,373906.240622479,22.3500000000058 +13203,21736,179778.46469795,373903.810290895,22.3500000000058 +13204,21735,179778.327507928,373905.949954625,25.0099999999948 +13205,21737,179778.542315975,373904.017450783,25.0099999999948 +13206,21739,179778.692148976,373901.764045447,22.3500000000058 +13207,21732,179778.256454907,373906.589177582,25.0099999999948 +13208,21734,179778.075379528,373908.218208186,25.0099999999948 +13209,21733,179777.975308556,373908.213044502,22.3500000000058 +13210,21731,179777.829706144,373910.42838968,25.0099999999948 +13211,21730,179777.737901475,373911.254303224,25.0099999999948 +13212,21728,179777.675161686,373911.818736818,25.0099999999948 +13213,21729,179777.599582646,373911.593233433,22.3500000000058 +13214,21727,179777.480588432,373912.663755618,22.3500000000058 +13215,21726,179777.566395637,373912.797242135,25.0099999999948 +13216,3842,179777.242600001,373914.804800004,22.3500000000058 +13217,3823,179772.500399999,373912.500500001,22.3899999999994 +13218,11209,179777.718576863,373910.52271124,22.3500000000058 +13219,21759,179780.261838231,373888.800580177,25.0099999999948 +13220,3838,179780.471500006,373886.956999999,25.0099999999948 +13221,24185,179781.417187247,373886.825967848,25.3717000000033 +13222,4087,179732.006000005,374114.978,25 +13223,23501,179730.826300777,374124.189994216,22.5697999999975 +13224,23499,179730.607501559,374126.391688429,22.5994999999966 +13225,9359,179793.772995666,373763.61164286,25.0200000000041 +13226,134,179773.339000005,373692.138,27.9799999999959 +13227,3454,179777.351,373687.254000008,25 +13228,21123,179777.395341665,373686.874973375,25 +13229,21115,179777.567749999,373685.401250005,25 +13230,21117,179777.58468705,373686.116934244,22.5507999999973 +13231,21116,179777.718074098,373684.976868484,22.5616000000009 +13232,21118,179777.674423102,373684.489422586,25 +13233,21119,179777.907161839,373683.360726114,22.5767999999953 +13234,3434,179782.5002,373682.500300005,22.2899999999936 +13235,21121,179778.11228092,373681.60756306,22.5933999999979 +13236,3445,179778.317400001,373679.854400005,22.6100000000006 +13237,3453,179778.218000002,373679.843000002,25 +13238,21122,179778.005603336,373681.658538304,25 +13239,21120,179777.838805344,373683.08430519,25 +13240,21113,179778.388945092,373678.320544146,25 +13241,21114,179778.454202056,373678.636034012,22.603099999993 +13242,9497,179778.5910041,373677.417668026,22.5960999999952 +13243,21111,179778.604079537,373676.404533044,25 +13244,21112,179778.679496396,373676.629551187,22.5917000000045 +13245,3432,179782.501000002,373677.500700004,22.3699999999953 +13246,21110,179778.767988686,373675.841434352,22.5871999999945 +13247,21107,179778.944973268,373674.265200678,22.5782000000036 +13248,3431,179782.5002,373672.500599999,22.3699999999953 +13249,3430,179787.500900004,373672.500399999,22.5599999999977 +13250,3416,179787.500599999,373667.500599999,22.4799999999959 +13251,3415,179782.500500008,373667.500400003,22.3300000000017 +13252,3394,179792.500300009,373667.5002,22.3300000000017 +13253,3466,179792.500400003,373672.500200003,22.3399999999965 +13254,3395,179797.500799999,373667.500800002,22.4100000000035 +13255,3498,179797.500600003,373672.500200003,22.4700000000012 +13256,12743,179804.107051436,373669.874371547,22.8255999999965 +13257,12744,179804.223432668,373668.910250504,22.8145999999979 +13258,8844,179804.339813899,373667.946129464,22.803700000004 +13259,12758,179804.460102934,373666.949635495,22.7924000000057 +13260,12757,179804.580391981,373665.953141522,22.7810999999929 +13261,3393,179802.500600003,373662.500700004,22.6999999999971 +13262,3396,179805.231700003,373660.557600006,22.7200000000012 +13263,12769,179805.387840908,373659.131926756,22.7428000000073 +13264,12767,179805.54398182,373657.706253517,22.7657000000036 +13265,12765,179805.690346207,373656.369846575,22.7871000000014 +13266,12766,179805.755933329,373656.688933134,25.0200000000041 +13267,12764,179805.894880157,373655.420209426,25.0200000000041 +13268,12768,179805.627646148,373657.860323612,25.0200000000041 +13269,24264,179806.0278925,373654.20567346,25.0200000000041 +13270,24269,179806.136980239,373653.209593199,25.0200000000041 +13271,24272,179806.199645199,373652.63739932,25.0200000000041 +13272,24270,179806.227783468,373652.380468767,25.0200000000041 +13273,24265,179806.318586696,373651.551344331,25.0200000000041 +13274,12770,179805.498145886,373659.042790648,25.0200000000041 +13275,3399,179805.331000004,373660.568999998,25.0200000000041 +13276,12763,179805.120480996,373662.313004583,25.0200000000041 +13277,8845,179805.008728478,373662.404732369,22.7409000000043 +13278,12762,179804.884508643,373663.433789659,22.7526000000071 +13279,12761,179804.969433293,373663.564330459,25.0200000000041 +13280,12760,179804.760288805,373664.462846953,22.7642999999953 +13281,12759,179804.80565308,373664.921136443,25.0200000000041 +13282,24257,179804.699966878,373665.7966736,25.0200000000041 +13283,12756,179804.594280679,373666.67221076,25.0200000000041 +13284,24256,179804.522332598,373667.268250924,25.0200000000041 +13285,24252,179804.45038452,373667.864291094,25.0200000000041 +13286,12742,179804.306488354,373669.056371428,25.0200000000041 +13287,24253,179804.202015538,373669.921856526,25.0200000000041 +13288,12745,179804.097542726,373670.78734161,25.0200000000041 +13289,12746,179803.902388409,373671.569833286,22.8448000000062 +13290,24250,179804.005795714,373671.547402255,25.0200000000041 +13291,12747,179803.914048705,373672.307462893,25.0200000000041 +13292,12749,179803.768746309,373672.676946159,22.8573000000033 +13293,24251,179803.79456592,373673.29729522,25.0200000000041 +13294,12748,179803.635104209,373673.784059037,22.8699000000051 +13295,12750,179803.675083134,373674.287127558,25.0200000000041 +13296,12752,179803.513191812,373674.794001181,22.8812999999936 +13297,24249,179803.567018054,373675.182372108,25.0200000000041 +13298,12751,179803.391279411,373675.803943325,22.8928000000014 +13299,3468,179797.500700004,373677.500700004,22.5299999999988 +13300,3467,179792.500800002,373677.500600003,22.3300000000017 +13301,3469,179792.500599999,373682.500700004,22.2799999999988 +13302,3470,179797.501000002,373682.5009,22.5 +13303,3490,179802.994600002,373679.090100005,22.929999999993 +13304,12754,179803.19293971,373677.447021667,22.9113999999972 +13305,12755,179803.289123818,373677.484533962,25.0200000000041 +13306,12753,179803.458952978,373676.077616662,25.0200000000041 +13307,3494,179805.658000004,373679.259,27.9199999999983 +13308,3492,179803.094000001,373679.101000004,25.0200000000041 +13309,12741,179802.36612872,373686.585206307,25.2685999999958 +13310,3489,179802.257400002,373686.578100003,22.8699999999953 +13311,3491,179802.315099999,373687.109900005,25.2859999999928 +13312,8843,179802.215192676,373687.104915354,22.8886000000057 +13313,21890,179802.134346336,373688.114007685,22.9242999999988 +13314,3471,179797.500100002,373687.500100005,22.5 +13315,3488,179802.053500008,373689.123100005,22.9600000000064 +13316,21886,179801.89150659,373690.48089996,22.9668999999994 +13317,3497,179797.500600003,373692.500500005,22.6499999999942 +13318,21882,179801.743435662,373691.722004134,22.9731999999931 +13319,3487,179801.582600005,373693.070100002,22.9799999999959 +13320,21881,179801.721959021,373692.679300573,25.5396000000037 +13321,21884,179801.819473296,373691.763673339,25.4986000000063 +13322,21885,179801.911641784,373690.898241207,25.4597999999969 +13323,21883,179802.521860592,373691.197299447,26.3678999999975 +13324,21887,179801.965734679,373690.390326552,25.4370000000054 +13325,6643,179802.575721178,373689.641598891,26.3417999999947 +13326,21888,179802.086281385,373689.258432321,25.3862999999983 +13327,21889,179802.136630636,373688.785669193,25.3650999999954 +13328,21891,179802.620860595,373688.337799445,26.3199000000022 +13329,133,179804.945999999,373690.414000005,27.9600000000064 +13330,3499,179805.024000004,373686.967,27.9900000000052 +13331,3479,179802.666000005,373687.034000002,26.2979999999952 +13332,21892,179802.203166693,373688.160917342,25.3371000000043 +13333,24245,179806.585999999,373687.015000004,27.8678000000073 +13334,24240,179806.160999998,373698.763,27.8583000000071 +13335,24239,179806.169369005,373699.54286715,27.7638000000006 +13336,24237,179804.905527931,373698.288657673,27.9133000000002 +13337,24238,179804.828263968,373700.53582884,27.9015999999974 +13338,6644,179801.962093398,373698.575019039,26.3595999999961 +13339,24230,179801.779570051,373700.675514285,26.3472000000038 +13340,21865,179800.98283387,373699.619444948,25.8506000000052 +13341,21868,179800.926575936,373700.147688642,25.8742999999959 +13342,24234,179800.863850847,373700.73665683,25.9006999999983 +13343,21866,179800.84343918,373700.141493421,22.9198000000033 +13344,24233,179800.710169591,373701.221621715,22.9124000000011 +13345,3476,179797.500600003,373702.500399999,22.75 +13346,21861,179800.576900002,373702.301749997,22.9049999999988 +13347,21863,179800.351550002,373704.128175002,22.8925000000017 +13348,3485,179800.126200002,373705.954600003,22.8800000000047 +13349,21860,179800.314395264,373705.895865776,26.131899999993 +13350,21864,179800.515799422,373704.004746299,26.0470999999961 +13351,21862,179800.675675571,373702.503561385,25.979800000001 +13352,24229,179801.597046699,373702.776009522,26.3347999999969 +13353,24232,179800.73840066,373701.914593197,25.9533999999985 +13354,24235,179800.780963745,373701.514939703,25.9355000000069 +13355,3481,179801.232000005,373706.977000006,26.3099999999977 +13356,24231,179800.80112575,373701.32562501,25.9271000000008 +13357,3493,179800.200000003,373706.970000003,26.179999999993 +13358,21859,179800.069811407,373708.060306232,26.1434000000008 +13359,3482,179801.063000001,373709.121000007,25.8429999999935 +13360,21856,179799.964038584,373708.94613478,26.1137000000017 +13361,3483,179799.913800005,373708.1851,22.8899999999994 +13362,3484,179800.100200005,373706.961100005,22.8500000000058 +13363,3477,179797.500600003,373707.500300001,22.7899999999936 +13364,21857,179799.777787548,373709.43732354,22.9321000000054 +13365,3518,179799.590599999,373711.160700001,22.9900000000052 +13366,21858,179799.897302993,373709.505033433,26.0950000000012 +13367,21855,179799.69484489,373711.20058386,26.0381000000052 +13368,21854,179799.519933905,373712.665432207,25.9890000000014 +13369,21852,179799.435177565,373713.375251405,25.965200000006 +13370,21853,179799.388920058,373712.849819604,22.9660000000003 +13371,8842,179799.187240109,373714.538939204,22.9419000000053 +13372,21851,179799.277580295,373714.695100419,25.9210000000021 +13373,21842,179799.061922848,373716.501192983,25.860400000005 +13374,21844,179798.907357465,373716.88302587,22.9085999999952 +13375,21848,179798.763443097,373718.088344399,22.8913999999932 +13376,3500,179792.500400003,373712.5002,22.320000000007 +13377,3530,179787.500700001,373712.500300001,22.25 +13378,3478,179792.500400003,373707.500800002,22.3300000000017 +13379,3443,179787.500100005,373707.500400003,22.2299999999959 +13380,3442,179787.5002,373702.500700004,22.2799999999988 +13381,3475,179792.500300009,373702.500100002,22.2700000000041 +13382,3474,179797.500200003,373697.500600003,22.7100000000064 +13383,3473,179792.500999998,373697.500399999,22.3099999999977 +13384,3440,179787.5002,373697.500600003,22.320000000007 +13385,3439,179787.500800002,373692.500700001,22.3899999999994 +13386,3464,179782.500400007,373697.500300005,22.1100000000006 +13387,3441,179782.500300001,373702.500300005,22.2899999999936 +13388,3444,179782.500799999,373707.500599999,22.4700000000012 +13389,21133,179776.729753412,373705.329850558,22.3340000000026 +13390,9498,179776.807157975,373706.31274201,22.3405000000057 +13391,21143,179776.918869026,373707.731261108,22.3499000000011 +13392,21141,179777.030580077,373709.149780206,22.3592999999964 +13393,9499,179777.158414491,373710.7730355,22.3701000000001 +13394,3531,179782.500799999,373712.500800002,22.5800000000017 +13395,3554,179777.275500003,373712.259799998,22.3800000000047 +13396,21150,179777.1211433,373713.573795009,22.3828999999969 +13397,21151,179777.023707446,373713.545936164,25 +13398,3569,179777.175000001,373712.258000005,25 +13399,3562,179775.651999999,373713.725000001,25.778999999995 +13400,3451,179775.738000002,373709.737000003,25.7970000000059 +13401,3582,179771.584000003,373712.715000004,27.8300000000017 +13402,3459,179772.162,373708.101,27.820000000007 +13403,9775,179775.690750003,373706.090499997,25.773000000001 +13404,3452,179775.675000008,373704.875000004,25.7649999999994 +13405,3458,179772.670000002,373700.923999999,27.8899999999994 +13406,3461,179775.908000004,373701.791999999,25.747000000003 +13407,3456,179776.131000001,373700.402999997,25 +13408,21124,179776.314500004,373698.574500002,25 +13409,3449,179776.231800001,373700.400000002,22.3800000000047 +13410,21125,179776.451341975,373698.212430649,22.4070000000065 +13411,21126,179776.400446866,373697.71807583,25 +13412,3457,179773.248,373696.081,27.9199999999983 +13413,21128,179776.54850354,373696.24275355,25 +13414,21130,179776.689333007,373694.839447439,25 +13415,3455,179776.865000002,373693.089000002,25 +13416,3462,179777.394000001,373687.999000002,25 +13417,3448,179776.964500003,373693.099200003,22.4700000000012 +13418,3447,179777.494300008,373688.0013,22.4900000000052 +13419,3446,179777.451300003,373687.257000003,22.5399999999936 +13420,3436,179782.500300001,373687.5002,22.2899999999936 +13421,3438,179782.500400007,373692.500300001,22.2400000000052 +13422,3437,179787.500500005,373687.500500005,22.4499999999971 +13423,3472,179792.500400003,373692.500100005,22.3000000000029 +13424,3496,179792.500200007,373687.500599999,22.2599999999948 +13425,3435,179787.500500005,373682.500399999,22.4600000000064 +13426,3433,179787.500400003,373677.500799999,22.5500000000029 +13427,21129,179776.7933558,373694.804522227,22.4489999999932 +13428,21127,179776.622211598,373696.50984446,22.4279999999999 +13429,3463,179776.346000001,373701.731000002,25 +13430,3450,179776.4454,373701.719099998,22.3099999999977 +13431,21135,179776.54887443,373703.033029556,22.3187000000034 +13432,21136,179776.441324454,373702.941471022,25 +13433,21134,179776.532995306,373704.105547071,25 +13434,21137,179776.580091923,373704.703600287,25 +13435,21131,179776.58798527,373704.803833388,25 +13436,21138,179776.639237717,373705.454659205,25 +13437,21132,179776.652348861,373704.34695911,22.3274999999994 +13438,21139,179776.707655553,373706.323458403,25 +13439,21144,179776.816330157,373707.703455441,25 +13440,21142,179776.913768332,373708.940767389,25 +13441,21145,179776.970606755,373709.662526276,25 +13442,21140,179776.980627749,373709.789777212,25 +13443,21146,179777.061482195,373710.816501897,25 +13444,3561,179775.380000003,373717.048000004,25.7820000000065 +13445,21147,179776.852800533,373715.000847057,25 +13446,21149,179776.897364814,373714.621476449,25 +13447,21148,179776.966786597,373714.887790009,22.3858000000037 +13448,21152,179776.585212227,373717.278795477,25 +13449,9500,179776.658073187,373717.515780028,22.3916000000027 +13450,3532,179782.500400007,373717.500600003,22.4499999999971 +13451,21155,179776.468156297,373719.13248888,22.395199999999 +13452,21153,179776.539359424,373717.669135116,25 +13453,21156,179776.387774948,373718.959556386,25 +13454,23451,179776.342808336,373719.342351925,25 +13455,21157,179776.291964367,373719.775180783,25 +13456,9501,179776.278239407,373720.749197736,22.3987999999954 +13457,3533,179782.500500008,373722.5009,22.5200000000041 +13458,21160,179776.116030686,373722.13003467,22.4018000000069 +13459,9502,179775.953821972,373723.510871612,22.4048999999941 +13460,3535,179777.500700004,373727.500500008,22.4100000000035 +13461,3536,179782.500500008,373727.500799995,22.5099999999948 +13462,3539,179782.5002,373732.500500005,22.429999999993 +13463,3542,179782.500799999,373737.500399999,22.4600000000064 +13464,3543,179777.500600003,373737.500500005,22.4900000000052 +13465,3544,179777.500600003,373742.500399999,22.3800000000047 +13466,3546,179782.501000002,373742.501000002,22.3300000000017 +13467,3547,179777.500700004,373747.500600003,22.3699999999953 +13468,9509,179773.074789155,373743.749933507,22.4732999999978 +13469,3556,179772.802000001,373745.285800003,22.4499999999971 +13470,3578,179772.649900004,373745.9564,22.4499999999971 +13471,3572,179772.704,373745.266000003,25 +13472,3573,179772.552000005,373745.936000004,25 +13473,21205,179772.244269583,373747.560809352,25 +13474,3558,179771.583000001,373746.136000004,25.7430000000022 +13475,9767,179771.254250005,373747.809250001,25.7361999999994 +13476,21203,179772.130230475,373748.162933156,25 +13477,21204,179772.312557466,373747.737578943,22.5197999999946 +13478,9768,179771.987508129,373749.453849431,22.5871000000043 +13479,21206,179771.906016096,373749.346779794,25 +13480,21213,179771.701564662,373750.426278524,25 +13481,9769,179771.066948306,373748.762565795,25.7323999999935 +13482,21210,179770.667474151,373750.795782901,25.7241999999969 +13483,21211,179771.651829373,373750.68887965,25 +13484,21209,179771.550358564,373751.224643156,25 +13485,21208,179771.629132818,373751.34608211,22.6612000000023 +13486,21212,179771.808320478,373750.399965767,22.6241000000009 +13487,3550,179777.500399999,373752.500700001,22.3699999999953 +13488,3548,179782.500799999,373747.500799999,22.3099999999977 +13489,9510,179771.325116262,373752.951298859,22.7241000000067 +13490,3616,179770.859000005,373754.875,25 +13491,21214,179771.23027866,373752.914657477,25 +13492,21207,179771.424477845,373751.88929037,25 +13493,3557,179770.267999999,373752.829,25.7160000000003 +13494,3583,179768.364000004,373748.056000002,27.4600000000064 +13495,3624,179767.554000005,373754.833999999,27.3800000000047 +13496,3615,179770.418000001,373754.805,25.5779999999941 +13497,3623,179770.550999999,373754.826000001,25.3999999999942 +13498,3576,179768.895000003,373740.059000004,27.6000000000058 +13499,135,179770.090500001,373728.861499999,27.6999999999971 +13500,3575,179771.286000002,373717.664000001,27.7899999999936 +13501,3560,179774.479000006,373724.064000003,25.6999999999971 +13502,9774,179775.068727452,373719.471849263,25.7537000000011 +13503,23452,179776.239832494,373718.142288495,25.8899999999994 +13504,3580,179776.287999999,373717.749000002,25.8899999999994 +13505,23450,179776.09532997,373719.322153978,25.8899999999994 +13506,3574,179775.985000003,373720.223000001,25.8899999999994 +13507,21158,179776.169861812,373720.814625796,25 +13508,21154,179776.226882283,373720.329217061,25 +13509,3553,179775.727000002,373722.259000003,25.8849999999948 +13510,21161,179776.02456909,373722.051486049,25 +13511,21159,179775.978408322,373722.444447316,25 +13512,9503,179775.581500009,373723.494500004,25.8849999999948 +13513,21162,179775.863447346,373723.423096918,25 +13514,21163,179775.820467912,373723.788975853,25 +13515,21165,179775.508749999,373724.11225,25.8849999999948 +13516,21166,179775.732470755,373724.538085572,25 +13517,21164,179775.818510991,373724.662735809,22.4075000000012 +13518,21167,179775.695721664,373724.850926321,25 +13519,3577,179775.683200002,373725.814600002,22.4100000000035 +13520,21169,179775.573738307,373726.625746336,22.4177999999956 +13521,3570,179775.583999999,373725.802000001,25 +13522,21170,179775.47405583,373726.616731491,25 +13523,3568,179775.168000005,373726.779000007,25.8809999999939 +13524,9773,179774.286717594,373725.651763685,25.7020000000048 +13525,3552,179775.436000004,373724.730000004,25.8849999999948 +13526,21172,179775.0075,373728.011500001,25.8830000000016 +13527,9772,179773.799832892,373729.672193136,25.7070999999996 +13528,3567,179774.847000003,373729.244000003,25.8849999999948 +13529,21177,179774.995088302,373730.166077733,25 +13530,21176,179775.094200075,373729.431618772,25 +13531,9505,179775.175400179,373729.577559724,22.4462000000058 +13532,21174,179775.32846212,373728.44332163,22.4352999999974 +13533,9504,179775.464276604,373727.436892658,22.4256000000023 +13534,21173,179775.273150768,373728.105520554,25 +13535,21175,179775.215830471,373728.5302875,25 +13536,21171,179775.366286155,373727.415349055,25 +13537,21168,179775.447844051,373726.810971569,25 +13538,3538,179777.500200003,373732.5002,22.4100000000035 +13539,21178,179775.028358351,373730.667186845,22.456600000005 +13540,9506,179774.881316528,373731.756813955,22.4670999999944 +13541,21182,179774.72791199,373732.893590845,22.4780000000028 +13542,9507,179774.574507449,373734.030367725,22.4890000000014 +13543,21189,179774.30889738,373735.99862361,22.5078999999969 +13544,21187,179774.244013071,373735.731853832,25 +13545,21190,179774.143207263,373736.478866298,25 +13546,21188,179772.95439503,373736.653359719,25.7160000000003 +13547,21192,179774.041103654,373737.235495996,25 +13548,21191,179774.150354434,373737.17347775,22.5191999999952 +13549,3555,179773.857799999,373739.341400005,22.5399999999936 +13550,3571,179773.759,373739.326000005,25 +13551,21193,179773.585351929,373740.303696278,25 +13552,3564,179773.348000005,373740.289000005,25.8859999999986 +13553,3559,179772.568,373739.844000001,25.7200000000012 +13554,12082,179773.12637702,373741.489294395,25.8972999999969 +13555,21195,179773.528298046,373740.624928556,25 +13556,21196,179773.379220132,373741.464286648,25 +13557,9508,179773.465771332,373741.548612766,22.5065999999933 +13558,21194,179773.661785666,373740.445006385,22.5233000000007 +13559,21198,179773.270280249,373742.649273135,22.4899000000005 +13560,21197,179773.312043156,373741.842515308,25 +13561,21200,179773.190443009,373742.527164489,25 +13562,21201,179773.135329083,373742.837474167,25 +13563,21202,179772.982135959,373743.700002298,25 +13564,9770,179772.248298675,373741.886193667,25.7274999999936 +13565,9771,179773.340790059,373733.462719444,25.7118999999948 +13566,3563,179772.896000002,373742.737000003,25.9089999999997 +13567,21199,179773.011188511,373742.113147195,25.9030999999959 +13568,3565,179774.239000004,373733.738000002,25.8889999999956 +13569,21186,179774.486842893,373733.932385068,25 +13570,21185,179774.577514634,373733.260470189,25 +13571,21183,179774.371922199,373732.74631983,25.8849999999948 +13572,21184,179774.640782095,373732.791632332,25 +13573,21181,179774.754887544,373731.946064036,25 +13574,12083,179774.504844405,373731.754639655,25.8809000000037 +13575,21180,179774.796915196,373731.634621862,25 +13576,3566,179774.568999998,373731.276000001,25.8790000000008 +13577,21179,179774.895364441,373730.905072518,25 +13578,3579,179787.500400003,373747.500399999,22.2100000000064 +13579,3545,179787.500800002,373742.500700004,22.25 +13580,3507,179792.500500005,373752.500700001,22.5 +13581,9376,179794.999881238,373750.110261362,22.5069999999978 +13582,8834,179795.074778184,373749.336891014,22.5124999999971 +13583,9374,179795.128419049,373749.819954805,25.0200000000041 +13584,9379,179795.185664646,373749.228823643,25.0200000000041 +13585,3515,179795.999000002,373749.764000002,25.3139999999985 +13586,9378,179795.106075518,373750.050679266,25.0200000000041 +13587,9377,179795.021168552,373750.927448042,25.0200000000041 +13588,9375,179794.924984295,373750.883631714,22.5013999999937 +13589,8833,179794.769312732,373752.491064046,22.4900000000052 +13590,9371,179794.660503298,373753.614607736,22.4818999999989 +13591,8831,179794.464540906,373755.638074793,22.4674999999988 +13592,9372,179794.750301253,373753.724485971,25.0200000000041 +13593,9370,179794.785175484,373753.36436671,25.0200000000041 +13594,9373,179794.867436204,373752.514923558,25.0200000000041 +13595,9369,179794.5595144,373755.694594815,25.0200000000041 +13596,9363,179794.464879349,373756.671818022,25.0200000000041 +13597,9368,179794.453508116,373756.789239958,25.0200000000041 +13598,21877,179801.356696732,373695.340855237,22.959600000002 +13599,21878,179801.287005555,373696.041383378,22.9533999999985 +13600,21871,179801.217314389,373696.741911516,22.9471000000049 +13601,21874,179801.122457195,373697.695405759,22.9385000000038 +13602,3486,179801.027600005,373698.648899999,22.929999999993 +13603,21867,179800.935519595,373699.395196706,22.9248999999982 +13604,21869,179801.050311424,373698.985852756,25.8221999999951 +13605,21870,179801.09749734,373698.542792317,25.8022999999957 +13606,21875,179801.18442373,373697.72658189,25.7657999999938 +13607,21873,179801.272457581,373696.899972726,25.7287000000069 +13608,21872,179802.215046696,373695.664009523,26.3767999999982 +13609,21876,179801.358278967,373696.094137844,25.6925999999949 +13610,21879,179801.43681265,373695.356732134,25.659599999999 +13611,21880,179801.661545973,373693.246559415,25.5650000000023 +13612,3480,179802.467999998,373692.753000002,26.3940000000002 +13613,3495,179805.083000001,373693.127,27.9400000000023 +13614,24243,179804.994263962,373695.707828838,27.9266000000061 +13615,24241,179806.158356491,373698.578493964,27.8812999999936 +13616,24242,179806.101386856,373694.602245618,27.8561000000045 +13617,24244,179806.063000008,373691.923,27.8646000000008 +13618,9496,179779.4118164,373670.107472092,22.5544999999984 +13619,21103,179779.269001506,373671.379388813,22.5617999999959 +13620,21105,179779.139316496,373672.53437005,22.5684000000037 +13621,21108,179779.042144891,373673.399785362,22.5733000000037 +13622,21106,179778.961546779,373673.220890418,25 +13623,21109,179778.79959197,373674.663277768,25 +13624,21104,179779.098490342,373672.0012559,25 +13625,21102,179779.225289844,373670.871965598,25 +13626,21096,179779.360268991,373669.669826392,25 +13627,21097,179779.575059336,373668.653622236,22.5463000000018 +13628,21098,179779.497101955,373668.45117696,25 +13629,21101,179779.666674934,373667.837689105,22.5415999999968 +13630,21100,179779.635318372,373667.220206302,25 +13631,3424,179779.895500001,373664.903000005,25 +13632,21099,179779.758290533,373667.021755964,22.5369999999966 +13633,3420,179779.994900007,373664.914500006,22.5249999999942 +13634,22176,179770.672711514,373757.332900185,25.0029000000068 +13635,8840,179797.94638506,373725.011229705,22.8178000000044 +13636,9411,179797.758331086,373726.625185452,22.8070000000007 +13637,9413,179797.573184237,373728.214191083,22.7964000000065 +13638,9412,179797.821866933,373726.943926059,25.4599000000017 +13639,9415,179797.91916674,373726.108874548,25.5046000000002 +13640,9410,179797.977149755,373725.611249615,25.5313000000024 +13641,3522,179798.099000003,373724.565499999,25.5872999999992 +13642,10442,179666.308635123,374708.116456542,25 +13643,10440,179666.656441957,374704.999513775,25 +13644,10429,179666.808120251,374703.640217431,25 +13645,10431,179666.926546875,374702.57891278,25 +13646,10438,179666.945264477,374702.411171116,25 +13647,10433,179667.073149454,374701.265103482,25 +13648,10437,179667.114936125,374700.890623573,25 +13649,10451,179664.843906436,374721.242925294,25 +13650,10449,179664.741739195,374722.158518068,25 +13651,10456,179664.572006341,374723.679614153,25 +13652,10459,179664.440188956,374724.860922862,25 +13653,10461,179664.309098292,374726.035718903,25 +13654,10463,179664.155512296,374727.412111562,25 +13655,10464,179663.984027792,374728.94890539,25 +13656,10466,179663.678534728,374731.68664458,25 +13657,4881,179663.300999999,374735.070000004,25 +13658,10475,179662.963608712,374738.131334763,25 +13659,10473,179662.77089468,374739.879933961,25 +13660,10530,179656.593291845,374796.84533985,22.6821999999956 +13661,4897,179655.742400005,374804.565900002,22.6900000000023 +13662,10538,179655.508396711,374806.711364836,22.6875 +13663,10540,179655.412194043,374807.593401324,22.6864999999962 +13664,10539,179655.360927746,374807.141186275,25 +13665,10537,179655.228533752,374808.355043862,25 +13666,10541,179654.87978613,374811.552544825,25 +13667,10545,179654.744766582,374812.790474869,25 +13668,10543,179654.642482005,374813.728273485,25 +13669,10674,179638.755675357,374959.127617948,22.5280000000057 +13670,6631,179599.52791401,375291.910891104,25.9038 +13671,6632,179599.673478503,375290.623222772,25.9024999999965 +13672,5608,179599.721999999,375290.194000002,25.9020000000019 +13673,5652,179599.917000003,375287.296000004,26.3999999999942 +13674,5626,179601.962000001,375289.588000003,25 +13675,11476,179602.10991966,375288.23826278,25 +13676,11474,179602.206901174,375287.353325933,25 +13677,11471,179602.326915678,375286.258217663,25 +13678,11473,179602.471439783,375284.939464174,25 +13679,11469,179602.62072606,375283.57725681,25 +13680,11461,179602.727546833,375282.60253866,25 +13681,9700,179602.737279203,375283.431716789,22.8919000000024 +13682,11463,179602.85414499,375282.365303941,22.8800999999949 +13683,11462,179602.971010759,375281.298891101,22.8684000000067 +13684,11466,179603.07461324,375280.353507292,22.8579000000027 +13685,11464,179602.92201212,375280.828081869,25 +13686,11468,179602.77685925,375282.152572777,25 +13687,11477,179601.847467005,375290.485861778,25 +13688,184,179601.742000006,375290.554000005,25.4109999999928 +13689,11479,179601.824416019,375290.666566063,25 +13690,12154,179600.299395036,375291.827352189,25.5620999999956 +13691,12153,179600.569197025,375293.558958475,25 +13692,5628,179601.530000009,375293.232999999,25 +13693,5627,179601.545000009,375292.857000001,25 +13694,5629,179601.438999999,375293.197000001,25 +13695,11483,179601.490092758,375292.792486332,25 +13696,11484,179601.511295039,375292.624622762,25 +13697,11485,179601.565823756,375292.192905694,25 +13698,11482,179601.570411477,375292.657791134,25 +13699,5631,179600.482000001,375292.024999999,25 +13700,6039,179582.5009,375547.500800006,22.4400000000023 +13701,6038,179587.500700004,375547.500400003,22.2899999999936 +13702,6082,179582.5009,375552.500800002,22.4400000000023 +13703,6085,179592.500300001,375547.500900008,22.0200000000041 +13704,7160,179597.764215712,375545.059375107,22.2885999999999 +13705,7163,179597.927891534,375543.514622252,22.3114999999962 +13706,7166,179598.079136074,375542.087194346,22.3325999999943 +13707,7165,179598.070335887,375543.119014721,25 +13708,7164,179598.142032322,375542.442361686,25 +13709,14917,179598.206049848,375541.838180196,25 +13710,7168,179598.271727167,375541.218333993,25 +13711,7170,179598.365629502,375540.332107108,25 +13712,14916,179599.077868745,375542.158868317,25.6714000000065 +13713,7167,179598.459531844,375539.445880231,25 +13714,14919,179598.530876592,375538.772546232,25 +13715,7172,179598.618281603,375537.947639499,25 +13716,6068,179598.792000003,375544.636,25.6720000000059 +13717,6067,179598.923999999,375546.000000004,25.5620000000054 +13718,6066,179599.168000001,375547.291999999,25.4429999999993 +13719,6051,179599.013999999,375548.952000003,24.9729999999981 +13720,6711,179598.923439726,375549.924814597,24.9793000000063 +13721,7141,179598.787599307,375551.384036481,24.9888999999966 +13722,7142,179598.705343939,375551.188524414,22.2431999999972 +13723,7140,179598.620723363,375552.097536284,22.2572999999975 +13724,6061,179597.500900004,375550.395399999,22.2100000000064 +13725,6062,179597.202,375550.365499999,22.2100000000064 +13726,6054,179597.311999999,375550.276000004,25 +13727,6713,179597.370377634,375549.72504646,25 +13728,6712,179597.449250001,375549.935500003,25.0035000000062 +13729,7146,179597.477187503,375549.672624998,25.0060999999987 +13730,7145,179597.594100647,375549.51877813,22.203800000003 +13731,6714,179597.505125001,375549.409750003,25.008799999996 +13732,7152,179597.53963422,375549.08503912,25.0120000000024 +13733,6084,179597.6505,375548.988299999,22.1999999999971 +13734,6052,179597.561000001,375548.884000003,25.0139999999956 +13735,7150,179597.448462255,375548.988103285,25 +13736,7153,179597.428941093,375549.172339085,25 +13737,7149,179597.343493078,375549.030105229,22.229800000001 +13738,7151,179597.409419946,375549.356574874,25 +13739,6715,179597.510306362,375548.404433943,25 +13740,7154,179597.478158355,375547.759150397,22.2486000000063 +13741,7156,179597.577323701,375547.77194098,25 +13742,6716,179598.287500001,375548.918000001,24.9934999999969 +13743,7155,179597.64434104,375547.139448009,25 +13744,7159,179597.716385823,375546.459507298,25 +13745,7157,179597.615581628,375546.462165955,22.2678000000014 +13746,7158,179597.788430609,375545.779566582,25 +13747,7162,179597.836663611,375545.324355505,25 +13748,7161,179597.884896614,375544.869144425,25 +13749,6717,179597.998639461,375543.795667756,25 +13750,7144,179598.201478217,375549.014087293,22.2044000000024 +13751,6060,179598.9047,375549.046999998,22.2100000000064 +13752,7143,179598.818593383,375549.971975248,22.2244000000064 +13753,7147,179597.525244296,375550.166423693,22.2084000000032 +13754,6053,179597.412000008,375550.286000002,25 +13755,7148,179597.430624999,375550.110750001,25.0017999999982 +13756,7119,179596.505225509,375557.622312874,25 +13757,7125,179596.538235724,375557.319176082,25 +13758,7126,179596.554740831,375557.167607684,25 +13759,6293,179553.110699996,375731.811700005,22.3975000000064 +13760,25202,179931.710999999,372271.533,28.6958000000013 +13761,25199,179932.664000008,372266.767000005,28.6600000000035 +13762,25203,179934.720250003,372270.770250004,28.3300000000017 +13763,1261,179935.170000002,372267.951000001,28.3399999999965 +13764,25195,179935.632991608,372263.105379753,28.3497999999963 +13765,1257,179936.2894,372267.7359,24.3999999999942 +13766,25196,179936.9014,372262.069850001,24.4199999999983 +13767,1245,179942.500900004,372267.500200003,24.3699999999953 +13768,1242,179942.500599999,372262.5002,24.3000000000029 +13769,25197,179937.207400005,372259.236825,24.429999999993 +13770,1240,179942.500100005,372257.500900004,24.2400000000052 +13771,1244,179947.500100002,372262.500800002,24.4100000000035 +13772,1239,179947.500700004,372257.500300001,24.4400000000023 +13773,1263,179952.500399999,372262.500500005,24.1600000000035 +13774,1248,179947.501000002,372267.500799999,24.3999999999942 +13775,1246,179952.500700004,372267.500399999,24.179999999993 +13776,1260,179952.500500001,372272.500399999,24.1900000000023 +13777,1249,179947.500600003,372272.500700004,24.3800000000047 +13778,1253,179947.500700004,372277.500500005,24.3500000000058 +13779,1250,179942.5002,372272.500799999,24.3399999999965 +13780,1254,179942.5002,372277.500899997,24.3800000000047 +13781,1251,179937.500400003,372277.500400003,24.3099999999977 +13782,1286,179937.500400003,372282.500900004,24.2799999999988 +13783,1282,179942.500400003,372282.5002,24.4400000000023 +13784,1321,179942.500700001,372287.500600006,24.4600000000064 +13785,1285,179947.500700004,372282.500700001,24.3099999999977 +13786,1288,179947.501000002,372287.500699997,24.2799999999988 +13787,1283,179952.500500001,372282.500599999,24.2200000000012 +13788,1255,179952.501000002,372277.500899997,24.2100000000064 +13789,1284,179957.500700001,372282.500599999,24.4100000000035 +13790,1252,179957.500800002,372277.500400003,24.3800000000047 +13791,1265,179957.500599999,372272.500300005,24.320000000007 +13792,22361,179960.784405757,372275.322613291,24.5271000000066 +13793,17967,179960.88971151,372274.379926588,24.5243000000046 +13794,20025,179960.972982619,372273.634491842,24.5219999999972 +13795,17965,179961.056253724,372272.889057096,24.5197000000044 +13796,17970,179961.180159245,372271.779867139,24.5163999999932 +13797,17968,179961.207436208,372271.535686415,24.5155999999988 +13798,20027,179961.357973088,372270.188095201,24.5114999999932 +13799,1247,179957.500700001,372267.500399999,24.3300000000017 +13800,1243,179957.500599999,372262.500700001,24.2299999999959 +13801,17974,179961.951623656,372264.873793896,24.4953999999998 +13802,24833,179962.033594329,372264.140000526,24.493100000007 +13803,17977,179962.115565002,372263.406207155,24.4909000000043 +13804,20022,179962.221903775,372262.454272944,24.4879999999976 +13805,17978,179962.328242552,372261.502338737,24.4851000000053 +13806,22329,179962.463909537,372260.287861247,24.4814000000042 +13807,1259,179957.500700001,372257.5002,24.1999999999971 +13808,1241,179952.500300005,372257.500900004,24.1900000000023 +13809,1235,179952.500500001,372252.500100002,24.2200000000012 +13810,1238,179957.500500005,372252.500700004,24.2599999999948 +13811,22314,179962.992073454,372255.559745703,24.4670000000042 +13812,17983,179963.101246901,372254.5823914,24.4640999999974 +13813,17981,179963.264691517,372253.119184945,24.459600000002 +13814,17986,179963.421215087,372251.717937801,24.4553000000014 +13815,17984,179963.464704238,372251.328609582,24.4541999999929 +13816,22300,179963.570932116,372250.377624981,24.4513000000006 +13817,22302,179963.605634715,372250.967987705,27.1999999999971 +13818,22303,179963.635252487,372250.702838931,27.1999999999971 +13819,22298,179963.664870262,372250.437690154,27.1999999999971 +13820,22299,179963.757481471,372249.608602006,27.1999999999971 +13821,22297,179963.842383057,372249.58657689,27.5299999999988 +13822,20017,179963.783341363,372249.377095055,27.1999999999971 +13823,22295,179964.080834091,372247.467083871,27.5299999999988 +13824,20015,179965.01754646,372252.602459662,27.6904000000068 +13825,20010,179966.04146333,372242.891287193,27.6855999999971 +13826,91,179967.496500004,372256.930000003,28.4799999999959 +13827,1280,179970.028999999,372237.564000003,28.6000000000058 +13828,24825,179966.230250001,372266.613000002,28.4250000000029 +13829,20019,179963.996008601,372262.291068684,27.6950999999972 +13830,24827,179963.729084972,372264.822662331,27.6964000000007 +13831,22340,179962.246522058,372263.771584146,27.5356000000029 +13832,24831,179962.181628067,372264.348403059,27.5359000000026 +13833,22341,179962.116734073,372264.925221968,27.5362000000023 +13834,24830,179962.075614005,372265.290723156,27.5363999999972 +13835,22342,179962.045176737,372264.937334891,27.1999999999971 +13836,24829,179962.000551295,372265.336817458,27.1999999999971 +13837,13294,179961.955925856,372265.736300029,27.1999999999971 +13838,17971,179961.795437515,372266.271956824,24.4995999999956 +13839,22344,179961.886781428,372266.35527404,27.1999999999971 +13840,24838,179961.651973732,372267.556230403,24.5035000000062 +13841,17973,179961.508509956,372268.840503991,24.5074000000022 +13842,24839,179961.733539343,372267.727082092,27.1999999999971 +13843,24837,179961.754828151,372267.536506739,27.1999999999971 +13844,24836,179961.815298285,372267.604574054,27.537599999996 +13845,22343,179961.952253796,372266.387226745,27.5369999999966 +13846,24826,179963.462161332,372267.354255978,27.6975999999995 +13847,24828,179962.034493934,372265.656224355,27.5366000000067 +13848,22345,179961.678342771,372268.821921367,27.5381999999954 +13849,22347,179961.511705268,372270.303101003,27.5390000000043 +13850,20026,179961.456349395,372270.20845915,27.1999999999971 +13851,22349,179961.43106493,372270.434803214,27.1999999999971 +13852,22348,179961.37308665,372270.953819007,27.1999999999971 +13853,22350,179961.416562654,372271.148788758,27.5393999999942 +13854,20023,179962.928314064,372272.417443275,27.7001000000018 +13855,22352,179961.337987565,372271.84721392,27.5396999999939 +13856,1278,179961.281400003,372272.350200005,27.5399999999936 +13857,22354,179961.21249748,372272.962621599,27.5399999999936 +13858,22356,179961.127933439,372273.714246415,27.5399999999936 +13859,1276,179962.517999999,372276.309000004,27.7020000000048 +13860,22358,179961.021848209,372274.657156505,27.5399999999936 +13861,22362,179960.930562705,372275.468523242,27.5399999999936 +13862,22365,179960.86472059,372276.053743206,27.5399999999936 +13863,22367,179960.79628507,372276.662013996,27.5399999999936 +13864,22369,179960.709497884,372277.433398627,27.5399999999936 +13865,22371,179960.617213074,372278.253647424,27.5399999999936 +13866,20028,179961.910460498,372281.505841263,27.7030999999988 +13867,1279,179964.964000005,372276.296000004,28.3699999999953 +13868,24840,179964.204256337,372282.873155724,28.3735000000015 +13869,24842,179961.62280215,372283.966446307,27.7035999999935 +13870,24841,179961.335143808,372286.427051343,27.7041000000027 +13871,20036,179960.759827115,372291.34826142,27.7051000000065 +13872,1312,179960.283,372295.427000001,27.7060000000056 +13873,22423,179959.937256731,372298.384458523,27.706600000005 +13874,22417,179958.584027357,372296.325266887,27.5399999999936 +13875,22421,179958.403328419,372297.931433409,27.5399999999936 +13876,22429,179958.334820639,372298.540373921,27.5399999999936 +13877,22424,179958.319096129,372298.680143319,27.5399999999936 +13878,22430,179958.261287574,372299.193982378,27.5399999999936 +13879,22433,179958.189518858,372299.831908166,27.5399999999936 +13880,20040,179959.591513466,372301.341917038,27.7072000000044 +13881,22441,179958.122587696,372300.426834743,27.5399999999936 +13882,22440,179958.095333017,372300.296941109,27.1999999999971 +13883,22436,179958.051017459,372300.693649594,27.1999999999971 +13884,22437,179957.932065051,372300.857380822,24.604800000001 +13885,17946,179958.039087005,372299.899330892,24.6018999999942 +13886,1295,179952.500399999,372302.500400003,24.2299999999959 +13887,17943,179957.825043105,372301.815430749,24.6076999999932 +13888,17945,179957.962386347,372301.487066556,27.1999999999971 +13889,22438,179958.031871203,372300.865044989,27.1999999999971 +13890,22442,179958.001197439,372301.505828176,27.5399999999936 +13891,22435,179958.078280963,372300.820661001,27.5399999999936 +13892,22439,179958.092596754,372300.693413164,27.5399999999936 +13893,22444,179957.945725791,372301.998895269,27.5399999999936 +13894,22446,179957.88342407,372302.552672405,27.5399999999936 +13895,22448,179957.803556759,372303.262583628,27.5399999999936 +13896,17939,179957.785124127,372303.073900484,27.1999999999971 +13897,22449,179957.754069198,372303.351901095,27.1999999999971 +13898,17942,179957.645309292,372303.424390085,24.6125999999931 +13899,20046,179957.663763583,372304.160308078,27.1999999999971 +13900,20045,179957.526712619,372304.486055758,24.6157999999996 +13901,20044,179957.408115949,372305.547721442,24.6190999999963 +13902,1301,179952.500600003,372307.500599999,24.3099999999977 +13903,22457,179957.28951928,372306.609387115,24.6223000000027 +13904,17941,179957.170922615,372307.671052799,24.6254999999946 +13905,20049,179957.059284557,372308.67042565,24.6285999999964 +13906,17938,179956.947646502,372309.669798497,24.6315999999933 +13907,1305,179952.500399999,372312.500600003,24.3999999999942 +13908,1302,179947.5009,372307.500800002,24.179999999993 +13909,1297,179947.500799999,372302.500700001,24.1999999999971 +13910,1300,179942.500300001,372307.500599999,24.3999999999942 +13911,1298,179942.500300001,372302.500900004,24.4100000000035 +13912,1299,179937.500700001,372307.500500005,24.3500000000058 +13913,1296,179937.500500005,372302.500599999,24.3300000000017 +13914,20333,179931.96035704,372306.65600739,24.4048000000039 +13915,1319,179932.681800008,372300.169900008,24.403999999995 +13916,1317,179930.306699999,372305.7247,28.2700000000041 +13917,1314,179930.878000002,372316.3869,24.4060000000027 +13918,1324,179928.8563,372319.0603,28.2700000000041 +13919,1322,179931.757000003,372292.388999999,28.2700000000041 +13920,25205,179932.621584531,372285.338939913,28.2860999999975 +13921,1326,179933.371000003,372279.228,28.3000000000029 +13922,25200,179934.270500001,372273.58950001,28.320000000007 +13923,20329,179935.325922955,372276.398006223,24.4011000000028 +13924,25201,179935.807661477,372272.066953111,24.4005000000034 +13925,20330,179934.886489931,372280.348713253,24.4015999999974 +13926,1318,179934.485600002,372283.952900004,24.4020000000019 +13927,1287,179937.500400003,372287.500699997,24.25 +13928,25206,179934.053571768,372287.837034523,24.4024999999965 +13929,1328,179937.500800002,372292.500200003,24.1300000000047 +13930,1290,179942.500500005,372292.500399999,24.3899999999994 +13931,1291,179947.500700004,372292.500399999,24.2400000000052 +13932,1323,179942.500500005,372297.500400007,24.429999999993 +13933,1294,179947.500700004,372297.500500001,24.2100000000064 +13934,1293,179952.500500001,372297.500300001,24.2100000000064 +13935,1292,179952.500500001,372292.500500001,24.2100000000064 +13936,1289,179952.500799999,372287.500699997,24.2100000000064 +13937,17951,179959.025297649,372291.070647161,24.5749999999971 +13938,17947,179958.861718863,372292.535054758,24.5795000000071 +13939,17950,179958.69660446,372294.013209708,24.5840000000026 +13940,22403,179958.864799745,372293.408619992,27.1999999999971 +13941,22402,179958.949092221,372292.654003944,27.1999999999971 +13942,13299,179958.986214522,372292.321672086,27.1999999999971 +13943,17948,179959.046156216,372291.785052806,27.1999999999971 +13944,1315,179959.066100001,372292.040300004,27.5399999999936 +13945,22400,179959.083140783,372291.888837636,27.5399999999936 +13946,22398,179959.134263109,372291.434450526,27.5399999999936 +13947,22399,179959.076127075,372291.516743165,27.1999999999971 +13948,13298,179959.106097925,372291.24843353,27.1999999999971 +13949,22397,179959.131662253,372291.019572608,27.1999999999971 +13950,22395,179959.157226585,372290.790711686,27.1999999999971 +13951,20038,179959.208355252,372290.332989845,27.1999999999971 +13952,20039,179959.210388411,372289.413657743,24.570000000007 +13953,20037,179959.310612578,372289.417546164,27.1999999999971 +13954,22393,179959.339713886,372289.157021001,27.1999999999971 +13955,22391,179959.368815187,372288.896495849,27.1999999999971 +13956,17954,179959.395479176,372287.756668333,24.5648999999976 +13957,20030,179959.573715094,372286.16104557,24.5601000000024 +13958,24850,179959.592865195,372286.890721142,27.1999999999971 +13959,24852,179959.631734174,372286.542752311,27.1999999999971 +13960,22387,179959.670603156,372286.19478349,27.1999999999971 +13961,20029,179959.719641894,372285.755771428,27.1999999999971 +13962,24855,179959.662833057,372285.363234192,24.5577000000048 +13963,24856,179959.750200015,372285.482204296,27.1999999999971 +13964,24854,179959.780758142,372285.208637159,27.1999999999971 +13965,24858,179959.81131627,372284.935070027,27.1999999999971 +13966,17952,179959.751951016,372284.565422818,24.5552000000025 +13967,17955,179959.864147607,372283.561004411,24.5522000000055 +13968,24847,179959.934813865,372282.928378396,24.5503000000026 +13969,20033,179960.005480111,372282.295752387,24.5482999999949 +13970,20034,179960.111718874,372281.344670314,24.5454000000027 +13971,17957,179960.217957634,372280.393588245,24.5426000000007 +13972,20032,179960.244927194,372281.053232014,27.1999999999971 +13973,22375,179960.322337795,372280.36022504,27.1999999999971 +13974,17956,179960.351328272,372280.10069203,27.1999999999971 +13975,17958,179960.377651688,372278.963958025,24.5381999999954 +13976,17961,179960.490024306,372277.957963739,24.5350999999937 +13977,17963,179960.602519467,372276.950872459,24.5320999999967 +13978,1271,179960.679100003,372276.265299998,24.5299999999988 +13979,22368,179960.749457575,372276.536498051,27.1999999999971 +13980,1270,179960.778499998,372276.276500002,27.1999999999971 +13981,22366,179960.804068197,372276.047616065,27.1999999999971 +13982,22363,179960.829636388,372275.818732124,27.1999999999971 +13983,22364,179960.855204578,372275.589848187,27.1999999999971 +13984,22359,179960.880772769,372275.360964257,27.1999999999971 +13985,22360,179960.947961949,372274.759493385,27.1999999999971 +13986,17964,179960.720415145,372276.796496097,27.1999999999971 +13987,17962,179960.662330292,372277.3164922,27.1999999999971 +13988,22370,179960.604245439,372277.836488295,27.1999999999971 +13989,22372,179960.575203016,372278.096486341,27.1999999999971 +13990,17959,179960.546160586,372278.356484391,27.1999999999971 +13991,17960,179960.448744431,372279.228588212,27.1999999999971 +13992,22373,179960.487622954,372279.405474421,27.5399999999936 +13993,22374,179960.393035512,372280.246189531,27.5399999999936 +13994,22376,179960.298093796,372281.090053551,27.5399999999936 +13995,22378,179960.236189913,372281.640269592,27.5399999999936 +13996,22380,179960.15241725,372282.384860434,27.5399999999936 +13997,20035,179960.1620511,372281.795168024,27.1999999999971 +13998,22381,179960.103816494,372282.316504799,27.1999999999971 +13999,20031,179960.079175018,372282.537104029,27.1999999999971 +14000,24845,179960.087448541,372282.962317418,27.5399999999936 +14001,24848,179960.040365819,372282.884537652,27.1999999999971 +14002,24846,179960.023607384,372283.034565106,27.1999999999971 +14003,22382,179960.022479825,372283.539774399,27.5399999999936 +14004,24843,179959.957445417,372284.117815267,27.5399999999936 +14005,13297,179959.924156547,372283.924884062,27.1999999999971 +14006,24844,179959.883015476,372284.293193474,27.1999999999971 +14007,22384,179959.89241102,372284.695856124,27.5399999999936 +14008,22385,179959.841874398,372284.66150289,27.1999999999971 +14009,24857,179959.844095614,372285.125294641,27.5399999999936 +14010,22383,179959.968039747,372283.532026183,27.1999999999971 +14011,22379,179960.186446544,372281.576771431,27.1999999999971 +14012,22377,179960.210841987,372281.358374834,27.1999999999971 +14013,24853,179959.795780212,372285.554733161,27.5399999999936 +14014,22386,179959.723890472,372286.193705793,27.5399999999936 +14015,24851,179959.674995288,372286.628297538,27.5399999999936 +14016,24849,179959.626100104,372287.062889285,27.5399999999936 +14017,22388,179959.539539147,372287.832263153,27.5399999999936 +14018,22392,179959.403501514,372289.041397121,27.5399999999936 +14019,22389,179959.48758373,372287.833237939,27.1999999999971 +14020,17953,179959.515127238,372287.586658802,27.1999999999971 +14021,22390,179959.362653956,372289.404459685,27.5399999999936 +14022,22394,179959.255154066,372290.359943718,27.5399999999936 +14023,22396,179959.191311069,372290.927395046,27.5399999999936 +14024,22401,179958.994969811,372292.672550172,27.5399999999936 +14025,22404,179958.894383363,372293.56662624,27.5399999999936 +14026,22405,179958.822653499,372293.785928015,27.1999999999971 +14027,22406,179958.817064606,372294.253884256,27.5399999999936 +14028,22410,179958.755956281,372294.797053739,27.5399999999936 +14029,22412,179958.701207384,372295.283696633,27.5399999999936 +14030,22415,179958.646208335,372295.772562984,27.5399999999936 +14031,22413,179958.626226816,372295.544409011,27.1999999999971 +14032,22416,179958.60051341,372295.774604503,27.1999999999971 +14033,1310,179958.574800003,372296.004800003,27.1999999999971 +14034,22418,179958.537280209,372296.340673503,27.1999999999971 +14035,22422,179958.36550447,372297.878392957,27.1999999999971 +14036,22419,179958.257243507,372297.946415447,24.5959000000003 +14037,22420,179958.350346532,372298.01408533,27.1999999999971 +14038,22426,179958.297672041,372298.485622153,27.1999999999971 +14039,22427,179958.148165256,372298.922873173,24.5988999999972 +14040,22431,179958.192323063,372299.428695805,27.1999999999971 +14041,22432,179958.218660306,372299.19292739,27.1999999999971 +14042,22425,179958.24499755,372298.957158983,27.1999999999971 +14043,22428,179958.271334797,372298.721390568,27.1999999999971 +14044,22434,179958.157954227,372299.736362152,27.1999999999971 +14045,17944,179958.139648572,372299.900232635,27.1999999999971 +14046,1320,179958.475400001,372295.993500002,24.5899999999965 +14047,22408,179958.586002227,372295.003354855,24.5869999999995 +14048,22414,179958.651940223,372295.314213518,27.1999999999971 +14049,22407,179958.677653629,372295.084018026,27.1999999999971 +14050,22411,179958.70336704,372294.853822526,27.1999999999971 +14051,22409,179958.729080446,372294.623627033,27.1999999999971 +14052,17949,179958.780507259,372294.163236041,27.1999999999971 +14053,93,179937.500300001,372297.5002,24.3099999999977 +14054,20331,179933.621543538,372291.72116904,24.4030000000057 +14055,20332,179932.916735888,372298.05771726,24.4036999999953 +14056,1368,179927.405999999,372332.396000002,28.2700000000041 +14057,20334,179930.147459589,372322.954797689,24.406799999997 +14058,20335,179929.342514899,372330.191624422,24.4076999999961 +14059,1369,179932.500200003,372327.500900004,24.2799999999988 +14060,1330,179937.500599999,372322.500500005,24.3999999999942 +14061,1307,179937.500800002,372317.500700004,24.3800000000047 +14062,1329,179942.500599999,372322.500400003,24.3300000000017 +14063,1308,179942.500800002,372317.500700004,24.3600000000006 +14064,1309,179947.500300005,372317.500799999,24.1999999999971 +14065,1327,179947.500100002,372312.500600003,24.179999999993 +14066,1304,179942.500400003,372312.500300005,24.3800000000047 +14067,1303,179937.500800002,372312.500300005,24.3300000000017 +14068,1306,179952.500100002,372317.500399999,24.4199999999983 +14069,1325,179956.271600001,372315.721700002,24.6499999999942 +14070,17926,179956.187450189,372316.452576749,24.647100000002 +14071,22487,179956.310464665,372316.258752026,27.1999999999971 +14072,22488,179956.353628162,372315.883875161,27.1999999999971 +14073,1311,179956.370999999,372315.732999999,27.1999999999971 +14074,22485,179956.40268597,372315.449350338,27.1999999999971 +14075,22486,179956.386829846,372315.855328403,27.5399999999936 +14076,22484,179956.446421683,372315.325641096,27.5399999999936 +14077,1313,179958.048,372314.545000002,27.7100000000064 +14078,22481,179956.494626813,372314.897165593,27.5399999999936 +14079,22479,179956.543234602,372314.465110995,27.5399999999936 +14080,22477,179956.586695079,372314.078808721,27.5399999999936 +14081,22475,179956.646727249,372313.545207482,27.5399999999936 +14082,22473,179956.710939161,372312.974454261,27.5399999999936 +14083,13302,179956.62448775,372313.463802721,27.1999999999971 +14084,22476,179956.611498471,372313.5800814,27.1999999999971 +14085,17929,179956.51903956,372313.506645489,24.6432999999961 +14086,17933,179956.561115813,372314.031102043,27.1999999999971 +14087,17932,179956.429605812,372314.307247583,24.6456999999937 +14088,17934,179956.657674614,372312.265598211,24.6395000000048 +14089,17936,179956.793008827,372311.054099686,24.6358000000037 +14090,13301,179956.825981818,372311.660047669,27.1999999999971 +14091,22470,179956.88806586,372311.104277462,27.1999999999971 +14092,17937,179956.910715032,372310.901524324,27.1999999999971 +14093,22467,179956.953081638,372310.522262648,27.1999999999971 +14094,13300,179956.995448243,372310.143000975,27.1999999999971 +14095,22465,179957.032162778,372309.814336091,27.1999999999971 +14096,22464,179957.068162173,372309.799236264,27.5399999999936 +14097,22463,179957.051154442,372309.644324612,27.1999999999971 +14098,22462,179957.119647,372309.34160658,27.5399999999936 +14099,20047,179958.525805134,372310.457895499,27.7090999999928 +14100,22460,179957.206765577,372308.567241516,27.5399999999936 +14101,22454,179957.314289249,372307.611502994,27.5399999999936 +14102,22458,179957.397646181,372306.870573819,27.5399999999936 +14103,22456,179957.285307351,372307.548210863,27.1999999999971 +14104,17940,179957.269947384,372307.685711797,27.1999999999971 +14105,20050,179957.179364134,372308.496604107,27.1999999999971 +14106,22461,179957.161429279,372308.657155178,27.1999999999971 +14107,20048,179957.088780884,372309.307496417,27.1999999999971 +14108,22459,179957.359298412,372306.885850243,27.1999999999971 +14109,22455,179957.389089763,372306.619160961,27.1999999999971 +14110,22452,179957.547744822,372305.536402121,27.5399999999936 +14111,22453,179957.50823215,372305.552610122,27.1999999999971 +14112,20043,179957.542403039,372305.246715661,27.1999999999971 +14113,22450,179957.686509416,372304.302974552,27.5399999999936 +14114,22471,179956.781815067,372312.344467513,27.5399999999936 +14115,1316,179956.850900002,372311.7304,27.5399999999936 +14116,17935,179956.775608305,372312.11098643,27.1999999999971 +14117,22472,179956.750421546,372312.336455811,27.1999999999971 +14118,17931,179956.725234788,372312.561925191,27.1999999999971 +14119,22474,179956.674861263,372313.01286396,27.1999999999971 +14120,22469,179956.922243245,372311.096256085,27.5399999999936 +14121,22468,179956.971032821,372310.662583452,27.5399999999936 +14122,22466,179957.017856516,372310.246384796,27.5399999999936 +14123,20051,179957.408261515,372320.086276971,27.7158000000054 +14124,22491,179956.228354868,372317.263947204,27.5399999999936 +14125,22495,179956.12936965,372318.143785961,27.5399999999936 +14126,22497,179956.045198783,372318.891946111,27.5399999999936 +14127,22501,179955.979864445,372319.472676169,27.5399999999936 +14128,22499,179955.953902505,372319.703441128,27.5399999999936 +14129,22502,179955.896299835,372320.215447526,27.5399999999936 +14130,22504,179955.826824322,372320.832986705,27.5399999999936 +14131,24811,179957.146242995,372322.355824973,27.7180999999982 +14132,22506,179955.750306558,372321.513121631,27.5399999999936 +14133,24814,179955.706170388,372321.905429855,27.5399999999936 +14134,22507,179955.702660553,372321.537557021,27.1999999999971 +14135,17918,179955.658475153,372321.921309154,27.1999999999971 +14136,22508,179955.662034214,372322.297738079,27.5399999999936 +14137,22509,179955.604688518,372322.388448369,27.1999999999971 +14138,17919,179955.492918026,372322.484882548,24.6230000000069 +14139,24813,179955.542516232,372322.928417403,27.1999999999971 +14140,17922,179955.368655279,372323.564157125,24.6187000000064 +14141,1373,179952.500700004,372322.500700001,24.4799999999959 +14142,24819,179955.273488376,372324.390721917,24.6154999999999 +14143,17921,179955.178321481,372325.217286706,24.6122000000032 +14144,24821,179955.341220308,372324.676681157,27.1999999999971 +14145,24816,179955.380227897,372324.337898597,27.1999999999971 +14146,24820,179955.399731688,372324.168507315,27.1999999999971 +14147,24818,179955.419235479,372323.99911603,27.1999999999971 +14148,24817,179955.447113439,372324.208080318,27.5399999999936 +14149,22510,179955.509933382,372323.649699695,27.5399999999936 +14150,22511,179955.458243068,372323.66033347,27.1999999999971 +14151,20056,179955.480343938,372323.468386441,27.1999999999971 +14152,24812,179955.585983798,372322.973718889,27.5399999999936 +14153,24810,179956.884224467,372324.625372984,27.7204999999958 +14154,24815,179955.384293489,372324.766460937,27.5399999999936 +14155,22512,179955.315306492,372325.379657924,27.5399999999936 +14156,24822,179955.250249211,372325.957925312,27.5399999999936 +14157,22517,179955.185191926,372326.536192704,27.5399999999936 +14158,20057,179956.360187422,372329.164468989,27.7252000000008 +14159,20062,179955.961796854,372332.615242254,27.7287999999971 +14160,22529,179954.756631661,372330.345488362,27.5399999999936 +14161,22531,179954.77610581,372330.172390636,27.5399999999936 +14162,22532,179954.705841206,372330.194976192,27.1999999999971 +14163,20059,179954.684265483,372330.382362247,27.1999999999971 +14164,22533,179954.665932916,372331.151672095,27.5399999999936 +14165,13304,179954.597037211,372331.139943555,27.1999999999971 +14166,1366,179954.635700002,372331.420400001,27.5399999999936 +14167,22536,179954.543314118,372332.241584226,27.5399999999936 +14168,22534,179954.524159774,372332.41184013,27.5399999999936 +14169,22537,179954.454720564,372333.029059809,27.5399999999936 +14170,13305,179954.402332094,372332.830965962,27.1999999999971 +14171,22538,179954.375416044,372333.06473298,27.1999999999971 +14172,1362,179954.249200005,372333.287100002,24.5800000000017 +14173,1359,179954.348499998,372333.298500005,27.1999999999971 +14174,22540,179954.316447187,372333.576880068,27.1999999999971 +14175,17910,179954.198180031,372333.730208166,24.5782000000036 +14176,1338,179947.5009,372332.500700004,24.2299999999959 +14177,17912,179954.44830735,372331.557768401,24.5868999999948 +14178,1334,179952.500700004,372327.500500005,24.4700000000012 +14179,1333,179947.500399999,372327.500400003,24.2100000000064 +14180,1337,179942.500999998,372332.500700004,24.2799999999988 +14181,1332,179942.500900004,372327.500300001,24.3099999999977 +14182,1335,179937.500700001,372327.500700001,24.4199999999983 +14183,1336,179937.500500005,372332.500300005,24.3999999999942 +14184,1370,179932.500799999,372332.500399999,24.2400000000052 +14185,1341,179937.5002,372337.5009,24.429999999993 +14186,1339,179942.5002,372337.500200003,24.25 +14187,1342,179942.500400003,372342.500400003,24.2299999999959 +14188,94,179937.500400003,372342.500300001,24.4400000000023 +14189,1346,179937.500100005,372347.500700001,24.429999999993 +14190,1343,179932.500600003,372342.500700001,24.3000000000029 +14191,1348,179932.500300005,372347.500800002,24.3500000000058 +14192,1372,179932.5009,372352.500800002,24.3300000000017 +14193,1350,179937.500300001,372352.500500001,24.429999999993 +14194,1351,179937.500400003,372357.500399999,24.4199999999983 +14195,1377,179942.500300001,372352.500900004,24.2299999999959 +14196,1354,179942.500900004,372357.500799999,24.2400000000052 +14197,1349,179947.500500001,372352.500200003,24.3500000000058 +14198,1352,179947.501000002,372357.500399999,24.3999999999942 +14199,22590,179951.738600198,372355.055744238,24.5089000000007 +14200,17886,179951.879666205,372353.840962186,24.5092000000004 +14201,22586,179951.982194923,372352.958041906,24.5093999999954 +14202,17890,179952.084723629,372352.075121623,24.5096999999951 +14203,17887,179952.139941555,372351.599615548,24.5097999999998 +14204,1361,179952.226700004,372350.852500003,24.5099999999948 +14205,1345,179947.500300005,372347.500300001,24.3000000000029 +14206,1347,179942.500800002,372347.500700001,24.2299999999959 +14207,1344,179947.5009,372342.500700001,24.2599999999948 +14208,1371,179947.500399999,372337.500700004,24.2100000000064 +14209,17902,179953.410697263,372340.569491126,24.5510000000068 +14210,17905,179953.607481644,372338.860419974,24.557799999995 +14211,20066,179953.713787068,372337.937158026,24.5614999999962 +14212,17906,179953.820092488,372337.013896085,24.5651000000071 +14213,22545,179953.932606295,372336.036714368,24.5690000000031 +14214,17908,179954.045120105,372335.059532657,24.5728999999992 +14215,22546,179954.069160905,372335.724572163,27.1999999999971 +14216,17907,179954.125028718,372335.239357732,27.1999999999971 +14217,22547,179954.148365229,372335.036679152,27.1999999999971 +14218,22542,179954.180896543,372334.754143301,27.1999999999971 +14219,17909,179954.23676436,372334.268928867,27.1999999999971 +14220,17911,179954.292632181,372333.783714436,27.1999999999971 +14221,22541,179954.302647091,372334.380785085,27.5399999999936 +14222,22539,179954.386334918,372333.636914749,27.5399999999936 +14223,1374,179955.829,372333.765500002,27.7299999999959 +14224,22543,179954.213622149,372335.172095127,27.5399999999936 +14225,22548,179954.089913063,372336.271699809,27.5399999999936 +14226,20063,179955.130484734,372339.815888811,27.7363000000041 +14227,22551,179953.940241061,372337.602079321,27.5399999999936 +14228,22553,179953.836180929,372338.527031641,27.5399999999936 +14229,22555,179953.748967618,372339.302238792,27.5399999999936 +14230,22556,179953.647289179,372340.206021134,27.5399999999936 +14231,22558,179953.557142187,372341.007304635,27.5399999999936 +14232,24796,179954.884483084,372341.946702056,27.7385000000068 +14233,24797,179953.492573667,372341.581230573,27.5399999999936 +14234,22561,179953.42800514,372342.155156523,27.5399999999936 +14235,24807,179953.372404519,372342.649370003,27.5399999999936 +14236,20064,179953.292741239,372342.46781056,27.1999999999971 +14237,24806,179953.316803902,372343.143583484,27.5399999999936 +14238,22562,179953.185508646,372343.399130266,27.1999999999971 +14239,22564,179953.223572258,372343.97228536,27.5399999999936 +14240,24795,179954.638481442,372344.077515312,27.7406999999948 +14241,24801,179953.133232612,372344.775281344,27.5399999999936 +14242,24798,179954.3924798,372346.208328567,27.7428999999975 +14243,24802,179953.069403298,372345.342636675,27.5399999999936 +14244,22566,179953.005573984,372345.909992006,27.5399999999936 +14245,24799,179952.939998791,372346.492865857,27.5399999999936 +14246,22570,179952.874423601,372347.075739704,27.5399999999936 +14247,20068,179954.14647815,372348.339141823,27.7452000000048 +14248,22572,179952.773105145,372347.976322267,27.5399999999936 +14249,22574,179952.691471841,372348.701930724,27.5399999999936 +14250,22580,179952.563827414,372349.836515222,27.5399999999936 +14251,17896,179952.55423985,372348.88172707,27.1999999999971 +14252,22579,179952.460630234,372349.694730632,27.1999999999971 +14253,22581,179952.439476471,372349.878451996,27.1999999999971 +14254,22578,179952.343497165,372349.838117391,24.5139999999956 +14255,22577,179952.418322705,372350.062173348,27.1999999999971 +14256,1360,179952.326000001,372350.864,27.1999999999971 +14257,13307,179952.289656147,372351.176978104,27.1999999999971 +14258,1367,179952.420500003,372351.1105,27.5399999999936 +14259,22576,179952.533124253,372350.109424341,27.5399999999936 +14260,20072,179953.713334247,372352.090941049,27.7491000000009 +14261,22582,179952.328497857,372351.903898034,27.5391999999993 +14262,22584,179952.22797193,372352.770802502,27.5381999999954 +14263,1376,179953.610000007,372352.986000005,27.75 +14264,24778,179955.145750005,372361.292000007,28.4149999999936 +14265,20073,179952.833302338,372359.653633755,27.7366000000038 +14266,24783,179952.602905456,372361.631497301,27.732600000003 +14267,22603,179951.344360977,372360.390789691,27.5301999999938 +14268,24784,179951.274609439,372360.992305454,27.5295000000042 +14269,22605,179951.204857882,372361.593821213,27.5289000000048 +14270,24788,179951.098697182,372362.509318206,27.527900000001 +14271,20074,179950.995440148,372362.322224766,27.1999999999971 +14272,24791,179950.95929309,372362.633508097,27.1999999999971 +14273,24789,179951.045616835,372362.967066705,27.5274000000063 +14274,22609,179950.923146036,372362.944791429,27.1999999999971 +14275,24790,179950.905072503,372363.100433089,27.1999999999971 +14276,22611,179950.886998978,372363.256074753,27.1999999999971 +14277,22607,179950.992536481,372363.4248152,27.5268999999971 +14278,24780,179952.372508585,372363.60936084,27.7287000000069 +14279,24786,179950.892215282,372364.289954185,27.525999999998 +14280,24781,179952.142111715,372365.587224379,27.7247000000061 +14281,22612,179950.791894078,372365.155093167,27.5250999999989 +14282,24782,179950.714030962,372365.826560594,27.5243999999948 +14283,22614,179950.636167839,372366.498028025,27.5237000000052 +14284,20081,179951.911714837,372367.565087918,27.7207000000053 +14285,22616,179950.535932399,372367.362427454,27.5228000000061 +14286,22618,179950.437652636,372368.209961683,27.521900000007 +14287,22622,179950.310367268,372369.307631284,27.5206999999937 +14288,1414,179951.493999999,372371.151000001,27.713499999998 +14289,1418,179950.234800003,372369.959300004,27.5200000000041 +14290,22624,179950.136356894,372370.808199525,27.519100000005 +14291,22626,179950.0474292,372371.575045265,27.5182999999961 +14292,22628,179949.931850918,372372.571705706,27.517200000002 +14293,22632,179949.763659455,372374.022062764,27.5157000000036 +14294,20085,179950.859010331,372376.602128252,27.7024999999994 +14295,1427,179954.054800004,372370.736000005,28.4199999999983 +14296,1426,179951.873,372389.624000002,28.429999999993 +14297,24779,179954.600275002,372366.014000006,28.4174999999959 +14298,20093,179949.791748095,372385.764140755,27.6840999999986 +14299,1415,179949.377999999,372389.316000003,27.676999999996 +14300,20095,179948.782125574,372393.747808799,27.6785999999993 +14301,24759,179950.861118898,372397.663762871,28.4214999999967 +14302,24765,179948.462726805,372396.123333238,27.6794999999984 +14303,22677,179947.236519426,372395.172207985,27.5044999999955 +14304,24766,179947.088367421,372396.33269136,27.5053000000044 +14305,17845,179947.084352802,372395.317956313,27.1999999999971 +14306,24767,179946.956417646,372396.319267653,27.1999999999971 +14307,24769,179946.908387389,372396.695186511,27.1999999999971 +14308,24770,179947.00779824,372396.963794474,27.5056999999942 +14309,24771,179946.858622395,372397.084682688,27.1999999999971 +14310,24768,179946.846899547,372396.387420155,24.4633000000031 +14311,17842,179946.71129258,372397.448813885,24.4584000000032 +14312,1405,179942.5002,372397.500799999,24.3500000000058 +14313,22682,179946.593796063,372398.368457332,24.4541000000027 +14314,17841,179946.476299558,372399.288100787,24.4498000000021 +14315,22680,179946.646182902,372398.747384932,27.1999999999971 +14316,24775,179946.697140865,372398.348551735,27.1999999999971 +14317,22681,179946.748098828,372397.949718542,27.1999999999971 +14318,24774,179946.844481446,372398.243064523,27.5065999999933 +14319,22679,179946.927229062,372397.594897598,27.5062000000034 +14320,13313,179946.8088574,372397.474178869,27.1999999999971 +14321,24761,179948.143328037,372398.498857666,27.6803999999975 +14322,24772,179946.76173383,372398.891231444,27.5071000000025 +14323,24773,179946.671137273,372399.60087958,27.5075999999972 +14324,24762,179947.780889828,372401.194487464,27.6814000000013 +14325,22683,179946.580540717,372400.310527716,27.5081000000064 +14326,24763,179946.478907157,372401.106629338,27.508600000001 +14327,22686,179946.377273604,372401.902730964,27.5092000000004 +14328,22688,179946.265768398,372402.776157741,27.5097999999998 +14329,13314,179946.158159412,372402.567003116,27.1999999999971 +14330,22689,179946.128000546,372402.803047776,27.1999999999971 +14331,1420,179946.228600003,372403.067299999,27.5099999999948 +14332,17836,179946.097841691,372403.03909244,27.1999999999971 +14333,13315,179945.988684714,372403.893432349,27.1999999999971 +14334,22690,179946.109860867,372403.997333039,27.5106999999989 +14335,20099,179947.418451615,372403.890117262,27.6824000000051 +14336,22692,179945.990696345,372404.930697855,27.5112999999983 +14337,22698,179947.116475806,372406.136058629,27.6831999999995 +14338,22699,179945.858228933,372405.968258608,27.5120000000024 +14339,22694,179945.816559598,372406.294636745,27.5123000000021 +14340,22701,179945.699439958,372407.211984899,27.5129000000015 +14341,1466,179946.814500004,372408.382000003,27.6839999999938 +14342,1475,179949.484499998,372408.601500005,28.4100000000035 +14343,24760,179950.172809448,372403.132631432,28.4158000000025 +14344,24758,179953.903999999,372398.311999999,28.3555999999953 +14345,24757,179951.470709529,372415.415187459,28.466499999995 +14346,1851,179913.833000004,372725.072000001,28.5200000000041 +14347,24576,179916.641000003,372711.009000003,28.4943999999959 +14348,24551,179913.221000005,372742.390000004,28.4799000000057 +14349,24577,179914.915331341,372713.633671939,28.4726999999984 +14350,24578,179915.29016567,372709.672335971,28.4563999999955 +14351,1850,179915.664999999,372705.711000007,28.4400000000023 +14352,13652,179912.883301258,372708.301179428,27.7943999999989 +14353,13134,179912.59210252,372711.026858851,27.7958000000071 +14354,13651,179911.482119188,372709.517618969,27.5565000000061 +14355,13133,179911.376665637,372710.485261753,27.5565000000061 +14356,17155,179911.318562772,372711.018414147,27.5564000000013 +14357,17153,179911.216139972,372710.767224256,27.1999999999971 +14358,17154,179911.164808925,372711.236754153,27.1999999999971 +14359,17152,179911.04806757,372711.384347674,24.6416999999929 +14360,13657,179911.131896831,372711.537804175,27.1999999999971 +14361,17151,179911.016301975,372712.595161114,27.1999999999971 +14362,17150,179910.900549114,372712.733705845,24.6386000000057 +14363,1816,179907.500600003,372712.500800002,24.320000000007 +14364,24582,179910.828550346,372713.39228189,24.6371000000072 +14365,17148,179910.756551586,372714.050857943,24.6355999999942 +14366,17146,179910.598243743,372715.498907074,24.6321999999927 +14367,1819,179907.500200003,372717.500599999,24.3999999999942 +14368,17144,179910.460250687,372716.761135973,24.6293000000005 +14369,17145,179910.600250918,372716.400818974,27.1999999999971 +14370,13664,179910.675890233,372715.708939079,27.1999999999971 +14371,17147,179910.717984285,372715.323900875,27.1999999999971 +14372,9444,179910.852531273,372715.294723507,27.5561000000016 +14373,13663,179910.925462004,372714.625510462,27.5562000000064 +14374,13662,179910.837133605,372714.234030887,27.1999999999971 +14375,17149,179910.86963284,372713.936757427,27.1999999999971 +14376,13661,179910.998392727,372713.956297409,27.5562000000064 +14377,24581,179910.92717763,372713.410389818,27.1999999999971 +14378,24580,179911.071323458,372713.287084363,27.5562999999966 +14379,24583,179910.955950025,372713.147206008,27.1999999999971 +14380,13660,179910.984722424,372712.884022206,27.1999999999971 +14381,13658,179911.144254189,372712.617871311,27.5562999999966 +14382,13659,179911.260459907,372711.551566534,27.5564000000013 +14383,24579,179912.382930271,372712.984753642,27.7967999999964 +14384,13132,179912.173758019,372714.942648441,27.7978000000003 +14385,13667,179911.745727912,372718.949097257,27.7998999999982 +14386,13666,179910.740189709,372716.325570717,27.5561000000016 +14387,13669,179910.600885879,372717.603823952,27.5559999999969 +14388,13671,179910.531233959,372718.242950574,27.5559000000067 +14389,13665,179910.461582039,372718.882077191,27.5559000000067 +14390,13673,179910.365672968,372719.762139756,27.5558000000019 +14391,13675,179910.218152896,372721.115785316,27.5558000000019 +14392,13135,179911.317697808,372722.955546081,27.801999999996 +14393,1838,179911.109000005,372724.909000006,27.8029999999999 +14394,13679,179909.895254705,372724.078702103,27.555600000007 +14395,1836,179909.809999999,372724.861000001,27.5555000000022 +14396,9446,179909.706008215,372725.792490672,27.555600000007 +14397,17124,179910.818568438,372727.43977005,27.7948999999935 +14398,17125,179909.612740636,372726.627920795,27.555600000007 +14399,17122,179909.54402519,372726.030442432,27.1999999999971 +14400,17127,179909.459457599,372726.778394647,27.1999999999971 +14401,17121,179909.456280466,372725.91625816,24.6059999999998 +14402,17128,179909.297140542,372727.323760249,24.5993000000017 +14403,1826,179902.500200003,372727.5009,24.3699999999953 +14404,1841,179909.549600005,372725.0909,24.6100000000006 +14405,13681,179909.575613745,372725.751059704,27.1999999999971 +14406,1840,179909.649,372725.102000002,27.1999999999971 +14407,13680,179909.664414961,372724.960997909,27.1999999999971 +14408,13678,179909.71065985,372724.537991621,27.1999999999971 +14409,17130,179909.732275125,372723.419962201,24.6138999999966 +14410,1822,179902.500200003,372722.5009,24.3300000000017 +14411,17133,179909.912183002,372721.774336502,24.6177000000025 +14412,1817,179902.500300005,372717.500400003,24.3300000000017 +14413,1849,179902.500399999,372712.500500005,24.2299999999959 +14414,1815,179897.500999998,372712.500800002,24.4400000000023 +14415,1820,179897.500900004,372717.500800002,24.3999999999942 +14416,1818,179892.500599999,372717.500500005,24.5099999999948 +14417,1814,179892.500700001,372712.500700001,24.5 +14418,1811,179897.5002,372707.500300005,24.4700000000012 +14419,1813,179892.500100005,372707.500700004,24.429999999993 +14420,20373,179887.245168675,372709.156505607,24.4216000000015 +14421,1843,179887.993999999,372702.382599998,24.417100000006 +14422,1846,179892.500100005,372702.500399999,24.3800000000047 +14423,20372,179888.487879358,372697.91498227,24.4141999999993 +14424,1805,179887.839000002,372691.493000001,28.429999999993 +14425,1848,179885.840800002,372708.978700005,28.4100000000035 +14426,1803,179889.962299999,372671.841400005,28.3999999999942 +14427,1800,179889.908300005,372685.065900002,24.405700000003 +14428,20371,179889.239522092,372691.11564479,24.4097000000038 +14429,1781,179892.500999998,372687.500300001,24.4600000000064 +14430,1779,179897.500500005,372682.500500001,24.5299999999988 +14431,104,179897.500900004,372677.500800002,24.5099999999948 +14432,20370,179891.201908328,372673.363279231,24.398000000001 +14433,1775,179897.500800002,372672.500800002,24.4799999999959 +14434,1798,179891.822500002,372667.7491,24.3942999999999 +14435,1770,179897.500400003,372667.500300001,24.4799999999959 +14436,1773,179902.500300005,372667.500899997,24.4700000000012 +14437,1774,179902.500500001,372672.500500005,24.4199999999983 +14438,1801,179907.500300005,372672.5002,24.320000000007 +14439,1772,179907.500600003,372667.500599999,24.3000000000029 +14440,1771,179912.500300001,372667.500400003,24.429999999993 +14441,1806,179907.500200003,372662.500600003,24.2599999999948 +14442,1768,179912.500799999,372662.500300005,24.3999999999942 +14443,17260,179916.140826218,372665.176805384,24.6405999999988 +14444,17266,179916.275276046,372663.968584727,24.6371999999974 +14445,17271,179916.408088226,372662.775080595,24.6339000000007 +14446,17270,179916.473546665,372663.091093253,27.1999999999971 +14447,13594,179916.552737471,372662.379452564,27.1999999999971 +14448,13591,179916.722199295,372662.032175072,27.5598999999929 +14449,17269,179916.595299646,372661.996971544,27.1999999999971 +14450,13593,179916.712263387,372660.945887938,27.1999999999971 +14451,17272,179916.62274415,372660.846095443,24.6284000000014 +14452,17268,179916.459028807,372662.317307871,24.6325999999972 +14453,1755,179912.500799999,372657.500700004,24.4199999999983 +14454,17274,179916.79747612,372659.27588309,24.6239999999962 +14455,17273,179916.76478485,372660.473908827,27.1999999999971 +14456,13590,179916.887700588,372659.369338106,27.1999999999971 +14457,17275,179916.925325971,372659.031221207,27.1999999999971 +14458,9437,179917.054838873,372659.052680116,27.5601000000024 +14459,13588,179917.057985347,372657.839090239,27.1999999999971 +14460,17276,179916.972754285,372657.700762413,24.6195000000007 +14461,17277,179917.083449356,372657.610260341,27.1999999999971 +14462,13589,179917.201370761,372657.74017534,27.5602000000072 +14463,24587,179917.32588293,372656.624904014,27.5602999999974 +14464,13118,179918.386372652,372658.415503267,27.7728999999963 +14465,24586,179918.66047699,372655.9913265,27.772100000002 +14466,24585,179920.846500006,372657.358750004,28.4499999999971 +14467,13120,179918.934581332,372653.567149736,27.7712000000029 +14468,17280,179917.574907266,372654.394361377,27.5605000000069 +14469,24592,179917.512651186,372654.951997038,27.5604000000021 +14470,17278,179917.450395104,372655.509632695,27.5604000000021 +14471,24591,179917.388139017,372656.067268357,27.5602999999974 +14472,17284,179917.302817736,372655.638927098,27.1999999999971 +14473,24590,179917.238734171,372656.214808013,27.1999999999971 +14474,17282,179917.226320501,372655.422113556,24.6131000000023 +14475,24589,179917.099537387,372656.561437991,24.6162999999942 +14476,1748,179912.500100005,372652.500300001,24.4199999999983 +14477,1753,179907.500500001,372657.500300005,24.2799999999988 +14478,1750,179907.500399999,372652.500400003,24.3000000000029 +14479,1751,179902.500900004,372652.500800002,24.5399999999936 +14480,1752,179902.500399999,372657.500300005,24.5200000000041 +14481,1767,179902.500600003,372662.500200003,24.5 +14482,1754,179897.500400003,372657.500500001,24.4199999999983 +14483,1769,179897.500300001,372662.500399999,24.4199999999983 +14484,20369,179893.24596278,372654.872498702,24.3858000000037 +14485,1764,179892.0856,372652.189900003,28.3699999999953 +14486,1761,179893.736800004,372650.432399999,24.3828999999969 +14487,20368,179894.907915186,372639.838527381,24.3758999999991 +14488,1762,179894.208900005,372632.5383,28.3399999999965 +14489,1899,179881.844500005,372743.949999999,28.3699999999953 +14490,1901,179879.846299998,372761.435700003,28.3500000000058 +14491,20377,179882.482601073,372752.085389309,24.3975999999966 +14492,1892,179881.980900005,372756.5781,24.3849999999948 +14493,1860,179887.500399999,372752.500300001,24.4400000000023 +14494,1864,179887.500399999,372757.500700001,24.4799999999959 +14495,1862,179892.500400003,372757.500300001,24.4499999999971 +14496,1859,179892.500300001,372752.5002,24.4700000000012 +14497,1894,179887.500399999,372747.500300005,24.3899999999994 +14498,1857,179892.500500005,372747.500399999,24.4900000000052 +14499,1854,179887.500500001,372742.500500001,24.3999999999942 +14500,20376,179883.404638909,372743.828581616,24.4208000000071 +14501,1844,179884.165399998,372737.015999999,24.4400000000023 +14502,1832,179887.500700004,372737.500300001,24.429999999993 +14503,20375,179884.55937425,372733.452120826,24.4376999999949 +14504,1827,179887.500600003,372732.500300001,24.429999999993 +14505,20374,179885.318619873,372726.584007844,24.4330999999947 +14506,1824,179887.500600003,372727.500700004,24.4900000000052 +14507,1847,179886.079700004,372719.699299999,24.4285999999993 +14508,1845,179883.842700005,372726.464300003,28.3899999999994 +14509,1821,179892.500700001,372722.500500001,24.5200000000041 +14510,1823,179892.500500005,372727.500399999,24.5099999999948 +14511,1828,179892.500500005,372732.500500005,24.5299999999988 +14512,1825,179897.500900004,372727.500799999,24.3399999999965 +14513,51,179897.500500005,372722.500600003,24.3699999999953 +14514,1829,179902.500800002,372732.500700001,24.3600000000006 +14515,17119,179909.024928741,372729.731318712,24.5877000000037 +14516,17113,179908.831395168,372731.443012964,24.5795000000071 +14517,17116,179909.086435955,372730.077558797,27.1999999999971 +14518,17120,179909.125666048,372729.730590932,27.1999999999971 +14519,17118,179909.239670351,372729.969641298,27.5559000000067 +14520,13138,179909.332937922,372729.134211168,27.5558000000019 +14521,13139,179910.528136872,372729.970540084,27.7868000000017 +14522,24552,179912.703250002,372734.535750005,28.5099999999948 +14523,13136,179910.442407634,372730.717569649,27.7844000000041 +14524,24558,179910.164904874,372733.135680303,27.7767000000022 +14525,24554,179909.887402114,372735.553790968,27.7690000000002 +14526,24555,179909.609899353,372737.971901622,27.7612999999983 +14527,24564,179908.465328518,372736.905690748,27.5562999999966 +14528,13688,179908.38655496,372737.611292955,27.5564000000013 +14529,24556,179908.300141007,372738.385332815,27.5564000000013 +14530,9447,179908.213727057,372739.159372665,27.5565000000061 +14531,13140,179909.332396593,372740.390012283,27.7535000000062 +14532,24553,179912.071771707,372739.825551052,28.5044000000053 +14533,1900,179911.5735,372743.999499999,28.5 +14534,1883,179908.9355,372743.848500002,27.742499999993 +14535,17094,179907.937315762,372741.635284834,27.556700000001 +14536,13693,179907.82570605,372742.635011937,27.556700000001 +14537,1880,179907.7163,372743.615000002,27.5568000000058 +14538,9448,179907.609604526,372744.570662875,27.5568999999959 +14539,17083,179908.660349574,372746.246112835,27.7348000000056 +14540,17086,179907.519380637,372745.378791094,27.5568999999959 +14541,17080,179907.429156747,372746.186919317,27.5570000000007 +14542,17081,179907.338932853,372746.995047539,27.5570000000007 +14543,13144,179908.385199152,372748.643725671,27.7271999999939 +14544,24570,179910.443750005,372753.463250004,28.4949999999953 +14545,13141,179908.2221747,372750.064292278,27.7225999999937 +14546,24572,179907.961700343,372752.334020425,27.715400000001 +14547,13142,179906.887813393,372751.035688642,27.5573000000004 +14548,24573,179906.797589496,372751.843816865,27.5573000000004 +14549,17064,179906.707365606,372752.651945096,27.5574000000051 +14550,24571,179907.701225985,372754.603748575,27.7081000000035 +14551,13703,179906.526917823,372754.26820153,27.5574999999953 +14552,24574,179906.436693933,372755.076329757,27.5574999999953 +14553,17056,179906.346470036,372755.884457972,27.5576000000001 +14554,9449,179906.166022252,372757.500714414,27.5577000000048 +14555,13145,179907.180277262,372759.143204872,27.6935999999987 +14556,1902,179909.313999999,372762.927000001,28.4900000000052 +14557,24541,179908.382000003,372785.159000002,28.4713999999949 +14558,24520,179902.076000005,372842.761999998,28.4465999999957 +14559,2001,179901.397999998,372836.932000004,28.5 +14560,24528,179905.193999998,372813.919,28.4615000000049 +14561,24522,179901.050588012,372840.580106054,28.4980999999971 +14562,24521,179900.703176022,372844.228212111,28.4962999999989 +14563,1999,179899.538000003,372856.463500004,28.4900000000052 +14564,24507,179899.557000004,372865.155000005,28.4413000000059 +14565,2355,179871.941799998,373103.765200004,28.8000000000029 +14566,24444,179875.090999998,373089.678000003,28.5442999999941 +14567,24435,179870.427000009,373133.672000002,28.5617000000057 +14568,24445,179872.821899995,373095.722100001,28.7899999999936 +14569,24446,179873.261950001,373091.700550005,28.7850000000035 +14570,2350,179873.702000003,373087.679000001,28.7799999999988 +14571,2285,179875.313000001,373076.195500001,28.7799999999988 +14572,2241,179876.924000002,373064.712000001,28.7799999999988 +14573,10759,179872.646840218,373070.480335876,27.820000000007 +14574,14136,179872.31017011,373073.242167946,27.820000000007 +14575,2273,179871.973499998,373076.004000001,27.820000000007 +14576,14146,179871.451687504,373080.284625001,27.820000000007 +14577,14145,179870.570180327,373078.381292067,27.581600000005 +14578,16287,179870.452538349,373079.396622013,27.5840000000026 +14579,14144,179870.343860652,373080.334584132,27.5862000000052 +14580,16283,179870.287280738,373080.82290715,27.5872999999992 +14581,16278,179870.230700817,373081.311230164,27.588499999998 +14582,14150,179870.117540982,373082.2878762,27.5908000000054 +14583,10760,179870.929874998,373084.565250002,27.820000000007 +14584,2322,179870.581999999,373087.419,27.820000000007 +14585,14158,179870.306245632,373089.724158935,27.8022000000055 +14586,14161,179869.450159062,373088.092077482,27.5920000000042 +14587,14157,179869.358818125,373088.924654964,27.581600000005 +14588,14159,179869.267477181,373089.757232446,27.571100000001 +14589,16264,179869.131921418,373089.507728018,27.1999999999971 +14590,14156,179869.048517428,373090.251450107,27.1999999999971 +14591,12495,179869.176136244,373090.589809928,27.5605999999971 +14592,16261,179868.982461419,373090.840478428,27.1999999999971 +14593,16262,179868.949433409,373091.134992588,27.1999999999971 +14594,16260,179868.873410996,373090.91518946,24.3546999999962 +14595,16257,179868.916405398,373091.42950676,27.1999999999971 +14596,16256,179868.707802288,373092.391962487,24.3364000000001 +14597,16258,179868.818304077,373092.304286472,27.1999999999971 +14598,14163,179868.784293376,373092.607563403,27.1999999999971 +14599,12497,179868.98149227,373092.364000022,27.5383000000002 +14600,16259,179869.078814257,373091.476904981,27.5494999999937 +14601,12496,179870.030491255,373092.029317863,27.7844000000041 +14602,24447,179869.776118439,373094.155738402,27.7679999999964 +14603,24450,179868.893937554,373093.162065871,27.5283000000054 +14604,14165,179868.806382839,373093.96013172,27.5182000000059 +14605,24448,179868.737479284,373094.588191263,27.5102999999945 +14606,24449,179868.598015342,373094.268623974,27.1999999999971 +14607,14167,179868.568626285,373094.530689251,27.1999999999971 +14608,14168,179868.66857573,373095.216250796,27.5023999999976 +14609,16250,179868.452515386,373095.566062212,27.1999999999971 +14610,16252,179868.59967218,373095.844310336,27.4945000000007 +14611,16253,179868.42102474,373095.846867554,27.1999999999971 +14612,16249,179868.341954283,373095.654318079,24.296199999997 +14613,16251,179868.389534097,373096.127672892,27.1999999999971 +14614,14169,179868.326552812,373096.689283565,27.1999999999971 +14615,14164,179868.530768625,373096.472369868,27.4866000000038 +14616,14166,179869.521745626,373096.282158937,27.7516000000032 +14617,14171,179868.418087713,373097.499462336,27.4737000000023 +14618,14170,179868.305406801,373098.526554797,27.4608000000007 +14619,10761,179869.013,373100.535000004,27.7188000000024 +14620,16241,179868.192725889,373099.553647261,27.4478999999992 +14621,16244,179868.17661979,373099.700455178,27.446100000001 +14622,16242,179868.136385433,373100.067193486,27.4413999999961 +14623,12494,179868.080044977,373100.580739722,27.4349999999977 +14624,14174,179867.959994432,373101.675006773,27.421199999997 +14625,14173,179867.857143655,373100.875053741,27.1999999999971 +14626,16237,179867.796461541,373101.416162472,27.1999999999971 +14627,16236,179867.694364373,373101.429034486,24.2250000000058 +14628,16232,179867.751921196,373101.813333362,27.1999999999971 +14629,16233,179867.699309964,373102.282473173,27.1999999999971 +14630,16231,179867.541805666,373102.789437599,24.2081999999937 +14631,14177,179867.646698736,373102.75161298,27.1999999999971 +14632,16235,179867.615255218,373103.031998049,27.1999999999971 +14633,16234,179867.583811708,373103.312383119,27.1999999999971 +14634,2341,179867.376400001,373104.264400005,24.1900000000023 +14635,14179,179867.52092468,373103.873153247,27.1999999999971 +14636,14180,179867.746548612,373103.620576695,27.3968000000023 +14637,14176,179867.817697216,373102.972053386,27.4048999999941 +14638,14175,179868.751499999,373102.721000005,27.7019 +14639,14178,179867.88884582,373102.323530074,27.4131000000052 +14640,2323,179868.490000002,373104.907000002,27.6849999999977 +14641,14185,179868.175341677,373107.82141269,27.6840999999986 +14642,12492,179867.860683352,373110.735825378,27.6830999999947 +14643,2353,179870.181600004,373119.851399999,28.820000000007 +14644,14191,179867.502238639,373114.055794131,27.6821000000054 +14645,10762,179867.143793929,373117.375762872,27.6809999999969 +14646,2324,179866.7925,373120.629500002,27.679999999993 +14647,14200,179866.064605847,373118.905691858,27.3877000000066 +14648,14203,179865.97620292,373119.710495926,27.3877000000066 +14649,2325,179865.887800004,373120.515300002,27.3876000000018 +14650,16196,179865.824349731,373121.092935909,27.3874999999971 +14651,14206,179865.760899458,373121.670571819,27.3874999999971 +14652,12487,179865.633998916,373122.825843643,27.3874000000069 +14653,12488,179866.278317224,373125.391938105,27.6784999999945 +14654,16185,179865.50019253,373124.043984517,27.3873000000021 +14655,16186,179865.433289342,373124.65305496,27.3871999999974 +14656,12489,179865.366386149,373125.262125395,27.3871000000072 +14657,16180,179865.298921067,373125.876311205,27.3871000000072 +14658,24439,179866.088581674,373127.149297331,27.6778999999951 +14659,16175,179865.231455978,373126.490497012,27.3870000000024 +14660,16177,179865.196674123,373126.807142574,27.3870000000024 +14661,24440,179865.11181812,373127.579651158,27.3868999999977 +14662,16173,179864.936377924,373127.340165731,27.1999999999971 +14663,24441,179864.876434695,373127.885681402,27.1999999999971 +14664,14212,179865.026962101,373128.352159746,27.3867999999929 +14665,24438,179865.898846116,373128.906656552,27.6774000000005 +14666,24442,179864.942106087,373129.124668337,27.3867999999929 +14667,16170,179864.757145584,373128.971276585,27.1999999999971 +14668,24443,179864.727472641,373129.241316341,27.1999999999971 +14669,16169,179864.697799698,373129.511356104,27.1999999999971 +14670,14213,179864.857250072,373129.897176925,27.3867000000027 +14671,14215,179864.570235226,373130.672261488,27.1999999999971 +14672,14210,179864.68753805,373131.442194108,27.3864999999932 +14673,14211,179864.53733905,373130.971634421,27.1999999999971 +14674,16166,179864.428169612,373131.050032936,24.3439000000071 +14675,16171,179864.629627526,373129.216646865,24.3337000000029 +14676,2360,179857.500700001,373127.500300001,24.1499999999942 +14677,16168,179864.656221855,373128.974622697,24.3323999999993 +14678,16172,179864.839014322,373127.311103161,24.3230999999942 +14679,2359,179862.500700004,373122.500500005,24.1900000000023 +14680,16178,179865.011705182,373125.739514153,24.3142999999982 +14681,16182,179865.146344036,373124.514220968,24.3074999999953 +14682,16188,179865.259719662,373123.482435778,24.3016999999963 +14683,16191,179865.378853858,373122.398244109,24.2957000000024 +14684,16189,179865.386397075,373123.244749106,27.1999999999971 +14685,14205,179865.457118429,373122.601146717,27.1999999999971 +14686,16192,179865.512952503,373122.093026571,27.1999999999971 +14687,16193,179865.498141613,373121.312654998,24.2896000000037 +14688,14207,179865.568786576,373121.584906414,27.1999999999971 +14689,16195,179865.598589934,373121.313679814,27.1999999999971 +14690,16194,179865.628393285,373121.042453207,27.1999999999971 +14691,2337,179865.5889,373120.486700002,24.2850000000035 +14692,2336,179865.688000005,373120.500000004,27.1999999999971 +14693,14204,179865.715366915,373120.250946335,27.1999999999971 +14694,14202,179865.797467668,373119.503785312,27.1999999999971 +14695,16197,179865.730601866,373119.19712922,24.2777999999962 +14696,16198,179865.85356608,373118.993259478,27.1999999999971 +14697,14201,179866.153008766,373118.10088779,27.3877999999968 +14698,14199,179865.967983741,373117.951997183,27.1999999999971 +14699,16199,179865.881394062,373117.824831065,24.2700999999943 +14700,16200,179866.033849489,373117.352583416,27.1999999999971 +14701,16201,179866.000203725,373116.743592907,24.2641000000003 +14702,16202,179866.084318507,373116.893288117,27.1999999999971 +14703,16203,179866.109553024,373116.663640469,27.1999999999971 +14704,14197,179866.134787537,373116.433992822,27.1999999999971 +14705,16204,179866.167303432,373115.222886764,24.2556000000041 +14706,2317,179862.500500001,373117.500500001,24.1600000000035 +14707,2313,179862.500600003,373112.500399999,24.1999999999971 +14708,2314,179857.500900004,373112.500500001,24.1300000000047 +14709,2348,179857.500300009,373117.500300005,24.1100000000006 +14710,2357,179857.500599999,373122.500300001,24.1600000000035 +14711,2318,179852.500700001,373117.500600003,24.3399999999965 +14712,2358,179852.500500005,373122.500400003,24.3099999999977 +14713,2408,179852.500500005,373127.500500005,24.2700000000041 +14714,2361,179847.501000002,373127.500700001,24.429999999993 +14715,2363,179852.500999998,373132.500300005,24.2400000000052 +14716,2362,179847.500400003,373132.500200003,24.4100000000035 +14717,2367,179852.500599999,373137.500300005,24.2100000000064 +14718,2365,179857.500999998,373132.500900004,24.1000000000058 +14719,2368,179857.500900004,373137.5009,24.070000000007 +14720,2370,179852.500700001,373142.5002,24.179999999993 +14721,115,179857.500500005,373142.500500008,24.0599999999977 +14722,16143,179863.395171963,373140.457803067,24.3399999999965 +14723,16148,179863.563608192,373138.941292755,24.3399999999965 +14724,16155,179863.721390959,373137.52070057,24.3399999999965 +14725,16149,179863.762991186,373138.051552445,27.1999999999971 +14726,16157,179863.799493387,373137.722914334,27.1999999999971 +14727,16151,179863.949995443,373138.169048712,27.3858999999939 +14728,16158,179864.028597727,373137.458924353,27.3859999999986 +14729,16152,179864.834656358,373138.804435521,27.6784999999945 +14730,2388,179865.094999999,373136.352000002,27.6750000000029 +14731,2391,179864.1072,373136.748800002,27.3859999999986 +14732,2392,179864.250500001,373136.392000001,27.3859999999986 +14733,2397,179864.144000009,373136.491999999,27.1999999999971 +14734,14221,179864.152413376,373136.271767594,27.1999999999971 +14735,2402,179864.045500003,373136.450199999,24.3399999999965 +14736,14222,179863.967750002,373136.675750002,27.1999999999971 +14737,2401,179863.8134,373136.692299999,24.3399999999965 +14738,2398,179863.909000002,373136.737,27.1999999999971 +14739,16156,179863.835995592,373137.39427622,27.1999999999971 +14740,16159,179863.81774449,373137.558595277,27.1999999999971 +14741,2403,179864.060199998,373136.065500002,24.3399999999965 +14742,2404,179863.914799999,373135.721999999,24.3699999999953 +14743,2395,179864.017000001,373135.706999999,27.1999999999971 +14744,14220,179864.053183645,373135.37770937,27.1999999999971 +14745,16160,179864.098967392,373134.045967862,24.3606 +14746,14216,179864.161734566,373134.389837492,27.1999999999971 +14747,16162,179864.205519576,373133.991370335,27.1999999999971 +14748,16161,179864.304632291,373133.089391228,27.1999999999971 +14749,16164,179864.262529328,373132.55745751,24.3522999999986 +14750,16165,179864.374736615,373132.451404147,27.1999999999971 +14751,14209,179864.44753002,373131.788944963,27.1999999999971 +14752,16167,179864.492434531,373131.380289696,27.1999999999971 +14753,12486,179864.583786774,373132.386720546,27.3864000000031 +14754,10763,179865.519375,373132.421375006,27.6763000000064 +14755,16163,179864.491990082,373133.22241541,27.3862999999983 +14756,14218,179865.307187498,373134.386687506,27.6756000000023 +14757,14217,179864.40019339,373134.058110278,27.3862999999983 +14758,14219,179864.308396693,373134.893805135,27.3861999999936 +14759,2416,179868.421399999,373135.937600005,28.8300000000017 +14760,24437,179868.861450002,373131.916050002,28.8274999999994 +14761,24436,179869.301500004,373127.894500006,28.8249999999971 +14762,2415,179866.661200006,373152.023800001,28.8500000000058 +14763,12484,179864.574312724,373141.256871041,27.6820000000007 +14764,10764,179863.845875002,373148.118750002,27.6919000000053 +14765,14234,179863.637687497,373150.079875,27.6946999999927 +14766,2389,179863.429499999,373152.041000001,27.6974999999948 +14767,12480,179862.937653739,373156.6741888,27.7041000000027 +14768,2483,179864.901000008,373168.110000003,28.8600000000006 +14769,24425,179865.245999999,373181.957000002,28.5994999999966 +14770,24426,179863.819750004,373175.911750004,28.8450000000012 +14771,12476,179861.434283089,373170.816402331,27.7210999999952 +14772,10766,179861.104566172,373173.902804665,27.722099999999 +14773,24428,179860.846849635,373176.315228499,27.7229999999981 +14774,14262,179859.869268782,373175.128051363,27.3843999999954 +14775,12472,179859.749852296,373176.223315299,27.3845000000001 +14776,24429,179859.679202877,373176.871297512,27.3846000000049 +14777,24430,179859.492009062,373176.676189173,27.1999999999971 +14778,14263,179859.525018428,373176.371880982,27.1999999999971 +14779,16072,179859.36309104,373176.938012235,24.3527999999933 +14780,16073,179859.458999701,373176.98049736,27.1999999999971 +14781,16068,179859.392980967,373177.589113731,27.1999999999971 +14782,16065,179859.202796683,373178.415777326,24.3533000000025 +14783,16069,179859.334608994,373178.127235945,27.1999999999971 +14784,14265,179859.292335033,373178.516952928,27.1999999999971 +14785,14266,179859.537904046,373178.167261939,27.3846000000049 +14786,12474,179859.467254624,373178.815244157,27.3846999999951 +14787,12473,179860.589133088,373178.727652337,27.723800000007 +14788,14264,179859.608553458,373177.51927973,27.3846000000049 +14789,16067,179859.374783404,373179.663371511,27.3846999999951 +14790,16071,179859.240272377,373178.996910468,27.1999999999971 +14791,16066,179859.188209713,373179.476868007,27.1999999999971 +14792,16058,179859.084084399,373180.436783079,27.1999999999971 +14793,16063,179858.970024545,373180.561720241,24.3540000000066 +14794,16070,179859.139210816,373179.00198001,24.3534999999974 +14795,2427,179852.500300001,373177.500100002,24.0800000000017 +14796,116,179852.500300001,373182.500799999,24.0099999999948 +14797,16057,179858.809621397,373182.040488247,24.3545000000013 +14798,2471,179858.637899999,373183.623600002,24.3549999999959 +14799,14267,179858.875833761,373182.356613234,27.1999999999971 +14800,16059,179858.914195556,373182.002961833,27.1999999999971 +14801,16062,179858.999139972,373181.21987246,27.1999999999971 +14802,16061,179859.189840972,373181.359626215,27.3849000000046 +14803,16064,179859.05053905,373180.746032391,27.1999999999971 +14804,16060,179859.282312185,373180.511498865,27.3847999999998 +14805,14269,179860.331416544,373181.140076164,27.7247000000061 +14806,14268,179859.097369753,373182.207753569,27.3849000000046 +14807,2448,179860.073700003,373183.552499998,27.7255000000005 +14808,2476,179862.738499999,373183.713500004,28.8300000000017 +14809,24427,179863.279124998,373179.812624998,28.8374999999942 +14810,24431,179861.657250006,373191.515250001,28.8150000000023 +14811,24409,179862.994441912,373202.829711746,28.6193999999959 +14812,24384,179854.841000002,373279.045000006,28.5994999999966 +14813,2615,179854.388799999,373256.077000003,28.7899999999936 +14814,24393,179860.057000004,373230.228999998,28.6132000000071 +14815,119,179852.326400004,373274.997000005,28.7799999999988 +14816,24386,179851.83601214,373279.495709471,28.7799999999988 +14817,2597,179849.437000003,373278.163000003,27.6900000000023 +14818,24387,179849.12125,373281.116687503,27.7002999999968 +14819,14364,179848.366099112,373279.595508888,27.3843999999954 +14820,24389,179848.284798667,373280.331463333,27.3843999999954 +14821,12444,179848.203498222,373281.067417774,27.3843000000052 +14822,24388,179848.122791141,373281.798000932,27.3843000000052 +14823,15848,179847.948341932,373281.556634709,27.1999999999971 +14824,15849,179847.904640242,373281.951403633,27.1999999999971 +14825,15847,179847.793638445,373282.045544576,24.2115000000049 +14826,15843,179847.860938549,373282.346172553,27.1999999999971 +14827,15842,179847.634610441,373283.482065521,24.2137999999977 +14828,15844,179847.744672749,373283.396432258,27.1999999999971 +14829,14366,179847.686131783,373283.925248239,27.1999999999971 +14830,12446,179847.880669888,373283.989750426,27.3840999999957 +14831,15846,179847.961376972,373283.259167261,27.3842000000004 +14832,12445,179848.805500004,373284.070374999,27.7106000000058 +14833,15845,179848.042084053,373282.5285841,27.3842000000004 +14834,24385,179851.345624272,373283.99441893,28.7799999999988 +14835,24391,179848.489749998,373287.024062503,27.7209000000003 +14836,10774,179848.174000002,373289.97775,27.7312999999995 +14837,2658,179850.264000002,373293.916999999,28.7799999999988 +14838,10775,179846.917897757,373301.513429295,27.7412999999942 +14839,12441,179847.335448876,373297.71471465,27.7431999999972 +14840,2626,179847.753000006,373293.916000005,27.7449999999953 +14841,14374,179847.963500004,373291.946875002,27.7381000000023 +14842,14375,179846.943948224,373292.46921777,27.383600000001 +14843,2637,179846.849300001,373293.326000001,27.3834999999963 +14844,2636,179846.911499999,373293.748500004,27.3834999999963 +14845,2635,179846.893000003,373293.967999998,27.3834999999963 +14846,2634,179846.741300005,373294.340100002,27.3834999999963 +14847,15818,179846.653752945,373295.138128579,27.3883999999962 +14848,15816,179846.459285587,373295.087723315,27.1999999999971 +14849,15819,179846.438356988,373295.278654147,27.1999999999971 +14850,15815,179846.33787147,373295.277334109,24.2234999999928 +14851,15817,179846.417428382,373295.469584975,27.1999999999971 +14852,14381,179846.375571176,373295.851446629,27.1999999999971 +14853,15812,179846.202702004,373296.510537438,24.2402000000002 +14854,2618,179842.500799999,373297.500700001,24.1699999999983 +14855,15807,179846.061954822,373297.794628404,24.2575999999972 +14856,15811,179846.046447072,373297.936111622,24.2595000000001 +14857,14383,179846.15745208,373297.841338538,27.1999999999971 +14858,15808,179846.198276795,373297.468896262,27.1999999999971 +14859,14382,179846.375797812,373297.67180749,27.4040999999997 +14860,15809,179846.471001849,373296.803982325,27.3987000000052 +14861,15813,179846.287517935,373296.654752869,27.1999999999971 +14862,15814,179846.331544556,373296.253099751,27.1999999999971 +14863,12442,179846.566205889,373295.93615716,27.3934000000008 +14864,14384,179846.280593775,373298.539632656,27.4094000000041 +14865,12440,179846.185389739,373299.407457825,27.4147999999986 +14866,15806,179846.020405743,373299.091606896,27.1999999999971 +14867,14385,179845.980830573,373299.452649646,27.1999999999971 +14868,15803,179845.89736969,373300.214059971,27.1999999999971 +14869,15802,179845.791068058,373300.266033232,24.2911000000022 +14870,15799,179845.857940696,373300.573769167,27.1999999999971 +14871,15798,179845.65212274,373301.533685092,24.3083000000042 +14872,14387,179845.758385856,373301.482004017,27.1999999999971 +14873,14386,179845.987108354,373301.21487673,27.4260000000068 +14874,15800,179846.086249046,373300.31116727,27.4204000000027 +14875,14388,179845.887967661,373302.118586175,27.4315999999963 +14876,12439,179845.788826972,373303.022295624,27.4370999999956 +14877,15787,179845.523114488,373305.444377568,27.452099999995 +14878,2627,179846.041999999,373309.481999997,27.7375000000029 +14879,14391,179845.25740201,373307.866459507,27.4670999999944 +14880,2633,179845.084800005,373309.439800005,27.476800000004 +14881,15780,179845.002143756,373310.193196278,27.4814999999944 +14882,12437,179844.919487506,373310.946592554,27.4860999999946 +14883,12438,179845.755942866,373312.084434435,27.7361999999994 +14884,15775,179844.857495323,373311.511639766,27.4896000000008 +14885,15773,179844.662751485,373311.477433398,27.1999999999971 +14886,15776,179844.62638922,373311.809164897,27.1999999999971 +14887,15771,179844.521880966,373311.845154978,24.448000000004 +14888,15772,179844.590026952,373312.140896406,27.1999999999971 +14889,14395,179844.444577899,373313.467822414,27.1999999999971 +14890,15769,179844.304596152,373313.82739573,24.4749000000011 +14891,2656,179837.500900004,373312.500799999,24.1699999999983 +14892,15764,179844.137079746,373315.355610438,24.4955999999947 +14893,2623,179837.500399999,373317.500900008,24.2200000000012 +14894,2667,179832.500599999,373317.500400003,24.1100000000006 +14895,2683,179832.500300001,373312.500700004,24.1000000000058 +14896,2621,179837.500200003,373307.500100002,24.1000000000058 +14897,2682,179832.500800002,373307.500200003,24.1000000000058 +14898,2664,179827.500900008,373307.5,24.4400000000023 +14899,2662,179832.5002,373302.500100005,24.1300000000047 +14900,2663,179827.500300001,373302.500700001,24.3899999999994 +14901,2678,179821.011399999,373307.447900001,24.8999999999942 +14902,2677,179822.298900001,373295.838100001,24.8699999999953 +14903,2661,179827.5002,373297.500800002,24.5599999999977 +14904,20852,179822.389350127,373295.022482257,24.8678999999975 +14905,20854,179822.426161017,373294.690546639,24.8669999999984 +14906,20850,179822.6607005,373292.575629003,24.8616000000038 +14907,2659,179832.500300001,373292.500500001,24.1600000000035 +14908,20845,179822.882720593,373290.573602695,24.8564000000042 +14909,20847,179823.042735253,373289.130699247,24.8527000000031 +14910,2575,179832.500300001,373287.5009,24.2100000000064 +14911,20849,179823.297127377,373286.836763959,24.8466999999946 +14912,2552,179827.500100005,373282.500599999,24.7100000000064 +14913,2574,179823.586400002,373284.228300001,24.8399999999965 +14914,2554,179823.487,373284.217000004,27.0540000000037 +14915,20841,179823.743849959,373282.009203099,27.0578999999998 +14916,20844,179823.850567419,373281.957460783,24.8542000000016 +14917,8876,179824.000699911,373279.801406182,27.0619000000006 +14918,2564,179822.552999999,373279.646000002,28.0109999999986 +14919,10864,179822.702061243,373278.181042317,28.0090000000055 +14920,10870,179822.79444021,373277.273151856,28.0078000000067 +14921,10866,179822.813483533,373277.085996114,28.007500000007 +14922,10871,179822.953933652,373275.705667514,28.0056999999942 +14923,20800,179823.123926185,373274.034999359,28.0034000000014 +14924,10877,179823.293918718,373272.364331204,28.0011999999988 +14925,20799,179823.273994047,373273.050112557,27.0521000000008 +14926,10875,179823.337642655,373272.424555186,27.0516000000061 +14927,20797,179823.386501078,373271.944360182,27.0512000000017 +14928,10876,179823.4353595,373271.464165177,27.0507999999973 +14929,20795,179823.49753949,373270.853041839,27.0503999999928 +14930,8882,179823.533076338,373270.503775168,27.0500999999931 +14931,20793,179823.789609972,373267.982486691,27.0481 +14932,20794,179823.642358065,373270.417800143,24.8500000000058 +14933,20792,179823.903770164,373267.848558813,24.8534000000072 +14934,2567,179825.501499999,373266.744600005,24.8500000000058 +14935,2549,179827.500599999,373272.500700004,24.7799999999988 +14936,2578,179832.500599999,373267.5,24.4100000000035 +14937,2550,179832.500400003,373272.500700004,24.3500000000058 +14938,2588,179837.500600003,373267.500700004,24.0899999999965 +14939,2585,179837.500800002,373262.500300005,24.1399999999994 +14940,20756,179825.638717055,373265.388997294,24.8371000000043 +14941,20749,179825.801965736,373263.776221432,24.8218000000052 +14942,20750,179825.633012623,373264.452627927,27.0586000000039 +14943,20757,179825.573357634,373265.041956473,27.0598000000027 +14944,20758,179825.543530133,373265.336620752,27.0604000000021 +14945,20762,179825.528616391,373265.483952887,27.0607000000018 +14946,8885,179825.513702638,373265.631285023,27.0610000000015 +14947,20783,179825.462851319,373266.13364251,27.0620000000054 +14948,2562,179825.412,373266.636000004,27.0629999999946 +14949,2561,179825.313000001,373266.627000004,27.0629999999946 +14950,120,179825.203400005,373266.717399999,24.8500000000058 +14951,20781,179825.264308993,373266.114574637,24.8515999999945 +14952,20782,179825.362250004,373266.139625005,27.061400000006 +14953,8884,179825.411500007,373265.652249999,27.059699999998 +14954,20759,179825.325217992,373265.511749279,24.853099999993 +14955,20787,179824.119238369,373265.73086869,24.8561999999947 +14956,20789,179824.047845896,373266.432536643,24.8552000000054 +14957,20779,179823.999646317,373265.918187387,27.0464999999967 +14958,20780,179823.921884652,373266.682452016,27.0470999999961 +14959,20790,179823.982194819,373267.077776276,24.8543999999965 +14960,20777,179823.844122991,373267.446716648,27.0476999999955 +14961,20791,179823.880404986,373267.090126418,27.0473999999958 +14962,20788,179824.017067786,373265.74696403,27.0464000000065 +14963,20786,179824.034489259,373265.575740673,27.046199999997 +14964,20785,179824.069332194,373265.233293962,27.0458999999973 +14965,20776,179824.187291704,373265.062018868,24.8570999999938 +14966,10879,179824.155169636,373264.389658123,27.045299999998 +14967,20774,179824.269518804,373264.253864784,24.8580999999976 +14968,20775,179824.176023435,373264.184700862,27.045100000003 +14969,10881,179824.196877234,373263.979743596,27.0449999999983 +14970,10880,179824.23858482,373263.569829069,27.0445999999938 +14971,20773,179824.332123782,373263.638563085,24.8589999999967 +14972,10883,179824.304806609,373262.918981735,27.0440999999992 +14973,2569,179824.412499998,373262.8486,24.8600000000006 +14974,20772,179825.283888381,373262.83476026,24.8600000000006 +14975,2568,179825.5962,373262.829799999,24.8600000000006 +14976,2560,179825.706999995,373262.728000004,27.0500000000029 +14977,20754,179825.673348412,373263.061014045,27.0510999999969 +14978,20771,179825.583859287,373262.951937862,24.8597000000009 +14979,20768,179825.546837159,373263.318351462,24.858699999997 +14980,20769,179825.65323671,373263.260038275,27.0518000000011 +14981,8888,179825.633125003,373263.459062502,27.0524000000005 +14982,20766,179825.591728084,373263.868723858,27.0537999999942 +14983,20765,179825.474142596,373264.037820298,24.8568999999989 +14984,20763,179825.402200118,373264.74984571,24.8551000000007 +14985,20764,179825.5223125,373264.555656254,27.0561000000016 +14986,8886,179825.559250001,373264.190125003,27.0549000000028 +14987,8887,179825.692806501,373263.861927371,27.0574000000051 +14988,20767,179825.711789802,373263.674392365,27.0570000000007 +14989,20755,179825.831583597,373263.483618915,24.8190999999933 +14990,20753,179825.730773095,373263.486857366,27.0565999999963 +14991,20770,179825.751097485,373263.286073823,27.0562000000064 +14992,20752,179825.771421868,373263.085290276,27.0558000000019 +14993,8889,179825.850037243,373262.308653187,27.0541999999987 +14994,20751,179825.485374998,373264.921187501,27.0573000000004 +14995,20760,179825.443144776,373265.339095242,27.0586999999941 +14996,20761,179825.427322388,373265.495672621,27.0592000000033 +14997,2583,179837.500200003,373257.500300001,24.1600000000035 +14998,2547,179832.5002,373257.500400003,24.5399999999936 +14999,2546,179832.500300001,373252.500500005,24.5800000000017 +15000,20742,179826.870180607,373253.544252641,24.7676999999967 +15001,2566,179826.461400002,373257.261500001,24.7599999999948 +15002,20739,179827.091443144,373251.532201272,24.7718000000023 +15003,20738,179827.190904472,373249.713259384,27.0626999999949 +15004,20737,179827.320331603,373249.450803492,24.776199999993 +15005,8890,179827.658225004,373245.463624999,27.0731999999989 +15006,20736,179827.766243752,373244.481343754,27.0757000000012 +15007,20733,179827.777193066,373245.296332791,24.7847000000038 +15008,2584,179842.5009,373257.500800002,24.0200000000041 +15009,2613,179842.500799999,373262.500700008,24.0099999999948 +15010,2586,179847.500600003,373262.500500001,24.0599999999977 +15011,2582,179847.500700004,373257.500100005,24.0599999999977 +15012,2581,179847.500799999,373252.500800002,24.0500000000029 +15013,15908,179850.747481626,373255.126942381,24.2256999999954 +15014,15913,179850.895921759,373253.784859136,24.2287999999971 +15015,14338,179850.972329434,373254.00371585,27.1999999999971 +15016,15914,179851.062122736,373253.191875789,27.1999999999971 +15017,12456,179851.285718136,373253.001336943,27.3850999999995 +15018,15916,179851.107019391,373252.785955757,27.1999999999971 +15019,14335,179851.151916042,373252.380035728,27.1999999999971 +15020,15915,179851.013715923,373252.719853554,24.2311999999947 +15021,15917,179851.152104169,373251.468651809,24.2341000000015 +15022,15922,179851.314606335,373249.999430314,24.2375000000029 +15023,15925,179851.452511441,373248.752596751,24.2403000000049 +15024,15928,179851.58318213,373247.571171366,24.2430000000022 +15025,2523,179851.677999999,373246.7139,24.2449999999953 +15026,15932,179851.823430177,373245.399030562,24.2480000000069 +15027,14330,179851.836012643,373246.194974937,27.1999999999971 +15028,15934,179851.88589669,373245.743962795,27.1999999999971 +15029,15933,179851.935780741,373245.292950656,27.1999999999971 +15030,14328,179852.048631959,373244.272639126,27.1999999999971 +15031,14329,179852.143694673,373245.194416333,27.3846999999951 +15032,14326,179852.313589346,373243.648432661,27.3846000000049 +15033,2512,179853.061999995,373246.715000007,27.6885000000038 +15034,12460,179853.859455608,373240.266743556,27.710500000001 +15035,12457,179852.492459558,373251.320325736,27.6728000000003 +15036,10771,179851.989955872,373255.383589692,27.6589999999997 +15037,12454,179851.664097421,373258.018493559,27.6499999999942 +15038,10772,179851.338238966,373260.653397422,27.6410000000033 +15039,2596,179851.120999999,373262.409999996,27.6349999999948 +15040,12451,179850.570936263,373267.555578433,27.6530000000057 +15041,12450,179849.929975577,373265.438021541,27.3852999999945 +15042,15884,179849.840111122,373266.25155358,27.3852999999945 +15043,15883,179849.677108526,373265.940229595,27.1999999999971 +15044,15885,179849.630106334,373266.364812829,27.1999999999971 +15045,12452,179849.750246666,373267.065085623,27.3852000000043 +15046,15881,179849.564323895,373266.959043026,27.1999999999971 +15047,14352,179849.495939214,373267.576779857,27.1999999999971 +15048,14353,179849.656791169,373267.911127001,27.3852000000043 +15049,15880,179849.439632818,373268.085410446,27.1999999999971 +15050,15876,179849.383326415,373268.594041027,27.1999999999971 +15051,15878,179849.555639725,373268.826838788,27.3850999999995 +15052,15877,179849.327020008,373269.102671612,27.1999999999971 +15053,15875,179849.221835624,373269.144392483,24.190300000002 +15054,15871,179849.270713612,373269.611302201,27.1999999999971 +15055,15874,179849.207727369,373270.180273555,27.1999999999971 +15056,15870,179849.046448324,373270.728699517,24.1928999999946 +15057,15872,179849.144741125,373270.74924491,27.1999999999971 +15058,14354,179849.045488015,373271.64582454,27.1999999999971 +15059,14355,179849.252185397,373271.573974133,27.3849000000046 +15060,15873,179849.454488285,373269.742550571,27.3850999999995 +15061,10773,179850.020872522,373272.701156847,27.6708999999973 +15062,12448,179849.728936262,373275.432078425,27.6805000000022 +15063,14357,179848.969010577,373274.137521598,27.3847999999998 +15064,12447,179849.095902294,373272.988786161,27.3847999999998 +15065,14356,179848.819026202,373273.691513814,27.1999999999971 +15066,15867,179848.777393643,373274.067591753,27.1999999999971 +15067,15861,179848.73576108,373274.443669688,27.1999999999971 +15068,15862,179848.905564714,373274.711889315,27.3846999999951 +15069,15863,179848.694128517,373274.819747619,27.1999999999971 +15070,12449,179848.842118852,373275.286257029,27.3846999999951 +15071,14360,179848.763764139,373275.995592773,27.3846000000049 +15072,14359,179848.68540943,373276.704928517,27.3846000000049 +15073,14362,179848.607054718,373277.414264262,27.3845000000001 +15074,2598,179848.528700005,373278.123599999,27.3845000000001 +15075,15855,179848.44739956,373278.859554444,27.3845000000001 +15076,15853,179848.255449206,373278.782453638,27.1999999999971 +15077,15854,179848.217923809,373279.121430457,27.1999999999971 +15078,15852,179848.123792823,373279.063216627,24.206600000005 +15079,14365,179848.180398412,373279.460407276,27.1999999999971 +15080,15851,179848.108071864,373280.113752075,27.1999999999971 +15081,15850,179847.958538242,373280.555983055,24.2090000000026 +15082,2590,179842.500399999,373277.500300001,24.070000000007 +15083,2593,179842.500200003,373282.500700001,24.1000000000058 +15084,2592,179837.500900004,373282.500599999,24.1100000000006 +15085,2594,179842.500200003,373287.500300005,24.1499999999942 +15086,15838,179847.485337805,373284.830464937,24.2160000000003 +15087,15834,179847.311577048,373286.400068738,24.2185999999929 +15088,15837,179847.553657997,373285.121918939,27.1999999999971 +15089,15835,179847.421184212,373286.318589639,27.1999999999971 +15090,14371,179847.3882851,373286.615775988,27.1999999999971 +15091,14370,179847.606666386,373286.470107008,27.3839000000007 +15092,15836,179847.743668139,373285.229928717,27.3840000000055 +15093,24392,179847.53816551,373287.090196159,27.3839000000007 +15094,15832,179847.469664637,373287.710285299,27.3839000000007 +15095,14368,179847.332662884,373288.950463597,27.383799999996 +15096,14369,179847.171668258,373288.572533082,27.1999999999971 +15097,15829,179847.126995284,373288.976075873,27.1999999999971 +15098,15828,179847.00900973,373289.133199181,24.2231000000029 +15099,14367,179847.082322307,373289.37961866,27.1999999999971 +15100,15823,179846.839754857,373290.662100792,24.2256000000052 +15101,15830,179847.146822557,373287.888317775,24.2210999999952 +15102,2616,179842.500500001,373292.500300005,24.1300000000047 +15103,2595,179837.500900004,373287.500700004,24.070000000007 +15104,2657,179837.500300005,373292.500100009,24.0099999999948 +15105,2617,179837.500700008,373297.500599999,24.0299999999988 +15106,2620,179842.500399999,373302.500400003,24.3099999999977 +15107,15804,179845.923998974,373299.053253017,24.2746999999945 +15108,2619,179837.500600003,373302.500400003,24.0800000000017 +15109,2622,179842.500300005,373307.500100002,24.3000000000029 +15110,15790,179845.299589824,373304.749979194,24.3518999999942 +15111,15793,179845.41819796,373303.667871274,24.3371999999945 +15112,15795,179845.530627713,373302.642131243,24.3233000000037 +15113,15796,179845.670374945,373302.284924097,27.1999999999971 +15114,15801,179845.714380406,373301.883464061,27.1999999999971 +15115,15797,179845.633717585,373302.619347796,27.1999999999971 +15116,14389,179845.597060222,373302.953771502,27.1999999999971 +15117,15794,179845.535526719,373303.515139181,27.1999999999971 +15118,15791,179845.473993223,373304.076506868,27.1999999999971 +15119,15792,179845.412459727,373304.637874547,27.1999999999971 +15120,15785,179845.350926228,373305.199242234,27.1999999999971 +15121,15788,179845.160921074,373306.015107851,24.3690000000061 +15122,15789,179845.289392732,373305.760609917,27.1999999999971 +15123,15786,179845.227859229,373306.321977597,27.1999999999971 +15124,15784,179845.046371173,373307.060190909,24.3831999999966 +15125,14392,179845.104792237,373307.44471297,27.1999999999971 +15126,15782,179844.947789405,373307.959590502,24.395399999994 +15127,2651,179844.788899999,373309.409200002,24.4149999999936 +15128,15777,179844.686241522,373310.345730327,24.4277000000002 +15129,14393,179844.735476013,373310.813970391,27.1999999999971 +15130,15779,179844.773607008,373310.466102794,27.1999999999971 +15131,15781,179844.792672504,373310.292168994,27.1999999999971 +15132,15778,179844.811737999,373310.118235197,27.1999999999971 +15133,2642,179844.888000004,373309.422499999,27.1999999999971 +15134,14390,179845.045132801,373307.988983665,27.1999999999971 +15135,15783,179845.074962519,373307.716848318,27.1999999999971 +15136,2660,179832.500100005,373297.500100005,24.1399999999994 +15137,2553,179832.500900004,373282.500800002,24.2700000000041 +15138,2591,179837.500100002,373277.500900004,24.0899999999965 +15139,2551,179832.500300001,373277.500500005,24.3000000000029 +15140,20833,179824.346278019,373277.69622729,24.8806999999942 +15141,20827,179824.536937233,373276.057280246,24.8908999999985 +15142,2573,179824.705800004,373274.605700001,24.8999999999942 +15143,20798,179823.396670111,373272.832499579,24.8467999999993 +15144,2572,179824.408300005,373274.569600008,24.8999999999942 +15145,2556,179824.496000003,373274.681000002,27.0709999999963 +15146,2555,179824.594999999,373274.693000004,27.0709999999963 +15147,20824,179824.450112052,373275.075130336,27.0697999999975 +15148,20826,179824.547720656,373275.099397548,27.0703000000067 +15149,20825,179824.427168079,373275.272195499,27.0693000000028 +15150,20823,179824.326048695,373275.276113372,24.8794000000053 +15151,20820,179824.404224101,373275.469260667,27.0687000000034 +15152,20822,179824.500441313,373275.505795084,27.0694999999978 +15153,20821,179824.358336151,373275.86339099,27.0675999999949 +15154,20830,179824.453134649,373275.912427481,27.0687999999936 +15155,20832,179824.335392177,373276.060456157,27.0669999999955 +15156,20819,179824.248613603,373275.941257026,24.8600000000006 +15157,8880,179824.312448207,373276.257521328,27.0663999999961 +15158,20831,179824.429508634,373276.115508832,27.0684999999939 +15159,8879,179824.405882623,373276.318590172,27.0681000000041 +15160,20828,179824.311323937,373277.131385263,27.0666000000056 +15161,20816,179824.254599102,373276.754385665,27.0648999999976 +15162,20829,179824.225674558,373277.002817832,27.0641999999934 +15163,8878,179824.196750004,373277.251250003,27.0635000000038 +15164,20834,179824.264044587,373277.537782796,27.0659000000014 +15165,20836,179824.158069823,373277.583473001,27.0625 +15166,20815,179824.099592041,373277.221306402,24.8227999999945 +15167,20837,179824.054096024,373277.612103205,24.811400000006 +15168,20810,179822.9581526,373277.14238926,24.8411000000051 +15169,20814,179823.348615777,373277.965628248,24.8233000000037 +15170,2571,179824.0086,373278.002900004,24.8000000000029 +15171,20838,179824.138729736,373277.7495845,27.0620000000054 +15172,8881,179824.119389638,373277.915695999,27.0616000000009 +15173,8877,179824.216765247,373277.944180343,27.0651999999973 +15174,20835,179824.240404915,373277.740981575,27.0656000000017 +15175,20840,179824.108732577,373278.872793265,27.0635000000038 +15176,2557,179824.097000007,373278.108000003,27.0610000000015 +15177,10865,179823.333917141,373278.064969014,27.0580999999947 +15178,20843,179824.054716248,373279.337099724,27.0626999999949 +15179,20842,179824.161601398,373279.283746712,24.8708000000042 +15180,20839,179824.094581421,373279.859864675,24.8671999999933 +15181,2570,179822.877100002,373277.938999999,24.8399999999965 +15182,2558,179822.767000001,373278.033,27.0559999999969 +15183,20813,179822.898200423,373277.731618334,24.8402999999962 +15184,10868,179822.83534658,373277.361269601,27.0555000000022 +15185,20811,179822.852433227,373277.193336997,27.0553000000073 +15186,20812,179822.860976551,373277.109370697,27.0553000000073 +15187,10869,179822.869519874,373277.025404394,27.0552000000025 +15188,10867,179822.903693166,373276.689539194,27.0549000000028 +15189,10873,179822.961891554,373276.117548171,27.0544999999984 +15190,20809,179823.028262254,373276.453329254,24.8420000000042 +15191,20807,179823.093327295,373275.813849341,24.8427999999985 +15192,20817,179824.175684366,373276.567696761,24.8417999999947 +15193,20806,179823.165971644,373275.099877555,24.8438000000024 +15194,10872,179823.020089947,373275.545557145,27.0540000000037 +15195,20808,179822.996604145,373275.776382558,27.0541999999987 +15196,20805,179823.09244705,373274.834410183,27.0534999999945 +15197,20804,179823.231555723,373274.455296293,24.8445999999967 +15198,20802,179823.296168901,373273.820257422,24.8454999999958 +15199,20801,179823.164804146,373274.123263218,27.0528999999951 +15200,20803,179823.191634681,373273.859564759,27.0527000000002 +15201,20818,179824.283523653,373276.505953491,27.0657000000065 +15202,20796,179823.514745969,373271.672012467,24.8482999999978 +15203,2589,179837.500500001,373272.500400007,24.0800000000017 +15204,2614,179842.501000002,373272.500600003,24.0500000000029 +15205,2587,179842.500600003,373267.500399999,24.0500000000029 +15206,15868,179848.877001256,373272.259347234,24.1953999999969 +15207,15864,179848.712036058,373273.749509342,24.1978999999992 +15208,15859,179848.551740848,373275.19748662,24.2002000000066 +15209,15865,179848.930597946,373272.683656789,27.1999999999971 +15210,15869,179848.98194145,373272.219857372,27.1999999999971 +15211,15866,179849.174043845,373272.28138015,27.3849000000046 +15212,15856,179848.390051045,373276.658061523,24.2026000000042 +15213,2608,179848.231000002,373278.094799995,24.2050000000017 +15214,14361,179848.392245822,373277.546733707,27.1999999999971 +15215,15857,179848.486166462,373276.698323742,27.1999999999971 +15216,15858,179848.531824872,373276.285879277,27.1999999999971 +15217,14358,179848.577483278,373275.873434819,27.1999999999971 +15218,2607,179848.330499999,373278.104500003,27.1999999999971 +15219,15860,179848.65249595,373275.195825554,27.1999999999971 +15220,15820,179846.680703796,373292.098829973,24.2280000000028 +15221,2655,179846.543800004,373293.335500006,24.2299999999959 +15222,14376,179846.690939367,373292.915084142,27.1999999999971 +15223,15821,179846.757686667,373292.312138107,27.1999999999971 +15224,15822,179846.790222056,373292.018237337,27.1999999999971 +15225,14373,179847.03859644,373291.612435546,27.383600000001 +15226,14372,179846.822757453,373291.724336561,27.1999999999971 +15227,15825,179846.887648668,373291.138157088,27.1999999999971 +15228,15826,179847.133244656,373290.755653314,27.3837000000058 +15229,12443,179847.227892876,373289.898871079,27.3837000000058 +15230,15824,179846.952539876,373290.551977608,27.1999999999971 +15231,15827,179846.920632459,373290.840205733,27.1999999999971 +15232,2638,179846.647000004,373293.312000003,27.1999999999971 +15233,14377,179846.785749998,373293.533999998,27.1999999999971 +15234,2639,179846.832000006,373293.607999995,27.1999999999971 +15235,2654,179846.729600005,373293.632800005,24.2299999999959 +15236,14378,179846.815295555,373293.806196004,27.1999999999971 +15237,2653,179846.698200002,373294.004799999,24.2100000000064 +15238,14379,179846.800073892,373293.986799002,27.1999999999971 +15239,2640,179846.795000002,373294.047000002,27.1999999999971 +15240,14380,179846.606000002,373294.254749998,27.1999999999971 +15241,2641,179846.543000005,373294.324000001,27.1999999999971 +15242,2652,179846.447099999,373294.280800004,24.2100000000064 +15243,15833,179847.239932656,373287.955882754,27.1999999999971 +15244,15831,179847.279976677,373287.594154537,27.1999999999971 +15245,15840,179847.586776443,373284.822751265,27.1999999999971 +15246,15841,179847.812169012,373284.60983957,27.3840999999957 +15247,15839,179847.619894888,373284.523583591,27.1999999999971 +15248,24390,179848.071908589,373280.440424468,27.1999999999971 +15249,14363,179848.035745323,373280.767096866,27.1999999999971 +15250,15879,179849.397752002,373267.555306248,24.1876999999949 +15251,15882,179849.575183146,373265.952536788,24.1851000000024 +15252,15886,179849.713934045,373264.699173406,24.1830000000045 +15253,14351,179849.754161317,373265.244191471,27.1999999999971 +15254,15888,179849.819120985,373264.657393605,27.1999999999971 +15255,15889,179850.06898779,373264.179560777,27.3853999999992 +15256,15887,179849.88408066,373264.070595738,27.1999999999971 +15257,15892,179849.91656049,373263.777196806,27.1999999999971 +15258,15891,179849.949040327,373263.483797874,27.1999999999971 +15259,2599,179850.208000008,373262.921100002,27.385500000004 +15260,2606,179850.013999999,373262.896999996,27.1999999999971 +15261,2609,179849.918200001,373262.854000006,24.179999999993 +15262,15890,179849.82658989,373263.681531649,24.1814000000013 +15263,2612,179849.988000002,373261.993600003,24.2100000000064 +15264,2611,179850.160599999,373262.292300001,24.179999999993 +15265,2610,179850.144000005,373262.603300001,24.179999999993 +15266,14350,179850.071000002,373262.83375001,27.1999999999971 +15267,2605,179850.241999999,373262.644000005,27.1999999999971 +15268,14349,179850.250201676,373262.489808522,27.1999999999971 +15269,2600,179850.348999999,373262.549500003,27.385500000004 +15270,2601,179850.359000005,373262.361499999,27.385500000004 +15271,2602,179850.298999995,373261.979600005,27.385500000004 +15272,2604,179850.262000002,373262.267999999,27.1999999999971 +15273,2603,179850.090999998,373261.971999999,27.1999999999971 +15274,14347,179850.153873537,373261.403547157,27.1999999999971 +15275,15893,179850.099001292,373260.990010399,24.2122999999992 +15276,15894,179850.205147691,373260.939966772,27.1999999999971 +15277,14348,179850.407762043,373260.989961516,27.385500000004 +15278,15896,179850.462143064,373260.495142274,27.3853999999992 +15279,12453,179850.516524088,373260.000323027,27.3853999999992 +15280,14345,179850.631953411,373258.950018227,27.3853999999992 +15281,14346,179850.395919379,373259.215160023,27.1999999999971 +15282,14344,179850.34249416,373259.698188618,27.1999999999971 +15283,15898,179850.308157545,373260.008633155,27.1999999999971 +15284,15897,179850.237118516,373259.74125912,24.215200000006 +15285,15895,179850.273820929,373260.319077697,27.1999999999971 +15286,15899,179850.355420917,373258.671658382,24.2176000000036 +15287,15901,179850.441311594,373258.804759469,27.1999999999971 +15288,15903,179850.464007702,373258.599559199,27.1999999999971 +15289,15900,179850.486703806,373258.394358922,27.1999999999971 +15290,15904,179850.484293576,373257.506489389,24.2203000000009 +15291,14342,179850.577488247,373257.57355782,27.1999999999971 +15292,15905,179850.659594964,373256.831213731,27.1999999999971 +15293,12455,179850.864824187,373256.831099954,27.3852999999945 +15294,15907,179850.700709932,373256.459484681,27.1999999999971 +15295,14340,179850.741824903,373256.087755643,27.1999999999971 +15296,15906,179850.598845962,373256.470793478,24.2226999999984 +15297,15910,179850.799451035,373255.566745687,27.1999999999971 +15298,15912,179850.828264106,373255.306240719,27.1999999999971 +15299,15909,179850.857077166,373255.045735743,27.1999999999971 +15300,15911,179851.050429933,373255.142251626,27.3852000000043 +15301,14339,179851.112298518,373254.579302173,27.3852000000043 +15302,14341,179850.988561355,373255.705201071,27.3852000000043 +15303,14343,179850.747382723,373257.899713442,27.3852999999945 +15304,15902,179850.689668067,373258.424865831,27.3852999999945 +15305,14336,179851.428115666,373251.705645289,27.3849999999948 +15306,15921,179851.502428308,373251.029465888,27.3849999999948 +15307,15920,179851.576740947,373250.353286494,27.3849999999948 +15308,12458,179851.725366242,373249.000927698,27.3849000000046 +15309,15923,179851.470040973,373249.503801528,27.1999999999971 +15310,15924,179851.429755498,373249.868030891,27.1999999999971 +15311,15918,179851.389470033,373250.232260253,27.1999999999971 +15312,15927,179851.510326438,373249.13957217,27.1999999999971 +15313,14332,179851.550611909,373248.775342807,27.1999999999971 +15314,15926,179851.60558496,373248.278319903,27.1999999999971 +15315,14333,179851.849583123,373247.870663855,27.3849000000046 +15316,14334,179851.660558019,373247.781296995,27.1999999999971 +15317,15930,179851.689793516,373247.516972747,27.1999999999971 +15318,15929,179851.719029009,373247.252648503,27.1999999999971 +15319,15931,179851.911691558,373247.305531926,27.3847999999998 +15320,2513,179851.973800004,373246.740400005,27.3847999999998 +15321,2522,179851.777500007,373246.723999999,27.1999999999971 +15322,14331,179852.058747336,373245.967408169,27.3847999999998 +15323,15919,179851.266669355,373251.342526928,27.1999999999971 +15324,14337,179851.228328165,373251.689177703,27.1999999999971 +15325,20859,179820.789323192,373309.499497999,24.8974000000017 +15326,20857,179820.61811053,373311.081201009,24.8953000000038 +15327,2665,179827.500599999,373312.500500001,24.3999999999942 +15328,20855,179820.378513388,373313.294656016,24.8925000000017 +15329,2668,179822.5009,373317.500800002,24.8099999999977 +15330,2666,179827.500500005,373317.500400003,24.3500000000058 +15331,2669,179827.500500005,373322.5002,24.3099999999977 +15332,2670,179832.500500005,373322.500300001,24.1499999999942 +15333,2673,179827.500800002,373327.500700008,24.2299999999959 +15334,2672,179822.500100002,373327.500600003,24.7599999999948 +15335,2679,179819.321900003,373323.055900004,24.8800000000047 +15336,20867,179819.128961101,373324.838315122,24.8776999999973 +15337,20865,179818.99524555,373326.073610947,24.876099999994 +15338,20868,179818.805472542,373327.826778844,24.873900000006 +15339,20871,179818.664102681,373329.132786974,24.872199999998 +15340,2685,179822.500700004,373332.500500001,24.7100000000064 +15341,20873,179818.514468141,373330.5151462,24.8703999999998 +15342,20874,179818.384315558,373331.717526481,24.8689000000013 +15343,20869,179818.356505264,373331.04526392,27.1999999999971 +15344,20875,179817.94475263,373334.849131968,27.1999999999971 +15345,20878,179817.738876317,373336.751065984,27.1999999999971 +15346,2715,179817.533000004,373338.653000005,27.1999999999971 +15347,20880,179817.273853891,373340.975729793,27.1999999999971 +15348,8872,179817.109555975,373342.448334027,27.1999999999971 +15349,20879,179817.238368068,373342.195632506,24.886599999998 +15350,20881,179817.374428052,373340.976118464,24.8773999999976 +15351,2690,179822.500100002,373342.500100005,24.5399999999936 +15352,20882,179817.004993748,373344.287380826,24.9023000000016 +15353,2693,179822.500399999,373347.500700001,24.4799999999959 +15354,20885,179816.775508836,373346.344268255,24.9177999999956 +15355,20887,179816.599182036,373347.924696274,24.9296999999933 +15356,2712,179827.500500005,373347.500500005,24.1100000000006 +15357,2696,179827.500900008,373352.500600003,24.0899999999965 +15358,2694,179832.5002,373347.500900004,24.2799999999988 +15359,2695,179832.500500005,373352.500500001,24.3800000000047 +15360,2698,179832.500100005,373357.500300005,24.4400000000023 +15361,2744,179839.6941,373356.030499998,25.0200000000041 +15362,2737,179839.578299999,373356.899,25.0200000000041 +15363,15676,179839.491313618,373357.698789883,25.0200000000041 +15364,15677,179839.605703834,373357.571940735,27.1999999999971 +15365,2735,179839.674000002,373356.944000002,27.1999999999971 +15366,14446,179839.738250002,373356.877750002,27.1999999999971 +15367,2738,179839.836500004,373356.632800005,25.0200000000041 +15368,2734,179839.931000002,373356.679000005,27.1999999999971 +15369,14445,179839.953209184,373356.519909747,27.1999999999971 +15370,2739,179839.876200005,373356.348100003,25.0200000000041 +15371,14444,179839.934250005,373356.24825,27.1999999999971 +15372,2732,179839.797000002,373356.008999996,27.1999999999971 +15373,14442,179839.858938318,373355.440841496,27.1999999999971 +15374,2733,179839.98,373356.328000005,27.1999999999971 +15375,15680,179839.880992971,373354.316140305,24.997000000003 +15376,15681,179839.955230523,373354.557555713,27.1999999999971 +15377,14440,179840.044753268,373353.736365974,27.1999999999971 +15378,15682,179840.062349875,373352.65256273,24.9747999999963 +15379,15687,179840.243097853,373350.99457068,24.9526000000042 +15380,14438,179840.2914345,373351.473565754,27.1999999999971 +15381,15688,179840.343149338,373350.999186903,27.1999999999971 +15382,15690,179840.440012477,373350.110663969,27.1999999999971 +15383,15692,179840.49526104,373349.603870422,27.1999999999971 +15384,15689,179840.625310741,373350.216538552,27.4226999999955 +15385,14437,179840.504173059,373351.327004898,27.4159999999974 +15386,15683,179840.168093879,373352.604965862,27.1999999999971 +15387,15686,179840.137258731,373352.887815889,27.1999999999971 +15388,15684,179840.106423575,373353.170665912,27.1999999999971 +15389,15678,179839.571555749,373357.8859111,27.1999999999971 +15390,15673,179839.537407666,373358.199881468,27.1999999999971 +15391,15674,179839.469111498,373358.827822201,27.1999999999971 +15392,15672,179839.324593533,373359.231685359,25.0200000000041 +15393,14456,179839.400815327,373359.455762938,27.1999999999971 +15394,15671,179839.224855796,373361.073601287,27.1999999999971 +15395,15670,179839.115308445,373361.155941609,25.0200000000041 +15396,14453,179839.137436751,373361.877364952,27.1999999999971 +15397,15664,179838.955287278,373362.627244338,25.0200000000041 +15398,2702,179832.500599999,373362.500500005,24.5500000000029 +15399,15669,179838.914390273,373363.003268886,25.0200000000041 +15400,15663,179838.747418918,373364.538474616,25.0200000000041 +15401,2705,179832.5002,373367.500400003,24.6100000000006 +15402,15661,179838.562161133,373366.241813652,25.0200000000041 +15403,15659,179838.405285735,373367.684192892,25.0200000000041 +15404,15660,179838.511275046,373367.634531926,27.1999999999971 +15405,14447,179838.473771688,373367.979351904,27.1999999999971 +15406,12425,179838.545805953,373369.212533381,27.3883999999962 +15407,15658,179838.340758633,373369.202324122,27.1999999999971 +15408,14460,179838.254764628,373369.992985446,27.1999999999971 +15409,14461,179838.429730941,373370.279155377,27.3883999999962 +15410,15656,179838.210746258,373370.39770693,27.1999999999971 +15411,15654,179838.079259861,373370.681813695,25.0200000000041 +15412,15655,179838.166727893,373370.802428409,27.1999999999971 +15413,14462,179838.078691155,373371.611871362,27.1999999999971 +15414,14463,179838.32721547,373371.221177693,27.3885000000009 +15415,2725,179838.2247,373372.163200002,27.3885000000009 +15416,12424,179838.157885749,373372.777161155,27.3885000000009 +15417,15653,179837.985451419,373372.469152696,27.1999999999971 +15418,14464,179837.950902835,373372.786805391,27.1999999999971 +15419,14465,179838.057664372,373373.698102888,27.3885000000009 +15420,15650,179837.842487328,373373.783618517,27.1999999999971 +15421,15649,179837.732021309,373373.874461476,25.0200000000041 +15422,15651,179837.791386344,373374.253460262,27.1999999999971 +15423,14466,179837.740285356,373374.72330201,27.1999999999971 +15424,15647,179837.579090293,373375.280565158,25.0200000000041 +15425,2709,179832.500800002,373372.500799999,24.5399999999936 +15426,2777,179832.500599999,373377.500399999,24.6999999999971 +15427,2774,179827.500500005,373377.500200003,24.3099999999977 +15428,2780,179827.500500005,373382.500700001,24.3600000000006 +15429,2779,179832.500900004,373382.500599999,24.8500000000058 +15430,2807,179832.5002,373387.500700001,24.9199999999983 +15431,15623,179836.5305227,373384.921479017,25.0200000000041 +15432,15625,179836.682739336,373383.521943633,25.0200000000041 +15433,15630,179836.814443041,373382.311011627,25.0200000000041 +15434,15632,179836.982803613,373380.763042957,25.0200000000041 +15435,15631,179836.936298948,373382.115456343,27.1999999999971 +15436,14473,179837.064084414,373380.940548569,27.1999999999971 +15437,15634,179837.098929755,373380.620167308,27.1999999999971 +15438,15633,179837.165088788,373380.011876233,27.1999999999971 +15439,15635,179837.128872078,373379.420036025,25.0200000000041 +15440,15636,179837.222088907,373379.487795655,27.1999999999971 +15441,15638,179837.250588965,373379.225755364,27.1999999999971 +15442,14471,179837.279089022,373378.963715073,27.1999999999971 +15443,15639,179837.275643766,373378.070563503,25.0200000000041 +15444,15643,179837.427010939,373376.67883832,25.0200000000041 +15445,15642,179837.422383241,373377.64621399,27.1999999999971 +15446,15640,179837.37032998,373378.124811292,27.1999999999971 +15447,15641,179837.619749695,373377.722133651,27.3886000000057 +15448,14467,179837.732314132,373376.687770639,27.3886000000057 +15449,14470,179837.523696654,373376.714700256,27.1999999999971 +15450,15645,179837.577843826,373376.216850691,27.1999999999971 +15451,15646,179837.788596347,373376.170589138,27.3886000000057 +15452,14469,179837.844878566,373375.65340763,27.3886000000057 +15453,12421,179837.957442999,373374.619044621,27.3886000000057 +15454,15648,179837.682088368,373375.258387014,27.1999999999971 +15455,15644,179837.631990999,373375.719001133,27.1999999999971 +15456,12423,179837.507185262,373378.75649666,27.3886999999959 +15457,15637,179837.447405595,373379.305816513,27.3886999999959 +15458,14472,179837.387625929,373379.855136365,27.3886999999959 +15459,14475,179837.270522717,373380.931206509,27.3886999999959 +15460,14474,179837.153419513,373382.007276647,27.3888000000006 +15461,14476,179836.874538928,373382.683301233,27.1999999999971 +15462,14477,179837.036316302,373383.083346792,27.3888000000006 +15463,15627,179836.823847715,373383.149375416,27.1999999999971 +15464,15629,179836.798502106,373383.382412508,27.1999999999971 +15465,15626,179836.773156494,373383.615449596,27.1999999999971 +15466,14478,179836.671774056,373384.547597963,27.1999999999971 +15467,12420,179836.919213098,373384.159416936,27.3888000000006 +15468,15628,179836.977764696,373383.621381868,27.3888000000006 +15469,14479,179836.814884536,373385.118099887,27.3888000000006 +15470,15624,179836.617607806,373385.045622941,27.1999999999971 +15471,15620,179836.556281812,373385.609477211,27.1999999999971 +15472,15622,179836.753613405,373385.681124911,27.3889000000054 +15473,15621,179836.493362408,373386.187981952,27.1999999999971 +15474,15619,179836.388271779,373386.229386054,25.0200000000041 +15475,14481,179836.440789573,373386.671356458,27.1999999999971 +15476,14482,179836.692342266,373386.244149942,27.3889000000054 +15477,2754,179836.569800004,373387.370200004,27.3889000000054 +15478,2755,179836.366,373387.359000001,27.1999999999971 +15479,14483,179836.506250005,373387.588500001,27.1999999999971 +15480,2756,179836.552999999,373387.664999999,27.1999999999971 +15481,2753,179836.637000002,373387.766000003,27.3889999999956 +15482,2752,179836.623500001,373387.957000002,27.5760000000009 +15483,2751,179836.476700004,373388.314600006,27.5731999999989 +15484,12419,179836.407095626,373388.944845811,27.5730999999942 +15485,2758,179836.283,373388.305,27.1999999999971 +15486,14486,179836.20413832,373389.020921603,27.1999999999971 +15487,15618,179836.155010078,373389.466917217,27.1999999999971 +15488,15617,179836.049091332,373389.515406091,25.0451999999932 +15489,15614,179836.107178714,373389.901139569,27.1999999999971 +15490,15610,179835.903509602,373390.83694198,25.0402000000031 +15491,15615,179835.789499443,373391.871883139,25.0362000000023 +15492,15612,179835.965570919,373391.18668244,27.1999999999971 +15493,14488,179836.010219108,373390.781357534,27.1999999999971 +15494,12417,179836.198282503,373390.835583236,27.5727000000043 +15495,14487,179836.302689064,373389.890214518,27.5728999999992 +15496,10783,179836.824508075,373392.771676239,27.6404000000039 +15497,15613,179836.061566606,373392.07350288,27.5724000000046 +15498,14489,179835.93393876,373393.229133043,27.5721000000049 +15499,12416,179836.515317548,373395.027797651,27.618100000007 +15500,14491,179835.801766887,373394.425907955,27.5718999999954 +15501,15606,179835.735680956,373395.024295405,27.5718000000052 +15502,12415,179835.669595018,373395.622682858,27.5715999999957 +15503,10784,179836.206127021,373397.283919059,27.5957999999955 +15504,14493,179835.536240347,373396.830167629,27.5714000000007 +15505,14492,179835.433106147,373396.020500313,27.1999999999971 +15506,15599,179835.320191346,373397.045562696,27.1999999999971 +15507,15598,179835.208636999,373397.144732799,25.0160999999935 +15508,15602,179835.291962642,373397.301828295,27.1999999999971 +15509,15600,179835.263733942,373397.558093887,27.1999999999971 +15510,14494,179835.207276538,373398.070625078,27.1999999999971 +15511,14495,179835.440520171,373397.69688382,27.5712000000058 +15512,15601,179835.488380257,373397.263525724,27.571299999996 +15513,2747,179836,373398.788000003,27.5810000000056 +15514,2748,179836.370000005,373399.971000005,27.7709999999934 +15515,14587,179836.459667157,373403.086678959,27.9087 +15516,15595,179835.127113812,373401.546394814,27.1999999999971 +15517,14588,179835.281567007,373403.797854379,27.1999999999971 +15518,24369,179835.318312466,373404.333491798,27.1999999999971 +15519,15591,179835.200668827,373404.079342138,24.9980999999971 +15520,15593,179835.263334353,373404.992830906,24.9953999999998 +15521,2791,179822.500600003,373402.500600003,23.7899999999936 +15522,2806,179822.5009,373407.500800002,23.6999999999971 +15523,2795,179827.500500005,373412.500599999,25.1999999999971 +15524,2793,179822.500600003,373412.500200003,23.6499999999942 +15525,2811,179822.500700004,373417.500500001,23.6600000000035 +15526,2815,179827.500599999,373422.500600003,23.6499999999942 +15527,2813,179822.500300005,373422.500300005,23.4499999999971 +15528,2812,179817.500700004,373417.500700004,23.5299999999988 +15529,2988,179817.5009,373422.5009,23.25 +15530,2818,179822.500600003,373427.500800002,23.6300000000047 +15531,2817,179817.500700004,373427.500400003,23.4199999999983 +15532,2819,179817.500100002,373432.500800002,23.4100000000035 +15533,15554,179824.562812071,373431.805859782,23.4524999999994 +15534,23415,179825.00555604,373430.409429889,23.5262999999977 +15535,2893,179825.448300004,373429.013,23.6000000000058 +15536,2894,179826.3618,373429.380400002,23.6399999999994 +15537,2895,179830.4276,373429.673500001,24.9799999999959 +15538,2963,179830.333999999,373429.767000001,27.1999999999971 +15539,2896,179830.588000003,373431.9274,24.9799999999959 +15540,15570,179835.868823946,373431.698675122,24.9692000000068 +15541,24357,179836.028075755,373429.957552977,24.9625999999989 +15542,24361,179836.039312694,373429.834697977,24.9621000000043 +15543,24358,179836.107701659,373429.086991891,24.9593000000023 +15544,15572,179836.187327571,373428.216430821,24.9560000000056 +15545,15573,179836.440510314,373425.448348761,24.9453999999969 +15546,2814,179832.500500005,373422.500500001,24.429999999993 +15547,3004,179836.569700003,373424.035900004,24.9400000000023 +15548,15575,179836.460298292,373422.441141266,24.9446000000025 +15549,15577,179836.34594981,373420.774273124,24.9495000000024 +15550,15579,179836.257337838,373419.482568264,24.9532999999938 +15551,15581,179836.098139647,373417.16192187,24.9600000000064 +15552,15584,179835.96163252,373415.172044996,24.9658000000054 +15553,15586,179835.837772131,373413.366520915,24.9710999999952 +15554,2761,179835.744700003,373412.009800002,24.9750000000058 +15555,15590,179835.608695205,373410.027229246,24.9808000000048 +15556,15588,179835.516920805,373408.689414326,24.9847000000009 +15557,24373,179835.390127581,373406.841122616,24.9900000000052 +15558,24374,179835.544640359,373407.632666584,27.1999999999971 +15559,24371,179835.481446214,373406.711487461,27.1999999999971 +15560,24372,179835.41825207,373405.790308345,27.1999999999971 +15561,24375,179836.554991681,373406.398935162,28.054999999993 +15562,24368,179836.523216844,373405.294849761,28.0062000000034 +15563,15592,179835.355057932,373404.869129226,27.1999999999971 +15564,24367,179836.586766522,373407.503020559,28.1037999999971 +15565,14586,179836.71386588,373411.91936215,28.2988999999943 +15566,15589,179835.726417255,373410.282422852,27.1999999999971 +15567,2772,179835.844999999,373412.011000004,27.1999999999971 +15568,21992,179836.74176807,373412.888884079,28.3417999999947 +15569,15587,179835.906603284,373412.908989094,27.1999999999971 +15570,21993,179835.937404919,373413.357983645,27.1999999999971 +15571,15585,179835.968206547,373413.806978188,27.1999999999971 +15572,21991,179836.769670263,373413.858405989,28.3846000000049 +15573,21994,179836.029809833,373414.704967283,27.1999999999971 +15574,15582,179836.091413107,373415.602956377,27.1999999999971 +15575,21990,179836.854057435,373416.79062039,28.5141000000003 +15576,21995,179836.173586871,373416.800800864,27.1999999999971 +15577,15583,179836.212365538,373417.366076294,27.1999999999971 +15578,14498,179836.333317973,373419.129196204,27.1999999999971 +15579,15580,179836.362452406,373419.553887952,27.1999999999971 +15580,15578,179836.391586836,373419.978579696,27.1999999999971 +15581,3001,179836.937000003,373419.790000003,28.6499999999942 +15582,15576,179836.4498557,373420.827963188,27.1999999999971 +15583,24370,179835.667125873,373409.418134276,27.1999999999971 +15584,14497,179835.607834507,373408.553845704,27.1999999999971 +15585,15568,179835.725117907,373433.269833166,24.9752000000008 +15586,15569,179835.853044711,373432.969044495,27.1999999999971 +15587,14501,179835.77,373433.877000004,27.1999999999971 +15588,2992,179835.710000005,373434.533,27.1999999999971 +15589,3000,179835.611000001,373434.517499998,24.9799999999959 +15590,2999,179835.382400002,373435.5418,24.9799999999959 +15591,2998,179834.950599998,373435.4844,24.9799999999959 +15592,2898,179831.232999995,373434.915300004,24.9799999999959 +15593,2902,179833.685800005,373436.327300001,24.9799999999959 +15594,2901,179832.269800007,373436.158500001,24.9799999999959 +15595,23411,179831.194136415,373435.411390204,24.7915999999968 +15596,2961,179831.123,373435.039000001,27.1999999999971 +15597,23410,179831.10122022,373435.316967607,27.1999999999971 +15598,23412,179830.623377405,373435.137974367,27.1999999999971 +15599,2897,179830.591800008,373435.042300001,23.6999999999971 +15600,2962,179830.492000002,373435.164000005,27.1999999999971 +15601,23413,179830.397570368,373431.938451119,27.1999999999971 +15602,23420,179824.142115079,373433.545522381,27.1999999999971 +15603,23414,179824.748073433,373431.598004896,27.1999999999971 +15604,2964,179826.339000005,373429.478999998,27.1999999999971 +15605,23416,179825.129520856,373430.372053437,27.1999999999971 +15606,2965,179825.511000004,373429.146000002,27.1999999999971 +15607,23419,179824.087737583,373433.304261278,23.3733999999968 +15608,23417,179823.916100156,373434.271922167,27.1999999999971 +15609,23418,179823.61266309,373434.802662764,23.2942999999941 +15610,23421,179823.328728702,373436.159702379,27.1999999999971 +15611,23408,179830.997762632,373436.63736023,27.1999999999971 +15612,2876,179830.866,373438.319000002,27.1999999999971 +15613,23405,179831.072170742,373436.968270976,24.2002999999968 +15614,23409,179831.113721784,373436.437875692,24.4017000000022 +15615,15558,179832.203547828,373436.882137585,24.5703999999969 +15616,15555,179831.155272819,373435.907480404,24.6031999999977 +15617,23404,179831.046657786,373436.013328679,27.1999999999971 +15618,15559,179832.321750004,373436.687750001,27.1999999999971 +15619,2874,179832.360000003,373436.27,27.1999999999971 +15620,2873,179833.577000007,373436.414999999,27.1999999999971 +15621,14503,179833.494122826,373437.283029374,27.1999999999971 +15622,15557,179832.283500005,373437.105499998,27.1999999999971 +15623,23407,179832.245249998,373437.523249999,27.1999999999971 +15624,23406,179832.163992878,373437.314175498,24.325800000006 +15625,15556,179832.124437917,373437.746213414,24.0813000000053 +15626,2899,179830.973099995,373438.232900005,23.7200000000012 +15627,2900,179832.066000003,373438.384500001,23.7200000000012 +15628,14504,179832.207000006,373437.941000003,27.1999999999971 +15629,2875,179832.156000003,373438.498000003,27.1999999999971 +15630,2960,179830.078000005,373443.945,28.1999999999971 +15631,2872,179833.368000004,373438.604000002,27.1999999999971 +15632,2959,179829.786000002,373444.977000002,28.2100000000064 +15633,2986,179829.324000001,373448.838000003,28.1940000000031 +15634,2975,179821.732000005,373445.385000002,27.1999999999971 +15635,23431,179821.51150975,373447.419602353,27.1999999999971 +15636,23429,179821.443050005,373447.298650004,21.3249999999971 +15637,2877,179821.622400001,373445.477200009,21.4799999999959 +15638,2974,179820.891000003,373445.322999999,27.1999999999971 +15639,2878,179820.857100006,373445.420800004,21.4799999999959 +15640,2879,179820.703400001,373445.317000002,21.4799999999959 +15641,2984,179817.5009,373447.500800002,21.2299999999959 +15642,23430,179821.353375003,373448.209375005,21.2474999999977 +15643,2846,179821.263700001,373449.120100003,21.1699999999983 +15644,23428,179821.3547366,373448.866246931,27.1999999999971 +15645,23432,179821.159934152,373450.663811732,27.1999999999971 +15646,2976,179821.095000003,373451.263000008,27.1999999999971 +15647,2943,179820.308000002,373453.355000004,27.1999999999971 +15648,2942,179820.247000005,373453.636999998,27.1999999999971 +15649,2938,179819.766000003,373457.579000004,27.1999999999971 +15650,2937,179819.690000005,373458.094000004,27.1999999999971 +15651,21985,179818.976485487,373460.611970138,27.1999999999971 +15652,21984,179818.770139363,373462.488290165,27.1999999999971 +15653,9859,179818.785443403,373461.484076891,21.4043999999994 +15654,21976,179818.618616123,373463.024699293,21.397100000002 +15655,3005,179812.500400003,373462.500399999,21.5299999999988 +15656,21975,179818.451788839,373464.565321691,21.3898000000045 +15657,23131,179809.090771455,373464.068835028,21.4891000000061 +15658,23133,179808.944554523,373465.422745392,21.4850000000006 +15659,23134,179808.811026327,373466.659163196,21.4812999999995 +15660,21893,179808.740977943,373466.376125902,27.1999999999971 +15661,23135,179808.524988975,373468.376062952,27.1999999999971 +15662,23132,179808.88333407,373465.057987817,27.1999999999971 +15663,23120,179809.025690198,373463.739849739,27.1999999999971 +15664,23121,179802.662252806,373460.270687066,28.126099999994 +15665,23122,179809.132839587,373462.747706346,27.1999999999971 +15666,23119,179809.239988975,373461.755562954,27.1999999999971 +15667,23125,179809.364741731,373460.600422218,27.1999999999971 +15668,23124,179809.489494491,373459.445281476,27.1999999999971 +15669,23127,179809.614247248,373458.290140741,27.1999999999971 +15670,2932,179809.318,373456.909000002,27.1999999999971 +15671,2871,179803.458000001,373454.067000002,28.1720000000059 +15672,23482,179801.425354835,373457.260579158,28.5194000000047 +15673,2977,179801.967,373453.727000002,28.4900000000052 +15674,12078,179803.852250002,373450.843250003,28.1754999999976 +15675,23484,179804.443624999,373446.007625002,28.1808000000019 +15676,2870,179805.035000004,373441.172000002,28.1860000000015 +15677,2828,179810.194000002,373444.115000002,27.1999999999971 +15678,2836,179810.871000003,373442.965999998,27.1999999999971 +15679,20967,179811.20514866,373441.11078443,27.1999999999971 +15680,20966,179811.129297316,373440.307568859,27.1999999999971 +15681,12077,179805.342121009,373437.911430035,28.1870999999956 +15682,20961,179810.926522359,373438.160316031,27.1999999999971 +15683,20963,179810.74928353,373436.283474054,27.1999999999971 +15684,20958,179810.572044712,373434.406632066,27.1999999999971 +15685,12076,179805.994000759,373430.990706682,28.1894999999931 +15686,20959,179810.484072737,373433.47506699,27.1999999999971 +15687,8865,179810.396100756,373432.543501921,27.1999999999971 +15688,20955,179810.252300382,373431.020750958,27.1999999999971 +15689,2842,179810.1085,373429.498,27.1999999999971 +15690,23488,179806.329500381,373427.42885334,28.1907999999967 +15691,20952,179809.855982546,373426.82400706,27.1999999999971 +15692,2905,179810.208899997,373429.497100003,24.3500000000058 +15693,20953,179809.951742455,373426.774050198,24.4815999999992 +15694,23490,179809.860711575,373425.810121302,24.5282000000007 +15695,2982,179812.500700001,373427.500700001,23.8500000000058 +15696,20951,179809.769680709,373424.846192405,24.5746999999974 +15697,23489,179809.753099196,373425.734540369,27.1999999999971 +15698,20950,179809.650215842,373424.64507369,27.1999999999971 +15699,20949,179809.651687626,373423.596759781,24.6350999999995 +15700,8866,179809.525956225,373423.329246446,27.1999999999971 +15701,2869,179806.664999999,373423.867000002,28.1919999999955 +15702,20948,179809.465811942,373422.692358203,27.1999999999971 +15703,20947,179809.554428983,373422.566884823,24.6848999999929 +15704,20945,179809.405667655,373422.055469967,27.1999999999971 +15705,20944,179809.459632844,373421.563085392,24.7333999999973 +15706,2816,179812.500900004,373422.500700004,24.2700000000041 +15707,20942,179809.345114119,373420.350442894,24.7920000000013 +15708,20940,179809.213702992,373418.958926138,24.8592000000062 +15709,2904,179809.036300004,373417.080400005,24.9499999999971 +15710,8867,179809.08348906,373418.64381161,27.1999999999971 +15711,20941,179809.190366339,373419.775571357,27.1999999999971 +15712,2868,179806.771000005,373420.183000002,28.1870000000054 +15713,20943,179809.285379078,373420.781693481,27.1999999999971 +15714,20946,179809.345523369,373421.418581724,27.1999999999971 +15715,2979,179805.551000003,373421.136000004,28.5899999999965 +15716,23491,179805.593955312,373419.520968907,28.5722999999998 +15717,2980,179805.647999998,373417.488999996,28.5500000000029 +15718,2989,179804.923,373420.051000003,28.7559999999939 +15719,2981,179805.431000005,373416.342999998,28.5399999999936 +15720,2843,179808.936000004,373417.082000002,27.1999999999971 +15721,2797,179809.071000002,373414.883000005,27.1999999999971 +15722,20938,179809.27290022,373413.040777221,27.1999999999971 +15723,20934,179809.474800434,373411.198554434,27.1999999999971 +15724,20935,179809.621859495,373409.856725503,27.1999999999971 +15725,20932,179809.768918552,373408.514896579,27.1999999999971 +15726,8868,179810.008096177,373406.332539007,27.1999999999971 +15727,2798,179810.260500003,373404.029500008,27.1999999999971 +15728,8869,179811.152625002,373395.889375001,27.1999999999971 +15729,2801,179810.360100001,373404.039299998,25.5249999999942 +15730,20930,179810.117802016,373406.250050139,25.5769 +15731,2805,179812.500800002,373407.500500005,25.2100000000064 +15732,20931,179809.891025841,373408.319177795,25.6255999999994 +15733,20936,179809.713860307,373409.935653124,25.6634999999951 +15734,2794,179812.500100005,373412.500599999,25.0200000000041 +15735,20933,179809.680546481,373410.239611667,25.6707000000024 +15736,20937,179809.549362745,373411.436544731,25.6987999999983 +15737,20939,179809.372589331,373413.04944234,25.736699999994 +15738,2802,179809.170700002,373414.891500004,25.7799999999988 +15739,2796,179817.500200003,373412.500800002,23.7599999999948 +15740,2792,179817.500399999,373407.500599999,23.9799999999959 +15741,2790,179817.5009,373402.500300001,24.1499999999942 +15742,2789,179822.500799999,373397.500799999,23.8000000000029 +15743,2787,179827.500599999,373397.500600003,24.6999999999971 +15744,2786,179822.500300005,373392.500500001,23.8600000000006 +15745,2785,179827.500900008,373392.500200003,24.5599999999977 +15746,15603,179835.391983975,373395.480378263,25.0225000000064 +15747,15608,179835.578679774,373393.785624374,25.0289000000048 +15748,15611,179835.85767021,373392.166225895,27.1999999999971 +15749,15616,179835.894957118,373391.827728111,27.1999999999971 +15750,14490,179835.705121305,373393.551094253,27.1999999999971 +15751,15609,179835.636165489,373394.177088439,27.1999999999971 +15752,15604,179835.567209676,373394.803082626,27.1999999999971 +15753,15607,179835.529646605,373395.144087449,27.1999999999971 +15754,15605,179835.492083531,373395.485092267,27.1999999999971 +15755,2763,179835.0317,373398.750900008,25.0099999999948 +15756,2762,179834.919700004,373399.983600006,25.0099999999948 +15757,2760,179835.02,373399.985000003,27.1999999999971 +15758,2759,179835.131999999,373398.754000004,27.1999999999971 +15759,14496,179835.150819134,373398.583156269,27.1999999999971 +15760,2771,179835.344800003,373398.5636,27.5709999999963 +15761,2750,179835.211300004,373398.765999999,27.4210000000021 +15762,2767,179835.121000003,373399.988000005,27.4930000000022 +15763,2749,179835.070500005,373399.986499999,27.4930000000022 +15764,15596,179835.073556911,373400.765697408,27.1999999999971 +15765,15594,179834.989942208,373401.007535536,25.0069999999978 +15766,15597,179835.017077316,373401.403089784,25.0059000000037 +15767,2783,179827.5002,373387.500800002,24.4600000000064 +15768,2809,179822.500799999,373387.500599999,23.9400000000023 +15769,2778,179822.500200003,373382.500100005,24.0099999999948 +15770,2776,179822.5009,373377.500300005,24.070000000007 +15771,2775,179817.500399999,373377.500300005,24.5299999999988 +15772,2710,179817.501000002,373372.5009,24.6399999999994 +15773,20914,179813.342887618,373377.111860055,25.1490999999951 +15774,20912,179813.19686095,373378.420706064,25.1588999999949 +15775,2707,179822.500300005,373372.500200003,24.1499999999942 +15776,2708,179827.500100005,373372.500399999,24.2200000000012 +15777,2703,179827.500700001,373367.500300001,24.1600000000035 +15778,2743,179837.920600001,373372.140600003,25.0200000000041 +15779,15652,179837.873455331,373372.574065369,25.0200000000041 +15780,2736,179838.020000003,373372.151500002,27.1999999999971 +15781,15657,179838.236256756,373369.238317344,25.0200000000041 +15782,2788,179817.500200003,373397.500799999,24.2799999999988 +15783,20929,179811.257137857,373395.853876702,25.332699999999 +15784,45,179811.549400002,373393.186999999,25.2700000000041 +15785,23487,179804.867458668,373427.351763297,28.5709000000061 +15786,23486,179804.456113838,373431.092315588,28.559500000003 +15787,2820,179812.500300001,373432.500900004,23.5299999999988 +15788,126,179817.500100002,373437.501000002,23.3800000000047 +15789,20964,179810.858561393,373436.376917157,24.0175000000017 +15790,20962,179811.006400127,373437.942507278,23.9419000000053 +15791,20968,179811.229990356,373440.310294453,23.8274999999994 +15792,2821,179817.500600003,373442.500399999,22.6399999999994 +15793,20965,179811.287788671,373440.922369961,23.797900000005 +15794,2906,179811.3814,373441.913700003,23.75 +15795,2908,179811.527800005,373442.372099999,23.75 +15796,2909,179811.450399995,373442.894600004,22.5099999999948 +15797,2915,179811.461200003,373443.482700001,21.5800000000017 +15798,2916,179811.368200004,373444.0834,21.3800000000047 +15799,2880,179820.572700001,373445.136399999,21.4799999999959 +15800,2881,179820.665200002,373444.434799999,22.8600000000006 +15801,2973,179820.677000005,373445.109999999,27.1999999999971 +15802,2972,179820.760000005,373444.481000002,27.1999999999971 +15803,2971,179821.306000002,373444.367000006,27.1999999999971 +15804,2883,179821.013400007,373444.250800002,22.8600000000006 +15805,2884,179821.220900003,373444.262200005,22.8600000000006 +15806,2886,179821.030499998,373444.160999998,22.8600000000006 +15807,2882,179820.830600001,373444.266500004,22.8600000000006 +15808,2887,179820.866000004,373444.066200003,22.8600000000006 +15809,2969,179821.059000004,373444.062000003,27.1999999999971 +15810,2968,179820.815000005,373443.829000004,27.1999999999971 +15811,2888,179820.707800005,373443.852200009,22.8600000000006 +15812,2889,179820.784299999,373443.493800003,22.8600000000006 +15813,2967,179820.929000001,373443.375,27.1999999999971 +15814,2890,179820.852299999,373443.288400002,22.8600000000006 +15815,2892,179821.004500005,373443.028900001,22.8600000000006 +15816,2891,179820.996700004,373443.259500001,22.8600000000006 +15817,2966,179821.094000004,373443.342000004,27.1999999999971 +15818,23426,179821.922060404,373440.680658486,27.1999999999971 +15819,2970,179821.351000004,373444.073000003,27.1999999999971 +15820,2885,179821.235200003,373444.168699998,22.8600000000006 +15821,23424,179822.710212871,373438.147578921,27.1999999999971 +15822,23425,179822.387401506,373438.667180497,23.0902999999962 +15823,23427,179821.695950758,373440.848040249,22.975099999996 +15824,23422,179822.976028256,373436.810631208,23.1882999999943 +15825,23423,179823.294345673,373435.806646988,23.2412999999942 +15826,2983,179809.8255,373447.869399998,21.179999999993 +15827,2948,179810.5009,373450.5647,21.4199999999983 +15828,2822,179812.5002,373452.5002,21.4600000000064 +15829,2823,179817.500200003,373452.500400003,21.4400000000023 +15830,2865,179820.030700002,373451.536000002,21.4700000000012 +15831,2863,179819.9153,373451.775600001,21.4700000000012 +15832,2862,179819.7214,373453.096099999,21.4700000000012 +15833,2855,179819.643000003,373453.8277,21.4700000000012 +15834,2854,179819.256400004,373457.428300001,21.4400000000023 +15835,2939,179819.360000003,373457.400000002,27.1999999999971 +15836,2940,179819.741000004,373453.852000009,27.1999999999971 +15837,2941,179819.807000004,373453.686000001,27.1999999999971 +15838,2856,179819.729900002,373453.609400004,21.4700000000012 +15839,2857,179819.937300004,373453.5253,21.4700000000012 +15840,2861,179819.823400002,373453.381700002,21.4700000000012 +15841,2944,179819.899,373453.296000004,27.1999999999971 +15842,2945,179819.824000005,373453.085999999,27.1999999999971 +15843,21988,179820.035500001,373451.997750003,27.1999999999971 +15844,2947,179820.734000005,373451.730000004,27.1999999999971 +15845,2946,179820.106000002,373451.635000005,27.1999999999971 +15846,2866,179820.065000001,373451.535500009,21.4700000000012 +15847,2845,179821.061700001,373450.553300004,21.2400000000052 +15848,2844,179821.008800004,373451.112100001,21.4700000000012 +15849,2864,179819.977000006,373451.7205,21.4700000000012 +15850,2860,179820.065000001,373453.4351,21.4700000000012 +15851,2859,179820.186200004,373453.4452,21.4700000000012 +15852,2858,179820.166999999,373453.5339,21.4700000000012 +15853,9860,179819.883800004,373453.395050004,21.4700000000012 +15854,2852,179819.504000001,373457.664700009,21.4400000000023 +15855,2851,179819.651099995,373457.672800001,21.4400000000023 +15856,2849,179819.486099999,373457.956999999,21.4400000000023 +15857,2853,179819.387600005,373457.604200006,21.4400000000023 +15858,2848,179819.274900001,373458.006299999,21.4199999999983 +15859,2936,179819.335000005,373458.094999999,27.1999999999971 +15860,2935,179819.238000002,373458.234000001,27.1999999999971 +15861,21987,179819.132479936,373459.193501513,27.1999999999971 +15862,2847,179819.141300004,373458.197799999,21.4199999999983 +15863,21986,179818.963371705,373459.840938449,21.4122000000061 +15864,2824,179812.500900004,373457.500500001,21.4799999999959 +15865,23126,179809.602881297,373459.326902431,21.5034000000014 +15866,23129,179809.445193615,373460.78702734,21.4989999999962 +15867,23123,179809.384052224,373461.353172209,21.4973000000027 +15868,23130,179809.268879399,373462.419626571,21.4940000000061 +15869,23118,179809.216028653,373462.909003347,21.4925999999978 +15870,23128,179809.703861393,373458.391867008,21.5062000000034 +15871,2958,179809.840300001,373457.128500003,21.5099999999948 +15872,2934,179809.739,373457.135000005,27.1999999999971 +15873,2933,179809.593000002,373456.925000004,27.1999999999971 +15874,2956,179809.4386,373456.817299999,21.5099999999948 +15875,2957,179809.635299999,373456.827000007,21.5099999999948 +15876,23117,179809.581275001,373456.582349997,21.5099999999948 +15877,2954,179809.868000008,373456.577400003,21.5099999999948 +15878,2930,179809.791999999,373456.484999999,27.1999999999971 +15879,2953,179809.939400002,373456.347399998,21.5099999999948 +15880,2929,179809.841000002,373456.327000003,27.1999999999971 +15881,2931,179809.414999999,373456.429000005,27.1999999999971 +15882,2928,179810.222000003,373452.807000004,27.1999999999971 +15883,2926,179809.734000005,373452.552000005,27.1999999999971 +15884,2927,179810.043000001,373452.554000005,27.1999999999971 +15885,2950,179809.8605,373452.452799998,21.4600000000064 +15886,2925,179809.807,373452.245999999,27.1999999999971 +15887,2921,179809.668000005,373450.654000003,27.1999999999971 +15888,2825,179809.484000001,373449.942000005,27.1999999999971 +15889,2826,179809.610000003,373449.231000002,27.1999999999971 +15890,2990,179809.608400006,373449.813200004,21.1699999999983 +15891,2920,179809.709299996,373449.244000003,21.1699999999983 +15892,2827,179809.726,373447.859000001,27.1999999999971 +15893,2919,179810.280900005,373444.225799996,21.3800000000047 +15894,2829,179811.001000002,373444.209000003,27.1999999999971 +15895,2835,179810.804000005,373443.263000004,27.1999999999971 +15896,2830,179811.101000004,373444.114000004,27.1999999999971 +15897,2917,179811.160199996,373444.195700005,21.3800000000047 +15898,2831,179811.277000003,373444.019000001,27.1999999999971 +15899,2832,179811.353,373443.528000001,27.1999999999971 +15900,2833,179811.213,373443.427000005,27.1999999999971 +15901,2914,179811.318599999,373443.379900001,21.5800000000017 +15902,2913,179811.339899998,373443.180599999,21.5800000000017 +15903,2834,179811.228999998,373443.277000003,27.1999999999971 +15904,20969,179811.217236616,373443.176547971,21.5800000000017 +15905,2912,179810.928199999,373443.167000003,21.5800000000017 +15906,8864,179810.889203284,373443.265806701,27.1999999999971 +15907,2911,179810.950300001,373443.068700004,21.5800000000017 +15908,2910,179811.198199999,373443.077,21.5800000000017 +15909,2837,179811.170000009,373442.976000004,27.1999999999971 +15910,2838,179811.356000002,373442.842000004,27.1999999999971 +15911,2839,179811.418000005,373442.410000004,27.1999999999971 +15912,2840,179811.250000004,373442.267000001,27.1999999999971 +15913,2907,179811.354100004,373442.224300005,23.75 +15914,2841,179811.280999999,373441.914000001,27.1999999999971 +15915,2918,179811.035900004,373444.313700005,21.3800000000047 +15916,2922,179810.407000002,373450.613000002,27.1999999999971 +15917,2923,179810.340000007,373452.056000005,27.1999999999971 +15918,2949,179810.437100004,373452.096999999,21.4600000000064 +15919,23116,179810.110777218,373452.298362549,21.4600000000064 +15920,2951,179810.083200004,373452.454300005,21.4600000000064 +15921,2952,179810.324500002,373452.789000001,21.4600000000064 +15922,2924,179810.090999998,373452.263,27.1999999999971 +15923,2955,179809.485700004,373456.584000003,21.5099999999948 +15924,2850,179819.606100004,373457.977899998,21.4400000000023 +15925,20960,179810.680137578,373434.487435557,24.1089000000065 +15926,20957,179810.563031618,373433.247300971,24.1687999999995 +15927,20954,179810.47319461,373432.295940455,24.2148000000016 +15928,20956,179810.361759908,373431.115863543,24.2718000000023 +15929,23136,179808.622621909,373468.403712813,21.4759999999951 +15930,3027,179808.309,373470.375999998,27.1999999999971 +15931,21978,179818.277136996,373466.178202596,21.3821999999927 +15932,21977,179818.475510214,373465.167374082,27.1999999999971 +15933,21974,179818.575770997,373464.255695637,27.1999999999971 +15934,21979,179818.320098035,373466.5805481,27.1999999999971 +15935,21981,179818.16535271,373467.987658404,27.1999999999971 +15936,14505,179833.431061413,373437.943514686,27.1999999999971 +15937,15561,179833.51837812,373438.080828164,23.9556000000011 +15938,2903,179833.476599999,373438.518399999,23.6999999999971 +15939,2997,179834.603700005,373438.677499998,23.6999999999971 +15940,15562,179834.686817624,373437.91242972,24.0066999999981 +15941,15560,179833.586645622,373437.365814153,24.3733000000066 +15942,15564,179834.805380814,373436.821094692,24.4441999999981 +15943,15563,179834.908875003,373436.794750005,27.1999999999971 +15944,15566,179834.989994876,373436.04807312,27.1999999999971 +15945,15567,179834.895462424,373435.991923228,24.7765999999974 +15946,15565,179834.9142952,373435.818573676,24.846000000005 +15947,2994,179835.039000001,373435.597000003,27.1999999999971 +15948,2993,179835.460000001,373435.653000005,27.1999999999971 +15949,14502,179834.778750006,373437.992500003,27.1999999999971 +15950,2995,179834.692000005,373438.791000001,27.1999999999971 +15951,2764,179836.187300004,373388.260800004,25.0500000000029 +15952,2766,179836.262900002,373387.382100001,25.0200000000041 +15953,2765,179836.451000009,373387.689900003,25.0200000000041 +15954,2770,179836.428800002,373388.004400004,25.0500000000029 +15955,14484,179836.539034124,373387.862591285,27.1999999999971 +15956,2757,179836.526000001,373388.047000002,27.1999999999971 +15957,14485,179836.343750004,373388.240500003,27.1999999999971 +15958,2692,179832.500800002,373342.500700001,24.2599999999948 +15959,2720,179837.500700008,373342.500599999,24.4900000000052 +15960,15704,179840.855869729,373345.373645507,24.8772999999928 +15961,15706,179840.990541387,373344.138309259,24.8607000000047 +15962,14427,179841.011176739,373344.871389601,27.1999999999971 +15963,15705,179840.95640216,373345.373835314,27.1999999999971 +15964,14433,179841.047573641,373344.537521828,27.1999999999971 +15965,15707,179841.094752297,373344.104753289,27.1999999999971 +15966,24383,179841.345286809,373343.616534628,27.4621999999945 +15967,15708,179841.164849065,373343.461757537,27.1999999999971 +15968,14428,179841.407829445,373343.043207701,27.4655999999959 +15969,15710,179841.201391183,373343.126557641,27.1999999999971 +15970,14430,179841.234945834,373342.818761777,27.1999999999971 +15971,15709,179841.11089129,373343.034345731,24.8459000000003 +15972,15711,179841.26108687,373341.65660939,24.8274999999994 +15973,2740,179841.362799998,373340.723600004,24.8150000000023 +15974,15712,179841.403477605,373341.272824384,27.1999999999971 +15975,2731,179841.462000005,373340.736000001,27.1999999999971 +15976,15716,179841.589004342,373339.570992623,27.1999999999971 +15977,15719,179841.519227713,373339.288696542,24.7958000000071 +15978,2719,179837.500500001,373337.500300001,24.5 +15979,15715,179841.609808192,373338.457806431,24.7847000000038 +15980,15718,179841.652506512,373338.988488935,27.1999999999971 +15981,15720,179841.62075543,373339.279740781,27.1999999999971 +15982,24381,179841.684257597,373338.697237086,27.1999999999971 +15983,14426,179841.716008686,373338.405985244,27.1999999999971 +15984,2730,179841.658,373340.749900002,27.4793000000063 +15985,15714,179841.595457364,373341.323226929,27.4759000000049 +15986,15713,179841.374216408,373341.541236572,27.1999999999971 +15987,14431,179841.53291472,373341.896553848,27.4723999999987 +15988,14432,179841.344955206,373341.809648767,27.1999999999971 +15989,2689,179832.500400003,373337.500700004,24.1699999999983 +15990,2742,179837.500399999,373332.500799999,24.4199999999983 +15991,15731,179842.033214029,373334.573926296,24.732600000003 +15992,15733,179842.171600148,373333.304517489,24.7155999999959 +15993,14420,179842.222905312,373333.756236188,27.1999999999971 +15994,15735,179842.267138213,373333.350488923,27.1999999999971 +15995,14422,179842.44629664,373333.523602974,27.5225000000064 +15996,15734,179842.311371122,373332.944741666,27.1999999999971 +15997,12431,179842.534282852,373332.717035368,27.5273000000016 +15998,14418,179842.419584993,373331.952098779,27.1999999999971 +15999,15736,179842.332105752,373331.832207758,24.6959000000061 +16000,15737,179842.479755566,373331.400155757,27.1999999999971 +16001,14414,179842.682261065,373331.360522486,27.5353999999934 +16002,15739,179842.554540977,373330.714151166,27.1999999999971 +16003,14412,179842.830239285,373330.004009608,27.5434999999998 +16004,15740,179842.591933686,373330.371148869,27.1999999999971 +16005,14413,179842.629326396,373330.028146572,27.1999999999971 +16006,15738,179842.497105394,373330.318674456,24.6757000000071 +16007,15741,179842.65998964,373328.824545633,24.6555999999982 +16008,2625,179837.500600003,373327.500500001,24.3699999999953 +16009,15743,179842.852375858,373327.059796669,24.6319999999978 +16010,15747,179842.986718964,373325.827474169,24.6154999999999 +16011,2647,179843.031500004,373325.416700002,24.6100000000006 +16012,2624,179837.500399999,373322.500800002,24.3699999999953 +16013,2671,179832.500999998,373327.500200003,24.1499999999942 +16014,15754,179843.624896683,373320.028141968,24.5589000000036 +16015,15752,179843.439062044,373321.72346982,24.5819000000047 +16016,15749,179843.287901178,373323.102476567,24.6006000000052 +16017,2650,179843.130600005,373324.537500001,24.6199999999953 +16018,14407,179843.291578837,373323.98658761,27.1999999999971 +16019,15751,179843.341297634,373323.533004988,27.1999999999971 +16020,14408,179843.519472163,373323.70747127,27.5648999999976 +16021,15750,179843.391016427,373323.079422362,27.1999999999971 +16022,14406,179843.610744327,373322.875542544,27.559699999998 +16023,14405,179843.467315335,373322.383350436,27.1999999999971 +16024,14404,179843.793288644,373321.211685088,27.5494999999937 +16025,15753,179843.569841299,373321.448010087,27.1999999999971 +16026,14403,179843.693389576,373320.320883971,27.1999999999971 +16027,15756,179843.733732648,373319.952835724,27.1999999999971 +16028,14398,179843.925875016,373320.003185108,27.5420000000013 +16029,15757,179843.988084387,373319.436158251,27.5384999999951 +16030,14400,179844.900442872,373319.867434435,27.7324999999983 +16031,14402,179844.050293766,373318.869131386,27.5350000000035 +16032,14399,179844.174712516,373317.735077661,27.5280000000057 +16033,10776,179845.46988574,373314.686868861,27.7350000000006 +16034,15762,179844.29913127,373316.601023939,27.5209999999934 +16035,12436,179844.423550021,373315.46697022,27.5139999999956 +16036,14397,179844.195879709,373315.736686271,27.1999999999971 +16037,15763,179844.101393428,373316.598680861,27.1999999999971 +16038,15760,179843.958211955,373316.987381302,24.5176999999967 +16039,15761,179844.048207503,373317.083893977,27.1999999999971 +16040,14401,179843.936840288,373318.099892724,27.1999999999971 +16041,15758,179843.783445269,373318.581738662,24.539300000004 +16042,15759,179843.875977609,373318.655140534,27.1999999999971 +16043,15755,179843.81511493,373319.210388348,27.1999999999971 +16044,15766,179844.240191612,373315.332430501,27.1999999999971 +16045,15768,179844.277863942,373314.988747347,27.1999999999971 +16046,15765,179844.315536264,373314.645064179,27.1999999999971 +16047,15767,179844.485542215,373314.901923008,27.510500000004 +16048,14396,179844.547534388,373314.3368758,27.5069999999978 +16049,15770,179844.380057082,373314.056443304,27.1999999999971 +16050,14394,179844.671518765,373313.206781384,27.5001000000047 +16051,15774,179844.795503139,373312.076686971,27.493100000007 +16052,2632,179843.428199999,373324.5394,27.570000000007 +16053,2631,179843.475000001,373324.943,27.5694999999978 +16054,2630,179843.4745,373325.129500005,27.5705000000016 +16055,2629,179843.3235,373325.482300002,27.5705000000016 +16056,15746,179843.224847861,373326.386641923,27.5651000000071 +16057,15748,179843.080046378,373325.893704325,27.1999999999971 +16058,15744,179843.033092752,373326.324408647,27.1999999999971 +16059,15745,179842.986139134,373326.755112976,27.1999999999971 +16060,12434,179843.126195714,373327.290983848,27.559699999998 +16061,14415,179842.978217505,373328.647496723,27.5516000000061 +16062,14417,179842.904228389,373329.325753167,27.5475000000006 +16063,14416,179842.726770587,373329.13429362,27.1999999999971 +16064,15742,179842.775666211,373328.685775395,27.1999999999971 +16065,14411,179842.939185508,373327.185817298,27.1999999999971 +16066,2646,179843.127000004,373325.463000003,27.1999999999971 +16067,14410,179843.174994495,373325.415767331,27.1999999999971 +16068,2645,179843.379000001,373325.215,27.1999999999971 +16069,2648,179843.279100005,373325.173,24.6100000000006 +16070,2649,179843.279900003,373324.863699999,24.6199999999953 +16071,14409,179843.379420578,373325.058123883,27.1999999999971 +16072,2644,179843.380000006,373324.842000004,27.1999999999971 +16073,2643,179843.233000003,373324.521000005,27.1999999999971 +16074,2684,179832.500100005,373332.500200003,24.1499999999942 +16075,2686,179827.500599999,373332.500600003,24.1999999999971 +16076,2687,179822.500399999,373337.500500008,24.6100000000006 +16077,20876,179818.065804329,373334.660008498,24.8650999999954 +16078,20877,179817.819188349,373336.938305143,24.8622000000032 +16079,2711,179817.632400002,373338.663899995,24.8600000000006 +16080,2688,179827.500900008,373337.500700004,24.179999999993 +16081,2691,179827.500800002,373342.500400003,24.1300000000047 +16082,14419,179842.608271956,373332.038778927,27.5313000000024 +16083,14421,179842.358310424,373334.330170579,27.5176000000065 +16084,15732,179842.152961642,373334.397827543,27.1999999999971 +16085,15727,179842.100443862,373334.879571706,27.1999999999971 +16086,20889,179816.15063215,373351.945076503,24.9599000000017 +16087,20886,179816.700326722,373346.116260864,27.1999999999971 +16088,20884,179816.87205055,373344.577098053,27.1999999999971 +16089,20872,179818.510301404,373329.624458831,27.1999999999971 +16090,20870,179818.664097548,373328.203653738,27.1999999999971 +16091,8873,179818.874606986,373326.258917872,27.1999999999971 +16092,20866,179819.048553493,373324.651958935,27.1999999999971 +16093,2674,179819.2225,373323.045000006,27.1999999999971 +16094,20861,179819.80983803,373317.619032595,27.1999999999971 +16095,20864,179819.91291118,373317.59599917,24.8870000000024 +16096,20863,179820.086601719,373315.991404917,24.8891000000003 +16097,20860,179820.217520423,373314.781947013,24.8905999999988 +16098,15805,179846.059980921,373298.73056414,27.1999999999971 +16099,15810,179846.108716499,373298.285951339,27.1999999999971 +16100,24394,179857.482400004,373227.697000004,28.7899999999936 +16101,24406,179860.674000002,373224.341000006,28.6165999999939 +16102,24407,179857.998000003,373222.967000004,28.7899999999936 +16103,2531,179858.513599999,373218.237000007,28.7899999999936 +16104,10769,179856.228118483,373219.551954601,27.7379999999976 +16105,24408,179855.921838865,373222.418965954,27.7390000000014 +16106,15987,179854.789788514,373221.287948668,27.3846000000049 +16107,15981,179854.681392759,373222.263388786,27.3845000000001 +16108,15982,179854.572997004,373223.238828909,27.3845000000001 +16109,14311,179855.615559239,373225.2859773,27.7400000000052 +16110,15983,179854.457908347,373222.613739181,27.1999999999971 +16111,15980,179854.404539015,373223.09634364,27.1999999999971 +16112,15979,179854.511277679,373222.131134726,27.1999999999971 +16113,15986,179854.564647011,373221.648530267,27.1999999999971 +16114,15988,179854.591331679,373221.407228041,27.1999999999971 +16115,15985,179854.618016344,373221.165925816,27.1999999999971 +16116,14305,179854.724755008,373220.200716902,27.1999999999971 +16117,12464,179854.898184262,373220.312508546,27.3846999999951 +16118,15991,179854.760077581,373219.88130438,27.1999999999971 +16119,14308,179854.993887868,373219.4512835,27.3846999999951 +16120,14306,179855.089591477,373218.590058457,27.3847999999998 +16121,12466,179856.46070924,373217.374727305,27.7372999999934 +16122,15995,179855.205431271,373217.547630291,27.3847999999998 +16123,12465,179855.321271069,373216.505202137,27.3849000000046 +16124,2529,179856.693300005,373215.197500005,27.7364999999991 +16125,2530,179855.462299999,373215.236099999,27.3849999999948 +16126,14304,179855.145196524,373216.398777787,27.1999999999971 +16127,15998,179855.109733105,373216.719463948,27.1999999999971 +16128,15997,179855.018098176,373216.638685387,24.3252999999968 +16129,15994,179855.043094415,373217.322059605,27.1999999999971 +16130,15992,179854.846653938,373218.188933715,24.3203000000067 +16131,15996,179854.992043365,373217.783700507,27.1999999999971 +16132,15993,179854.940992303,373218.245341416,27.1999999999971 +16133,14307,179854.86663739,373218.917712793,27.1999999999971 +16134,15990,179854.795400161,373219.561891861,27.1999999999971 +16135,2492,179852.5002,373212.500999998,24.1199999999953 +16136,2490,179847.500500008,373212.5002,24.0500000000029 +16137,2489,179842.500799999,373212.500100005,24.2100000000064 +16138,2488,179847.5009,373207.5009,24.0899999999965 +16139,2486,179842.500300005,373207.500799999,24.2599999999948 +16140,2487,179837.500900004,373207.5009,24.4600000000064 +16141,2491,179837.500200003,373212.500400003,24.3999999999942 +16142,2539,179831.646200001,373210.112500001,24.8574999999983 +16143,20710,179831.444866531,373211.94332641,24.8537000000069 +16144,20708,179831.298111174,373213.277846538,24.8509999999951 +16145,20706,179831.030811496,373215.708536822,24.8459000000003 +16146,20711,179830.857929539,373217.28063925,24.8426999999938 +16147,20705,179830.871691588,373216.240678053,27.1457999999984 +16148,20707,179831.178407624,373213.45151956,27.152700000006 +16149,20709,179831.362603813,373211.77650978,27.156799999997 +16150,2538,179831.546799999,373210.101500005,27.1609999999928 +16151,20700,179831.860078227,373207.252502665,27.1680999999953 +16152,20697,179832.302061066,373203.233046934,27.1779999999999 +16153,8892,179832.711791519,373199.506899163,27.1873000000051 +16154,117,179831.1316,373191.932400003,28.5 +16155,20694,179832.993395757,373196.945949588,27.1935999999987 +16156,2417,179833.274999999,373194.385000005,27.1999999999971 +16157,20691,179833.411372658,373193.172438215,27.1999999999971 +16158,20689,179833.525960021,373192.153581072,27.1999999999971 +16159,20687,179833.638315145,373191.154571913,27.1999999999971 +16160,8893,179833.771160174,373189.973376144,27.1999999999971 +16161,20684,179833.943540152,373188.440654129,27.1999999999971 +16162,20681,179834.11592013,373186.907932106,27.1999999999971 +16163,20676,179834.460680086,373183.842488073,27.1999999999971 +16164,2419,179833.212400001,373174.4366,28.4600000000064 +16165,2351,179841.454600003,373102.434800003,28.3600000000006 +16166,2352,179839.414299998,373120.9399,28.3699999999953 +16167,2319,179842.651000001,373111.018000003,27.1999999999971 +16168,20610,179843.088270508,373107.110149473,27.1999999999971 +16169,20611,179843.164089683,373107.331989381,24.8105000000069 +16170,2345,179842.750400003,373111.029100005,24.820000000007 +16171,2309,179847.5009,373107.500400003,24.3800000000047 +16172,2312,179847.500300001,373112.500200003,24.3000000000029 +16173,2347,179852.500599999,373107.500700001,24.320000000007 +16174,2307,179852.500100005,373102.500599999,24.4199999999983 +16175,2308,179847.500100005,373102.500700001,24.4600000000064 +16176,20607,179843.460334305,373104.684475504,24.803700000004 +16177,20605,179843.6007533,373103.429562531,24.8003999999928 +16178,20606,179843.431662772,373104.041281056,27.1999999999971 +16179,8899,179843.545220613,373103.026423912,27.1999999999971 +16180,20608,179843.292152569,373105.288072214,27.1999999999971 +16181,20599,179843.660684172,373101.994535606,27.1999999999971 +16182,20601,179843.780785616,373100.921198893,27.1999999999971 +16183,20603,179843.942690916,373099.47426454,27.1999999999971 +16184,2320,179844.390000004,373095.4767,27.1999999999971 +16185,20596,179844.708000127,373092.634740748,27.1999999999971 +16186,20593,179845.02600025,373089.792781495,27.1999999999971 +16187,20591,179845.29216931,373087.414035186,27.1999999999971 +16188,8900,179845.454894096,373085.959767837,27.1999999999971 +16189,20589,179845.548478398,373085.123407241,27.1999999999971 +16190,20587,179845.642062701,373084.287046641,27.1999999999971 +16191,20585,179845.768463012,373083.157410163,27.1999999999971 +16192,20590,179845.494544212,373086.504851077,24.756899999993 +16193,20592,179845.32480203,373088.021832727,24.7608000000037 +16194,2299,179847.5002,373092.500300005,24.429999999993 +16195,2301,179852.500700001,373092.500600003,24.320000000007 +16196,2304,179852.500300001,373097.500799999,24.3999999999942 +16197,2303,179847.500300001,373097.500799999,24.4700000000012 +16198,2305,179857.500400003,373097.500799999,24.2299999999959 +16199,114,179857.500800002,373102.500599999,24.2100000000064 +16200,2306,179862.500399999,373102.5002,24.0800000000017 +16201,2354,179862.500100002,373097.500500001,24.070000000007 +16202,16238,179867.861132715,373099.941920716,24.2433000000019 +16203,16245,179868.015289199,373098.56726988,24.2602999999945 +16204,16247,179868.170103926,373097.186749369,24.2773000000016 +16205,2302,179862.500300005,373092.500799999,24.0800000000017 +16206,2300,179857.500599999,373092.500500001,24.2200000000012 +16207,2346,179862.500600003,373087.500300009,24.1399999999994 +16208,16263,179869.047784954,373089.360254552,24.3738000000012 +16209,16266,179869.219338004,373087.830474351,24.3926999999967 +16210,2342,179869.285600003,373087.239599999,24.3999999999942 +16211,16269,179869.463630263,373085.714748997,24.3957999999984 +16212,14153,179869.477252189,373086.460841522,27.1999999999971 +16213,16270,179869.565173101,373085.707781315,27.1999999999971 +16214,14154,179869.716360655,373085.750334132,27.5988999999972 +16215,16272,179869.803790979,373084.995751198,27.5972000000038 +16216,12498,179869.891221311,373084.241168264,27.5954000000056 +16217,16275,179869.723556973,373084.3511917,27.1999999999971 +16218,16271,179869.65959093,373084.899073698,27.1999999999971 +16219,16273,179869.645821184,373084.154261433,24.3916000000027 +16220,16276,179869.824225511,373082.62620651,24.3874000000069 +16221,16280,179870.028255969,373080.87866056,24.3827000000019 +16222,16277,179869.986464985,373082.099331848,27.1999999999971 +16223,16281,179870.099484935,373081.131293353,27.1999999999971 +16224,16284,179870.121412061,373080.943483122,27.1999999999971 +16225,16282,179870.143339183,373080.755672891,27.1999999999971 +16226,14148,179870.187193435,373080.380052432,27.1999999999971 +16227,16285,179870.177847043,373079.597394712,24.3791999999958 +16228,16289,179870.309426587,373078.470399752,24.376099999994 +16229,16295,179870.443175878,373077.324820664,24.3730000000069 +16230,16292,179870.523987863,373077.49534063,27.1999999999971 +16231,16296,179870.550334141,373077.269679494,27.1999999999971 +16232,16293,179870.683340169,373077.404646032,27.5792999999976 +16233,16294,179870.576680414,373077.044018354,27.1999999999971 +16234,2274,179870.796500005,373076.428000007,27.5770000000048 +16235,14143,179870.629372969,373076.592696086,27.1999999999971 +16236,16291,179870.504931647,373076.795874938,24.3714999999938 +16237,2280,179870.570100002,373076.237700004,24.3699999999953 +16238,2279,179870.669499997,373076.249000005,27.1999999999971 +16239,14141,179870.699091196,373075.99554551,27.1999999999971 +16240,14142,179870.852038506,373075.948665127,27.5758999999962 +16241,12499,179870.907577001,373075.469330251,27.5746999999974 +16242,14137,179870.787864774,373075.235182032,27.1999999999971 +16243,14139,179871.002222046,373074.652479406,27.5727999999945 +16244,16298,179870.847308304,373074.726036239,27.1999999999971 +16245,14140,179870.94363258,373073.90099955,27.1999999999971 +16246,14138,179871.096867096,373073.835628554,27.5709000000061 +16247,16301,179870.977600899,373073.610054038,27.1999999999971 +16248,16302,179871.191512141,373073.018777709,27.5690000000031 +16249,14135,179871.286157187,373072.201926857,27.5671000000002 +16250,16304,179871.102583401,373072.539553855,27.1999999999971 +16251,16300,179871.049599793,373072.993369091,27.1999999999971 +16252,14134,179871.155567009,373072.085738625,27.1999999999971 +16253,16307,179871.21604766,373071.56770974,27.1999999999971 +16254,16308,179871.395008598,373071.262465466,27.5647999999928 +16255,16309,179871.246287983,373071.308695298,27.1999999999971 +16256,16306,179871.27652831,373071.049680863,27.1999999999971 +16257,12500,179871.503860004,373070.323004071,27.5626000000047 +16258,16312,179871.361846868,373070.318910316,27.1999999999971 +16259,14132,179871.397489607,373070.013623089,27.1999999999971 +16260,16311,179871.48459132,373069.267579466,27.1999999999971 +16261,14133,179871.572315007,373069.732191063,27.5611999999965 +16262,14130,179871.640770011,373069.141378053,27.5598000000027 +16263,16314,179871.528142177,373068.894557655,27.1999999999971 +16264,14131,179871.709225003,373068.550565045,27.5584999999992 +16265,14129,179871.571693029,373068.521535844,27.1999999999971 +16266,14124,179871.777680006,373067.959752034,27.5571000000054 +16267,16316,179871.655093569,373067.80719354,27.1999999999971 +16268,14128,179871.846135005,373067.368939027,27.5556999999972 +16269,16317,179871.692972027,373067.48275695,27.1999999999971 +16270,14127,179871.730850484,373067.158320356,27.1999999999971 +16271,14126,179871.914590001,373066.77812602,27.5543000000034 +16272,16319,179871.819869764,373066.395852361,27.1999999999971 +16273,16321,179871.983045004,373066.187313009,27.5528999999951 +16274,14125,179873.005920108,373067.534667943,27.820000000007 +16275,2291,179873.365000002,373064.589000005,27.820000000007 +16276,2275,179872.051500004,373065.596500002,27.5515000000014 +16277,16320,179871.86437941,373066.014618367,27.1999999999971 +16278,16322,179871.842124585,373066.205235362,27.1999999999971 +16279,12501,179872.144425314,373064.749718104,27.5519000000058 +16280,14120,179872.232576102,373063.946444057,27.5522999999957 +16281,16325,179872.358685132,373062.797275487,27.5528000000049 +16282,12504,179874.46875,373054.764625002,27.8068999999959 +16283,48,179878.658000007,373047.958999999,28.7299999999959 +16284,2272,179875.131000005,373048.870000001,27.7989999999991 +16285,12503,179873.651710626,373051.014580674,27.5581999999995 +16286,14107,179873.485239215,373052.531551439,27.5574999999953 +16287,14109,179873.402003508,373053.29003682,27.5571000000054 +16288,12505,179873.318767801,373054.048522204,27.5568000000058 +16289,16347,179873.251549359,373054.661050212,27.5565000000061 +16290,14111,179873.184330929,373055.273578215,27.5562000000064 +16291,16342,179873.06133382,373056.394389335,27.5556999999972 +16292,14113,179872.938336715,373057.515200455,27.5552000000025 +16293,16341,179872.839913771,373057.138912596,27.1999999999971 +16294,14115,179872.794889878,373057.55098163,27.1999999999971 +16295,16338,179872.688325372,373058.526284646,27.1999999999971 +16296,16339,179872.73755084,373057.154922675,24.3816999999981 +16297,14114,179872.815339614,373058.636011574,27.5546999999933 +16298,16340,179872.927404508,373056.338177133,27.1999999999971 +16299,16343,179872.885846037,373055.797706369,24.3886999999959 +16300,2252,179867.500600003,373052.500399999,24.2799999999988 +16301,2249,179867.500700004,373047.500700004,24.3099999999977 +16302,2247,179862.500300005,373047.500100002,24.2599999999948 +16303,2246,179867.5009,373042.500800002,24.2599999999948 +16304,2245,179862.500399999,373042.500400003,24.2899999999936 +16305,2244,179857.500300009,373042.500300001,24.3699999999953 +16306,2248,179857.500100002,373047.500300005,24.3899999999994 +16307,2286,179852.500100005,373047.500399999,24.4100000000035 +16308,20557,179850.394948378,373042.530122265,24.6750000000029 +16309,20555,179850.79648358,373038.911832478,24.6708000000071 +16310,2242,179857.500800002,373037.500500005,24.3699999999953 +16311,20554,179850.97931578,373037.26430596,24.6689000000042 +16312,20551,179851.154312342,373035.687387496,24.667100000006 +16313,2180,179857.500900004,373032.500799999,24.3500000000058 +16314,2243,179862.500100002,373037.500999998,24.320000000007 +16315,2181,179862.5009,373032.500799999,24.3500000000058 +16316,2178,179862.500100002,373027.5009,24.3800000000047 +16317,2175,179857.500100002,373027.500300005,24.3099999999977 +16318,2172,179857.500999998,373022.500200007,24.3399999999965 +16319,20544,179852.219574772,373026.02480356,24.6374999999971 +16320,20542,179852.552306328,373022.970174909,24.617499999993 +16321,20541,179852.751552433,373021.141004063,24.6055999999953 +16322,20530,179852.893114042,373019.841403402,24.5969999999943 +16323,112,179857.500500005,373017.500800002,24.3500000000058 +16324,20540,179852.996921837,373018.888400152,24.5908000000054 +16325,20533,179853.132025674,373017.648084778,24.582699999999 +16326,20539,179853.140882589,373016.643263672,27.1999999999971 +16327,20538,179853.216388788,373016.873592548,24.5776000000042 +16328,20535,179853.436605219,373014.851904523,24.5644000000029 +16329,2166,179857.500100002,373012.5002,24.3899999999994 +16330,20537,179853.580517385,373013.530724689,24.5556999999972 +16331,2190,179853.759400003,373011.888500001,24.5449999999983 +16332,20528,179853.890290901,373010.686854515,24.5371000000014 +16333,20529,179853.741916083,373011.125468448,27.1999999999971 +16334,2184,179853.659999996,373011.877500001,27.1999999999971 +16335,20536,179853.486960866,373013.466087893,27.1999999999971 +16336,20534,179853.313921727,373015.054675784,27.1999999999971 +16337,20527,179853.823832165,373010.373436883,27.1999999999971 +16338,20525,179853.960699502,373009.116924595,27.1999999999971 +16339,8906,179854.115307521,373007.697543927,27.1999999999971 +16340,20517,179854.296247814,373006.03641931,27.1999999999971 +16341,20522,179854.454637155,373004.582324103,27.1999999999971 +16342,20519,179854.613026489,373003.128228895,27.1999999999971 +16343,20511,179854.92980516,373000.220038485,27.1999999999971 +16344,20520,179854.736923508,373002.914333675,24.4863000000041 +16345,20521,179854.56612312,373004.482368737,24.4964999999938 +16346,2160,179857.500300009,373002.500100002,24.3699999999953 +16347,20515,179855.026711494,373000.253931604,24.4689000000071 +16348,2156,179857.500300009,372997.5002,24.3999999999942 +16349,20510,179855.223225553,372998.449831944,24.4569999999949 +16350,20514,179855.263092149,372998.083836202,24.454700000002 +16351,20513,179855.376480557,372997.042872522,24.4477999999945 +16352,2151,179855.6734,372994.317000005,24.429999999993 +16353,2144,179862.500799999,372992.500400003,24.4400000000023 +16354,20504,179855.807675283,372993.112165917,24.4306999999972 +16355,2146,179855.574000005,372994.306000005,27.1999999999971 +16356,20505,179855.742123645,372992.797449134,27.1999999999971 +16357,20506,179855.849233013,372992.739273977,24.4309000000067 +16358,20509,179855.81330305,372992.158765852,27.1999999999971 +16359,20508,179855.955578178,372991.785053052,24.4314000000013 +16360,20501,179856.147725407,372990.060941659,24.4324000000051 +16361,20507,179855.884482455,372991.520082571,27.1999999999971 +16362,8907,179856.026841268,372990.242716014,27.1999999999971 +16363,20502,179856.229747761,372988.422063284,27.1999999999971 +16364,20492,179856.432654243,372986.601410545,27.1999999999971 +16365,20495,179856.70446568,372984.162482917,27.1999999999971 +16366,20494,179856.976277124,372981.723555271,27.1999999999971 +16367,20499,179856.944380924,372982.912658524,24.4364999999962 +16368,20496,179857.120031115,372981.336572848,24.4373999999953 +16369,20497,179857.248088568,372979.284627635,27.1999999999971 +16370,20498,179857.354468465,372979.232997887,24.438599999994 +16371,2153,179857.519900002,372976.845699999,27.1999999999971 +16372,2149,179857.6193,372976.856700003,24.4400000000023 +16373,20490,179857.841313262,372973.961553704,27.1999999999971 +16374,20489,179857.95489639,372973.845266595,24.4416999999958 +16375,8908,179858.027471263,372972.291097008,27.1999999999971 +16376,20486,179858.155177172,372972.048071265,24.4428000000044 +16377,2133,179862.500399999,372972.500800002,24.4400000000023 +16378,20488,179858.293241508,372970.809167728,24.4434999999939 +16379,20487,179858.195849139,372970.780187268,27.1999999999971 +16380,20484,179858.418503989,372968.782232422,27.1999999999971 +16381,20479,179858.746585641,372965.838248502,27.1999999999971 +16382,20480,179859.106142819,372962.611824255,27.1999999999971 +16383,20482,179859.065697152,372963.877630856,24.4474000000046 +16384,20478,179858.895498961,372965.404883604,24.4465999999957 +16385,2127,179862.500500001,372962.500100002,24.3600000000006 +16386,2130,179862.500100002,372967.500500001,24.3300000000017 +16387,2128,179867.500300005,372962.500399999,24.4799999999959 +16388,2125,179862.501000002,372957.500599999,24.3300000000017 +16389,2148,179859.565100003,372959.396300003,24.4499999999971 +16390,20481,179859.232658658,372962.379422054,24.4483000000037 +16391,2147,179859.465700004,372959.385400005,27.1999999999971 +16392,20476,179859.669763889,372957.554362122,27.1999999999971 +16393,20474,179859.821429215,372956.193489432,27.1999999999971 +16394,20472,179859.936694346,372955.159230892,27.1999999999971 +16395,8909,179860.04446179,372954.192247998,27.1999999999971 +16396,20461,179860.20480001,372952.753554635,27.1999999999971 +16397,20460,179860.279650476,372952.984734334,24.4536999999982 +16398,20462,179860.422860555,372951.699729487,24.4544000000024 +16399,20463,179860.378055785,372951.198953815,27.1999999999971 +16400,20464,179860.577229612,372950.314596608,24.4551999999967 +16401,20470,179860.495581597,372950.144410446,27.1999999999971 +16402,20469,179860.605571989,372950.060284238,24.4553000000014 +16403,2063,179867.500500001,372952.500400003,24.3500000000058 +16404,2062,179867.5009,372947.500799999,24.4700000000012 +16405,20466,179860.785586152,372948.445041265,24.4563000000053 +16406,20468,179861.134568062,372945.313673377,24.4581000000035 +16407,2061,179867.500600003,372942.500700004,24.4499999999971 +16408,2068,179861.511,372941.936000004,24.4600000000064 +16409,2058,179867.500500001,372937.500200003,24.3800000000047 +16410,2060,179872.500800002,372942.500399999,24.3800000000047 +16411,2069,179872.500300001,372947.500500008,24.3600000000006 +16412,2084,179877.500800002,372947.500799999,24.3000000000029 +16413,2082,179877.500900004,372942.500300005,24.3000000000029 +16414,2083,179882.500500001,372942.500799999,24.3899999999994 +16415,16634,179885.031798825,372946.767360698,24.4590000000026 +16416,16640,179885.190638933,372945.333785817,24.4597999999969 +16417,2095,179885.235600002,372944.928000003,24.4600000000064 +16418,16643,179885.359261889,372943.8194726,24.4593000000023 +16419,16645,179885.469757874,372942.828966714,24.4585999999981 +16420,13938,179885.524483617,372943.240434766,27.1999999999971 +16421,16647,179885.564677194,372942.88013231,27.1999999999971 +16422,9472,179885.667745937,372943.119752649,27.543399999995 +16423,16646,179885.604870774,372942.519829854,27.1999999999971 +16424,13937,179885.796277668,372941.963853195,27.5426000000007 +16425,13936,179885.685257927,372941.799224947,27.1999999999971 +16426,16648,179885.597562663,372941.683301575,24.457899999994 +16427,16651,179885.722684924,372941.463722587,27.1999999999971 +16428,16649,179885.760111924,372941.128220223,27.1999999999971 +16429,16652,179885.724971838,372940.541182794,24.4570999999996 +16430,2081,179882.500399999,372937.500800002,24.3999999999942 +16431,16655,179885.862763871,372939.305990223,24.4563000000053 +16432,16656,179886.000352003,372938.072625443,24.4554999999964 +16433,16658,179886.125499409,372936.950781532,24.454700000002 +16434,16660,179886.256712917,372935.774560038,24.4539999999979 +16435,13930,179886.288190026,372936.394433085,27.1999999999971 +16436,24490,179886.326920379,372936.047247205,27.1999999999971 +16437,24488,179886.413193423,372936.415864892,27.5388999999996 +16438,13929,179886.496840876,372935.663614545,27.5384000000049 +16439,24485,179887.314208072,372937.654307652,27.7388999999966 +16440,13181,179887.74150167,372934.06158974,27.7440000000061 +16441,13183,179886.617522985,372934.578307621,27.537599999996 +16442,13927,179886.689517237,372933.930855714,27.5372000000061 +16443,13925,179886.761511493,372933.28340381,27.5368000000017 +16444,2087,179886.905500002,372931.988499999,27.5359000000026 +16445,2090,179888.199999999,372930.206500001,27.7495000000054 +16446,16669,179887.001922034,372931.121366527,27.5353000000032 +16447,16673,179887.050133046,372930.687799793,27.5350000000035 +16448,9471,179887.098344065,372930.254233051,27.5347000000038 +16449,16672,179886.928583,372930.653835189,27.1999999999971 +16450,16670,179886.883789059,372931.055376157,27.1999999999971 +16451,16671,179886.831312146,372930.623749118,24.4505999999965 +16452,16667,179886.689415425,372931.895736899,24.4514000000054 +16453,16668,179886.794201169,372931.858458098,27.1999999999971 +16454,13924,179886.766280331,372932.108745553,27.1999999999971 +16455,16665,179886.538411133,372933.249366507,24.4523000000045 +16456,16666,179886.642140228,372933.221559741,27.1999999999971 +16457,13926,179886.605070282,372933.553861465,27.1999999999971 +16458,16664,179886.552697092,372934.023344077,27.1999999999971 +16459,16662,179886.401179817,372934.479532771,24.4530999999988 +16460,2079,179882.500500001,372932.500700001,24.320000000007 +16461,13928,179886.446393162,372934.976271678,27.1999999999971 +16462,16661,179886.36565074,372935.700061318,27.1999999999971 +16463,16663,179886.500323918,372934.4928267,27.1999999999971 +16464,2078,179882.500300005,372927.500500005,24.320000000007 +16465,2100,179877.500800002,372932.500800002,24.2599999999948 +16466,2098,179877.500599999,372927.500700001,24.2700000000041 +16467,2057,179872.500800002,372932.500599999,24.429999999993 +16468,2059,179872.500900004,372937.500300005,24.4100000000035 +16469,2056,179867.500200003,372932.500000004,24.4499999999971 +16470,20449,179862.450921971,372933.501772646,24.4648000000016 +16471,20459,179862.183880281,372935.898025114,24.463499999998 +16472,8910,179862.082258713,372935.907094456,27.1999999999971 +16473,20450,179862.363569658,372933.382813778,27.1999999999971 +16474,20451,179862.561574854,372932.508848138,24.465400000001 +16475,20452,179862.561221275,372931.609231293,27.1999999999971 +16476,20458,179862.597865295,372932.183202129,24.4655999999959 +16477,20453,179862.737832218,372930.927233107,24.4663 +16478,20456,179862.861878373,372929.814126432,24.4668999999994 +16479,20457,179862.745047998,372929.959703419,27.1999999999971 +16480,20455,179863.061755188,372928.020566326,24.4679999999935 +16481,2065,179861.411600005,372941.925099999,27.1999999999971 +16482,20467,179861.012353707,372945.507483538,27.1999999999971 +16483,2080,179877.500900004,372937.500600006,24.2899999999936 +16484,2077,179882.500399999,372922.500399999,24.3500000000058 +16485,2074,179882.500200003,372917.500399999,24.3399999999965 +16486,16699,179888.038804043,372919.799574412,24.4434000000037 +16487,16704,179888.197925467,372918.373181377,24.4425000000047 +16488,16708,179888.357560668,372916.942182675,24.4415000000008 +16489,16712,179888.525143791,372915.439937424,24.440499999997 +16490,16710,179888.576964028,372915.877450936,27.1999999999971 +16491,13906,179888.47572992,372916.784931697,27.1999999999971 +16492,13905,179888.630335901,372916.476869211,27.5255000000034 +16493,16711,179888.710667953,372915.754434608,27.5249999999942 +16494,2089,179889.995000005,372915.114,27.7709999999934 +16495,2086,179888.791000005,372915.032000005,27.5244999999995 +16496,9468,179888.818976205,372914.777583174,27.5246000000043 +16497,13899,179888.67819814,372914.969970178,27.1999999999971 +16498,16714,179888.650179669,372915.221132785,27.1999999999971 +16499,16713,179888.622161195,372915.472295396,27.1999999999971 +16500,2097,179888.613600004,372914.647000004,24.4400000000023 +16501,2073,179882.500399999,372912.500700001,24.3600000000006 +16502,16715,179888.799935918,372912.943699002,24.4352999999974 +16503,16719,179888.971644778,372911.37410422,24.4311000000016 +16504,16721,179889.148577388,372909.756759036,24.4266000000061 +16505,2020,179882.500399999,372907.5002,24.3600000000006 +16506,16724,179889.31177523,372908.26496366,24.4226000000053 +16507,13890,179889.344526026,372908.885174118,27.1999999999971 +16508,16725,179889.40474819,372908.334678844,27.1999999999971 +16509,13889,179889.503777709,372908.549968176,27.5273000000016 +16510,24500,179889.604557887,372907.633468796,27.527700000006 +16511,24498,179890.676035576,372908.986244399,27.7737999999954 +16512,24494,179890.955314469,372906.473375894,27.7749999999942 +16513,13886,179889.705338065,372906.716969423,27.5280999999959 +16514,13888,179889.547252726,372907.032034412,27.1999999999971 +16515,24501,179889.476000458,372907.683356632,27.1999999999971 +16516,16726,179889.488594931,372906.648650587,24.4182000000001 +16517,16727,179889.589755453,372906.643513806,27.1999999999971 +16518,24504,179889.677600585,372905.840514995,27.1999999999971 +16519,24505,179889.59191427,372905.704206083,24.415599999993 +16520,24506,179889.703611892,372905.602743745,27.1999999999971 +16521,13885,179889.76544572,372905.037516188,27.1999999999971 +16522,16728,179889.695233602,372904.759761576,24.4130000000005 +16523,2029,179882.500799999,372902.500399999,24.320000000007 +16524,2016,179877.500800002,372897.500600003,24.3999999999942 +16525,2037,179872.500999998,372897.5009,24.4499999999971 +16526,2015,179877.500300001,372892.500500005,24.429999999993 +16527,2036,179872.500300001,372892.500800002,24.4199999999983 +16528,20423,179866.764627274,372894.794310976,24.4869999999937 +16529,20421,179866.60867035,372896.193771537,24.4861999999994 +16530,20419,179866.486075152,372897.293864653,24.4856 +16531,20417,179866.367154703,372898.360982846,24.4850000000006 +16532,20426,179866.199569169,372899.864791319,24.4841000000015 +16533,20428,179866.007386841,372901.589316074,24.4830999999976 +16534,20430,179865.75615222,372903.843739461,24.4817999999941 +16535,20425,179867.041987386,372892.305453718,24.488400000002 +16536,2043,179867.348500002,372889.555000003,24.4900000000052 +16537,2035,179872.500400003,372887.500300001,24.4199999999983 +16538,20416,179867.673853412,372886.635647409,24.4916999999987 +16539,20415,179867.597502172,372886.418133989,27.1999999999971 +16540,20414,179867.844483275,372885.104608528,24.492499999993 +16541,20413,179867.805986617,372884.547431011,27.1999999999971 +16542,20411,179867.947058965,372883.28160774,27.1999999999971 +16543,8914,179868.0677564,372882.198605832,27.1999999999971 +16544,20409,179868.135986395,372881.58638721,27.1999999999971 +16545,20407,179868.204216391,372880.974168576,27.1999999999971 +16546,20405,179868.34067639,372879.749731325,27.1999999999971 +16547,20403,179868.567380894,372877.715542156,27.1999999999971 +16548,8915,179868.913189106,372874.612651456,27.1999999999971 +16549,1956,179867.882000003,372864.721700005,28.2899999999936 +16550,2041,179869.195000004,372872.084000003,27.1999999999971 +16551,20399,179869.734287698,372866.905979671,27.1999999999971 +16552,8916,179869.881106153,372865.496288862,27.1999999999971 +16553,20394,179870.015257485,372864.208222523,27.1999999999971 +16554,20396,179870.139128741,372863.018861264,27.1999999999971 +16555,1950,179870.263000008,372861.829500001,27.1999999999971 +16556,20391,179870.530000001,372859.265875004,27.1999999999971 +16557,20387,179870.796999998,372856.702250008,27.1999999999971 +16558,107,179869.874000005,372847.643000003,28.3000000000029 +16559,1958,179871.866000004,372830.564300004,28.3000000000029 +16560,1704,179896.332100004,372612.886700004,28.3000000000029 +16561,11,179898.455400001,372593.235100009,28.2700000000041 +16562,1698,179899.382400002,372599.440200005,24.4232999999949 +16563,20365,179899.608272497,372597.406626567,24.4312000000064 +16564,20364,179900.173422739,372592.318470333,24.4508999999962 +16565,1697,179901.199400004,372583.081400003,24.486699999994 +16566,1671,179900.578700002,372573.583600003,28.2400000000052 +16567,20363,179902.220753469,372573.885958534,24.5222999999969 +16568,1667,179903.016399998,372566.722600006,24.5500000000029 +16569,53,179902.702,372553.932,28.2100000000064 +16570,1552,179909.604000002,372490.196000002,28.429999999993 +16571,54,179911.824300006,372471.072299998,28.429999999993 +16572,1535,179914.044500005,372451.9485,28.429999999993 +16573,1522,179912.237,372469.675000004,28 +16574,12520,179912.173805904,372470.259946335,27.9998000000051 +16575,20345,179913.833937518,372469.948532708,24.6875 +16576,1524,179914.230500001,372464.515700001,24.5099999999948 +16577,1534,179914.327600002,372464.525400002,24.5099999999948 +16578,1533,179917.500500005,372462.500700004,24.5099999999948 +16579,1523,179915.124299999,372457.112799998,24.5800000000017 +16580,1515,179917.500599999,372457.500500005,24.3500000000058 +16581,20344,179915.744911447,372451.775703426,24.5921999999991 +16582,1428,179916.811700001,372442.601599999,24.6132999999973 +16583,10,179916.264800001,372432.8248,28.429999999993 +16584,20343,179917.841351788,372433.746399358,24.6337000000058 +16585,1450,179922.500999998,372437.500299998,24.4400000000023 +16586,1455,179922.500700001,372442.500500001,24.4400000000023 +16587,1478,179922.500400003,372447.500200003,24.4900000000052 +16588,1480,179927.500300005,372447.500500001,24.4400000000023 +16589,1482,179927.500100002,372452.500700001,24.3999999999942 +16590,1507,179932.500200003,372447.501000002,24.2100000000064 +16591,1481,179932.500500001,372452.500400003,24.1999999999971 +16592,1479,179937.500599999,372447.500399999,24.3000000000029 +16593,17763,179939.865524143,372452.171303857,24.3463000000047 +16594,17765,179940.096154995,372450.279483393,24.344299999997 +16595,17766,179940.234731838,372449.142764244,24.3430999999982 +16596,17770,179940.358340263,372448.128828079,24.3420000000042 +16597,17773,179940.484307859,372447.095540181,24.3408999999956 +16598,13339,179940.552242227,372447.363931593,27.1999999999971 +16599,17776,179940.587181672,372447.077323698,27.1999999999971 +16600,13340,179940.677066721,372447.500642784,27.5173000000068 +16601,17775,179940.752533365,372446.880721394,27.517399999997 +16602,1468,179941.889500003,372446.743000008,27.6989999999932 +16603,1459,179940.828000002,372446.260800004,27.5175000000017 +16604,17774,179940.622121114,372446.790715799,27.1999999999971 +16605,1462,179940.692000002,372446.217500005,27.1999999999971 +16606,20135,179940.766653053,372445.605121866,27.1999999999971 +16607,20134,179940.91639372,372445.534685262,27.5176000000065 +16608,20133,179942.020956676,372445.668912947,27.6986000000034 +16609,13337,179941.00478743,372444.808570523,27.5178000000014 +16610,13336,179940.841306087,372444.992743731,27.1999999999971 +16611,20137,179940.795733783,372445.36657289,27.1999999999971 +16612,20136,179940.681541141,372445.477638129,24.3392000000022 +16613,1463,179940.592800003,372446.205600005,24.3399999999965 +16614,1474,179937.500900004,372442.500600003,24.2599999999948 +16615,1456,179932.500799999,372442.500799999,24.2200000000012 +16616,1452,179937.500400003,372437.500400003,24.2700000000041 +16617,1453,179932.500399999,372437.500500005,24.2299999999959 +16618,1454,179927.500799999,372442.500399999,24.4499999999971 +16619,1451,179927.500600003,372437.500299998,24.4799999999959 +16620,1446,179927.500500001,372432.5002,24.5 +16621,1449,179922.500200003,372432.500800002,24.3699999999953 +16622,1444,179922.500200003,372427.5002,24.3699999999953 +16623,1445,179927.500500001,372427.500799999,24.5 +16624,1447,179932.500399999,372432.500400003,24.2400000000052 +16625,1473,179932.5009,372427.500799999,24.2599999999948 +16626,1448,179937.500100005,372432.500400003,24.2599999999948 +16627,96,179937.500599999,372427.500799999,24.1499999999942 +16628,17804,179942.468258638,372430.820826001,24.3236999999936 +16629,17806,179942.640044961,372429.411627382,24.3222999999998 +16630,17811,179942.800254565,372428.097394943,24.3209000000061 +16631,1464,179942.900800001,372427.272599999,24.320000000007 +16632,13323,179942.932373919,372427.839736059,27.1999999999971 +16633,1461,179943.000000004,372427.285000004,27.1999999999971 +16634,13322,179943.031014714,372427.042256836,27.1999999999971 +16635,13320,179943.124058861,372426.314027332,27.1999999999971 +16636,17813,179943.080648802,372425.864990141,24.3264999999956 +16637,17814,179943.177939992,372425.892315336,27.1999999999971 +16638,20117,179943.217726927,372425.580914587,27.1999999999971 +16639,20115,179943.257513851,372425.269513831,27.1999999999971 +16640,20118,179943.236775413,372424.643045124,24.3322000000044 +16641,20114,179943.337087717,372424.646712337,27.1999999999971 +16642,17815,179943.392902017,372423.421100114,24.3378999999986 +16643,1442,179937.500100005,372422.500300005,24.2100000000064 +16644,17820,179943.58827915,372421.891955771,24.3450000000012 +16645,17822,179943.820830174,372420.071865138,24.3534000000072 +16646,17816,179943.892087057,372420.302893586,27.1999999999971 +16647,17824,179943.935635455,372419.962052919,27.1999999999971 +16648,24751,179943.925693486,372419.251138926,24.3571999999986 +16649,24750,179944.012824163,372419.357919317,27.1999999999971 +16650,24752,179944.051418517,372419.055852517,27.1999999999971 +16651,17823,179944.090012871,372418.753785718,27.1999999999971 +16652,17825,179944.030556798,372418.430412706,24.3610000000044 +16653,1439,179937.500500005,372417.500699997,24.2299999999959 +16654,17827,179944.233886417,372416.839027196,24.3684000000067 +16655,20105,179944.424219768,372415.349358678,24.3752999999997 +16656,24755,179944.435670275,372416.048425522,27.1999999999971 +16657,17828,179944.360279214,372416.638489537,27.1999999999971 +16658,24754,179944.571223821,372416.048820738,27.519100000005 +16659,22728,179944.511061348,372415.458361514,27.1999999999971 +16660,22727,179944.669098113,372415.282213178,27.5185999999958 +16661,20104,179944.543050606,372415.207990885,27.1999999999971 +16662,22725,179944.820104126,372414.099447463,27.5176999999967 +16663,22726,179944.68562559,372414.092097849,27.1999999999971 +16664,13316,179944.725822002,372413.777492229,27.1999999999971 +16665,17829,179944.614553116,372413.859690163,24.3821999999927 +16666,1435,179937.500800002,372412.500800002,24.2299999999959 +16667,22716,179944.822854057,372412.229395963,24.3898000000045 +16668,1429,179942.500800002,372407.500300001,24.320000000007 +16669,1472,179937.500100005,372407.500500005,24.2299999999959 +16670,1432,179932.500399999,372412.5002,24.3500000000058 +16671,1431,179932.5009,372407.500899997,24.3800000000047 +16672,1408,179937.500500005,372402.500799999,24.2299999999959 +16673,1406,179932.500500001,372402.500300005,24.429999999993 +16674,1409,179927.501000002,372402.5009,24.4100000000035 +16675,1402,179927.500500001,372397.500300005,24.429999999993 +16676,1417,179922.237400003,372395.156100001,24.6150000000052 +16677,20341,179920.699150003,372408.973500002,24.6637000000046 +16678,1425,179920.513,372394.284500003,28.3800000000047 +16679,1477,179918.485000003,372413.701000001,28.429999999993 +16680,1469,179920.1864,372413.579300001,24.679999999993 +16681,1433,179922.500400003,372412.500400003,24.4799999999959 +16682,1438,179922.500100002,372417.500399999,24.5 +16683,1434,179927.500600003,372412.500599999,24.4799999999959 +16684,1430,179927.500100002,372407.500700001,24.3699999999953 +16685,1437,179927.5009,372417.500300005,24.4799999999959 +16686,1436,179932.500700004,372417.500100002,24.320000000007 +16687,1443,179932.500300005,372422.5009,24.2899999999936 +16688,1441,179927.500500001,372422.500200003,24.5099999999948 +16689,1440,179922.500400003,372422.500200003,24.4400000000023 +16690,20342,179919.54732858,372419.075147558,24.6674000000057 +16691,1470,179918.499000002,372428.090500001,24.6466999999975 +16692,1424,179922.541000005,372374.868000004,28.320000000007 +16693,1375,179924.162700001,372360.710700005,28.3099999999977 +16694,1378,179925.784299999,372346.553299997,28.2899999999936 +16695,1364,179927.270399999,372348.820900001,24.4100000000035 +16696,20337,179927.483852167,372346.901865851,24.409799999994 +16697,20336,179928.124208674,372341.144763384,24.4091000000044 +16698,1363,179929.074200004,372332.603900004,24.4079999999958 +16699,1340,179932.500700004,372337.500600003,24.3099999999977 +16700,20338,179926.077653416,372359.985199999,24.4660000000003 +16701,1353,179932.500799999,372357.500600003,24.3699999999953 +16702,1357,179932.500399999,372362.500700004,24.3699999999953 +16703,1355,179937.5002,372362.5002,24.3899999999994 +16704,1384,179937.500500005,372367.500599999,24.3600000000006 +16705,1381,179942.500800002,372367.500300001,24.2400000000052 +16706,1356,179942.500900004,372362.500300001,24.2400000000052 +16707,1358,179947.500399999,372362.500700004,24.3999999999942 +16708,1382,179947.500200003,372367.500500005,24.3800000000047 +16709,17876,179950.576083835,372365.066689096,24.5062000000034 +16710,17878,179950.710844502,372363.906205151,24.5065000000031 +16711,22610,179950.806163311,372363.085372604,24.5066999999981 +16712,20076,179950.901482102,372362.264540058,24.5069999999978 +16713,20077,179950.996800903,372361.443707518,24.5071999999927 +16714,17880,179951.092119705,372360.622874971,24.5074000000022 +16715,17881,179951.28492105,372358.962577004,24.5078000000067 +16716,17883,179951.415668558,372357.836652048,24.5081000000064 +16717,20079,179951.506601375,372357.053589173,24.5084000000061 +16718,20078,179951.57017846,372357.372818898,27.1999999999971 +16719,22595,179951.61003454,372357.029595032,27.1999999999971 +16720,13308,179951.685126122,372356.382937726,27.1999999999971 +16721,17884,179951.597534191,372356.27052629,24.508600000001 +16722,22592,179951.760692377,372355.732192781,27.1999999999971 +16723,22593,179951.798475504,372355.406820301,27.1999999999971 +16724,22588,179951.836258627,372355.081447825,27.1999999999971 +16725,22589,179951.957980592,372354.033229202,27.1999999999971 +16726,22591,179951.937745452,372355.273625754,27.5356000000029 +16727,22587,179952.102953739,372353.848920658,27.5371000000014 +16728,17885,179951.987391137,372353.779957917,27.1999999999971 +16729,22585,179952.090337139,372352.893429998,27.1999999999971 +16730,17888,179952.177347586,372352.144132424,27.1999999999971 +16731,22583,179952.205424726,372351.902343847,27.1999999999971 +16732,17889,179952.233501863,372351.66055527,27.1999999999971 +16733,22594,179951.727139816,372357.089823529,27.5337 +16734,22599,179951.589684889,372358.275192253,27.5323999999964 +16735,22596,179951.566667303,372358.4736888,27.5322000000015 +16736,22601,179951.472078048,372359.289397236,27.5313000000024 +16737,22597,179951.403059673,372358.811975989,27.1999999999971 +16738,22602,179951.376974106,372359.036613949,27.1999999999971 +16739,20080,179951.350888547,372359.261251897,27.1999999999971 +16740,17879,179951.225335475,372360.342462424,27.1999999999971 +16741,22604,179951.185986359,372360.681320541,27.1999999999971 +16742,24785,179951.148187086,372361.006832067,27.1999999999971 +16743,20075,179951.110387806,372361.332343597,27.1999999999971 +16744,22606,179951.079226099,372361.600695189,27.1999999999971 +16745,17882,179951.455230795,372358.362700071,27.1999999999971 +16746,22600,179951.483967714,372358.115229782,27.1999999999971 +16747,22598,179951.512704626,372357.867759485,27.1999999999971 +16748,22608,179950.85085192,372363.567358084,27.1999999999971 +16749,24787,179950.80819837,372363.934672602,27.1999999999971 +16750,17877,179950.765544821,372364.301987112,27.1999999999971 +16751,22613,179950.679129921,372365.04615606,27.1999999999971 +16752,20084,179950.646475676,372365.327360775,27.1999999999971 +16753,13309,179950.527406532,372366.352734435,27.1999999999971 +16754,17873,179950.395207975,372366.624291502,24.505799999999 +16755,22615,179950.492672935,372366.651845612,27.1999999999971 +16756,20082,179950.430929895,372367.183550827,27.1999999999971 +16757,20083,179950.31446467,372367.319607999,24.5056000000041 +16758,17875,179950.233721361,372368.014924496,24.5053999999946 +16759,22617,179950.403638259,372367.418574985,27.1999999999971 +16760,17874,179950.334453266,372368.014367219,27.1999999999971 +16761,22619,179950.298497099,372368.324006673,27.1999999999971 +16762,22620,179950.137960684,372368.839562248,24.5051999999996 +16763,22621,179950.219998553,372369.000003334,27.1999999999971 +16764,22623,179950.180749279,372369.338001665,27.1999999999971 +16765,1413,179950.042200007,372369.664200004,24.5050000000047 +16766,1410,179950.1415,372369.676000003,27.1999999999971 +16767,13310,179950.102519445,372370.01168425,27.1999999999971 +16768,17872,179950.036507562,372370.580150966,27.1999999999971 +16769,17871,179949.928433802,372370.643891264,24.504700000005 +16770,22625,179950.006106552,372370.841951732,27.1999999999971 +16771,17870,179949.970495682,372371.14861767,27.1999999999971 +16772,17869,179949.748721339,372372.191475134,24.5043000000005 +16773,1389,179942.500999998,372372.500999998,24.2599999999948 +16774,22631,179949.620602585,372373.294762701,24.5040000000008 +16775,17867,179949.492483821,372374.398050278,24.5037000000011 +16776,22633,179949.631017055,372374.07206554,27.1999999999971 +16777,22629,179949.706448149,372373.422484513,27.1999999999971 +16778,22630,179949.772460032,372372.854017802,27.1999999999971 +16779,17868,179949.838471912,372372.28555109,27.1999999999971 +16780,22627,179949.904483795,372371.717084382,27.1999999999971 +16781,17864,179949.57442439,372374.559417933,27.1999999999971 +16782,22634,179949.625008978,372375.217680506,27.5144 +16783,20089,179949.502859104,372375.17570819,27.1999999999971 +16784,22635,179949.467076469,372375.483853322,27.1999999999971 +16785,22636,179949.524911668,372376.080844652,27.5135000000009 +16786,22638,179949.429375093,372376.90468042,27.5126000000018 +16787,22639,179949.319739938,372377.850091729,27.511599999998 +16788,22642,179949.152927909,372379.288553618,27.5100999999995 +16789,22644,179948.88968518,372381.558561455,27.5077000000019 +16790,20086,179948.881951533,372380.522704415,27.1999999999971 +16791,22645,179948.786832888,372381.34182639,27.1999999999971 +16792,17854,179948.691714242,372382.160948362,27.1999999999971 +16793,22646,179948.670467436,372383.448930912,27.5056999999942 +16794,22649,179948.523605064,372384.715361856,27.5043000000005 +16795,22653,179948.427159555,372385.547035579,27.5035000000062 +16796,22655,179948.333049111,372386.358573489,27.5026000000071 +16797,22657,179948.214498758,372387.380862828,27.5014999999985 +16798,17859,179948.140678562,372386.906237092,27.1999999999971 +16799,22660,179948.088512909,372387.355465859,27.1999999999971 +16800,22658,179948.048839286,372387.697118547,27.1999999999971 +16801,22662,179948.00291964,372388.092559278,27.1999999999971 +16802,22661,179948.089678515,372388.457219005,27.5004000000044 +16803,1419,179948.049000002,372388.808000002,27.5 +16804,22668,179947.939170308,372389.668302428,27.5005999999994 +16805,22665,179947.828138273,372389.496563345,27.1999999999971 +16806,22669,179947.807463083,372389.658382021,27.1999999999971 +16807,22666,179947.701189242,372389.700907413,24.4943000000058 +16808,22667,179947.786787897,372389.820200697,27.1999999999971 +16809,17851,179947.745437533,372390.143838048,27.1999999999971 +16810,22663,179947.879962467,372390.132080894,27.5008999999991 +16811,22664,179947.684123721,372390.62372341,27.1999999999971 +16812,22670,179947.727512252,372391.326232381,27.5017999999982 +16813,17848,179947.595717888,372391.315650191,27.1999999999971 +16814,22671,179947.536750469,372391.777171087,27.1999999999971 +16815,22672,179947.576034613,372392.512765653,27.5026000000071 +16816,22673,179947.464516893,372393.386290453,27.5032000000065 +16817,22675,179947.362928867,372394.182035428,27.5038000000059 +16818,20096,179947.261189934,372393.933903418,27.1999999999971 +16819,22676,179947.216980647,372394.279916644,27.1999999999971 +16820,20098,179947.172771364,372394.625929862,27.1999999999971 +16821,22678,179947.128562085,372394.971943088,27.1999999999971 +16822,20097,179947.10047384,372394.402697936,24.4725000000035 +16823,17846,179946.982506514,372395.326026417,24.468200000003 +16824,1401,179942.5002,372392.500900004,24.3399999999965 +16825,1400,179937.500800002,372392.500800002,24.2299999999959 +16826,1397,179942.500400003,372387.500599999,24.3500000000058 +16827,1422,179937.500100005,372387.5002,24.25 +16828,1399,179932.5009,372392.500700001,24.4700000000012 +16829,1404,179937.500100005,372397.500700004,24.2299999999959 +16830,1403,179932.500600003,372397.500399999,24.4600000000064 +16831,1423,179927.500799999,372392.500400003,24.3600000000006 +16832,1398,179932.500100009,372387.500800002,24.4700000000012 +16833,1396,179927.500500001,372387.500500005,24.3699999999953 +16834,20340,179922.750150006,372390.550275005,24.5987000000023 +16835,1421,179927.500600003,372382.500600003,24.3399999999965 +16836,1416,179924.288400006,372376.732799999,24.5500000000029 +16837,1391,179927.500500001,372377.500700004,24.4199999999983 +16838,1395,179932.500500001,372382.500700004,24.4499999999971 +16839,1390,179932.500600003,372377.500399999,24.4199999999983 +16840,1387,179927.500700004,372372.500599999,24.4600000000064 +16841,1386,179932.500600003,372372.500500005,24.3899999999994 +16842,1385,179927.5009,372367.500800002,24.429999999993 +16843,1383,179932.500399999,372367.500599999,24.3999999999942 +16844,1365,179925.779399998,372362.776900005,24.4799999999959 +16845,20339,179924.731623117,372372.584190037,24.5292000000045 +16846,1388,179937.500400003,372372.500599999,24.320000000007 +16847,1393,179937.500900004,372377.500799999,24.2899999999936 +16848,1392,179942.500999998,372377.500700004,24.3099999999977 +16849,20088,179949.369909972,372375.453588139,24.5035000000062 +16850,17866,179949.247336119,372376.509126008,24.5032000000065 +16851,20087,179949.431293823,372375.79199845,27.1999999999971 +16852,22637,179949.377300218,372376.256968822,27.1999999999971 +16853,17865,179949.323306601,372376.721939199,27.1999999999971 +16854,20091,179949.14122007,372377.422938481,24.5029000000068 +16855,20092,179949.26052716,372377.262569513,27.1999999999971 +16856,22641,179949.229137436,372377.532884676,27.1999999999971 +16857,20090,179949.197747715,372377.803199831,27.1999999999971 +16858,17863,179949.035104021,372378.336750966,24.5026999999973 +16859,22640,179949.134968266,372378.343830153,27.1999999999971 +16860,13311,179949.072188824,372378.884460464,27.1999999999971 +16861,22643,179948.977070179,372379.703582443,27.1999999999971 +16862,17853,179948.863734677,372379.81248853,24.5022999999928 +16863,17862,179948.701435868,372381.210115638,24.5019000000029 +16864,1394,179942.500599999,372382.500600003,24.3399999999965 +16865,17855,179948.527224559,372382.710326571,24.5014999999985 +16866,17861,179948.424863365,372383.591804311,24.5013000000035 +16867,22647,179948.599874966,372382.951829813,27.1999999999971 +16868,22648,179948.543517094,372383.437160186,27.1999999999971 +16869,17857,179948.508035678,372383.742711268,27.1999999999971 +16870,22651,179948.315273471,372384.53553158,24.5010000000038 +16871,22650,179948.416196402,372384.533592723,27.1999999999971 +16872,22652,179948.380388122,372384.841958709,27.1999999999971 +16873,17856,179948.324357118,372385.324474186,27.1999999999971 +16874,17858,179948.205683578,372385.479258846,24.5007999999943 +16875,22654,179948.294724409,372385.579658721,27.1999999999971 +16876,20094,179948.232517838,372386.115355637,27.1999999999971 +16877,17860,179948.058390677,372386.747663446,24.5004999999946 +16878,22659,179947.958045337,372387.611781724,24.5001999999949 +16879,1412,179947.857700005,372388.475900002,24.5 +16880,17852,179947.806512441,372388.876544282,24.4980999999971 +16881,13312,179947.910839014,372388.849288635,27.1999999999971 +16882,1411,179947.956999999,372388.488000002,27.1999999999971 +16883,17850,179947.595866043,372390.525270544,24.4904999999999 +16884,95,179937.500800002,372382.500700004,24.2700000000041 +16885,22656,179948.186598204,372386.510796368,27.1999999999971 +16886,17847,179947.420703091,372391.896268342,24.4841000000015 +16887,17844,179947.218441166,372393.479369447,24.476800000004 +16888,17843,179947.359848209,372393.161733758,27.1999999999971 +16889,22674,179947.316698525,372393.499453772,27.1999999999971 +16890,17849,179947.477783047,372392.238691974,27.1999999999971 +16891,1407,179942.500599999,372402.500300005,24.3399999999965 +16892,20102,179945.736444805,372405.078932926,24.4229999999952 +16893,17832,179945.846982975,372404.213752307,24.426999999996 +16894,17835,179946.007203858,372402.959705841,24.432799999995 +16895,22691,179945.943922661,372404.243771974,27.1999999999971 +16896,20101,179945.883892842,372404.713607933,27.1999999999971 +16897,22693,179945.836493898,372405.084585734,27.1999999999971 +16898,17833,179945.733592361,372405.889966175,27.1999999999971 +16899,17834,179945.625906639,372405.944113534,24.4189999999944 +16900,22700,179945.708548978,372406.085973464,27.1999999999971 +16901,22695,179945.683505595,372406.281980757,27.1999999999971 +16902,22696,179945.502603315,372406.909206763,24.414499999999 +16903,1465,179945.379299998,372407.874300003,24.4100000000035 +16904,22702,179945.537612893,372407.423840623,27.1999999999971 +16905,22697,179945.596725769,372406.961181238,27.1999999999971 +16906,22703,179945.588774968,372408.078776605,27.5135000000009 +16907,1460,179945.478500005,372407.886500001,27.1999999999971 +16908,22705,179945.433844499,372408.236005671,27.1999999999971 +16909,22704,179945.384633128,372408.6211688,27.1999999999971 +16910,22707,179945.489245087,372408.858351696,27.5141000000003 +16911,22708,179945.337699689,372408.988503195,27.1999999999971 +16912,17831,179945.29076625,372409.355837602,27.1999999999971 +16913,22709,179945.363037914,372409.846878644,27.5148000000045 +16914,22714,179946.433288101,372411.217258878,27.6849999999977 +16915,22718,179945.246704347,372410.758069877,27.5154000000039 +16916,22720,179945.1475721,372411.534530494,27.5158999999985 +16917,22721,179945.028654791,372412.465959065,27.5166000000027 +16918,20103,179946.052076194,372414.052517761,27.6861000000063 +16919,24745,179948.999830849,372412.452372439,28.4079999999958 +16920,24744,179948.515161697,372416.303244889,28.4058999999979 +16921,24743,179951.372000005,372416.109000001,28.4676000000036 +16922,1623,179934.416000005,372530.734999999,28.5 +16923,24639,179938.988819234,372505.252598319,28.4419000000053 +16924,24634,179934.216000006,372553.425000004,28.5378999999957 +16925,22199,179933.80035454,372522.394482583,27.6923999999999 +16926,98,179936.546,372509.857000001,28.4600000000064 +16927,1619,179936.940000001,372504.855000004,28.3000000000029 +16928,20199,179934.812773392,372508.130734656,27.7238999999972 +16929,1612,179934.754000004,372509.164999999,27.7109999999957 +16930,1613,179935.000999998,372509.943000004,27.5109999999986 +16931,13394,179933.58223464,372509.477036845,27.5334000000003 +16932,13392,179933.648969278,372508.927573696,27.5338000000047 +16933,13393,179933.440305915,372509.505722191,27.1999999999971 +16934,1571,179933.515500002,372510.026500005,27.5329999999958 +16935,13395,179933.364326485,372510.072930545,27.1999999999971 +16936,1580,179933.339000002,372510.262000006,27.1999999999971 +16937,17663,179933.454569817,372510.59441657,27.5337 +16938,17662,179933.293474987,372510.690574691,27.1999999999971 +16939,6604,179933.393639639,372511.162333135,27.5342999999993 +16940,22181,179935.030600809,372510.963237807,27.7550999999949 +16941,17628,179933.995425388,372511.835663967,27.1999999999971 +16942,13404,179934.506850783,372511.896327939,27.1999999999971 +16943,1584,179934.756999999,372511.925999999,27.1999999999971 +16944,22182,179934.898060691,372512.194778651,27.7483000000066 +16945,1620,179935.228000004,372510.770000003,28.0899999999965 +16946,1616,179935.126699999,372510.070300002,27.7599999999948 +16947,22194,179934.651512008,372514.485668212,27.7357999999949 +16948,22183,179934.602500003,372513.507000003,27.1999999999971 +16949,22189,179934.68768708,372512.635279827,27.1999999999971 +16950,22184,179934.727889083,372512.223892339,27.1999999999971 +16951,22186,179934.60247279,372512.4787191,24.4867999999988 +16952,22190,179934.553186394,372512.983134553,24.4833999999973 +16953,22187,179933.4861986,372512.664795384,24.4998000000051 +16954,17633,179933.445765432,372513.030423366,24.4951000000001 +16955,22185,179934.503899999,372513.487549998,24.4799999999959 +16956,22191,179934.431900006,372514.224425003,24.4750000000058 +16957,22195,179934.525249999,372514.297499999,27.1999999999971 +16958,22198,179934.505937498,372514.495125003,27.1999999999971 +16959,22197,179934.3959,372514.592862505,24.4725000000035 +16960,17636,179933.316830281,372514.196354661,24.4799000000057 +16961,1603,179934.134200003,372514.9016,24.4700000000012 +16962,1604,179934.359899998,372514.961300004,24.4700000000012 +16963,22196,179934.486625001,372514.692750007,27.1999999999971 +16964,1585,179934.448000003,372515.088000003,27.1999999999971 +16965,13405,179933.922023576,372517.761871774,27.1999999999971 +16966,22200,179933.690639738,372519.877669863,27.1999999999971 +16967,22201,179933.556389902,372521.105264384,27.1999999999971 +16968,13406,179933.459255893,372521.993467942,27.1999999999971 +16969,22204,179933.420691919,372522.346100952,27.1999999999971 +16970,17617,179933.382127948,372522.698733974,27.1999999999971 +16971,1588,179933.554999996,372523.462000005,27.1999999999971 +16972,1587,179933.305,372523.404000003,27.1999999999971 +16973,1601,179933.445300005,372523.5392,24.5899999999965 +16974,22206,179933.354000002,372525.182,27.1999999999971 +16975,22208,179933.254350003,372525.173350003,24.5950000000012 +16976,1602,179933.195900004,372523.481400006,24.5899999999965 +16977,22215,179932.159377892,372524.425574306,24.5810000000056 +16978,17603,179932.109673787,372524.876089025,24.577099999995 +16979,22212,179932.052092932,372525.397998091,24.5727000000043 +16980,17604,179931.983167466,372525.11095928,27.1999999999971 +16981,22213,179931.950560845,372525.406548921,27.1999999999971 +16982,17612,179931.917954229,372525.702138565,27.1999999999971 +16983,17611,179931.994512077,372525.919907156,24.5681999999942 +16984,22209,179933.158875,372525.990425002,24.5975000000035 +16985,22211,179933.206612505,372525.581887502,24.5963000000047 +16986,22210,179933.289331164,372525.735385064,27.1999999999971 +16987,22214,179933.303750005,372525.612000003,27.1999999999971 +16988,22205,179933.427270878,372525.861114234,27.6732999999949 +16989,22207,179933.2535,372526.042000003,27.1999999999971 +16990,1589,179933.153000005,372526.901999999,27.1999999999971 +16991,22217,179933.236507565,372527.633655384,27.6635999999999 +16992,1615,179934.278999999,372530.109999999,28.4499999999971 +16993,1614,179933.278000005,372528.068999998,27.9100000000035 +16994,1617,179933.166000005,372528.288800005,27.6600000000035 +16995,1576,179932.606000002,372528.794000003,27.5479999999952 +16996,1577,179932.380000003,372530.759000003,27.7559999999939 +16997,13426,179932.110492114,372533.167962991,27.7584999999963 +16998,17572,179931.106640413,372532.100740474,27.5610000000015 +16999,17574,179931.177320208,372531.455870237,27.5605000000069 +17000,1574,179931.248,372530.811000004,27.5599999999977 +17001,13422,179931.116989452,372530.853414107,27.1999999999971 +17002,17576,179931.056211721,372531.407319948,27.1999999999971 +17003,17575,179930.952856932,372531.432666022,24.5500000000029 +17004,17573,179931.01406347,372531.791443508,27.1999999999971 +17005,17570,179930.832302522,372532.531372014,24.5500000000029 +17006,17571,179930.941102318,372532.456384566,27.1999999999971 +17007,13427,179930.893666647,372532.888695821,27.1999999999971 +17008,13424,179931.01650526,372532.923118051,27.5616000000009 +17009,17567,179930.851109967,372533.276541661,27.1999999999971 +17010,17565,179930.716730196,372533.584672328,24.5500000000029 +17011,17569,179930.82983163,372533.470464583,27.1999999999971 +17012,17566,179930.80855329,372533.664387502,27.1999999999971 +17013,13428,179930.741640624,372534.274204899,27.1999999999971 +17014,13425,179930.891858213,372534.060376201,27.5623999999953 +17015,17568,179930.954181738,372533.491747126,27.5620000000054 +17016,13092,179931.840984229,372535.576925974,27.7611000000034 +17017,13091,179930.78501052,372535.035236102,27.5630999999994 +17018,17562,179930.707028463,372535.746730942,27.5636999999988 +17019,17560,179930.605501238,372535.514929038,27.1999999999971 +17020,17561,179930.558833286,372535.940243527,27.1999999999971 +17021,17559,179930.448114041,372536.03277998,24.5500000000029 +17022,13429,179930.512165334,372536.365558024,27.1999999999971 +17023,17556,179930.33044444,372537.105194464,24.5500000000029 +17024,1626,179927.500799999,372537.500700001,24.429999999993 +17025,17550,179930.21802114,372538.129795332,24.5500000000029 +17026,17548,179930.094519027,372539.255365986,24.5500000000029 +17027,13431,179930.218239933,372539.044285677,27.1999999999971 +17028,17549,179930.18837985,372539.316419404,27.1999999999971 +17029,17544,179930.093784109,372540.178530101,27.1999999999971 +17030,17543,179929.951500766,372540.558802482,24.5500000000029 +17031,17547,179930.062670153,372540.462091208,27.1999999999971 +17032,17545,179930.031556204,372540.745652314,27.1999999999971 +17033,13439,179929.969328288,372541.312774528,27.1999999999971 +17034,17541,179929.787807755,372542.050664045,24.5500000000029 +17035,1627,179922.500300009,372542.5002,24.2899999999936 +17036,17537,179929.620716903,372543.573492739,24.5500000000029 +17037,17535,179929.446267329,372545.163387194,24.5500000000029 +17038,1628,179922.500500005,372547.500200003,24.2899999999936 +17039,1648,179917.500500005,372542.500400003,24.3800000000047 +17040,1649,179917.500100005,372547.500100002,24.3500000000058 +17041,1629,179922.500500005,372552.500100002,24.3000000000029 +17042,1641,179928.917100005,372549.986100003,24.5500000000029 +17043,17517,179928.794746328,372551.101146232,24.5500000000029 +17044,17511,179928.618750207,372552.705052312,24.5500000000029 +17045,13451,179928.771396022,372552.230287246,27.1999999999971 +17046,17518,179928.875889264,372551.277974363,27.1999999999971 +17047,17521,179928.902012579,372551.039896142,27.1999999999971 +17048,17519,179928.928135891,372550.801817924,27.1999999999971 +17049,13447,179928.98038251,372550.325661484,27.1999999999971 +17050,1634,179929.116000004,372550.263,27.5745000000024 +17051,1638,179929.0165,372549.9965,27.1999999999971 +17052,13446,179929.063319072,372549.56980826,27.1999999999971 +17053,17524,179929.133547675,372548.929770667,27.1999999999971 +17054,17526,179929.084329922,372548.462003898,24.5500000000029 +17055,17527,179929.176464751,372548.53864035,27.1999999999971 +17056,13445,179929.312042329,372548.474343672,27.5731999999989 +17057,13444,179929.203776281,372548.289733063,27.1999999999971 +17058,9421,179929.417505264,372547.512118049,27.5724000000046 +17059,17523,179929.286215916,372547.538408708,27.1999999999971 +17060,17532,179929.336702645,372547.078291256,27.1999999999971 +17061,17533,179929.477017101,372546.969142288,27.5720000000001 +17062,17534,179929.361946009,372546.848232534,27.1999999999971 +17063,13442,179929.387189373,372546.618173804,27.1999999999971 +17064,17528,179929.275986064,372546.715292625,24.5500000000029 +17065,17530,179929.463589557,372545.921890792,27.1999999999971 +17066,17529,179929.539989728,372545.225607771,27.1999999999971 +17067,17536,179929.616389908,372544.529324755,27.1999999999971 +17068,17531,179929.658545211,372545.312911168,27.5708000000013 +17069,13441,179929.780561477,372544.199655816,27.570000000007 +17070,13440,179929.69279008,372543.833041742,27.1999999999971 +17071,17538,179929.737928003,372543.421671342,27.1999999999971 +17072,17539,179929.816163193,372542.708664741,27.1999999999971 +17073,17540,179929.926295385,372542.870004762,27.5690000000031 +17074,13438,179929.982827622,372542.354214396,27.5685999999987 +17075,17542,179929.855280779,372542.352161437,27.1999999999971 +17076,13434,179929.894398376,372541.995658137,27.1999999999971 +17077,24637,179930.03935986,372541.838424034,27.5681999999942 +17078,13436,179930.095892098,372541.322633669,27.5678000000044 +17079,24638,179930.152424332,372540.806843299,27.5675000000047 +17080,24636,179931.210746296,372541.210230049,27.7670000000071 +17081,17546,179930.208956569,372540.291052941,27.5671000000002 +17082,13090,179931.457302257,372539.006419972,27.7646999999997 +17083,9420,179930.322021045,372539.259472206,27.5663000000059 +17084,13432,179930.41630026,372538.399284914,27.5657000000065 +17085,17554,179930.469486795,372537.914020125,27.565300000002 +17086,17553,179930.522673331,372537.428755347,27.5648999999976 +17087,24635,179933.378250007,372540.481650002,28.5 +17088,13430,179930.629046407,372536.458225783,27.5641999999934 +17089,17557,179930.458291374,372536.856545396,27.1999999999971 +17090,17558,179930.431354396,372537.102039084,27.1999999999971 +17091,17551,179930.404417418,372537.347532772,27.1999999999971 +17092,17552,179930.342579443,372537.911101248,27.1999999999971 +17093,17555,179930.319624469,372538.120304383,27.1999999999971 +17094,13433,179930.296669502,372538.329507519,27.1999999999971 +17095,13437,179930.964190323,372543.414040122,27.7692999999999 +17096,100,179932.340500005,372550.228300005,28.5 +17097,24625,179931.956792396,372553.832138035,28.4980999999971 +17098,24623,179933.887809452,372556.476750687,28.5400999999983 +17099,24624,179931.573084794,372557.435976066,28.4962999999989 +17100,24626,179930.919042397,372563.578838035,28.4931999999972 +17101,1643,179930.265000001,372569.721700002,28.4900000000052 +17102,13471,179928.501949202,372565.422478646,27.7926000000007 +17103,13097,179928.187881473,372568.229734294,27.7954999999929 +17104,1637,179928.031000003,372569.632000003,27.7970000000059 +17105,13478,179927.089895915,372568.748824008,27.5883000000031 +17106,9425,179927.02635837,372569.3285296,27.588699999993 +17107,1635,179926.984000001,372569.715000004,27.5890000000072 +17108,17476,179926.913453586,372570.34145477,27.5890000000072 +17109,13482,179926.842907179,372570.967909545,27.5890000000072 +17110,13483,179927.741868287,372572.308970343,27.7960000000021 +17111,13485,179926.772360764,372571.594364312,27.5890000000072 +17112,13481,179926.70181435,372572.220819078,27.5890000000072 +17113,13487,179926.610513765,372573.031571686,27.5890999999974 +17114,13489,179926.515071232,372573.879104923,27.5890999999974 +17115,13101,179927.452736579,372574.985940684,27.795100000003 +17116,13098,179926.996398266,372579.211018942,27.7936000000045 +17117,101,179928.1895,372589.215000004,28.4900000000052 +17118,13102,179926.263888177,372585.993076086,27.7911000000022 +17119,1706,179925.475200001,372583.113200001,27.5892000000022 +17120,13100,179925.665228695,372581.425738156,27.5892000000022 +17121,13499,179925.76024304,372580.582007244,27.5892000000022 +17122,9426,179925.855257384,372579.738276321,27.5890999999974 +17123,17450,179925.728804559,372579.682814911,27.1999999999971 +17124,13498,179925.614458412,372580.697408602,27.1999999999971 +17125,17451,179925.651778251,372579.473193064,24.6046999999962 +17126,17447,179925.483216964,372580.968837932,24.6128999999928 +17127,17448,179925.547577128,372581.290846467,27.1999999999971 +17128,13500,179925.422462646,372582.400987692,27.1999999999971 +17129,1716,179925.269900002,372582.861600004,24.6233000000066 +17130,1675,179917.500800002,372582.5002,24.3099999999977 +17131,1705,179922.500400003,372577.5009,24.3800000000047 +17132,1699,179917.500700001,372577.500600003,24.2899999999936 +17133,1673,179912.500400003,372577.500399999,24.4499999999971 +17134,1677,179912.5002,372582.500500005,24.4100000000035 +17135,1679,179917.5002,372587.500300001,24.320000000007 +17136,1702,179912.5002,372587.500700001,24.3699999999953 +17137,1682,179912.5009,372592.500799999,24.3399999999965 +17138,1703,179917.500900004,372592.500799999,24.3000000000029 +17139,17424,179924.39528491,372590.622576997,24.6659000000072 +17140,17431,179924.569807127,372589.073938105,24.6573999999964 +17141,17436,179924.74918852,372587.482180934,24.6486000000004 +17142,17438,179924.96075647,372585.604813378,24.638300000006 +17143,17439,179925.00508729,372586.104550648,27.1999999999971 +17144,13505,179924.901041482,372587.027803812,27.1999999999971 +17145,13103,179925.109693043,372586.358676031,27.5892000000022 +17146,13504,179925.201069787,372585.547307022,27.5892000000022 +17147,17440,179925.060017295,372585.617127839,27.1999999999971 +17148,13503,179925.109133106,372585.181297489,27.1999999999971 +17149,17445,179925.161206998,372583.82609731,24.6285999999964 +17150,17442,179925.220972862,372584.188884605,27.1999999999971 +17151,17446,179925.248932801,372583.940781381,27.1999999999971 +17152,17444,179925.383823261,372583.924569011,27.5892000000022 +17153,17443,179925.276892737,372583.692678165,27.1999999999971 +17154,13501,179925.332812615,372583.196471725,27.1999999999971 +17155,17441,179925.186070573,372583.60546815,24.6273999999976 +17156,1711,179925.369300008,372582.872700002,27.1999999999971 +17157,13502,179925.292446524,372584.735938013,27.5892000000022 +17158,13507,179925.027891096,372587.085026816,27.5892000000022 +17159,1709,179925.927800003,372589.104800005,27.7899999999936 +17160,13506,179924.946089141,372587.811377607,27.5892000000022 +17161,13509,179924.845137618,372588.707764834,27.5892000000022 +17162,17434,179924.794661853,372589.15595844,27.5892000000022 +17163,9427,179924.744186085,372589.604152054,27.5892000000022 +17164,13512,179924.598332442,372590.899242297,27.5893000000069 +17165,17425,179924.591445774,372589.775009081,27.1999999999971 +17166,13510,179924.485929813,372590.711307593,27.1999999999971 +17167,17429,179924.432744317,372591.183250383,27.1999999999971 +17168,17428,179924.325316906,372591.243444443,24.6692999999941 +17169,17430,179924.406151574,372591.419221777,27.1999999999971 +17170,17426,179924.379558831,372591.655193169,27.1999999999971 +17171,17427,179924.525405627,372591.546787418,27.5893000000069 +17172,13511,179924.452478804,372592.194332533,27.5893000000069 +17173,13513,179925.609630361,372592.050467242,27.7888999999996 +17174,13516,179924.379551981,372592.841877654,27.5893000000069 +17175,13514,179924.273187846,372592.599078737,27.1999999999971 +17176,17423,179924.240637235,372592.887917425,27.1999999999971 +17177,17422,179924.147260565,372592.823443674,24.6778999999951 +17178,17417,179924.177448642,372593.448622987,27.1999999999971 +17179,17416,179923.982744411,372594.283292826,24.6858999999968 +17180,17418,179924.120080505,372593.957680564,27.1999999999971 +17181,13517,179924.081709433,372594.298167236,27.1999999999971 +17182,17420,179923.956315614,372594.517811116,24.6872000000003 +17183,1715,179923.761300005,372596.248300001,24.6967000000004 +17184,1684,179917.5002,372597.500500001,24.3399999999965 +17185,17411,179923.606884811,372597.618426532,24.7041999999929 +17186,17413,179923.749798749,372597.243327171,27.1999999999971 +17187,13520,179923.823577322,372596.58868967,27.1999999999971 +17188,1712,179923.860700004,372596.259300001,27.1999999999971 +17189,13519,179923.904900081,372595.867089458,27.1999999999971 +17190,13105,179924.063535761,372595.647906512,27.5893000000069 +17191,1707,179923.9663,372596.511300005,27.5893000000069 +17192,13104,179925.291460726,372594.996134479,27.7878999999957 +17193,9428,179924.160771523,372594.784513015,27.5893000000069 +17194,13518,179924.233698346,372594.136967894,27.5893000000069 +17195,13515,179924.306625158,372593.48942278,27.5893000000069 +17196,24620,179927.670625005,372594.088325005,28.4875000000029 +17197,24618,179929.700000003,372595.417999998,28.5185999999958 +17198,24619,179927.151750002,372598.961649999,28.4850000000006 +17199,1717,179926.114000004,372608.708300002,28.4799999999959 +17200,13106,179924.160623867,372605.465609517,27.7841000000044 +17201,1710,179923.824499998,372608.577500001,27.7829999999958 +17202,13108,179923.383293789,372612.662475422,27.7814999999973 +17203,17387,179922.368816517,372610.720056754,27.5889000000025 +17204,1708,179922.457500003,372609.909500003,27.5895000000019 +17205,17386,179922.266176887,372610.430152953,27.1999999999971 +17206,17388,179922.241635848,372610.654380769,27.1999999999971 +17207,17385,179922.217094798,372610.878608573,27.1999999999971 +17208,13537,179922.280133042,372611.530613512,27.5883000000031 +17209,13538,179922.118930634,372611.775519811,27.1999999999971 +17210,13539,179922.19144956,372612.341170263,27.5877000000037 +17211,17383,179922.075907614,372612.168614678,27.1999999999971 +17212,17370,179922.038319938,372612.512047626,27.1999999999971 +17213,13110,179922.102766074,372613.151727021,27.5871000000043 +17214,17380,179922.038395017,372613.740071069,27.5865999999951 +17215,17372,179921.974023953,372614.328415122,27.5862000000052 +17216,17374,179921.861028053,372615.361184578,27.5853999999963 +17217,13109,179921.748032156,372616.393954039,27.584600000002 +17218,13543,179921.53392709,372618.350849524,27.5831000000035 +17219,13111,179922.221509576,372623.419032857,27.777700000006 +17220,13112,179921.319822032,372620.307745002,27.581600000005 +17221,13546,179921.143590845,372621.918477677,27.5804000000062 +17222,13548,179921.033834841,372622.921634831,27.579700000002 +17223,13550,179920.962723382,372623.571585402,27.5791999999929 +17224,9431,179920.891611911,372624.221535973,27.5786999999982 +17225,13554,179921.971404787,372625.734666426,27.7768000000069 +17226,13553,179920.799584672,372625.062654231,27.5780999999988 +17227,13552,179920.707557444,372625.903772485,27.5773999999947 +17228,13556,179920.615530215,372626.744890738,27.5767999999953 +17229,13555,179920.532920588,372626.266655397,27.1999999999971 +17230,17349,179920.499544963,372626.571603458,27.1999999999971 +17231,17347,179920.430452593,372626.283687104,24.690300000002 +17232,17345,179920.466169335,372626.876551524,27.1999999999971 +17233,17344,179920.317535974,372627.315389324,24.6852999999974 +17234,17346,179920.432793714,372627.181499586,27.1999999999971 +17235,13557,179920.399418086,372627.486447651,27.1999999999971 +17236,9432,179920.523502979,372627.586008992,27.5761000000057 +17237,1720,179921.721299998,372628.050299998,27.775999999998 +17238,9433,179920.431475751,372628.427127246,27.5755000000063 +17239,1718,179920.400800008,372628.7075,27.5752999999968 +17240,13562,179921.434554812,372630.705034498,27.7749999999942 +17241,13563,179920.230293039,372630.265838187,27.574099999998 +17242,13565,179920.145039551,372631.045007285,27.5734999999986 +17243,13561,179920.05978607,372631.824176379,27.5728999999992 +17244,13115,179921.147809621,372633.359768998,27.7740999999951 +17245,24603,179923.621729586,372632.116048668,28.4799999999959 +17246,102,179924.038500004,372628.201699998,28.4799999999959 +17247,24601,179925.064000007,372636.273000002,28.5112999999983 +17248,24602,179923.204959176,372636.030397344,28.4799999999959 +17249,24604,179922.583979588,372641.86269867,28.4799999999959 +17250,1724,179921.962999996,372647.695,28.4799999999959 +17251,13116,179920.024591908,372643.758704782,27.770399999994 +17252,1721,179919.618000001,372647.523000002,27.7690000000002 +17253,13582,179919.276290666,372650.545074865,27.7700999999943 +17254,17298,179918.191716947,372648.86951872,27.5608999999968 +17255,17299,179918.11557541,372649.551528078,27.5608000000066 +17256,13581,179918.039433882,372650.233537432,27.5608000000066 +17257,17294,179917.954430278,372650.994925592,27.5607000000018 +17258,17293,179917.834577762,372650.860315859,27.1999999999971 +17259,17295,179917.798176873,372651.187429007,27.1999999999971 +17260,17291,179917.667539097,372651.457144286,24.6018999999942 +17261,17292,179917.761775982,372651.514542162,27.1999999999971 +17262,13586,179917.704277311,372652.031248555,27.1999999999971 +17263,17289,179917.523582131,372652.750799984,24.6055999999953 +17264,17290,179917.641871452,372652.59205291,27.1999999999971 +17265,13584,179917.57946559,372653.152857266,27.1999999999971 +17266,13587,179917.784423046,372652.517701905,27.5605999999971 +17267,13119,179917.699419439,372653.279090058,27.5605999999971 +17268,17286,179917.517463561,372653.710032653,27.1999999999971 +17269,17285,179917.377173711,372654.066485461,24.6092999999964 +17270,17288,179917.486462548,372653.988620348,27.1999999999971 +17271,17281,179917.455461536,372654.267208036,27.1999999999971 +17272,17283,179917.393459506,372654.824383419,27.1999999999971 +17273,17279,179917.331457473,372655.381558809,27.1999999999971 +17274,17287,179917.637163352,372653.836725719,27.5605000000069 +17275,13585,179917.86942666,372651.756313745,27.5607000000018 +17276,17296,179917.828572772,372650.010030411,24.5978999999934 +17277,1746,179912.5009,372647.500300001,24.3600000000006 +17278,17301,179918.001959443,372648.451907434,24.5935000000027 +17279,17300,179918.071952485,372648.727170341,27.1999999999971 +17280,17304,179918.103989206,372648.439275354,27.1999999999971 +17281,17303,179918.267858475,372648.187509358,27.5608999999968 +17282,17302,179918.136025935,372648.151380364,27.1999999999971 +17283,13580,179918.200099379,372647.575590387,27.1999999999971 +17284,1757,179918.138599999,372647.223999999,24.5899999999965 +17285,1756,179918.238000002,372647.234999999,27.1999999999971 +17286,1719,179918.344000001,372647.5055,27.5610000000015 +17287,9436,179918.415731315,372646.849916,27.5614999999962 +17288,13578,179918.523328278,372645.866539981,27.5622000000003 +17289,13577,179918.309288673,372646.58364616,27.1999999999971 +17290,13579,179918.255822171,372647.072161544,27.1999999999971 +17291,17305,179918.293442778,372645.809224781,24.5967999999993 +17292,1743,179912.5002,372642.500300005,24.3500000000058 +17293,1760,179907.500799999,372647.500599999,24.3099999999977 +17294,1744,179907.500799999,372642.500600003,24.320000000007 +17295,1741,179907.500799999,372637.500799999,24.3600000000006 +17296,1739,179912.500100005,372637.500600003,24.3600000000006 +17297,1737,179907.500100002,372632.500700001,24.3999999999942 +17298,1740,179902.500900004,372637.500700004,24.5200000000041 +17299,1736,179902.500600003,372632.500599999,24.4700000000012 +17300,1735,179907.500300005,372627.500900004,24.4400000000023 +17301,1734,179902.500399999,372627.500700001,24.4400000000023 +17302,20367,179896.129675001,372628.786525004,24.3686000000016 +17303,1759,179895.651100002,372633.115699999,24.3714000000036 +17304,52,179897.500500005,372637.500799999,24.3899999999994 +17305,1745,179897.500900004,372642.5009,24.4100000000035 +17306,1742,179902.500500001,372642.500200003,24.5500000000029 +17307,1763,179902.500800002,372647.500599999,24.5599999999977 +17308,1747,179897.500400003,372647.500599999,24.429999999993 +17309,1749,179897.500400003,372652.500400003,24.4100000000035 +17310,1758,179897.565400001,372615.799000002,24.3600000000006 +17311,20366,179898.077034041,372611.192660481,24.377800000002 +17312,1696,179902.500200003,372612.500900004,24.3699999999953 +17313,1692,179902.500600003,372607.500599999,24.5299999999988 +17314,1695,179907.500799999,372612.500600006,24.4900000000052 +17315,1726,179907.500600003,372617.500300005,24.4799999999959 +17316,1725,179902.500300005,372617.500300005,24.3999999999942 +17317,1730,179902.500800002,372622.500499997,24.429999999993 +17318,1731,179907.500700004,372622.500600003,24.4700000000012 +17319,1733,179912.500400003,372627.500599999,24.320000000007 +17320,1728,179912.500500008,372622.500300001,24.3099999999977 +17321,1732,179917.5002,372627.500000004,24.5399999999936 +17322,1766,179917.500400003,372632.500599999,24.5599999999977 +17323,17341,179920.013967056,372630.089052949,24.6720999999961 +17324,17343,179920.150191758,372628.844388235,24.6779999999999 +17325,1723,179920.195599999,372628.429500002,24.679999999993 +17326,13559,179920.257990729,372628.778648183,27.1999999999971 +17327,1722,179920.295000006,372628.440499999,27.1999999999971 +17328,13558,179920.321104527,372628.201986909,27.1999999999971 +17329,17342,179920.11423073,372630.09216167,27.1999999999971 +17330,13564,179920.077770174,372630.425296325,27.1999999999971 +17331,17339,179919.8808336,372631.305473357,24.6662000000069 +17332,17340,179920.00159087,372631.121335175,27.1999999999971 +17333,13566,179919.943689901,372631.650367636,27.1999999999971 +17334,17337,179919.77803592,372632.24472028,24.6616999999969 +17335,17338,179919.896942053,372632.077495731,27.1999999999971 +17336,13560,179919.850194197,372632.50462383,27.1999999999971 +17337,13114,179919.946250498,372632.86182794,27.5721000000049 +17338,17335,179919.788251359,372633.070586219,27.1999999999971 +17339,17334,179919.681259137,372633.128955215,24.6575000000012 +17340,17336,179919.757279951,372633.353567414,27.1999999999971 +17341,13567,179919.726308532,372633.636548612,27.1999999999971 +17342,13569,179919.889354315,372633.38182712,27.5717000000004 +17343,13568,179919.832458138,372633.901826303,27.571299999996 +17344,17333,179919.682354152,372634.038153131,27.1999999999971 +17345,17332,179919.581619509,372634.039347555,24.6530999999959 +17346,17328,179919.618999101,372634.617018715,27.1999999999971 +17347,17327,179919.462906729,372635.124008399,24.6478999999963 +17348,17331,179919.589512195,372634.886436123,27.1999999999971 +17349,17329,179919.56002529,372635.155853529,27.1999999999971 +17350,13570,179919.51168967,372635.597488832,27.1999999999971 +17351,13571,179919.662079558,372635.458991095,27.5702000000019 +17352,17330,179919.747268852,372634.680408701,27.5708000000013 +17353,13113,179921.062318742,372634.151257757,27.7737999999954 +17354,24609,179920.802887026,372636.553119514,27.7728999999963 +17355,24610,179919.576890271,372636.237573486,27.5696000000025 +17356,9434,179919.491700988,372637.01615588,27.5690000000031 +17357,24614,179919.384104017,372637.999531887,27.5681999999942 +17358,13572,179919.307020713,372637.467518348,27.1999999999971 +17359,24616,179919.246629592,372638.019302987,27.1999999999971 +17360,17324,179919.138188116,372638.090913597,24.6337000000058 +17361,24617,179919.216955878,372638.290427208,27.1999999999971 +17362,17323,179919.187282175,372638.561551437,27.1999999999971 +17363,17320,179918.972482726,372639.604938831,24.6264999999985 +17364,17325,179919.305030316,372636.566501446,24.6410000000033 +17365,1738,179912.5009,372632.500800002,24.3300000000017 +17366,17321,179919.085820328,372639.488593034,27.1999999999971 +17367,24613,179919.045671277,372639.855428904,27.1999999999971 +17368,13573,179918.940685961,372640.814663999,27.1999999999971 +17369,17318,179918.784292735,372641.324402478,24.6183000000019 +17370,17312,179918.620135777,372642.82427993,24.6110999999946 +17371,17308,179918.460366614,372644.284066811,24.6040999999968 +17372,13576,179918.62349844,372643.712758731,27.1999999999971 +17373,17314,179918.702795316,372642.988235049,27.1999999999971 +17374,17317,179918.742443755,372642.625973202,27.1999999999971 +17375,17313,179918.782092195,372642.263711363,27.1999999999971 +17376,17315,179918.9066085,372642.363573454,27.5648999999976 +17377,24607,179918.983960807,372641.656616688,27.5654000000068 +17378,24606,179920.284023613,372641.356843028,27.7712000000029 +17379,13117,179919.061313108,372640.949659921,27.5660000000062 +17380,17319,179918.885967951,372641.314614195,27.1999999999971 +17381,24608,179918.843151476,372641.705821905,27.1999999999971 +17382,24612,179919.17669379,372639.895145178,27.5668000000005 +17383,24605,179920.543455321,372638.954981267,27.772100000002 +17384,17322,179919.276507042,372638.982907895,27.5675000000047 +17385,24615,179919.330305535,372638.491219897,27.5678999999946 +17386,17316,179918.829256192,372643.070530213,27.5644000000029 +17387,13575,179918.751903884,372643.77748698,27.5638000000035 +17388,17310,179918.691414565,372644.330325477,27.5633999999991 +17389,9435,179918.630925249,372644.883163974,27.5629999999946 +17390,17307,179918.458254132,372645.222571176,27.1999999999971 +17391,17306,179918.393353581,372645.8155577,27.1999999999971 +17392,13574,179918.523154672,372644.629584651,27.1999999999971 +17393,17311,179918.548240609,372644.400378168,27.1999999999971 +17394,17309,179918.57332655,372644.171171691,27.1999999999971 +17395,17326,179919.393485833,372636.677499525,27.1999999999971 +17396,24611,179919.440159496,372636.25104931,27.1999999999971 +17397,1729,179917.500400003,372622.500300001,24.5 +17398,1765,179912.500799999,372617.500200003,24.2899999999936 +17399,1727,179917.500700001,372617.500700004,24.4499999999971 +17400,1701,179917.500599999,372612.500500001,24.3899999999994 +17401,17376,179921.664318774,372615.010037176,24.7443000000058 +17402,17378,179921.806279469,372613.712963663,24.7504999999946 +17403,17369,179921.839177039,372613.412383504,24.7519000000029 +17404,17382,179921.976120632,372612.161150441,24.7578999999969 +17405,17384,179922.137276579,372610.688692771,24.7649999999994 +17406,1693,179917.500599999,372607.500700001,24.3600000000006 +17407,1700,179912.500300001,372607.500900004,24.2899999999936 +17408,1689,179917.500500005,372602.500300001,24.3600000000006 +17409,17397,179922.695246439,372605.707396746,24.7485000000015 +17410,17392,179922.544109154,372607.048438307,24.755799999999 +17411,17389,179922.39674025,372608.356043082,24.7630000000063 +17412,1714,179922.252599999,372609.635000002,24.7700000000041 +17413,13533,179922.432768665,372608.92933942,27.1999999999971 +17414,17391,179922.468206815,372608.614896625,27.1999999999971 +17415,17390,179922.503644962,372608.300453823,27.1999999999971 +17416,13531,179922.599041861,372607.453996789,27.1999999999971 +17417,13532,179922.640314616,372608.286099412,27.5895000000019 +17418,9429,179922.75000339,372607.312059063,27.5895000000019 +17419,17393,179922.642458498,372607.068760835,27.1999999999971 +17420,17396,179922.688739926,372606.658105567,27.1999999999971 +17421,17395,179922.849977158,372606.424288314,27.5893999999971 +17422,13530,179922.949950922,372605.536517568,27.5893999999971 +17423,13528,179923.130388252,372603.934227366,27.5893999999971 +17424,13107,179923.358151697,372601.911679529,27.5893999999971 +17425,13523,179924.726042297,372600.230871998,27.7859999999928 +17426,13524,179923.4885392,372600.753833648,27.5893999999971 +17427,17408,179923.575382527,372599.982661709,27.5893999999971 +17428,13522,179923.662225846,372599.211489771,27.5893000000069 +17429,17407,179923.482118003,372599.618459307,27.1999999999971 +17430,17410,179923.451528121,372599.889883421,27.1999999999971 +17431,17406,179923.420938239,372600.161307536,27.1999999999971 +17432,17409,179923.356922492,372599.836343013,24.7163 +17433,13526,179923.313413445,372601.115375388,27.1999999999971 +17434,13521,179923.271795206,372601.484654162,27.1999999999971 +17435,17401,179923.172032144,372601.476875629,24.7253000000055 +17436,17404,179923.244540386,372601.72648631,27.1999999999971 +17437,17403,179923.130263202,372601.847491562,24.7274000000034 +17438,17399,179922.9230179,372603.686379813,24.7373999999982 +17439,13527,179923.048425868,372603.466611013,27.1999999999971 +17440,17402,179923.217520937,372601.966229953,27.1999999999971 +17441,17400,179923.002978675,372603.869864196,27.1999999999971 +17442,13529,179922.827584218,372605.426139768,27.1999999999971 +17443,17398,179922.791812498,372605.743542295,27.1999999999971 +17444,17394,179922.735021353,372606.2474503,27.1999999999971 +17445,1688,179912.500100005,372602.5002,24.3000000000029 +17446,1683,179912.500400003,372597.500399999,24.320000000007 +17447,1686,179907.500600003,372597.500600003,24.5099999999948 +17448,1690,179907.5009,372602.500800006,24.5 +17449,1691,179907.500600003,372607.500500005,24.5099999999948 +17450,1694,179912.5002,372612.500200003,24.2899999999936 +17451,1687,179902.500900004,372602.5002,24.5299999999988 +17452,1685,179902.500700008,372597.500600003,24.570000000007 +17453,1681,179902.500700008,372592.500600003,24.5 +17454,1680,179907.500300005,372592.500300005,24.4900000000052 +17455,1678,179907.5009,372587.5002,24.4400000000023 +17456,1676,179907.500799999,372582.500400003,24.4499999999971 +17457,1674,179907.500300005,372577.500500001,24.4600000000064 +17458,1664,179912.500600003,372572.500600003,24.4799999999959 +17459,1662,179907.500399999,372572.500100002,24.4499999999971 +17460,1661,179912.500700004,372567.500700001,24.4900000000052 +17461,1660,179907.500500001,372567.500200007,24.3899999999994 +17462,1669,179907.500200003,372562.500100005,24.3699999999953 +17463,1658,179912.500600003,372562.500100005,24.4900000000052 +17464,1657,179912.5002,372557.500700004,24.4799999999959 +17465,1656,179907.500799999,372557.500300001,24.4400000000023 +17466,20362,179903.959286381,372557.561201047,24.5240999999951 +17467,1666,179904.474100005,372552.559099998,24.5099999999948 +17468,20361,179904.816030562,372549.236560561,24.5005999999994 +17469,1670,179904.5803,372537.412300009,28.2400000000052 +17470,1665,179905.931699999,372538.395599999,24.4700000000012 +17471,20360,179906.296125002,372534.854725003,24.4600000000064 +17472,1550,179907.389400005,372524.232099999,24.429999999993 +17473,1554,179906.458700005,372520.892700002,28.2799999999988 +17474,1551,179908.337000001,372504.373,28.3099999999977 +17475,1549,179911.208299998,372492.714200005,24.4900000000052 +17476,1548,179911.3079,372492.726100001,24.4900000000052 +17477,1539,179912.5009,372502.500800002,24.4499999999971 +17478,1537,179917.500599999,372497.500800002,24.3999999999942 +17479,1536,179917.500900004,372492.500700004,24.3899999999994 +17480,1558,179922.500700001,372497.500500005,24.3699999999953 +17481,1538,179917.500700001,372502.500599999,24.4499999999971 +17482,1560,179922.500999998,372502.500700001,24.3399999999965 +17483,1559,179927.500100002,372497.500700001,24.2200000000012 +17484,1557,179927.500200003,372492.500600003,24.2200000000012 +17485,1556,179922.500200003,372492.5002,24.4100000000035 +17486,1500,179922.500599999,372487.500300005,24.4400000000023 +17487,1520,179917.500300001,372487.500300005,24.3600000000006 +17488,1496,179922.500200003,372482.500500001,24.4499999999971 +17489,1519,179917.5002,372482.500500001,24.3399999999965 +17490,1518,179917.500400003,372477.500800002,24.3600000000006 +17491,1531,179912.628600001,372482.1668,24.8899999999994 +17492,20356,179912.173824936,372485.802831165,24.7522999999928 +17493,1529,179911.881300002,372485.724300005,24.7100000000064 +17494,1521,179910.306000002,372487.548999999,27.9930000000022 +17495,1528,179910.660800003,372485.660600003,24.7100000000064 +17496,12517,179910.969136141,372481.410783868,27.9953999999998 +17497,20355,179911.066967458,372481.901461482,24.6601999999984 +17498,20354,179911.158448637,372481.05478996,24.6490000000049 +17499,1530,179912.331300009,372482.127799999,24.8899999999994 +17500,20353,179911.622003287,372476.76452465,24.5923000000039 +17501,20352,179911.483451892,372476.650100462,27.9973000000027 +17502,20351,179911.812248483,372475.003777891,24.5690000000031 +17503,12518,179911.940801542,372472.416714817,27.998900000006 +17504,20349,179912.051179122,372471.395021953,27.9992999999959 +17505,12519,179912.099899065,372470.944053397,27.9995000000054 +17506,20348,179912.21090322,372471.314170696,24.5200999999943 +17507,1532,179912.293600008,372470.548799999,24.5099999999948 +17508,1527,179913.447000001,372470.889600005,24.5099999999948 +17509,20346,179913.649946027,372471.969772644,24.7535999999964 +17510,1517,179917.500900004,372472.500599999,24.3600000000006 +17511,1525,179913.437500004,372474.303599998,24.8300000000017 +17512,1495,179922.500100002,372477.500700001,24.4700000000012 +17513,1511,179922.500700001,372472.500599999,24.5 +17514,1493,179927.500399999,372477.500100005,24.25 +17515,1492,179927.500300005,372472.500800006,24.2700000000041 +17516,1491,179927.500399999,372467.5009,24.2799999999988 +17517,1509,179932.500700004,372472.500100005,24.2299999999959 +17518,1489,179932.500200003,372467.500600003,24.2400000000052 +17519,17738,179937.774211075,372469.820027042,24.3576999999932 +17520,17741,179937.923748106,372468.448671836,24.3583000000071 +17521,17744,179938.082589407,372466.991990197,24.3591000000015 +17522,1508,179938.284699999,372465.138500005,24.3600000000006 +17523,1488,179932.500399999,372462.5009,24.2200000000012 +17524,1487,179927.5009,372462.5009,24.3099999999977 +17525,1484,179927.500700004,372457.500599999,24.3600000000006 +17526,1512,179932.500399999,372457.5002,24.1900000000023 +17527,20144,179938.799921501,372460.912237212,24.3555000000051 +17528,17753,179938.944514241,372459.726170782,24.3543000000063 +17529,17756,179939.159245159,372457.964774389,24.3524000000034 +17530,17758,179939.355491742,372456.355001468,24.3506999999954 +17531,24707,179939.468888655,372455.424828436,24.3497000000061 +17532,17761,179939.582285564,372454.494655404,24.348800000007 +17533,24713,179939.723904852,372453.332979631,24.3475000000035 +17534,24714,179939.764581349,372453.825105574,27.1999999999971 +17535,24725,179939.800013289,372453.53445771,27.1999999999971 +17536,24712,179939.835445233,372453.243809849,27.1999999999971 +17537,24727,179939.89694725,372452.739309475,27.1999999999971 +17538,13344,179939.958449259,372452.234809108,27.1999999999971 +17539,17764,179940.008415196,372451.82493905,27.1999999999971 +17540,6596,179940.146226227,372451.86123674,27.5164999999979 +17541,20140,179940.154194605,372450.629112117,27.1999999999971 +17542,20139,179940.30545897,372450.553218015,27.5166999999929 +17543,20138,179941.424262065,372450.544298314,27.7005999999965 +17544,13342,179940.411646474,372449.680939764,27.5169000000024 +17545,24718,179941.656881034,372448.643649161,27.6998000000021 +17546,24717,179943.985287298,372450.325532965,28.449099999998 +17547,1476,179944.462499999,372446.836000003,28.4400000000023 +17548,20127,179942.527203601,372441.532544356,27.6968000000052 +17549,17781,179941.215651225,372443.076419018,27.5181000000011 +17550,20129,179941.325410668,372442.174794413,27.5182000000059 +17551,6595,179941.426515013,372441.344267514,27.5184000000008 +17552,17784,179941.246298168,372441.670597944,27.1999999999971 +17553,20130,179941.177621592,372442.233951185,27.1999999999971 +17554,17783,179941.147740971,372441.653304793,24.3352000000014 +17555,20131,179941.057926711,372442.390069686,24.3359999999957 +17556,17779,179940.96811245,372443.126834586,24.3366999999998 +17557,17777,179940.77028228,372444.749676254,24.338499999998 +17558,13338,179940.897083297,372444.535203848,27.1999999999971 +17559,17778,179940.869194694,372444.763973791,27.1999999999971 +17560,17782,179941.062783714,372443.175965089,27.1999999999971 +17561,17780,179941.097900968,372442.88789862,27.1999999999971 +17562,20132,179941.13776128,372442.560924903,27.1999999999971 +17563,17785,179941.312230375,372440.303964261,24.3337999999931 +17564,13335,179941.298718631,372441.240593374,27.1999999999971 +17565,17787,179941.384138897,372440.539891873,27.1999999999971 +17566,17789,179941.426849023,372440.189541128,27.1999999999971 +17567,17786,179941.469559155,372439.839190375,27.1999999999971 +17568,17790,179941.471214626,372438.99978368,24.3323999999993 +17569,17791,179941.554979414,372439.138488874,27.1999999999971 +17570,24734,179941.576334476,372438.963313498,27.1999999999971 +17571,17792,179941.597689547,372438.788138118,27.1999999999971 +17572,13334,179941.640399672,372438.437787373,27.1999999999971 +17573,17793,179941.612347219,372437.842043918,24.3312000000005 +17574,24740,179941.708364621,372437.054393347,24.3303000000014 +17575,17795,179941.804382022,372436.266742781,24.3295000000071 +17576,17797,179941.967311993,372434.93019468,24.3280999999988 +17577,17799,179942.153836347,372433.400096923,24.3264999999956 +17578,17802,179942.309414249,372432.123859294,24.3251000000018 +17579,17800,179942.362200093,372432.516866043,27.1999999999971 +17580,20121,179942.395254545,372432.245720722,27.1999999999971 +17581,17803,179942.428308994,372431.974575408,27.1999999999971 +17582,13330,179942.494417895,372431.432284776,27.1999999999971 +17583,20124,179942.541083425,372431.049487937,27.1999999999971 +17584,20123,179942.663574588,372431.182377711,27.520199999999 +17585,20126,179942.553648721,372430.946414903,27.1999999999971 +17586,20122,179942.721350305,372430.707776137,27.5203000000038 +17587,20119,179943.766540628,372431.406350028,27.6925999999949 +17588,13331,179942.836901728,372429.758572984,27.5204999999987 +17589,1467,179944.251000002,372427.448000003,27.6910000000062 +17590,17809,179942.952453148,372428.809369832,27.5206999999937 +17591,6594,179943.068004578,372427.860166684,27.5209000000032 +17592,17812,179942.889376603,372428.192442585,27.1999999999971 +17593,17808,179942.83444168,372428.643073171,27.1999999999971 +17594,17810,179942.785475567,372429.044741727,27.1999999999971 +17595,17807,179942.73650945,372429.446410283,27.1999999999971 +17596,13332,179942.681080006,372429.901097383,27.1999999999971 +17597,1458,179943.164500006,372427.067500003,27.5209999999934 +17598,20112,179943.229192384,372426.560770746,27.5206999999937 +17599,20111,179944.401807763,372426.326369084,27.6906000000017 +17600,1471,179947.096000001,372427.579,28.3999999999942 +17601,20106,179944.854231067,372422.961476322,27.6894000000029 +17602,24746,179947.805580851,372421.941122439,28.4030000000057 +17603,24748,179945.15369235,372420.734236684,27.6885000000038 +17604,24747,179945.453153636,372418.506997041,27.6876999999949 +17605,24753,179945.752614912,372416.279757407,27.6869000000006 +17606,1457,179944.408100005,372417.326500006,27.5158999999985 +17607,24756,179944.312115386,372418.07833834,27.516300000003 +17608,20109,179944.216130774,372418.830176681,27.5166999999929 +17609,24749,179944.120146152,372419.582015023,27.5170999999973 +17610,20110,179944.13949433,372418.366508752,27.1999999999971 +17611,17826,179944.188975777,372417.979231786,27.1999999999971 +17612,13317,179944.28793868,372417.204677846,27.1999999999971 +17613,22730,179944.32659696,372416.902110737,27.1999999999971 +17614,22729,179944.473349527,372416.815428302,27.5195999999996 +17615,17818,179944.024161533,372420.333853368,27.5175000000017 +17616,17819,179943.832192294,372421.837530043,27.5182999999961 +17617,17821,179943.697414946,372421.826535732,27.1999999999971 +17618,17817,179943.64661679,372422.22411811,27.1999999999971 +17619,20107,179943.736207683,372422.589368384,27.5187000000005 +17620,20108,179943.571426112,372422.812613722,27.1999999999971 +17621,13319,179943.64022306,372423.341206726,27.5190000000002 +17622,20113,179943.467053913,372424.697624106,27.5197999999946 +17623,13318,179943.496235434,372423.401109327,27.1999999999971 +17624,20116,179943.380469341,372425.3758328,27.5200999999943 +17625,13321,179943.293884773,372426.054041486,27.5204999999987 +17626,24730,179946.408991572,372432.602626875,28.4103999999934 +17627,24735,179943.456706375,372433.937898614,27.6937000000034 +17628,20120,179942.490247454,372432.606182434,27.5200000000041 +17629,13329,179942.374696024,372433.555385582,27.5197999999946 +17630,24736,179942.259144604,372434.504588734,27.5195999999996 +17631,13333,179942.229982287,372433.601447303,27.1999999999971 +17632,13327,179942.094243292,372434.714912899,27.1999999999971 +17633,17798,179942.043085273,372435.134561524,27.1999999999971 +17634,13325,179942.143593181,372435.453791879,27.5194999999949 +17635,17796,179941.99192727,372435.554210145,27.1999999999971 +17636,13324,179941.889611255,372436.393507395,27.1999999999971 +17637,24737,179942.00849317,372436.563577868,27.5192999999999 +17638,24741,179941.829892755,372436.883377589,27.1999999999971 +17639,24742,179941.800816137,372437.121892788,27.1999999999971 +17640,24738,179941.896773633,372437.481303781,27.519100000005 +17641,24731,179943.146872114,372436.469447188,27.6946999999927 +17642,24732,179942.837037861,372439.000995774,27.6958000000013 +17643,13326,179941.785054099,372438.399029698,27.5188999999955 +17644,24733,179941.695419326,372439.135339156,27.5188000000053 +17645,17788,179941.605784558,372439.87164861,27.5187000000005 +17646,24729,179945.721983142,372437.626253739,28.4208999999973 +17647,20128,179941.516149782,372440.607958063,27.5185000000056 +17648,17794,179941.712021019,372437.850278188,27.1999999999971 +17649,24739,179941.770174261,372437.37324778,27.1999999999971 +17650,17801,179942.262245309,372433.336794078,27.1999999999971 +17651,13328,179942.605798878,372431.656979281,27.520199999999 +17652,24728,179948.081999999,372437.207000002,28.5200000000041 +17653,24715,179945.555234481,372453.522460777,28.5593999999983 +17654,17805,179942.587748948,372430.666691083,27.1999999999971 +17655,20125,179942.564416185,372430.85808951,27.1999999999971 +17656,24716,179943.508074589,372453.815065932,28.4581000000035 +17657,24693,179942.553649183,372460.794131868,28.4762000000046 +17658,24692,179943.914000001,372464.120000005,28.4900000000052 +17659,24694,179942.191324588,372463.443565931,28.4830999999976 +17660,1514,179941.829,372466.093000002,28.4900000000052 +17661,24668,179941.037581693,372472.367689382,28.4609000000055 +17662,20152,179939.106848985,372469.650812343,27.7122999999992 +17663,24670,179938.847158667,372471.878546312,27.7155999999959 +17664,17737,179937.963019077,372470.241132174,27.5166999999929 +17665,13359,179937.834744215,372471.403082762,27.517399999997 +17666,24675,179937.770606782,372471.98405806,27.5176999999967 +17667,24676,179937.653360661,372471.850554876,27.1999999999971 +17668,13360,179937.698164567,372471.439666729,27.1999999999971 +17669,17734,179937.60726608,372471.351024996,24.3568999999989 +17670,24677,179937.507385038,372472.267001405,24.3564000000042 +17671,17730,179937.407503996,372473.182977814,24.3559999999998 +17672,24678,179937.568643354,372472.627481285,27.1999999999971 +17673,24674,179937.608556755,372472.261443023,27.1999999999971 +17674,24671,179937.706469353,372472.565033354,27.5181000000011 +17675,24686,179937.680922877,372472.796440698,27.5182000000059 +17676,13358,179937.518948942,372473.083219308,27.1999999999971 +17677,24672,179937.642331921,372473.146008655,27.5184000000008 +17678,24669,179938.58746833,372474.106280282,27.7188000000024 +17679,6599,179937.578194492,372473.726983946,27.5187000000005 +17680,24684,179937.510706529,372474.338309322,27.519100000005 +17681,24689,179938.530492093,372474.595046647,27.7195000000065 +17682,24682,179937.44321857,372474.949634697,27.5194000000047 +17683,24683,179937.3757306,372475.560960073,27.5197999999946 +17684,17729,179937.278351337,372475.289694317,27.1999999999971 +17685,17727,179937.202457786,372475.985699695,27.1999999999971 +17686,17728,179937.220743652,372474.895695817,24.3551000000007 +17687,17726,179937.054150719,372476.423465163,24.3543000000063 +17688,13363,179937.156469412,372476.407450318,27.1999999999971 +17689,13362,179937.308242638,372476.172285452,27.5200999999943 +17690,24680,179937.240754675,372476.783610828,27.5204999999987 +17691,24681,179937.112408176,372476.811527591,27.1999999999971 +17692,20163,179937.173266716,372477.394936204,27.5207999999984 +17693,24679,179938.270801768,372476.822780628,27.7228000000032 +17694,6600,179937.038290784,372478.617586955,27.5215000000026 +17695,20157,179937.954135206,372479.539280962,27.726800000004 +17696,24667,179940.246163391,372478.642378759,28.431700000001 +17697,24691,179940.641872536,372475.50503407,28.446299999996 +17698,24690,179942.065040294,372477.645167496,28.4389999999985 +17699,24666,179941.875999998,372479.028000005,28.4421000000002 +17700,24659,179940.103999998,372493.997000005,28.4523999999947 +17701,24641,179937.466486134,372500.680801712,28.3215000000055 +17702,24640,179937.992972266,372496.50660342,28.3430999999982 +17703,20184,179935.855105899,372497.545646191,27.7532000000065 +17704,24642,179935.56512659,372500.033211902,27.7568000000028 +17705,20194,179935.275147285,372502.520777609,27.760500000004 +17706,1618,179934.995000005,372504.923999999,27.7639999999956 +17707,13385,179934.256703813,372503.813907698,27.5357999999978 +17708,13387,179934.19010191,372504.417203855,27.5362000000023 +17709,1570,179934.123500001,372505.020500001,27.536500000002 +17710,6603,179934.04937711,372505.630794764,27.5360999999975 +17711,17673,179933.982642472,372506.180257916,27.5356999999931 +17712,17672,179933.907311033,372506.019394428,27.1999999999971 +17713,17674,179933.873497717,372506.27182062,27.1999999999971 +17714,17671,179933.814087454,372505.961962562,24.3643000000011 +17715,17668,179933.83968439,372506.524246808,27.1999999999971 +17716,17666,179933.619590215,372507.41399793,24.4101999999984 +17717,17670,179933.778661717,372506.979798656,27.1999999999971 +17718,20201,179933.748150382,372507.207574572,27.1999999999971 +17719,17667,179933.717639044,372507.4353505,27.1999999999971 +17720,13391,179933.656705458,372507.890237253,27.1999999999971 +17721,13390,179933.782438561,372507.82864739,27.5344999999943 +17722,20200,179933.849173196,372507.279184226,27.5348999999987 +17723,17669,179933.915907834,372506.729721073,27.5353000000032 +17724,17665,179933.527612679,372508.853952032,27.1999999999971 +17725,17664,179933.429142486,372508.835801333,24.4551999999967 +17726,1609,179933.239700001,372510.250100002,24.5 +17727,1622,179927.500399999,372507.500600003,24.2200000000012 +17728,1564,179927.500300005,372512.500300005,24.25 +17729,17661,179933.176872749,372510.841546908,24.4869999999937 +17730,13396,179933.250251155,372511.097485948,27.1999999999971 +17731,17658,179933.148171034,372512.058473118,27.1999999999971 +17732,17657,179933.005939312,372512.450690124,24.4514999999956 +17733,17659,179933.110192303,372512.416006692,27.1999999999971 +17734,13398,179933.072213572,372512.773540266,27.1999999999971 +17735,17649,179932.851853665,372513.90123057,24.4195999999938 +17736,17655,179932.813892253,372514.258593984,24.4116999999969 +17737,1608,179932.661000002,372515.697900001,24.3800000000047 +17738,1565,179927.500600003,372517.500599999,24.2599999999948 +17739,17620,179933.790181082,372518.047303453,24.5139999999956 +17740,17621,179933.916481413,372516.892415244,24.4977999999974 +17741,17622,179934.071511786,372516.394935891,27.1999999999971 +17742,17623,179933.997982904,372516.147166964,24.4873999999982 +17743,17624,179934.146255899,372515.711467948,27.1999999999971 +17744,17625,179934.070982985,372515.479655344,24.478099999993 +17745,17626,179934.183627952,372515.369733974,27.1999999999971 +17746,1607,179933.2333,372514.951699998,24.4700000000012 +17747,17648,179932.803715643,372515.511818554,24.4024000000063 +17748,13400,179933.033323161,372515.048177477,27.1999999999971 +17749,1582,179933.137000002,372514.913000003,27.1999999999971 +17750,17654,179933.001174059,372514.820416681,27.5385999999999 +17751,1572,179932.974000003,372515.0737,27.5388999999996 +17752,1581,179932.797999997,372515.355,27.1999999999971 +17753,17653,179932.866553396,372514.709635068,27.1999999999971 +17754,17641,179933.028348118,372514.567133367,27.5383000000002 +17755,17656,179932.904898435,372514.348653048,27.1999999999971 +17756,17644,179933.055522181,372514.313850053,27.5380000000005 +17757,17639,179932.935106788,372514.064270135,27.1999999999971 +17758,17638,179933.082696244,372514.060566731,27.5377000000008 +17759,17651,179932.959650338,372513.833215959,27.1999999999971 +17760,17652,179933.109870303,372513.80728342,27.5374000000011 +17761,17637,179933.232200224,372514.052082725,27.1999999999971 +17762,22193,179933.279800333,372513.621624082,27.1999999999971 +17763,22192,179933.381297853,372513.613389011,24.4875000000029 +17764,13401,179933.327400442,372513.19116544,27.1999999999971 +17765,17640,179933.137044359,372513.554000098,27.5371000000014 +17766,6605,179933.191392481,372513.047433462,27.536500000002 +17767,17650,179932.984193895,372513.60216178,27.1999999999971 +17768,17631,179933.222055607,372512.76162938,27.5362000000023 +17769,17634,179933.361536838,372512.882462297,27.1999999999971 +17770,17635,179933.344468638,372513.03681387,27.1999999999971 +17771,22188,179933.37860503,372512.728110727,27.1999999999971 +17772,17630,179933.395673227,372512.573759157,27.1999999999971 +17773,13399,179933.252718735,372512.475825302,27.5359000000026 +17774,13402,179933.431864683,372512.246471595,27.1999999999971 +17775,17660,179933.283381853,372512.190021213,27.5354999999981 +17776,13403,179933.471464451,372511.888361879,27.1999999999971 +17777,1606,179933.572300002,372511.886200003,24.5099999999948 +17778,17629,179933.526631776,372512.299167398,24.5046000000002 +17779,17627,179933.803570841,372511.913635999,24.5056999999942 +17780,1583,179933.484000001,372511.774999999,27.1999999999971 +17781,17632,179934.225735422,372511.963718005,24.4977999999974 +17782,1605,179934.647900004,372512.013799999,24.4900000000052 +17783,13397,179933.314044971,372511.904217139,27.5351999999984 +17784,17643,179933.208400164,372514.267312039,27.1999999999971 +17785,17645,179933.200771891,372514.336296249,27.1999999999971 +17786,17642,179933.184600111,372514.48254136,27.1999999999971 +17787,17646,179933.254858095,372514.756755043,24.4725000000035 +17788,17647,179933.160800055,372514.697770681,27.1999999999971 +17789,1586,179934.221000008,372515.028000001,27.1999999999971 +17790,22202,179933.589454904,372519.882740337,24.5396999999939 +17791,1597,179931.866099998,372522.409800004,24.6000000000058 +17792,22203,179933.489091817,372520.800458785,24.5525000000052 +17793,17619,179933.388728738,372521.718177229,24.565300000002 +17794,17616,179933.309171166,372522.445650332,24.5755000000063 +17795,17618,179933.286391515,372522.65394707,24.5783999999985 +17796,17600,179932.154160202,372523.081144609,24.5929999999935 +17797,1598,179932.276300002,372523.365800001,24.5899999999965 +17798,1591,179932.174000002,372523.381000005,27.1999999999971 +17799,17598,179932.126441687,372523.812131647,27.1999999999971 +17800,17595,179931.991997298,372523.650257945,27.5256999999983 +17801,17599,179931.968925264,372523.872319106,27.5267000000022 +17802,17593,179931.834739782,372523.685988877,27.1999999999971 +17803,17597,179931.810454257,372523.920963638,27.1999999999971 +17804,17592,179931.726317324,372523.762182508,24.5938000000024 +17805,17594,179931.786168739,372524.155938394,27.1999999999971 +17806,13411,179931.737597685,372524.625887904,27.1999999999971 +17807,17591,179931.589373745,372525.087097052,24.5877999999939 +17808,1567,179927.500200003,372522.500700001,24.3600000000006 +17809,1568,179927.500799999,372527.500300005,24.4199999999983 +17810,1621,179922.500900004,372522.500800002,24.2400000000052 +17811,1566,179922.500999998,372517.500900004,24.25 +17812,1545,179917.500700001,372522.500700001,24.4600000000064 +17813,1569,179922.500400003,372527.500399999,24.25 +17814,1546,179917.500300001,372527.500200003,24.4499999999971 +17815,1555,179912.501000002,372522.500900004,24.3000000000029 +17816,1547,179912.5002,372527.5009,24.3800000000047 +17817,1644,179917.500500005,372532.500799999,24.4400000000023 +17818,1668,179912.5002,372532.500700004,24.3899999999994 +17819,1646,179917.500400003,372537.500400003,24.4100000000035 +17820,1645,179912.5002,372537.500400003,24.4400000000023 +17821,1647,179912.500400003,372542.5002,24.4400000000023 +17822,1625,179922.500100002,372537.500400003,24.2700000000041 +17823,1651,179907.5009,372547.500800002,24.5099999999948 +17824,1650,179912.500700004,372547.500699997,24.429999999993 +17825,1654,179917.5002,372552.500600003,24.320000000007 +17826,1652,179912.500600003,372552.500100002,24.4799999999959 +17827,1655,179917.500400003,372557.500100005,24.3000000000029 +17828,1630,179922.500100002,372557.5002,24.3500000000058 +17829,1631,179922.500500005,372562.500300001,24.3800000000047 +17830,1659,179917.500300001,372562.500900004,24.2799999999988 +17831,1672,179917.500800002,372567.500599999,24.2799999999988 +17832,1632,179922.500100002,372567.500700001,24.3600000000006 +17833,1663,179917.500500005,372572.500399999,24.3000000000029 +17834,1633,179922.500500005,372572.500500001,24.3699999999953 +17835,17477,179926.688637801,372570.273134965,24.5543999999936 +17836,17473,179926.717352066,372570.018353108,24.5529999999999 +17837,17475,179926.797984198,372570.1959805,27.1999999999971 +17838,13480,179926.842143409,372569.804155651,27.1999999999971 +17839,1640,179926.7786,372569.474900004,24.5500000000029 +17840,1639,179926.878000002,372569.486000009,27.1999999999971 +17841,13479,179926.890104096,372569.375687744,27.1999999999971 +17842,13477,179926.926416382,372569.044750981,27.1999999999971 +17843,17481,179926.973639309,372568.614378642,27.1999999999971 +17844,17479,179926.923398823,372568.155304376,24.5500000000029 +17845,17482,179927.057031203,372566.93747193,24.5500000000029 +17846,17485,179927.198449638,372565.648682769,24.5500000000029 +17847,17490,179927.349540114,372564.271749366,24.5500000000029 +17848,17492,179927.490155205,372562.990281343,24.5500000000029 +17849,17496,179927.638537556,372561.638027918,24.5500000000029 +17850,17498,179927.802218173,372560.146356706,24.5500000000029 +17851,13464,179927.794966709,372561.129103713,27.1999999999971 +17852,24629,179927.84624619,372560.661761489,27.1999999999971 +17853,17499,179927.897525668,372560.194419261,27.1999999999971 +17854,24633,179927.937950972,372559.825997919,27.1999999999971 +17855,13461,179927.978376281,372559.45757658,27.1999999999971 +17856,17500,179927.952886563,372558.773269951,24.5500000000029 +17857,13463,179928.007089883,372559.195891403,27.1999999999971 +17858,17502,179928.050572138,372558.799610138,27.1999999999971 +17859,13462,179928.161827002,372558.968709745,27.5810000000056 +17860,24631,179928.079436675,372558.536549449,27.1999999999971 +17861,24630,179928.23009032,372558.345887002,27.5804999999964 +17862,24627,179929.137085307,372559.745392937,27.7866000000067 +17863,13096,179929.45815368,372556.875562876,27.783500000005 +17864,13460,179928.298353642,372557.723064262,27.5801000000065 +17865,17505,179928.162575416,372557.778853629,27.1999999999971 +17866,17501,179928.108301204,372558.27348876,27.1999999999971 +17867,17503,179928.109299142,372557.347834591,24.5500000000029 +17868,17506,179928.269893132,372555.884292781,24.5500000000029 +17869,17509,179928.436100662,372554.369593106,24.5500000000029 +17870,17514,179928.595566165,372552.916335531,24.5500000000029 +17871,17513,179928.647888903,372553.35588555,27.1999999999971 +17872,17515,179928.681078847,372553.053404622,27.1999999999971 +17873,17516,179928.797879279,372553.16547861,27.5767000000051 +17874,13448,179928.75243346,372553.580118407,27.5770000000048 +17875,13450,179929.831826843,372553.535531443,27.7799999999988 +17876,13452,179928.84332509,372552.750838805,27.5764000000054 +17877,13449,179928.93421673,372551.921559203,27.5757000000012 +17878,1636,179930.205499999,372550.195500005,27.7765000000072 +17879,17520,179929.025108367,372551.092279602,27.5751000000018 +17880,9422,179929.191376317,372549.575279515,27.5739999999932 +17881,17525,179929.25170932,372549.024811596,27.5736000000034 +17882,13093,179930.4710784,372547.821660273,27.7740000000049 +17883,13454,179928.570650183,372555.23867761,27.5782000000036 +17884,13457,179928.479758546,372556.067957211,27.578800000003 +17885,13095,179928.388866905,372556.897236813,27.5794000000024 +17886,17504,179928.268948887,372556.809405029,27.1999999999971 +17887,17508,179928.353724096,372556.036795091,27.1999999999971 +17888,13456,179928.390382756,372555.702701572,27.1999999999971 +17889,17507,179928.485945884,372554.831774488,27.1999999999971 +17890,13455,179928.661694489,372554.408005077,27.5776000000042 +17891,17510,179928.533727445,372554.396310948,27.1999999999971 +17892,13453,179928.581509013,372553.9608474,27.1999999999971 +17893,13458,179928.209512524,372557.351086117,27.1999999999971 +17894,17512,179928.714268796,372552.750923689,27.1999999999971 +17895,24632,179928.093563687,372559.59153248,27.5815000000002 +17896,13459,179928.025300369,372560.214355219,27.5819000000047 +17897,24628,179927.950252283,372560.899080988,27.5823999999993 +17898,13094,179928.816016935,372562.615223002,27.7896000000037 +17899,13465,179927.875204194,372561.583806757,27.582899999994 +17900,17494,179927.817475792,372562.110510793,27.5832999999984 +17901,13467,179927.759747379,372562.637214828,27.5837000000029 +17902,9423,179927.661733825,372563.531473625,27.584400000007 +17903,13470,179927.53465873,372564.690884821,27.5853000000061 +17904,17488,179927.471121185,372565.270590421,27.585699999996 +17905,13469,179927.407583639,372565.850296013,27.5861000000004 +17906,13474,179927.344046094,372566.430001613,27.5865999999951 +17907,13472,179927.240868364,372566.17895161,27.1999999999971 +17908,17484,179927.198707514,372566.563190054,27.1999999999971 +17909,17483,179927.156546663,372566.947428498,27.1999999999971 +17910,13475,179927.085676886,372567.593309492,27.1999999999971 +17911,13473,179927.280508548,372567.009707216,27.5869999999995 +17912,13476,179927.21697101,372567.589412808,27.587400000004 +17913,9424,179927.153433461,372568.169118408,27.5877999999939 +17914,17480,179927.020862233,372568.1840063,27.1999999999971 +17915,17486,179927.294509664,372565.690084573,27.1999999999971 +17916,17489,179927.329597123,372565.370310452,27.1999999999971 +17917,17487,179927.364684578,372565.050536335,27.1999999999971 +17918,13468,179927.434859492,372564.410988096,27.1999999999971 +17919,17491,179927.51822241,372563.651249204,27.1999999999971 +17920,17495,179927.559903868,372563.271379765,27.1999999999971 +17921,13466,179927.601585325,372562.891510315,27.1999999999971 +17922,17493,179927.698276021,372562.010307014,27.1999999999971 +17923,17497,179927.745688088,372561.57821092,27.1999999999971 +17924,17478,179926.775904585,372570.391892917,27.1999999999971 +17925,17474,179926.753824983,372570.587805342,27.1999999999971 +17926,17471,179926.533608269,372571.648712441,24.5619000000006 +17927,13484,179926.665506553,372571.371455036,27.1999999999971 +17928,17472,179926.630454645,372571.682470776,27.1999999999971 +17929,17470,179926.590260576,372572.039112817,27.1999999999971 +17930,17468,179926.40211229,372572.81547666,24.568299999999 +17931,13486,179926.515014607,372572.706770603,27.1999999999971 +17932,17469,179926.480054162,372573.01697471,27.1999999999971 +17933,13490,179926.351459082,372574.157999314,27.1999999999971 +17934,13099,179926.419628698,372574.726638161,27.5890999999974 +17935,13488,179926.312433507,372574.504273321,27.1999999999971 +17936,17464,179926.242943671,372575.120856851,27.1999999999971 +17937,17467,179926.223284949,372574.402212288,24.5770000000048 +17938,17462,179926.078713689,372575.684993561,24.5840000000026 +17939,17466,179926.20819876,372575.429148618,27.1999999999971 +17940,17463,179926.173453841,372575.737440381,27.1999999999971 +17941,13494,179926.118766062,372576.22268521,27.1999999999971 +17942,13493,179926.278535869,372575.979547698,27.5890999999974 +17943,17465,179926.349082284,372575.353092935,27.5890999999974 +17944,13492,179926.13744304,372577.232457239,27.5890999999974 +17945,13491,179926.027844828,372577.029429644,27.1999999999971 +17946,17456,179925.920687668,372577.980235465,27.1999999999971 +17947,17455,179925.808790319,372578.080024451,24.597099999999 +17948,17460,179925.894621853,372578.211517498,27.1999999999971 +17949,17457,179925.867109083,372578.455638383,27.1999999999971 +17950,17449,179925.674280528,372579.273530297,24.6037000000069 +17951,13497,179925.813530508,372578.931041293,27.1999999999971 +17952,13495,179925.784853939,372579.185488559,27.1999999999971 +17953,13496,179925.946083233,372578.931739423,27.5890999999974 +17954,17453,179925.900670312,372579.335007869,27.5890999999974 +17955,17454,179925.770841595,372579.309820142,27.1999999999971 +17956,17452,179925.756829254,372579.434151731,27.1999999999971 +17957,17459,179925.993923187,372578.506918877,27.5890999999974 +17958,17458,179926.041763142,372578.082098335,27.5890999999974 +17959,17461,179925.948381744,372576.841429308,24.5902999999962 +17960,1653,179907.500700004,372552.500600003,24.4600000000064 +17961,1642,179922.500800002,372532.500500001,24.25 +17962,1624,179927.500500001,372532.500700004,24.4799999999959 +17963,1595,179931.055500004,372530.497200005,24.5500000000029 +17964,17577,179931.152925003,372529.370924998,24.5650000000023 +17965,1596,179931.185400002,372528.995500002,24.570000000007 +17966,17584,179931.304668389,372527.841591094,24.5752999999968 +17967,17579,179931.323705349,372527.657410476,24.5761000000057 +17968,17586,179931.449688595,372526.438536,24.581600000005 +17969,17580,179931.467708498,372527.237202637,27.1999999999971 +17970,17588,179931.517837726,372526.752176952,27.1999999999971 +17971,17589,179931.542902339,372526.509664111,27.1999999999971 +17972,13412,179931.567966953,372526.267151266,27.1999999999971 +17973,17587,179931.652782321,372525.446519587,27.1999999999971 +17974,17609,179931.691893499,372525.068099078,27.1999999999971 +17975,17606,179931.835453931,372525.156939045,27.5329000000056 +17976,17610,179931.856809929,372524.95139423,27.5319000000018 +17977,17607,179931.878165931,372524.745849416,27.5308999999979 +17978,13410,179931.912215762,372524.418130334,27.5293999999994 +17979,17605,179932.031025417,372524.67711129,27.1999999999971 +17980,22216,179932.054954402,372524.46018729,27.1999999999971 +17981,13409,179932.078883376,372524.243263297,27.1999999999971 +17982,17596,179931.945853222,372524.094380263,27.5277999999962 +17983,17602,179932.102662534,372524.027697474,27.1999999999971 +17984,17601,179932.209081996,372523.975059584,24.5847999999969 +17985,17608,179932.007096443,372524.894035283,27.1999999999971 +17986,17613,179931.804942735,372525.450599853,27.5342999999993 +17987,9416,179931.774431527,372525.744260665,27.5356999999931 +17988,13408,179931.887451559,372525.978655264,27.1999999999971 +17989,13414,179931.734744281,372526.126238029,27.5375000000058 +17990,13413,179931.695057038,372526.50821539,27.5393999999942 +17991,13415,179931.823154785,372526.561526462,27.1999999999971 +17992,17590,179931.675213415,372526.699204069,27.5402999999933 +17993,17582,179931.799577393,372526.775263231,27.1999999999971 +17994,17614,179931.912182234,372526.666139424,24.5617999999959 +17995,17615,179932.194929827,372526.862342972,24.5703999999969 +17996,1599,179931.8884,372526.881700005,24.5599999999977 +17997,13407,179932.120250002,372526.967250004,27.1999999999971 +17998,1600,179933.063400004,372526.807500005,24.6000000000058 +17999,1590,179931.776000004,372526.989,27.1999999999971 +18000,9417,179931.615682546,372527.272170108,27.5430000000051 +18001,17581,179931.655369796,372526.890192751,27.5412000000069 +18002,13416,179931.418665826,372527.711715356,27.1999999999971 +18003,13417,179931.530841272,372528.088740982,27.5470000000059 +18004,17585,179931.393603485,372527.954206228,27.1999999999971 +18005,17583,179931.368541144,372528.196697094,27.1999999999971 +18006,13418,179931.318416461,372528.681678843,27.1999999999971 +18007,9418,179931.445999995,372528.905311856,27.550900000002 +18008,1593,179931.285000004,372529.005000006,27.1999999999971 +18009,17578,179931.257351767,372529.324443463,27.1999999999971 +18010,13420,179931.365952741,372529.67574168,27.5546000000031 +18011,13421,179931.229703527,372529.643886939,27.1999999999971 +18012,13419,179931.187500004,372530.131500002,27.1999999999971 +18013,9419,179931.285905488,372530.4461715,27.5583000000042 +18014,1594,179931.155000001,372530.506999999,27.1999999999971 +18015,1575,179933.065000001,372528.320000004,27.5819999999949 +18016,22218,179933.183626894,372528.125013847,27.6609000000026 +18017,17563,179930.591739725,372534.723807611,24.5500000000029 +18018,20359,179907.967637841,372519.459964748,24.4391000000032 +18019,1543,179912.5002,372517.500900004,24.320000000007 +18020,1542,179912.500799999,372512.500700004,24.3800000000047 +18021,99,179909.298900004,372508.473200001,24.4600000000064 +18022,1553,179912.500600003,372507.500500001,24.4199999999983 +18023,1541,179917.500900004,372512.500200003,24.4499999999971 +18024,1540,179917.500900004,372507.500799999,24.4600000000064 +18025,1563,179922.500200003,372512.500200003,24.2700000000041 +18026,1562,179922.500500005,372507.500399999,24.3000000000029 +18027,1544,179917.5002,372517.500900004,24.4700000000012 +18028,20357,179909.964947015,372502.976062194,24.4704999999958 +18029,20358,179909.438528851,372507.32079035,24.4621999999945 +18030,1592,179931.925999999,372522.802999999,27.1999999999971 +18031,1573,179932.050000001,372523.092000004,27.523000000001 +18032,1561,179927.500500001,372502.500800002,24.2200000000012 +18033,1610,179933.916700002,372505.195900004,24.3399999999965 +18034,13389,179933.961729739,372505.613143116,27.1999999999971 +18035,1579,179934.016000003,372505.208000004,27.1999999999971 +18036,13388,179934.025198888,372505.123638738,27.1999999999971 +18037,13386,179934.052795555,372504.870554954,27.1999999999971 +18038,17675,179934.098016161,372503.533108819,24.3408000000054 +18039,13384,179934.16318221,372503.858219791,27.1999999999971 +18040,17677,179934.198231325,372503.536791127,27.1999999999971 +18041,20198,179934.231586471,372503.230897319,27.1999999999971 +18042,17680,179934.279209483,372502.794155762,27.1999999999971 +18043,17681,179934.25839293,372502.062345907,24.3415999999997 +18044,17687,179934.437801003,372500.417053055,24.3423999999941 +18045,17685,179934.494342204,372500.821214326,27.1999999999971 +18046,17676,179934.383955546,372501.833549481,27.1999999999971 +18047,17686,179934.581198465,372500.874556728,27.5341999999946 +18048,24644,179934.527600337,372500.516210329,27.1999999999971 +18049,24643,179934.635280903,372500.384664901,27.5338999999949 +18050,13381,179934.689363342,372499.894773073,27.5335999999952 +18051,17688,179934.549535539,372500.315046746,27.1999999999971 +18052,13383,179934.60472887,372499.808879167,27.1999999999971 +18053,17683,179934.512445666,372499.732511275,24.3426999999938 +18054,17689,179934.689193226,372498.111617204,24.3435999999929 +18055,17691,179934.856587742,372496.576496799,24.344299999997 +18056,17693,179935.057793278,372494.73130662,24.3453000000009 +18057,17694,179935.080539495,372495.445310067,27.1999999999971 +18058,13379,179935.146252908,372494.842664871,27.1999999999971 +18059,24653,179935.181268871,372494.52154009,27.1999999999971 +18060,24652,179935.227689676,372494.095823657,27.1999999999971 +18061,20175,179935.21524664,372493.287353314,24.346000000005 +18062,24654,179935.268408064,372493.722403046,27.1999999999971 +18063,20173,179935.309126452,372493.348982442,27.1999999999971 +18064,20176,179935.334578648,372493.115565211,27.1999999999971 +18065,20174,179935.390563224,372492.602141224,27.1999999999971 +18066,1611,179935.372699998,372491.843400005,24.3466999999946 +18067,1501,179932.500399999,372487.500399999,24.2700000000041 +18068,17697,179935.537136387,372490.335418954,24.3473999999987 +18069,17695,179935.55574936,372490.164726719,24.3475000000035 +18070,17701,179935.691998344,372488.915241182,24.3481000000029 +18071,17700,179935.761669442,372489.1988164,27.1999999999971 +18072,20183,179935.78335648,372488.999930151,27.1999999999971 +18073,20181,179935.881900243,372489.092485521,27.5274999999965 +18074,20182,179935.920787692,372488.740233585,27.5273000000016 +18075,20171,179936.876232356,372488.785989549,27.7403000000049 +18076,13373,179935.959675144,372488.387981657,27.5271000000066 +18077,20179,179936.022859052,372487.815646578,27.5268000000069 +18078,13374,179936.086042956,372487.243311502,27.5264000000025 +18079,1506,179937.261500001,372485.480999999,27.7354999999952 +18080,1513,179939.384500004,372485.474000003,28.3999999999942 +18081,20167,179937.456683144,372483.806636114,27.7329999999929 +18082,13368,179936.405730352,372484.347501259,27.5247999999992 +18083,17712,179936.356615175,372484.792400632,27.5249999999942 +18084,1503,179936.307500005,372485.237300005,27.5252999999939 +18085,13371,179936.212410763,372486.09864134,27.5258000000031 +18086,17706,179936.149226859,372486.670976419,27.5261000000028 +18087,17709,179936.092317052,372486.166532487,27.1999999999971 +18088,17704,179936.038781602,372486.657492291,27.1999999999971 +18089,17705,179935.988701489,372487.116764124,27.1999999999971 +18090,13375,179935.95966519,372487.383048512,27.1999999999971 +18091,17703,179935.8870438,372487.126556482,24.349000000002 +18092,20180,179935.917533714,372487.769425385,27.1999999999971 +18093,17698,179935.763807047,372488.256712046,24.3484999999928 +18094,13372,179935.875402246,372488.155802254,27.1999999999971 +18095,17699,179935.848417602,372488.403271414,27.1999999999971 +18096,17702,179935.805043519,372488.801043902,27.1999999999971 +18097,17707,179936.012466211,372485.976357203,24.3496000000014 +18098,17710,179936.154079247,372484.677680079,24.3502000000008 +18099,1498,179932.500399999,372482.500800002,24.3000000000029 +18100,1499,179927.500300005,372487.500200003,24.2400000000052 +18101,1497,179927.500200003,372482.500600006,24.2400000000052 +18102,1494,179932.500300005,372477.5002,24.2799999999988 +18103,17725,179936.707649965,372479.601101972,24.3527999999933 +18104,1510,179936.828700002,372478.491,24.3533000000025 +18105,20165,179936.941425357,372477.457232587,24.3537999999971 +18106,20164,179937.050701302,372477.377429638,27.1999999999971 +18107,20166,179937.015493341,372477.700315177,27.1999999999971 +18108,1505,179936.928000003,372478.502700001,27.1999999999971 +18109,13364,179936.891778525,372478.834877841,27.1999999999971 +18110,20159,179936.98874104,372479.066422775,27.5218000000023 +18111,20160,179936.817630723,372479.514868129,27.1999999999971 +18112,17724,179936.778098054,372479.877412029,27.1999999999971 +18113,17721,179936.541042119,372481.128996611,24.351999999999 +18114,17722,179936.664417583,372480.919946223,27.1999999999971 +18115,17723,179936.855593093,372480.272515215,27.5225000000064 +18116,20158,179936.9391913,372479.515258595,27.5219999999972 +18117,24688,179937.705409177,372481.672958538,27.7299000000057 +18118,20161,179936.764244244,372481.099979352,27.5228999999963 +18119,13365,179936.672895394,372481.927443478,27.5234000000055 +18120,20168,179936.606104136,372482.532457925,27.5237999999954 +18121,17717,179936.539312873,372483.137472376,27.5240999999951 +18122,20170,179936.472521614,372483.742486823,27.5243999999948 +18123,17718,179936.404347986,372483.30497741,27.1999999999971 +18124,17716,179936.370980341,372483.61098348,27.1999999999971 +18125,13369,179936.304245044,372484.222995631,27.1999999999971 +18126,13367,179936.269946612,372484.537537668,27.1999999999971 +18127,17714,179936.286354966,372483.464631755,24.3508000000002 +18128,17713,179936.250940543,372484.711837474,27.1999999999971 +18129,17711,179936.231934465,372484.886137269,27.1999999999971 +18130,17708,179936.193922319,372485.234736875,27.1999999999971 +18131,13370,179936.117898017,372485.931936081,27.1999999999971 +18132,17715,179936.437715631,372482.998971332,27.1999999999971 +18133,17719,179936.411751922,372482.31466588,24.3513999999996 +18134,13366,179936.571186218,372481.77494704,27.1999999999971 +18135,20162,179936.636148896,372481.179191105,27.1999999999971 +18136,17720,179936.515598021,372482.284732036,27.1999999999971 +18137,20169,179936.483881049,372482.575600188,27.1999999999971 +18138,24687,179939.815331697,372482.058189377,28.4159000000072 +18139,24660,179938.688736141,372490.990301713,28.3714999999938 +18140,24662,179936.620950744,372490.975903708,27.7436000000016 +18141,13377,179935.804125339,372489.796989378,27.527900000001 +18142,20177,179935.726350442,372490.501493249,27.5283000000054 +18143,24665,179935.687462989,372490.853745174,27.5285000000003 +18144,6601,179935.648575541,372491.205997109,27.5286999999953 +18145,24663,179935.593757972,372491.702547856,27.528999999995 +18146,13378,179935.516353894,372491.448541902,27.1999999999971 +18147,24664,179935.49417695,372491.651920956,27.1999999999971 +18148,1578,179935.471999999,372491.855300002,27.1999999999971 +18149,24656,179935.538940411,372492.199098613,27.5292000000045 +18150,24658,179935.431281611,372492.228720613,27.1999999999971 +18151,24657,179935.484122839,372492.695649359,27.5295000000042 +18152,24647,179936.365669131,372493.165817872,27.7467999999935 +18153,20172,179935.429305278,372493.192200117,27.5298000000039 +18154,24651,179935.355721574,372493.858739134,27.5301999999938 +18155,24655,179935.319670148,372494.185301617,27.5304000000033 +18156,24648,179936.110387512,372495.355732031,27.75 +18157,24661,179938.340854201,372493.748452567,28.3573000000033 +18158,24650,179935.282137863,372494.525278147,27.5305999999982 +18159,6602,179935.210035019,372495.17840312,27.5308999999979 +18160,24649,179935.14495106,372495.767949369,27.5313000000024 +18161,20185,179935.079867102,372496.35749561,27.5316000000021 +18162,20186,179935.014783148,372496.947041851,27.5319000000018 +18163,13382,179934.949699182,372497.536588099,27.5323000000062 +18164,20191,179934.888285834,372498.09288504,27.5326000000059 +18165,20190,179934.82687249,372498.649181992,27.5329000000056 +18166,17684,179934.743698426,372498.534415688,27.1999999999971 +18167,20193,179934.674213644,372499.171647433,27.1999999999971 +18168,24645,179934.758117922,372499.271977529,27.5332000000053 +18169,24646,179934.639471259,372499.490263302,27.1999999999971 +18170,20192,179934.785587832,372498.150255848,27.1999999999971 +18171,17690,179934.813183203,372497.897183947,27.1999999999971 +18172,13380,179934.882667985,372497.25995221,27.1999999999971 +18173,20187,179934.945544876,372496.68332015,27.1999999999971 +18174,20189,179934.962887783,372496.524271671,27.1999999999971 +18175,20188,179934.98000266,372496.367314346,27.1999999999971 +18176,17692,179935.014460448,372496.051308539,27.1999999999971 +18177,17696,179935.595637582,372490.721451644,27.1999999999971 +18178,20178,179935.634530097,372490.364778433,27.1999999999971 +18179,13376,179935.674921278,372489.994361382,27.1999999999971 +18180,17678,179934.473033577,372501.854340386,27.5347000000038 +18181,20195,179934.418951139,372502.344232213,27.5350000000035 +18182,17679,179934.364868693,372502.834124044,27.5353000000032 +18183,20197,179934.310786251,372503.324015871,27.5354999999981 +18184,20196,179934.315028712,372502.465664402,27.1999999999971 +18185,17682,179934.350847945,372502.137173053,27.1999999999971 +18186,17732,179937.383304365,372473.404904693,24.355899999995 +18187,13361,179937.354244892,372474.593688928,27.1999999999971 +18188,24685,179937.316298116,372474.941691618,27.1999999999971 +18189,17731,179937.456604119,372473.654971816,27.1999999999971 +18190,17733,179937.487776533,372473.36909556,27.1999999999971 +18191,24673,179937.503362738,372473.226157434,27.1999999999971 +18192,17736,179937.727128461,372471.174044356,27.1999999999971 +18193,17735,179937.835405983,372470.181051746,27.1999999999971 +18194,17740,179937.869716339,372469.866397999,27.1999999999971 +18195,20156,179937.886871509,372469.709071126,27.1999999999971 +18196,17739,179937.904026691,372469.551744252,27.1999999999971 +18197,13357,179937.972647399,372468.922436763,27.1999999999971 +18198,13355,179938.091293946,372469.079181582,27.5160999999935 +18199,20153,179938.149711132,372468.550021898,27.5157999999938 +18200,13356,179938.208128322,372468.020862218,27.5154999999941 +18201,97,179939.528000001,372466.038000003,27.7069999999949 +18202,13353,179938.324962694,372466.962542854,27.5148999999947 +18203,13354,179938.147595201,372467.318023607,27.1999999999971 +18204,17742,179938.054640666,372468.170492016,27.1999999999971 +18205,20154,179938.034142353,372468.358478203,27.1999999999971 +18206,17743,179938.013644032,372468.546464391,27.1999999999971 +18207,17745,179938.189121854,372466.937190581,27.1999999999971 +18208,13352,179938.344268601,372465.514369167,27.1999999999971 +18209,1502,179938.491500005,372465.454,27.5139999999956 +18210,1504,179938.384,372465.149999999,27.1999999999971 +18211,13351,179938.406572536,372464.964837782,27.1999999999971 +18212,13350,179938.474290118,372464.409351118,27.1999999999971 +18213,17746,179938.457385607,372463.721993212,24.3585000000021 +18214,17748,179938.542007703,372463.853864465,27.1999999999971 +18215,17750,179938.575866498,372463.576121137,27.1999999999971 +18216,17747,179938.609725293,372463.298377804,27.1999999999971 +18217,24698,179938.556357186,372462.910148431,24.357600000003 +18218,24699,179938.643584087,372463.020634472,27.1999999999971 +18219,17749,179938.750050977,372463.330130741,27.5144 +18220,24696,179938.827616271,372462.692969967,27.5145000000048 +18221,24695,179939.937214546,372462.694449436,27.7056000000011 +18222,6597,179938.905181557,372462.055809192,27.514599999995 +18223,13349,179938.74516046,372462.187404487,27.1999999999971 +18224,24697,179938.677442878,372462.742891151,27.1999999999971 +18225,17751,179938.655328762,372462.098303646,24.3567999999941 +18226,17752,179938.775684759,372461.937014017,27.1999999999971 +18227,20145,179938.878898948,372461.090349082,27.1999999999971 +18228,20146,179939.00373799,372461.246216509,27.5148000000045 +18229,20142,179939.102294419,372460.436623834,27.5148999999947 +18230,20143,179938.949210506,372460.513584096,27.1999999999971 +18231,13347,179939.040673595,372459.763313323,27.1999999999971 +18232,13348,179939.215442725,372459.50716608,27.5151000000042 +18233,17755,179939.083928544,372459.408493426,27.1999999999971 +18234,20147,179939.370573305,372458.232844517,27.5152999999991 +18235,24701,179940.50074023,372458.090075944,27.7036999999982 +18236,20141,179940.192899615,372460.605335154,27.704700000002 +18237,24702,179939.448138602,372457.595683742,27.5154000000039 +18238,13345,179939.525703896,372456.958522964,27.5154999999941 +18239,24700,179940.808580838,372455.57481673,27.7026999999944 +18240,24704,179939.626886345,372456.127358835,27.5157000000036 +18241,24710,179939.677477565,372455.711776778,27.5157999999938 +18242,24703,179939.728068788,372455.296194714,27.5158999999985 +18243,17760,179939.835965063,372454.409879852,27.5160000000033 +18244,17759,179939.648041006,372454.781084817,27.1999999999971 +18245,24708,179939.597940039,372455.192062505,27.1999999999971 +18246,24706,179939.562467117,372455.483046539,27.1999999999971 +18247,24709,179939.533773039,372455.718423776,27.1999999999971 +18248,17762,179939.693717465,372454.406401306,27.1999999999971 +18249,24724,179939.91353035,372453.772719078,27.5160999999935 +18250,24723,179941.116421454,372453.059557524,27.7016000000003 +18251,24711,179939.991095643,372453.135558303,27.5161999999982 +18252,24726,179940.06866093,372452.498397518,27.5163999999932 +18253,24705,179939.476893228,372456.185008261,27.1999999999971 +18254,13346,179939.419505067,372456.655762732,27.1999999999971 +18255,17757,179939.324797202,372457.432650376,27.1999999999971 +18256,20148,179939.271730348,372457.867957212,27.1999999999971 +18257,17754,179939.230089329,372458.209538024,27.1999999999971 +18258,20149,179939.681529485,372464.783563714,27.7065000000002 +18259,20151,179938.672485679,372463.967291519,27.5142999999953 +18260,6598,179938.594920393,372464.604452305,27.5142000000051 +18261,20150,179938.543210197,372465.02922615,27.5141000000003 +18262,20155,179938.027156509,372469.660156872,27.5163999999932 +18263,24719,179940.478001539,372449.135865517,27.5170000000071 +18264,17769,179940.544356596,372448.590791278,27.5170999999973 +18265,17768,179940.348979119,372449.031296723,27.1999999999971 +18266,24720,179940.319833305,372449.270379532,27.1999999999971 +18267,13343,179940.281224754,372449.587085105,27.1999999999971 +18268,13341,179940.197640058,372450.272729475,27.1999999999971 +18269,17767,179940.416733488,372448.475508343,27.1999999999971 +18270,17772,179940.450610667,372448.197614156,27.1999999999971 +18271,24721,179940.610711657,372448.045717031,27.517200000002 +18272,24722,179940.467549264,372448.058667067,27.1999999999971 +18273,17771,179940.484487858,372447.919719968,27.1999999999971 +18274,1485,179922.500999998,372457.500999998,24.4700000000012 +18275,1486,179922.500900004,372462.500100002,24.4900000000052 +18276,1483,179922.500500005,372452.500900004,24.4900000000052 +18277,1490,179922.500300009,372467.500799999,24.4900000000052 +18278,1516,179917.500900004,372467.500799999,24.3699999999953 +18279,20347,179913.337784078,372472.0878972,24.6232000000018 +18280,1526,179913.138300002,372474.2766,24.8300000000017 +18281,20350,179912.088924345,372472.443102803,24.5350999999937 +18282,17405,179923.391726401,372599.527527761,24.7146999999968 +18283,13525,179923.528463032,372599.207239691,27.1999999999971 +18284,17412,179923.676020179,372597.897964686,27.1999999999971 +18285,17415,179923.711643793,372597.581876252,27.1999999999971 +18286,17414,179923.814262927,372597.861394886,27.5893000000069 +18287,24622,179923.890281461,372597.186347447,27.5893000000069 +18288,24621,179925.008751515,372597.613503236,27.7869000000064 +18289,13534,179922.585470233,372608.773119591,27.5895000000019 +18290,9430,179922.53062585,372609.260139763,27.5895000000019 +18291,13535,179922.3676406,372609.507220924,27.1999999999971 +18292,1713,179922.352000006,372609.646000002,27.1999999999971 +18293,13536,179922.315258965,372609.981697336,27.1999999999971 +18294,13540,179921.957709245,372613.248575438,27.1999999999971 +18295,17379,179921.92003157,372613.592830695,27.1999999999971 +18296,17381,179921.901192732,372613.764958329,27.1999999999971 +18297,17371,179921.882353894,372613.93708596,27.1999999999971 +18298,17377,179921.819048416,372614.51549859,27.1999999999971 +18299,17373,179921.755742949,372615.093911212,27.1999999999971 +18300,17375,179921.692437463,372615.672323845,27.1999999999971 +18301,17367,179921.521658629,372616.313501548,24.7379999999976 +18302,13541,179921.629131991,372616.250736468,27.1999999999971 +18303,17368,179921.602772806,372616.491576426,27.1999999999971 +18304,17365,179921.286632627,372618.460898764,24.7277000000031 +18305,13544,179921.39980929,372618.346023515,27.1999999999971 +18306,17366,179921.363787364,372618.675150461,27.1999999999971 +18307,13542,179921.281527888,372619.426742941,27.1999999999971 +18308,17363,179921.141310073,372619.788689103,24.7213999999949 +18309,17364,179921.240217298,372619.804191582,27.1999999999971 +18310,17360,179921.198906709,372620.181640223,27.1999999999971 +18311,17359,179920.994983036,372621.12565732,24.7149999999965 +18312,13545,179921.116285533,372620.936537512,27.1999999999971 +18313,17362,179920.97009946,372621.353014763,24.7139000000025 +18314,17357,179920.840085603,372622.540931858,24.7081999999937 +18315,17352,179920.72386637,372623.602809578,24.7030999999988 +18316,17356,179920.698092733,372623.838299382,24.7020000000048 +18317,17354,179920.810180042,372623.733377393,27.1999999999971 +18318,13549,179920.836602289,372623.491961259,27.1999999999971 +18319,17355,179920.903092306,372622.884452,27.1999999999971 +18320,17358,179920.936337307,372622.580697369,27.1999999999971 +18321,13547,179920.969582323,372622.276942741,27.1999999999971 +18322,17353,179920.766549632,372624.132021863,27.1999999999971 +18323,13551,179920.694343496,372624.791758485,27.1999999999971 +18324,17350,179920.564167302,372625.061955955,24.696100000001 +18325,17351,179920.65931629,372625.111796848,27.1999999999971 +18326,17348,179920.589105386,372625.753303289,27.1999999999971 +18327,17361,179921.042933922,372621.606740128,27.1999999999971 +18328,17297,179917.94380559,372649.878750302,27.1999999999971 +18329,13583,179917.907379542,372650.206089552,27.1999999999971 +18330,17421,179924.05116706,372594.56918579,27.1999999999971 +18331,17419,179924.020624679,372594.840204336,27.1999999999971 +18332,17433,179924.644203749,372589.306859821,27.1999999999971 +18333,17435,179924.670582741,372589.072785195,27.1999999999971 +18334,13508,179924.696961731,372588.838710569,27.1999999999971 +18335,17432,179924.799001604,372587.933257189,27.1999999999971 +18336,17437,179924.846847203,372587.50869805,27.1999999999971 +18337,13443,179929.536528945,372546.426166527,27.5715999999957 +18338,13435,179929.869763151,372543.385795131,27.569399999993 +18339,17522,179929.11205608,372548.20931384,24.5500000000029 +18340,17564,179930.658980917,372535.027534943,27.1999999999971 +18341,13423,179930.698837139,372534.664300047,27.1999999999971 +18342,22723,179944.912727125,372413.373970997,27.517200000002 +18343,22717,179944.84335164,372412.857621863,27.1999999999971 +18344,22724,179944.784586817,372413.317557048,27.1999999999971 +18345,22722,179944.903013252,372412.39066774,27.1999999999971 +18346,22712,179944.960881282,372411.937751494,27.1999999999971 +18347,22713,179945.07841092,372411.017881125,27.1999999999971 +18348,22711,179945.031154998,372410.599101771,24.3974000000017 +18349,22719,179945.107793327,372410.787913539,27.1999999999971 +18350,22715,179945.137175739,372410.557945944,27.1999999999971 +18351,22710,179945.195940554,372410.098010767,27.1999999999971 +18352,17830,179945.202700749,372409.256476834,24.4036000000051 +18353,22706,179945.291000377,372408.565388419,24.406799999997 +18354,17837,179946.155167077,372401.801599927,24.4382000000041 +18355,20100,179946.239496659,372401.930400085,27.1999999999971 +18356,22687,179946.271878585,372401.676956128,27.1999999999971 +18357,17839,179946.32083391,372401.293797053,27.1999999999971 +18358,17840,179946.312032666,372400.573815275,24.4438999999984 +18359,24764,179946.369100641,372400.916027386,27.1999999999971 +18360,22684,179946.417367361,372400.538257718,27.1999999999971 +18361,17838,179946.483508408,372400.020590995,27.1999999999971 +18362,22685,179946.564845651,372399.383987963,27.1999999999971 +18363,24776,179946.605514273,372399.065686449,27.1999999999971 +18364,1903,179877.848200005,372778.921300001,28.3300000000017 +18365,20379,179880.167437095,372772.817496371,24.3393000000069 +18366,20378,179881.280548375,372762.849685494,24.3674000000028 +18367,1905,179882.500399999,372772.500300005,24.2200000000012 +18368,1869,179887.500399999,372767.500100002,24.5099999999948 +18369,1868,179887.500200003,372762.500800002,24.5 +18370,1866,179892.500400003,372762.500200007,24.4199999999983 +18371,1896,179892.500800002,372767.500799999,24.3800000000047 +18372,1871,179887.500700004,372772.500600003,24.5099999999948 +18373,1873,179892.500300001,372772.5009,24.3300000000017 +18374,1872,179897.500400003,372772.500799999,24.320000000007 +18375,1870,179897.500999998,372767.500399999,24.3399999999965 +18376,12,179897.500999998,372762.500999998,24.3300000000017 +18377,1867,179902.500700008,372762.500500005,24.429999999993 +18378,1865,179897.5002,372757.500700001,24.3099999999977 +18379,1897,179897.500500005,372752.5002,24.2799999999988 +18380,1863,179902.500800002,372757.500500005,24.4600000000064 +18381,1861,179902.500900004,372752.500600003,24.3699999999953 +18382,1858,179902.500300005,372747.500600003,24.3500000000058 +18383,1895,179897.500700001,372747.500500001,24.2700000000041 +18384,1855,179897.500100005,372742.500500001,24.2700000000041 +18385,1853,179892.500800002,372742.500399999,24.5099999999948 +18386,1833,179892.500599999,372737.500599999,24.5299999999988 +18387,1834,179897.500999998,372737.500800002,24.3000000000029 +18388,1830,179897.500300001,372732.500899997,24.3099999999977 +18389,1831,179902.500200003,372737.5002,24.4199999999983 +18390,17102,179908.330587197,372735.872374408,24.5583000000042 +18391,17107,179908.503316216,372734.344684597,24.5656000000017 +18392,17111,179908.662488237,372732.936898671,24.5722999999998 +18393,17108,179908.690467972,372733.579670243,27.1999999999971 +18394,24560,179908.726850674,372733.257885937,27.1999999999971 +18395,17112,179908.763233379,372732.936101627,27.1999999999971 +18396,13683,179908.827684123,372732.366071485,27.1999999999971 +18397,17114,179908.916750446,372731.578330554,27.1999999999971 +18398,13685,179908.96711709,372731.132866293,27.1999999999971 +18399,13686,179909.053135205,372731.640501544,27.5559999999969 +18400,13684,179909.14640278,372730.805071421,27.5559000000067 +18401,13137,179908.959867634,372732.475931667,27.5559999999969 +18402,24559,179908.88820355,372733.117851831,27.5561000000016 +18403,17110,179908.81653947,372733.759771992,27.5561000000016 +18404,24568,179908.744875379,372734.401692152,27.5562000000064 +18405,17109,179908.621859897,372734.186469622,27.1999999999971 +18406,24569,179908.592211161,372734.448695816,27.1999999999971 +18407,17103,179908.553251822,372734.793269001,27.1999999999971 +18408,17105,179908.673211295,372735.043612313,27.5562000000064 +18409,24562,179908.60865669,372735.621850424,27.5562000000064 +18410,24561,179908.54410208,372736.200088538,27.5562999999966 +18411,17104,179908.416035667,372736.006867763,27.1999999999971 +18412,24565,179908.347427592,372736.613667142,27.1999999999971 +18413,24566,179908.233280156,372736.732999854,24.5540999999939 +18414,24567,179908.314224869,372736.9073263,27.1999999999971 +18415,13689,179908.278819516,372737.220466521,27.1999999999971 +18416,17100,179908.135973107,372737.593625292,24.5500000000029 +18417,17101,179908.231390756,372737.639946904,27.1999999999971 +18418,24557,179908.179401509,372738.099762239,27.1999999999971 +18419,13687,179908.127412256,372738.559577569,27.1999999999971 +18420,17098,179907.97203397,372739.043573648,24.5430000000051 +18421,17089,179907.811843626,372740.460366074,24.5362000000023 +18422,1856,179902.500800002,372742.500500001,24.4100000000035 +18423,17096,179907.722771179,372741.248161167,24.5325000000012 +18424,17093,179907.829527393,372741.194199607,27.1999999999971 +18425,13690,179907.908212807,372740.498271935,27.1999999999971 +18426,17092,179907.963012669,372740.013598341,27.1999999999971 +18427,17090,179908.017812528,372739.528924748,27.1999999999971 +18428,17091,179908.131326269,372739.897465199,27.5565000000061 +18429,17099,179908.071875654,372739.050767187,27.1999999999971 +18430,13691,179908.048925485,372740.63555773,27.5565999999963 +18431,17097,179907.792813499,372741.518913146,27.1999999999971 +18432,17095,179907.7560996,372741.843626685,27.1999999999971 +18433,17087,179907.574842747,372742.556503914,24.526199999993 +18434,17088,179907.682671797,372742.49305376,27.1999999999971 +18435,13694,179907.652554657,372742.759422768,27.1999999999971 +18436,13692,179907.623353202,372743.017692983,27.1999999999971 +18437,1891,179907.429000005,372743.8464,24.5200000000041 +18438,17084,179907.273197073,372745.2243159,24.5133999999962 +18439,17077,179907.114919446,372746.624117933,24.5066999999981 +18440,17075,179906.954727266,372748.040852226,24.4998999999953 +18441,17070,179906.816043157,372749.267369892,24.4940000000061 +18442,17068,179906.66678955,372750.587363813,24.4876999999979 +18443,13700,179906.86529899,372749.721943181,27.1999999999971 +18444,17071,179906.915041305,372749.28202381,27.1999999999971 +18445,17074,179906.960480392,372748.880162098,27.1999999999971 +18446,17072,179907.005919468,372748.478300385,27.1999999999971 +18447,17073,179907.150712155,372748.680925351,27.5571000000054 +18448,17076,179907.051968865,372748.071041077,27.1999999999971 +18449,13143,179907.248708956,372747.803175759,27.5571000000054 +18450,13697,179907.09679763,372747.674576961,27.1999999999971 +18451,17079,179907.185504466,372746.890056647,27.1999999999971 +18452,17082,179907.229857888,372746.497796498,27.1999999999971 +18453,17078,179907.274211306,372746.105536342,27.1999999999971 +18454,13699,179907.05271535,372749.558674943,27.5571999999956 +18455,13701,179906.970264371,372750.297181793,27.5571999999956 +18456,17069,179906.790944684,372750.37953018,27.1999999999971 +18457,13698,179906.733632959,372750.886393182,27.1999999999971 +18458,17063,179906.618589677,372751.903832119,27.1999999999971 +18459,17062,179906.514784142,372751.931694519,24.4811999999947 +18460,17067,179906.577398174,372752.268128466,27.1999999999971 +18461,17066,179906.443174079,372752.565011553,24.4781999999977 +18462,17060,179906.257247072,372754.209343806,24.4703000000009 +18463,13704,179906.373568583,372754.070790503,27.1999999999971 +18464,17065,179906.536206659,372752.632424809,27.1999999999971 +18465,17061,179906.343166649,372754.339664225,27.1999999999971 +18466,13702,179906.311887924,372754.616292175,27.1999999999971 +18467,17058,179906.113465656,372755.480941877,24.4642000000022 +18468,17059,179906.251063701,372755.154219665,27.1999999999971 +18469,24575,179906.220651574,372755.423183408,27.1999999999971 +18470,17057,179906.190239459,372755.692147151,27.1999999999971 +18471,17054,179905.956969567,372756.864988051,24.4575000000041 +18472,17055,179906.068590991,372756.76800213,27.1999999999971 +18473,13705,179905.996472064,372757.405819558,27.1999999999971 +18474,17051,179905.951434795,372757.804127622,27.1999999999971 +18475,17049,179905.837566357,372757.920986053,24.4524999999994 +18476,17053,179905.928916167,372758.003281653,27.1999999999971 +18477,17050,179905.906397533,372758.202435683,27.1999999999971 +18478,13709,179905.816323001,372758.999051809,27.1999999999971 +18479,13708,179906.030141693,372758.717785817,27.557799999995 +18480,17052,179906.098081972,372758.109250117,27.5577000000048 +18481,13710,179905.962201409,372759.326321512,27.557799999995 +18482,13706,179905.894261129,372759.934857208,27.557799999995 +18483,13712,179905.753512893,372761.195527919,27.5578999999998 +18484,1884,179906.761999998,372762.788000006,27.6820000000007 +18485,1881,179905.622500002,372762.369000006,27.5580000000045 +18486,9450,179905.515058838,372763.340780783,27.5580000000045 +18487,17042,179905.369209703,372762.964948859,27.1999999999971 +18488,1887,179905.407700006,372762.6129,27.1999999999971 +18489,1890,179905.3083,372762.601799998,24.429999999993 +18490,17041,179905.236990869,372763.254027575,24.4333000000042 +18491,13715,179905.330719411,372763.316997722,27.1999999999971 +18492,17036,179905.196058623,372764.548663348,27.1999999999971 +18493,17035,179905.076000232,372764.726525217,24.4407000000065 +18494,17040,179905.162393428,372764.856579758,27.1999999999971 +18495,17037,179905.12872823,372765.164496168,27.1999999999971 +18496,17031,179904.916691355,372766.183640681,24.4480999999942 +18497,13719,179905.061397839,372765.780328982,27.1999999999971 +18498,17039,179905.310566962,372765.19036312,27.5580000000045 +18499,13717,179905.242403004,372765.806890577,27.5580000000045 +18500,13718,179906.476916134,372765.404852599,27.686400000006 +18501,17038,179905.378730919,372764.573835678,27.5580000000045 +18502,13149,179906.191832267,372768.021705192,27.6909000000014 +18503,13146,179905.995660309,372769.82241429,27.6938999999984 +18504,1904,179907.454000004,372781.517000001,28.5099999999948 +18505,13150,179905.072033897,372778.300600741,27.7081999999937 +18506,1885,179904.746800002,372781.286000002,27.7133000000031 +18507,24543,179907.11947054,372784.860496085,28.5154000000039 +18508,13730,179904.358723979,372784.848065373,27.719299999997 +18509,24542,179906.784941077,372788.203992173,28.5207999999984 +18510,13155,179903.970647953,372788.410130739,27.7253000000055 +18511,13152,179903.852684766,372789.492889136,27.7271000000037 +18512,24544,179903.451142523,372793.178557988,27.7333999999973 +18513,1946,179905.594000004,372800.107000001,28.5399999999936 +18514,13156,179903.049600277,372796.864226837,27.7396000000008 +18515,1934,179902.7315,372799.784000002,27.7445000000007 +18516,13751,179901.63298675,372798.454092167,27.5580000000045 +18517,16962,179901.577393375,372798.956946082,27.5580000000045 +18518,1932,179901.521799996,372799.459800005,27.5580000000045 +18519,13753,179901.470427305,372799.924451835,27.5580000000045 +18520,9453,179901.419054605,372800.38910367,27.5580000000045 +18521,16955,179901.345776953,372801.051879726,27.5580000000045 +18522,13757,179902.36305574,372803.166037489,27.7501999999949 +18523,13756,179901.272499301,372801.71465579,27.5580000000045 +18524,13759,179901.199221648,372802.377431847,27.5580000000045 +18525,13755,179901.125943996,372803.040207911,27.5580000000045 +18526,13761,179901.027088493,372803.934328556,27.5580000000045 +18527,13763,179900.929960944,372804.812820356,27.5580000000045 +18528,13157,179901.994611479,372806.548074979,27.7559000000037 +18529,24529,179904.486321907,372809.828221597,28.5293999999994 +18530,24530,179903.991160955,372814.173860807,28.5246999999945 +18531,1944,179903.496000003,372818.519499999,28.5200000000041 +18532,13159,179901.123674452,372814.542613074,27.7694999999949 +18533,1935,179900.7163,372818.282000002,27.7758000000031 +18534,13782,179900.392398365,372821.255022652,27.7807999999932 +18535,13162,179900.068496719,372824.2280453,27.7857999999978 +18536,13160,179899.544065937,372829.041681316,27.7939000000042 +18537,13163,179898.911766484,372834.845420334,27.803700000004 +18538,13791,179897.881688394,372832.383678667,27.5580000000045 +18539,13795,179897.733160794,372833.727076888,27.5580000000045 +18540,13797,179897.65438012,372834.439630121,27.5580000000045 +18541,9457,179897.575599443,372835.152183343,27.5580000000045 +18542,9458,179897.471979193,372836.089404833,27.5580000000045 +18543,1988,179898.701000001,372836.780000001,27.8070000000007 +18544,1987,179897.421,372836.550500002,27.5580000000045 +18545,13799,179897.330489684,372836.096486446,27.1999999999971 +18546,16885,179897.282496344,372836.532986011,27.1999999999971 +18547,16879,179897.234503001,372836.969485573,27.1999999999971 +18548,16880,179897.341332074,372837.275003638,27.5577000000048 +18549,16881,179897.186509654,372837.405985132,27.1999999999971 +18550,16877,179897.047043327,372837.759388462,24.4728999999934 +18551,13800,179897.138516314,372837.842484698,27.1999999999971 +18552,13802,179897.261664148,372837.999507267,27.5574000000051 +18553,16883,179897.09661549,372838.22357272,27.1999999999971 +18554,16882,179896.995535143,372838.227855571,24.4713999999949 +18555,16878,179897.054714676,372838.604660742,27.1999999999971 +18556,16872,179896.85521014,372839.504111752,24.4671999999991 +18557,16873,179896.970913049,372839.366836786,27.1999999999971 +18558,13805,179897.104724389,372839.426724389,27.5568000000058 +18559,13803,179898.239551179,372840.931979354,27.8050999999978 +18560,24527,179898.008826766,372843.007969033,27.8040999999939 +18561,16868,179896.85399732,372841.706847377,27.5558000000019 +18562,13811,179896.760210011,372842.559753254,27.5553999999975 +18563,16863,179896.66642271,372843.412659124,27.5550999999978 +18564,13809,179896.572635405,372844.265564993,27.5546999999933 +18565,13164,179897.778102353,372845.083958704,27.8031999999948 +18566,24523,179897.354135077,372848.898690246,27.8013999999966 +18567,16856,179896.242275797,372847.269869857,27.5534000000043 +18568,13816,179896.148301098,372848.124479868,27.5529999999999 +18569,24524,179896.054326404,372848.979089871,27.5527000000002 +18570,9460,179895.960351713,372849.833699878,27.5522999999957 +18571,24526,179895.875971682,372850.601055551,27.551999999996 +18572,13165,179896.930167798,372852.713421784,27.7997000000032 +18573,1996,179896.524500005,372856.363500003,27.7979999999952 +18574,13824,179895.410856571,372854.830832854,27.5501999999979 +18575,1998,179895.263500005,372856.170899998,27.5495999999985 +18576,16836,179895.167359684,372857.0452043,27.549199999994 +18577,13832,179895.07121937,372857.919508606,27.5488999999943 +18578,13829,179896.133145269,372859.884793568,27.7964000000065 +18579,13834,179894.975079045,372858.793812908,27.5485000000044 +18580,13827,179894.878938723,372859.66811721,27.5481 +18581,13830,179894.782798406,372860.542421505,27.5478000000003 +18582,13828,179894.686658084,372861.416725811,27.5473999999958 +18583,13167,179895.741790533,372863.406087127,27.7948000000033 +18584,24509,179899.125132181,372860.798945043,28.4878000000026 +18585,24508,179898.712264366,372865.134390086,28.4856 +18586,24510,179898.195132181,372870.564695049,28.482799999998 +18587,2031,179897.677999999,372875.995000001,28.4799999999959 +18588,24491,179894.908000004,372906.600000001,28.4305000000022 +18589,50,179895.186000004,372895.637500003,28.4799999999959 +18590,24492,179893.939999998,372905.458750006,28.4850000000006 +18591,24502,179893.6285,372907.914062504,28.4861999999994 +18592,24493,179893.316999998,372910.369375002,28.4875000000029 +18593,2099,179892.693999998,372915.280000001,28.4900000000052 +18594,13,179891.177000005,372930.412000004,28.5399999999936 +18595,24482,179891.295000002,372940.022,28.4131999999954 +18596,24483,179890.418499999,372937.978,28.5650000000023 +18597,24484,179890.039250005,372941.761000004,28.5774999999994 +18598,2101,179889.660000004,372945.544,28.5899999999965 +18599,24466,179889.86112966,372952.887435514,28.4092999999993 +18600,24468,179889.076145113,372950.402608935,28.5847999999969 +18601,16633,179886.175296802,372947.509893335,27.7304000000004 +18602,13187,179885.945593599,372949.720786672,27.732799999998 +18603,24475,179885.709062461,372951.997398846,27.7353000000003 +18604,13947,179884.834509969,372950.613131363,27.5483999999997 +18605,16620,179884.741764959,372951.447197042,27.5489999999991 +18606,13945,179884.649019945,372952.281262726,27.5494999999937 +18607,24480,179884.556274928,372953.115328405,27.5500999999931 +18608,16617,179884.441187464,372953.00585679,27.1999999999971 +18609,24481,179884.415350363,372953.239042319,27.1999999999971 +18610,16616,179884.333340898,372953.071132243,24.4557000000059 +18611,16612,179884.349846486,372953.830229383,27.1999999999971 +18612,16611,179884.167971544,372954.563635312,24.454899999997 +18613,16615,179884.304175995,372954.242415685,27.1999999999971 +18614,24479,179884.281340752,372954.448508833,27.1999999999971 +18615,16613,179884.258505512,372954.654601984,27.1999999999971 +18616,13949,179884.167164534,372955.478974577,27.1999999999971 +18617,24477,179884.370784897,372954.783459768,27.5512000000017 +18618,13188,179884.278039884,372955.617525455,27.5516999999963 +18619,24469,179885.472531322,372954.274011031,27.7378000000026 +18620,24478,179884.417157404,372954.36642693,27.550900000002 +18621,16614,179884.463529915,372953.949394096,27.5506000000023 +18622,24470,179885.236000195,372956.550623208,27.7403000000049 +18623,24473,179884.21264543,372956.205624621,27.5521000000008 +18624,16608,179884.147250988,372956.793723792,27.5525000000052 +18625,24471,179884.081856538,372957.381822962,27.5528999999951 +18626,13189,179884.999469057,372958.82723539,27.7427000000025 +18627,24467,179888.537500005,372954.884999998,28.5800000000017 +18628,49,179887.414999999,372964.226000004,28.570000000007 +18629,24476,179888.806822553,372952.643804468,28.5823999999993 +18630,24459,179885.581000004,372991.291000001,28.4875000000029 +18631,24454,179880.114999998,373041.320000004,28.5562000000064 +18632,2239,179880.408000004,373026.843000002,28.6699999999983 +18633,2240,179879.533,373037.401000001,28.6999999999971 +18634,24455,179879.150104951,373042.021121081,28.7130999999936 +18635,10757,179875.443750005,373045.819000006,27.7912999999971 +18636,24456,179875.689570311,373043.420925654,27.7851999999984 +18637,12508,179875.935390614,373041.022851303,27.7790999999997 +18638,16366,179874.614406619,373042.311108522,27.513300000006 +18639,24457,179874.551177304,373042.880490214,27.5178000000014 +18640,14093,179874.487947986,373043.449871913,27.5224000000017 +18641,16361,179874.398582373,373044.25461169,27.5288 +18642,14095,179874.341432907,373043.513738163,27.1999999999971 +18643,16362,179874.257424593,373044.262214731,27.1999999999971 +18644,16363,179874.285511844,373043.115442596,24.4278999999951 +18645,16359,179874.107452437,373044.701844532,24.4285999999993 +18646,16360,179874.198681962,373044.785585381,27.1999999999971 +18647,14097,179874.121556908,373045.472735144,27.1999999999971 +18648,14096,179874.30921676,373045.059351467,27.5351999999984 +18649,14098,179874.219851147,373045.864091247,27.5415999999968 +18650,12506,179874.130485535,373046.668831024,27.5481 +18651,14100,179874.050992768,373047.384665512,27.5537999999942 +18652,14099,179873.920311671,373047.265740417,27.1999999999971 +18653,14101,179873.87432792,373047.675435103,27.1999999999971 +18654,2276,179873.971500002,373048.100500003,27.559500000003 +18655,14103,179873.811605319,373049.557540338,27.5587999999989 +18656,14105,179873.731657971,373050.286060508,27.5584999999992 +18657,14104,179873.619381137,373050.005047239,27.1999999999971 +18658,16353,179873.496422537,373051.130392719,27.1999999999971 +18659,14106,179873.430044416,373051.737900622,27.1999999999971 +18660,16352,179873.363739531,373051.423964914,24.411300000007 +18661,16354,179873.551206969,373049.708239276,24.4201999999932 +18662,16349,179873.196668882,373052.953016531,24.4033999999956 +18663,16345,179873.04298646,373054.359537411,24.3960999999981 +18664,14108,179873.250507955,373053.381059736,27.1999999999971 +18665,16346,179873.155213546,373054.253216188,27.1999999999971 +18666,16348,179873.114664257,373054.62433267,27.1999999999971 +18667,14110,179873.059919145,373055.125372637,27.1999999999971 +18668,16344,179872.993661825,373055.731774885,27.1999999999971 +18669,16351,179873.289115943,373053.027710531,27.1999999999971 +18670,16350,179873.327723932,373052.674361315,27.1999999999971 +18671,16355,179873.665200174,373049.585700795,27.1999999999971 +18672,14102,179873.819735486,373048.171357945,27.1999999999971 +18673,2282,179873.759599999,373047.801000003,24.429999999993 +18674,2277,179873.859000005,373047.811999999,27.1999999999971 +18675,16356,179873.933283698,373046.253582999,24.4293000000034 +18676,16357,179874.020934291,373046.369237777,27.1999999999971 +18677,16358,179874.0712456,373045.920986459,27.1999999999971 +18678,16368,179874.453824013,373041.615882635,24.4272999999957 +18679,16372,179874.633458428,373040.01544835,24.4266000000061 +18680,2287,179867.500200003,373037.500500005,24.25 +18681,16375,179874.809420552,373038.447731949,24.425900000002 +18682,16377,179874.985217776,373036.881484665,24.4251999999979 +18683,14089,179874.98966955,373037.738239024,27.1999999999971 +18684,14091,179875.059318744,373037.117695749,27.1999999999971 +18685,16378,179875.097659372,373036.776097883,27.1999999999971 +18686,14090,179875.185647901,373037.1670653,27.4722000000038 +18687,2193,179875.264500003,373036.457000002,27.466499999995 +18688,2238,179876.382000003,373036.666000001,27.7679999999964 +18689,14086,179875.317226514,373035.982196316,27.4627000000037 +18690,14084,179875.369953029,373035.507392623,27.4588999999978 +18691,14080,179875.475406062,373034.557785254,27.4513000000006 +18692,12511,179876.796506684,373032.622323271,27.7577000000019 +18693,14081,179875.580859084,373033.608177874,27.4437000000034 +18694,12512,179875.686312117,373032.658570498,27.4361999999965 +18695,16385,179875.765257761,373031.947662868,27.4305000000022 +18696,14078,179875.844203394,373031.236755233,27.4247999999934 +18697,16392,179875.948745232,373030.295353167,27.417300000001 +18698,10756,179877.211013373,373028.578646544,27.7474999999977 +18699,12510,179876.05328707,373029.353951097,27.409799999994 +18700,16390,179875.889969241,373029.716970596,27.1999999999971 +18701,16393,179875.845008913,373030.117547061,27.1999999999971 +18702,16389,179875.781561494,373029.786483966,24.4220999999961 +18703,16394,179875.728777613,373030.256760638,24.4223000000056 +18704,2177,179872.500599999,373027.500300005,24.3300000000017 +18705,16396,179875.909022532,373028.650873009,24.4216000000015 +18706,16401,179876.032547854,373027.550327163,24.4211000000068 +18707,16398,179876.059127346,373027.313517861,24.4210000000021 +18708,16403,179876.2332392,373025.762272563,24.420299999998 +18709,2219,179876.313600004,373025.046300009,24.4199999999983 +18710,2174,179872.500500005,373022.500700001,24.2599999999948 +18711,16405,179876.459829021,373023.637766819,24.4199999999983 +18712,16407,179876.594922885,373022.336491596,24.4199999999983 +18713,16406,179876.583389245,373023.415824831,27.1999999999971 +18714,14063,179876.670955729,373022.572391681,27.1999999999971 +18715,16408,179876.719107527,373022.108597491,27.1999999999971 +18716,12516,179876.852229301,373022.047987644,27.3046999999933 +18717,14061,179876.928782776,373021.32966885,27.2869000000064 +18718,14060,179876.809313357,373021.239742409,27.1999999999971 +18719,14049,179876.960866675,373021.028618287,27.2793999999994 +18720,16411,179876.839618336,373020.94784731,27.1999999999971 +18721,16437,179876.988026023,373020.773775946,27.2731000000058 +18722,16436,179877.132873412,373020.857626401,27.1999999999971 +18723,16438,179877.149603151,373020.692457475,27.1999999999971 +18724,16412,179877.015185364,373020.518933602,27.2666999999929 +18725,16439,179876.869782519,373020.657308433,27.1999999999971 +18726,16410,179876.899946701,373020.366769563,27.1999999999971 +18727,16409,179876.735591482,373020.981518488,24.4199999999983 +18728,16415,179876.877722438,373019.612459343,24.4199999999983 +18729,2169,179872.500400003,373017.500300001,24.2799999999988 +18730,2173,179867.500700004,373022.500599999,24.25 +18731,2170,179867.500399999,373017.500800002,24.2299999999959 +18732,2167,179867.500399999,373012.500600003,24.2400000000052 +18733,2168,179862.500200003,373017.500300001,24.4199999999983 +18734,2171,179862.500200003,373022.500100002,24.3999999999942 +18735,2192,179862.500399999,373012.500600003,24.4400000000023 +18736,2164,179867.500200003,373007.500700004,24.25 +18737,2165,179862.500300005,373007.5009,24.4499999999971 +18738,2163,179857.500200007,373007.500399999,24.3699999999953 +18739,20526,179854.037564579,373009.33480677,24.5283000000054 +18740,20524,179854.181156345,373008.0165608,24.5197000000044 +18741,20516,179854.297497272,373006.948491566,24.5127000000066 +18742,20523,179854.341787159,373006.541887697,24.5099999999948 +18743,20518,179854.458781712,373005.467817798,24.502999999997 +18744,2191,179862.501000002,373002.5,24.4600000000064 +18745,2157,179862.500600003,372997.500500005,24.4499999999971 +18746,2158,179867.500200003,372997.500700001,24.3099999999977 +18747,2161,179867.500300005,373002.500600006,24.2799999999988 +18748,2189,179872.500300001,373007.500700004,24.1999999999971 +18749,2162,179872.500700001,373002.500600006,24.320000000007 +18750,16485,179878.595104665,373005.36274261,24.4820999999938 +18751,16492,179878.542607363,373005.730394319,24.4833999999973 +18752,16487,179878.666086514,373005.572847258,27.1999999999971 +18753,14024,179878.702505693,373005.317766987,27.1999999999971 +18754,2231,179878.679800004,373004.769600004,24.4799999999959 +18755,2205,179878.779000003,373004.782000002,27.1999999999971 +18756,14022,179878.818277832,373004.416451942,27.1999999999971 +18757,16494,179878.856296435,373003.126976378,24.476999999999 +18758,14018,179878.925022516,373003.423008185,27.1999999999971 +18759,16495,179878.956573062,373003.129375808,27.1999999999971 +18760,14020,179879.008835196,373003.435923621,27.5495999999985 +18761,14019,179879.071170401,373002.863347244,27.5500999999931 +18762,14021,179878.988123614,373002.835743431,27.1999999999971 +18763,16498,179879.092259388,373001.866580125,27.1999999999971 +18764,16499,179879.188468363,373001.785913523,27.5512000000017 +18765,13198,179880.498,373001.686625,27.7234999999928 +18766,16503,179879.217330303,373001.520803802,27.5515000000014 +18767,16500,179879.247117344,373001.247196659,27.5516999999963 +18768,14014,179879.305766329,373000.708479803,27.5522999999957 +18769,13200,179880.707237646,372999.721718349,27.7283000000025 +18770,2236,179882.379000001,373003.940000001,28.4700000000012 +18771,2121,179883.774500001,372993.423999999,28.5 +18772,14009,179881.030118823,372996.689609174,27.7356 +18773,2112,179881.353000008,372993.657499999,27.7430000000022 +18774,16521,179879.90802611,372995.176457185,27.557799999995 +18775,16522,179879.963789236,372994.664248221,27.5583000000042 +18776,9481,179880.019552361,372994.152039256,27.5587999999989 +18777,16520,179879.887149397,372994.468754984,27.1999999999971 +18778,16525,179879.84153622,372994.893264491,27.1999999999971 +18779,16524,179879.736272726,372994.937180407,24.4622999999992 +18780,16526,179879.818575464,372995.106953945,27.1999999999971 +18781,16523,179879.795614719,372995.320643403,27.1999999999971 +18782,14007,179879.796499863,372996.200875118,27.5568000000058 +18783,14011,179879.704080034,372996.172531813,27.1999999999971 +18784,16518,179879.683728382,372996.361939088,27.1999999999971 +18785,16516,179879.585409354,372996.341241203,24.4649000000063 +18786,16517,179879.66337673,372996.551346358,27.1999999999971 +18787,16513,179879.62267343,372996.930160902,27.1999999999971 +18788,16511,179879.421910446,372997.862899005,24.4676000000036 +18789,14012,179879.541266836,372997.687789991,27.1999999999971 +18790,16515,179879.527674306,372997.814291924,27.1999999999971 +18791,14006,179879.514081776,372997.940793861,27.1999999999971 +18792,14010,179879.629210494,372997.737502016,27.5552000000025 +18793,14005,179879.573447373,372998.249710981,27.5546999999933 +18794,14008,179879.68497362,372997.225293048,27.5556999999972 +18795,16514,179879.740736738,372996.713084083,27.5562000000064 +18796,16512,179879.474614315,372998.308106836,27.1999999999971 +18797,14004,179879.435146846,372998.675419819,27.1999999999971 +18798,13199,179879.483026173,372999.080269627,27.553899999999 +18799,16507,179879.370207261,372999.279794883,27.1999999999971 +18800,16506,179879.259848252,372999.3711854,24.4703000000009 +18801,16510,179879.345926948,372999.505765107,27.1999999999971 +18802,16508,179879.318522248,372999.760813195,27.1999999999971 +18803,14016,179879.266837243,373000.241831508,27.1999999999971 +18804,14015,179879.394396257,372999.89437471,27.5531000000046 +18805,16509,179879.438711219,372999.487322167,27.5534999999945 +18806,14017,179879.350081291,373000.301427253,27.5527000000002 +18807,14013,179879.237299718,373000.516729228,27.1999999999971 +18808,16496,179879.091486115,373000.938104402,24.4731000000029 +18809,16497,179879.196395159,373000.897416823,27.1999999999971 +18810,16501,179879.158911776,373001.246264536,27.1999999999971 +18811,16504,179879.028099004,373001.528037898,24.4741999999969 +18812,16505,179879.122382291,373001.586234432,27.1999999999971 +18813,16502,179879.144327275,373001.381998479,27.1999999999971 +18814,2159,179872.500900004,372997.500700001,24.3000000000029 +18815,2145,179872.500599999,372992.500599999,24.2799999999988 +18816,2123,179877.500300001,372992.500700001,24.3699999999953 +18817,2142,179872.5002,372987.5009,24.2899999999936 +18818,2143,179867.500600003,372992.5002,24.3300000000017 +18819,2141,179867.500200003,372987.500799999,24.3699999999953 +18820,2140,179862.500799999,372987.500300005,24.4400000000023 +18821,2139,179867.500200003,372982.5009,24.3899999999994 +18822,2138,179862.500100002,372982.500799999,24.3699999999953 +18823,20500,179856.770016622,372984.477205999,24.4355999999971 +18824,20493,179856.63958241,372985.647574697,24.4349999999977 +18825,20491,179856.514457025,372986.770308003,24.4342999999935 +18826,20503,179856.311265536,372988.59351806,24.4333000000042 +18827,2136,179862.500600003,372977.500599999,24.429999999993 +18828,2135,179867.500799999,372977.500500005,24.4199999999983 +18829,2137,179872.500500005,372982.500200003,24.2799999999988 +18830,2106,179877.500599999,372987.500300005,24.3699999999953 +18831,2105,179877.500300001,372982.500100002,24.3500000000058 +18832,2104,179877.500300001,372977.500300001,24.3500000000058 +18833,16563,179881.339052651,372980.095392853,24.4413000000059 +18834,16566,179881.479849592,372978.824662391,24.4419999999955 +18835,16568,179881.615174372,372977.603319682,24.4425999999949 +18836,13970,179881.680565819,372977.921080451,27.1999999999971 +18837,13972,179881.713197168,372977.626575325,27.1999999999971 +18838,13971,179881.820273291,372977.720479246,27.5665000000008 +18839,16569,179881.761734061,372977.188519049,27.1999999999971 +18840,13975,179881.887167279,372977.11889451,27.5660999999964 +18841,13974,179881.810270958,372976.750462778,27.1999999999971 +18842,16570,179881.750898965,372976.378368568,24.443299999999 +18843,16571,179881.849758878,372976.394075543,27.1999999999971 +18844,16572,179881.919403661,372975.765515905,27.1999999999971 +18845,16573,179881.898146123,372975.049423199,24.4440000000031 +18846,13969,179881.989048447,372975.136956275,27.1999999999971 +18847,16574,179882.200495895,372972.320634771,24.4453999999969 +18848,2119,179877.500700001,372972.500400003,24.3099999999977 +18849,2155,179872.500300001,372972.500100005,24.2599999999948 +18850,2134,179872.5002,372977.500400003,24.2700000000041 +18851,2132,179867.500399999,372972.500700001,24.4400000000023 +18852,2131,179867.5009,372967.5009,24.4600000000064 +18853,20485,179858.52537562,372968.726140529,24.4446999999927 +18854,20483,179858.760436114,372966.616853684,24.4459000000061 +18855,2150,179872.500599999,372967.500600003,24.2599999999948 +18856,2129,179872.500300001,372962.500600003,24.2799999999988 +18857,2126,179872.500300001,372957.500800002,24.3000000000029 +18858,2124,179867.500700004,372957.500300009,24.4400000000023 +18859,2064,179872.500599999,372952.500599999,24.3300000000017 +18860,20471,179860.103123613,372954.568686243,24.4527999999991 +18861,20473,179859.974649414,372955.72146799,24.452099999995 +18862,20475,179859.864313215,372956.711499933,24.4514999999956 +18863,20477,179859.747519184,372957.759477135,24.4508999999962 +18864,2102,179877.500900004,372957.500200007,24.3399999999965 +18865,2085,179877.500300001,372952.500100005,24.3300000000017 +18866,16609,179883.992412057,372956.148107171,24.4539999999979 +18867,16605,179883.83064897,372957.608062726,24.4532000000036 +18868,16603,179883.662914116,372959.121915147,24.4523999999947 +18869,13952,179883.887963444,372957.998826452,27.1999999999971 +18870,16607,179883.932888724,372957.593365874,27.1999999999971 +18871,24472,179883.978354301,372957.183028888,27.1999999999971 +18872,16606,179884.027563989,372956.738900516,27.1999999999971 +18873,24474,179884.068559073,372956.368910816,27.1999999999971 +18874,16610,179884.097364262,372956.108937547,27.1999999999971 +18875,13951,179884.016462088,372957.969922133,27.5532999999996 +18876,13950,179883.800402813,372958.78908065,27.1999999999971 +18877,13190,179883.907059822,372958.95378818,27.5540000000037 +18878,16604,179883.762617286,372959.130103357,27.1999999999971 +18879,16601,179883.702488802,372959.672776319,27.1999999999971 +18880,16599,179883.498993505,372960.601342887,24.4517000000051 +18881,16600,179883.604574796,372960.556471996,27.1999999999971 +18882,13955,179883.573580068,372960.83620635,27.1999999999971 +18883,13954,179883.721569799,372960.621919543,27.5550999999978 +18884,16602,179883.814314812,372959.787853863,27.5544999999984 +18885,13191,179884.586617265,372962.800933857,27.7470999999932 +18886,13956,179883.628824782,372961.455985222,27.555600000007 +18887,9475,179883.536079768,372962.290050905,27.5562000000064 +18888,13958,179883.457527895,372962.996476144,27.556700000001 +18889,2110,179884.449000001,372964.125500001,27.7485000000015 +18890,13192,179884.029553182,372968.162675653,27.7529000000068 +18891,13195,179883.013706036,372977.940204415,27.7635000000009 +18892,2120,179885.170000002,372982.908,28.5399999999936 +18893,13196,179882.623176511,372981.699051104,27.7676000000065 +18894,13978,179881.635683998,372979.380510133,27.5676999999996 +18895,13977,179881.550992992,372980.142145269,27.5681999999942 +18896,13980,179881.45891837,372980.970182005,27.5687000000034 +18897,16561,179881.412881065,372981.384200379,27.5690000000031 +18898,9478,179881.366843753,372981.798218753,27.5693000000028 +18899,2111,179882.493000004,372982.952000003,27.7690000000002 +18900,9479,179881.272039346,372982.650804788,27.5699000000022 +18901,2108,179881.249000005,372982.858000003,27.570000000007 +18902,16554,179881.165463444,372983.625394206,27.5691999999981 +18903,16557,179881.10247834,372983.158019144,27.1999999999971 +18904,13982,179881.141251337,372982.797169428,27.1999999999971 +18905,16556,179880.998557728,372983.189299386,24.4412000000011 +18906,16555,179881.063705347,372983.518868849,27.1999999999971 +18907,16552,179880.875550818,372984.334104691,24.443299999999 +18908,16553,179880.986159358,372984.240568273,27.1999999999971 +18909,13993,179880.963077806,372984.455382004,27.1999999999971 +18910,13991,179881.081926879,372984.392788414,27.5684999999939 +18911,13992,179880.998390313,372985.160182618,27.5676999999996 +18912,16551,179880.885977931,372985.172929574,27.1999999999971 +18913,13990,179880.827324264,372985.71880332,27.1999999999971 +18914,13989,179880.914853759,372985.927576829,27.5669999999955 +18915,13986,179882.104380071,372986.601447981,27.7600999999995 +18916,13984,179880.832506739,372986.684043437,27.5662000000011 +18917,16545,179880.78639907,372987.107603565,27.5657999999967 +18918,13987,179880.740291405,372987.531163692,27.5654000000068 +18919,24462,179881.910070103,372988.426171966,27.7556999999942 +18920,24464,179880.694183733,372987.954723828,27.5648999999976 +18921,13985,179880.648076065,372988.378283955,27.5644999999931 +18922,24463,179880.6019684,372988.80184409,27.5641000000032 +18923,13995,179880.555860735,372989.225404225,27.5636999999988 +18924,13197,179881.715760142,372990.250895962,27.7513000000035 +18925,24461,179884.123375006,372990.794999998,28.5099999999948 +18926,24460,179884.472250003,372988.166000001,28.5200000000041 +18927,16537,179880.509753071,372989.648964353,27.5632999999943 +18928,9480,179880.463645395,372990.072524488,27.5627999999997 +18929,13997,179880.324058078,372991.354819328,27.5616000000009 +18930,13996,179880.348239824,372990.177511852,27.1999999999971 +18931,16533,179880.227744881,372991.298925541,27.1999999999971 +18932,16532,179880.118765678,372991.377380785,24.4559000000008 +18933,13998,179880.203680318,372991.52288783,27.1999999999971 +18934,16528,179880.117903233,372992.32119184,27.1999999999971 +18935,16527,179879.994386081,372992.534961395,24.4579999999987 +18936,14000,179880.090134427,372992.579628579,27.1999999999971 +18937,13999,179880.210929036,372992.394059666,27.5605000000069 +18938,14001,179880.154364519,372992.913679831,27.5599999999977 +18939,16531,179880.068213411,372992.783641487,27.1999999999971 +18940,16529,179880.046292398,372992.987654399,27.1999999999971 +18941,2109,179880.097800002,372993.4333,27.559500000003 +18942,14002,179880.002450373,372993.395680226,27.1999999999971 +18943,2115,179879.975500003,372993.646500006,27.1999999999971 +18944,2116,179879.876200005,372993.6349,24.4600000000064 +18945,14003,179879.923793171,372994.127721421,27.1999999999971 +18946,16519,179879.81886239,372994.168531813,24.4609999999957 +18947,16530,179879.976486839,372992.701546766,24.4582999999984 +18948,16534,179880.269382872,372989.975611065,24.4533999999985 +18949,16539,179880.390865084,372988.844995901,24.4514000000054 +18950,16542,179880.497762501,372987.850119017,24.4496000000072 +18951,16546,179880.609049641,372986.814387728,24.4477000000043 +18952,16549,179880.735479452,372985.63772605,24.4456000000064 +18953,13988,179880.75671684,372986.375927418,27.1999999999971 +18954,16550,179880.792020552,372986.047365367,27.1999999999971 +18955,16547,179880.718594167,372986.730724759,27.1999999999971 +18956,16548,179880.699532833,372986.908123426,27.1999999999971 +18957,16543,179880.680471491,372987.0855221,27.1999999999971 +18958,16544,179880.642348822,372987.440319445,27.1999999999971 +18959,13983,179880.604226146,372987.795116786,27.1999999999971 +18960,24465,179880.580438621,372988.016500846,27.1999999999971 +18961,16540,179880.548166305,372988.316850509,27.1999999999971 +18962,13994,179880.49210646,372988.838584233,27.1999999999971 +18963,16541,179880.456139799,372989.173316136,27.1999999999971 +18964,16535,179880.420173142,372989.508048043,27.1999999999971 +18965,16538,179880.396550309,372989.727899358,27.1999999999971 +18966,16536,179880.372927465,372989.947750673,27.1999999999971 +18967,2117,179881.0726,372982.500200003,24.4400000000023 +18968,16558,179881.199125014,372981.358277537,24.4406000000017 +18969,13981,179881.225240264,372982.030494776,27.1999999999971 +18970,16560,179881.267346136,372981.650479935,27.1999999999971 +18971,16562,179881.288399071,372981.460472513,27.1999999999971 +18972,16559,179881.309452008,372981.270465091,27.1999999999971 +18973,13979,179881.38402212,372980.59745324,27.1999999999971 +18974,16564,179881.439919237,372980.092969391,27.1999999999971 +18975,16565,179881.490061954,372979.640420206,27.1999999999971 +18976,2114,179881.171999998,372982.511,27.1999999999971 +18977,13976,179881.540204674,372979.18787102,27.1999999999971 +18978,16567,179881.596932091,372978.675893452,27.1999999999971 +18979,9477,179881.720375001,372978.618875008,27.567200000005 +18980,13193,179882.455323521,372972.009405591,27.5626999999949 +18981,13968,179882.087849263,372975.314140294,27.5648999999976 +18982,13973,179881.954061273,372976.51730977,27.5657000000065 +18983,13967,179882.317117877,372972.176056758,27.1999999999971 +18984,16579,179882.416864224,372971.275823776,27.1999999999971 +18985,13966,179882.625117645,372970.482429195,27.5617000000057 +18986,16580,179882.466737401,372970.825707283,27.1999999999971 +18987,13965,179882.516610574,372970.375590798,27.1999999999971 +18988,16575,179882.421687819,372970.324317902,24.4465000000055 +18989,16581,179882.353234675,372970.942126013,24.4462000000058 +18990,2122,179877.500500005,372967.500500001,24.2899999999936 +18991,16582,179882.572437126,372968.963764675,24.4471999999951 +18992,16584,179882.717531465,372967.654249042,24.4478999999992 +18993,16589,179882.864050627,372966.331874024,24.4486000000034 +18994,16591,179883.026018277,372964.87007222,24.4493999999977 +18995,2103,179877.500400003,372962.500500001,24.3300000000017 +18996,2118,179883.154100005,372963.7141,24.4499999999971 +18997,16597,179883.310351685,372962.303886324,24.450800000006 +18998,16593,179883.335312538,372962.078607872,24.4508999999962 +18999,16594,179883.501897935,372961.483153526,27.1999999999971 +19000,13953,179883.430215802,372962.130100701,27.1999999999971 +19001,16598,179883.413648691,372962.279622514,27.1999999999971 +19002,16596,179883.397081584,372962.429144323,27.1999999999971 +19003,16595,179883.363947377,372962.728187937,27.1999999999971 +19004,13957,179883.297678951,372963.326275181,27.1999999999971 +19005,9476,179883.378976025,372963.702901386,27.5571000000054 +19006,2113,179883.253500003,372963.725000005,27.1999999999971 +19007,13961,179883.144929849,372964.704869725,27.1999999999971 +19008,13960,179883.256738011,372964.802200697,27.5578999999998 +19009,16592,179883.118371524,372964.944564521,27.1999999999971 +19010,13959,179883.036581025,372965.682741996,27.1999999999971 +19011,2107,179883.134500004,372965.901500002,27.5586000000039 +19012,16590,179882.970792126,372966.27650138,27.1999999999971 +19013,16585,179882.901330303,372966.903409798,27.1999999999971 +19014,16587,179883.009337619,372967.027098462,27.5593999999983 +19015,16586,179882.823826727,372967.602896791,27.1999999999971 +19016,16588,179882.946756437,372967.589897696,27.559699999998 +19017,13963,179882.884175245,372968.152696926,27.5601000000024 +19018,13194,179882.794911761,372968.9554528,27.5607000000018 +19019,16577,179882.710014705,372969.718940992,27.5611999999965 +19020,16578,179882.567634545,372969.915088132,27.1999999999971 +19021,16576,179882.618658513,372969.454585474,27.1999999999971 +19022,16583,179882.670306124,372968.98845432,27.1999999999971 +19023,13962,179882.720706452,372968.533580154,27.1999999999971 +19024,13964,179882.766079586,372968.124077599,27.1999999999971 +19025,111,179881.231000002,373014.072000004,28.5599999999977 +19026,2233,179879.882400002,373009.825300004,27.5920000000042 +19027,21772,179879.611835703,373012.362628557,27.590200000006 +19028,21776,179879.443298344,373013.943157315,27.5890999999974 +19029,21780,179879.266926304,373015.597159054,27.5878999999986 +19030,2234,179878.981400006,373018.274800003,27.5859999999957 +19031,21784,179878.62617781,373021.426496007,27.5663000000059 +19032,21793,179878.426844455,373023.195074007,27.5552000000025 +19033,2235,179878.360400006,373023.784600001,27.5515000000014 +19034,2200,179877.633000005,373024.462000005,27.7369999999937 +19035,12514,179877.422006685,373026.520323269,27.7421999999933 +19036,14074,179876.288669478,373027.234326135,27.3928000000014 +19037,14075,179876.217280835,373027.877182811,27.398000000001 +19038,14072,179876.145892192,373028.520039499,27.4030999999959 +19039,14073,179876.040241402,373028.378112767,27.1999999999971 +19040,16397,179876.00685779,373028.675545815,27.1999999999971 +19041,14071,179875.961119544,373029.083053201,27.1999999999971 +19042,16400,179876.095402125,373027.886655279,27.1999999999971 +19043,16402,179876.122982495,373027.640926536,27.1999999999971 +19044,14076,179876.150562856,373027.39519779,27.1999999999971 +19045,16399,179876.177546591,373027.154784773,27.1999999999971 +19046,12513,179876.431446768,373025.948612772,27.3825999999972 +19047,14070,179876.321403533,373025.873083666,27.1999999999971 +19048,16404,179876.367201764,373025.465041839,27.1999999999971 +19049,12515,179876.525986694,373025.0972782,27.3757999999943 +19050,2218,179876.413000003,373025.057000004,27.1999999999971 +19051,14069,179876.444079757,373024.757642329,27.1999999999971 +19052,2201,179876.557500001,373024.813499998,27.3735000000015 +19053,14068,179876.634781353,373024.088351425,27.3555000000051 +19054,14067,179876.537319038,373023.859569307,27.1999999999971 +19055,14064,179876.712062705,373023.36320284,27.337400000004 +19056,14065,179876.782145999,373022.70559524,27.321100000001 +19057,2199,179878.076000001,373023.691,27.4539999999979 +19058,2198,179878.274999999,373023.426000003,27.4470000000001 +19059,14066,179877.728000004,373021.996000003,27.1999999999971 +19060,2215,179877.020000003,373021.971999999,27.1999999999971 +19061,14062,179877.059706964,373021.579982121,27.1999999999971 +19062,2222,179877.1303,373021.875700001,24.4600000000064 +19063,16440,179877.179855935,373021.386399519,24.4548000000068 +19064,16442,179877.752990562,373021.896796007,24.4600000000064 +19065,2223,179878.3464,373021.916900005,24.4600000000064 +19066,2214,179878.436000001,373022.020000003,27.1999999999971 +19067,21786,179878.49615895,373021.457000315,27.1999999999971 +19068,21789,179878.522842612,373021.207280241,27.1999999999971 +19069,21792,179878.53689418,373021.07577813,27.1999999999971 +19070,21785,179878.577629413,373020.694555949,27.1999999999971 +19071,16444,179878.71925883,373019.369111896,27.1999999999971 +19072,16449,179878.592366271,373019.615219243,24.4348000000027 +19073,21787,179878.469383139,373020.766059618,24.4474000000046 +19074,16445,179877.315195836,373020.050093904,24.4407999999967 +19075,16435,179877.258500673,373020.60988497,24.4467000000004 +19076,21790,179877.219178308,373020.998142246,24.450800000006 +19077,21791,179877.116143674,373021.022795323,27.1999999999971 +19078,14047,179877.099413931,373021.187964242,27.1999999999971 +19079,21788,179878.407891572,373021.341479816,24.4536999999982 +19080,16441,179877.079560447,373021.383973181,27.1999999999971 +19081,16446,179877.199792363,373020.196950715,27.1999999999971 +19082,16447,179877.216522101,373020.031781785,27.1999999999971 +19083,14050,179877.233251844,373019.866612867,27.1999999999971 +19084,14048,179877.069504052,373020.009248927,27.2541000000056 +19085,16418,179877.095228206,373019.767873358,27.2480999999971 +19086,16433,179877.253714617,373019.664588537,27.1999999999971 +19087,14053,179877.120952357,373019.526497792,27.2421000000031 +19088,16417,179876.967921697,373019.712039925,27.1999999999971 +19089,16416,179876.945263367,373019.930283137,27.1999999999971 +19090,14052,179876.990580034,373019.493796714,27.1999999999971 +19091,14058,179877.031636167,373019.098347388,27.1999999999971 +19092,16419,179877.010476913,373018.333718043,24.4199999999983 +19093,16420,179877.101718727,373018.423317995,27.1999999999971 +19094,16424,179877.123789042,373018.210738491,27.1999999999971 +19095,16421,179877.145859368,373017.998158995,27.1999999999971 +19096,2217,179877.190000005,373017.572999999,27.1999999999971 +19097,2220,179877.130199999,373017.180500001,24.4199999999983 +19098,16427,179877.418874998,373017.85235,24.4199999999983 +19099,16454,179878.622992542,373017.239252828,24.4278000000049 +19100,16451,179878.642649416,373017.04688799,24.4293999999936 +19101,16453,179878.72212451,373017.252786223,27.1999999999971 +19102,16452,179878.811249007,373016.380572435,27.1999999999971 +19103,16455,179878.729463376,373016.197314534,24.4363000000012 +19104,21781,179878.878186308,373015.725492939,27.1999999999971 +19105,21782,179878.809542909,373015.413645156,24.4426999999996 +19106,21783,179878.921069663,373015.305816498,27.1999999999971 +19107,16457,179878.889622435,373014.62997577,24.4492000000027 +19108,2195,179872.500500005,373012.500799999,24.179999999993 +19109,21778,179878.981255613,373013.733240813,24.4565000000002 +19110,16458,179879.072888795,373012.836505853,24.4637999999977 +19111,2230,179877.879700001,373010.372900002,24.5 +19112,16474,179878.129000515,373008.626986284,24.4937999999966 +19113,16481,179878.324858576,373007.255343437,24.4888999999966 +19114,14036,179878.35478127,373007.753232528,27.1999999999971 +19115,16483,179878.387489818,373007.524141524,27.1999999999971 +19116,16482,179878.420198366,373007.295050509,27.1999999999971 +19117,14026,179878.475470468,373006.90792409,27.1999999999971 +19118,16486,179878.588988077,373006.112845533,27.1999999999971 +19119,16493,179878.627537295,373005.842846401,27.1999999999971 +19120,16488,179878.680139195,373006.092957258,27.486699999994 +19121,14025,179878.747766502,373005.563726939,27.5025000000023 +19122,2232,179880.434400003,373005.314300001,27.5929999999935 +19123,9482,179878.844080433,373004.810003869,27.5249999999942 +19124,2203,179880.213,373004.363000002,27.7170000000042 +19125,14023,179878.895290218,373004.409251936,27.5369999999966 +19126,2196,179878.946500003,373004.008500002,27.5489999999991 +19127,2204,179880.599000003,373005.263999999,27.6290000000008 +19128,21771,179880.214790206,373007.108973544,27.5926000000036 +19129,16489,179879.389000002,373007.000500001,27.1999999999971 +19130,2209,179880.055000003,373007.195999999,27.1999999999971 +19131,14041,179879.818,373009.12125,27.1999999999971 +19132,14044,179879.758750003,373009.602562506,27.1999999999971 +19133,16465,179879.719384346,373009.103905879,24.5060999999987 +19134,2227,179879.9454,373007.267999999,24.5599999999977 +19135,16469,179878.638298776,373008.313105404,24.5240000000049 +19136,16466,179878.730502732,373007.563407123,24.5436000000045 +19137,16490,179879.376650002,373007.101050001,24.5599999999977 +19138,2228,179878.8079,373006.934099998,24.5599999999977 +19139,16491,179878.769201368,373007.248753566,24.5518000000011 +19140,14038,179878.674691841,373007.197840285,27.1999999999971 +19141,16468,179878.650176551,373007.397197735,27.1999999999971 +19142,16467,179878.625661269,373007.596555177,27.1999999999971 +19143,14034,179878.576630689,373007.995270092,27.1999999999971 +19144,14035,179878.484984748,373007.6201756,27.4410999999964 +19145,14037,179878.441237286,373007.96252967,27.4308000000019 +19146,16476,179878.419363558,373008.1337067,27.4257000000071 +19147,16475,179878.294436671,373008.17588675,27.1999999999971 +19148,14028,179878.397489831,373008.304883737,27.4205999999976 +19149,16470,179878.546806563,373008.237798866,27.1999999999971 +19150,14042,179878.516982429,373008.480327651,27.1999999999971 +19151,14043,179878.375616103,373008.476060767,27.4155000000028 +19152,14033,179878.35374238,373008.6472378,27.4103999999934 +19153,14032,179878.457334172,373008.965385213,27.1999999999971 +19154,16479,179878.331868641,373008.818414837,27.4052999999985 +19155,14030,179878.309994917,373008.989591867,27.4002000000037 +19156,16472,179878.421083096,373009.260177672,27.1999999999971 +19157,16480,179878.266247462,373009.331945937,27.3898999999947 +19158,16477,179878.17718133,373008.997144427,27.1999999999971 +19159,2197,179878.2225,373009.674300008,27.379700000005 +19160,2207,179878.381999999,373009.578000005,27.1999999999971 +19161,14031,179878.313437995,373009.66453268,27.1999999999971 +19162,2206,179878.030999999,373010.021000002,27.1999999999971 +19163,16473,179878.032895692,373010.179567609,24.4973999999929 +19164,16460,179879.222846184,373011.369002067,24.4758000000002 +19165,16464,179879.340649378,373010.216163736,24.4851999999955 +19166,16459,179879.320431747,373011.397473667,27.1999999999971 +19167,16462,179879.442159243,373010.206191935,27.1999999999971 +19168,16461,179879.356236547,373010.063625515,24.4863999999943 +19169,16463,179879.466079619,373009.972095974,27.1999999999971 +19170,2225,179879.400700003,373009.628500003,24.4900000000052 +19171,2229,179878.477800004,373009.618099999,24.4900000000052 +19172,16471,179878.547254547,373009.05337413,24.504700000005 +19173,2226,179879.651700001,373009.653700005,24.4900000000052 +19174,2211,179879.489999998,373009.738000002,27.1999999999971 +19175,2210,179879.739,373009.763,27.1999999999971 +19176,21775,179879.257396054,373012.01437027,27.1999999999971 +19177,21774,179879.14786749,373012.102753956,24.4698000000062 +19178,21773,179879.210029509,373012.47792127,27.1999999999971 +19179,14045,179879.150863495,373013.056947321,27.1999999999971 +19180,21779,179879.103673566,373013.518769961,27.1999999999971 +19181,21777,179879.060684446,373013.939481419,27.1999999999971 +19182,16456,179878.981056254,373014.718759872,27.1999999999971 +19183,16478,179878.205636699,373008.7978427,27.1999999999971 +19184,14029,179878.234092068,373008.598540973,27.1999999999971 +19185,16484,179878.506858476,373007.44899857,27.4462000000058 +19186,14039,179878.528732203,373007.277821537,27.4513000000006 +19187,14027,179878.572479658,373006.93546747,27.4615000000049 +19188,14040,179878.709439132,373006.915276535,27.1999999999971 +19189,2208,179878.723000001,373006.805,27.1999999999971 +19190,9483,179878.612511896,373006.622187577,27.4709000000003 +19191,2212,179878.632999998,373018.125000004,27.1999999999971 +19192,2213,179878.846000001,373018.183000006,27.1999999999971 +19193,14046,179878.821277983,373018.414361872,27.1999999999971 +19194,16443,179878.639725,373019.172049999,24.429999999993 +19195,16450,179878.713056255,373018.485837504,24.4225000000006 +19196,2224,179878.737500001,373018.257100005,24.4199999999983 +19197,2237,179878.524900001,373018.199200004,24.4199999999983 +19198,16429,179877.45368883,373018.682655532,24.4263999999966 +19199,2221,179877.515100006,373018.076299999,24.4199999999983 +19200,16428,179877.368229497,373017.98780318,27.1999999999971 +19201,2216,179877.413000003,373018.092000008,27.1999999999971 +19202,16425,179877.374913175,373018.46802263,27.1999999999971 +19203,16422,179877.247513089,373018.338949453,27.2124999999942 +19204,16426,179877.226419635,373018.536874175,27.2174999999988 +19205,14054,179877.205326181,373018.734798901,27.2223999999987 +19206,16430,179877.355869755,373018.656033948,27.1999999999971 +19207,14055,179877.336826347,373018.844045255,27.1999999999971 +19208,16448,179877.412789918,373019.086479187,24.430600000007 +19209,14057,179877.323125925,373018.97930643,27.1999999999971 +19210,16434,179877.298651654,373019.220935319,27.1999999999971 +19211,16431,179877.371890996,373019.490302835,24.4348999999929 +19212,16432,179877.274177391,373019.462564211,27.1999999999971 +19213,14056,179877.163139265,373019.130648345,27.2321999999986 +19214,14059,179877.184232719,373018.932723623,27.2272999999986 +19215,16423,179877.268606544,373018.141024724,27.2075999999943 +19216,2202,179877.289700005,373017.943100009,27.2026999999944 +19217,14051,179877.323458992,373017.883606348,27.1999999999971 +19218,16414,179877.042344712,373020.264091268,27.2603999999992 +19219,16413,179877.166332893,373020.527288552,27.1999999999971 +19220,2176,179867.500300005,373027.500300005,24.2599999999948 +19221,2182,179867.501000002,373032.5009,24.25 +19222,2179,179872.500700001,373032.500200003,24.3399999999965 +19223,2186,179875.036600001,373036.423700009,24.4250000000029 +19224,16379,179875.201025434,373034.958755709,24.4244000000035 +19225,14083,179875.266452163,373035.272229433,27.1999999999971 +19226,16380,179875.334542546,373034.665574577,27.1999999999971 +19227,14082,179875.415125173,373033.947619375,27.1999999999971 +19228,16381,179875.339513287,373033.724901538,24.4238000000041 +19229,16382,179875.453060005,373033.609636877,27.1999999999971 +19230,14079,179875.546592835,373032.776301153,27.1999999999971 +19231,16383,179875.467068639,373032.588450339,24.4232999999949 +19232,16384,179875.573433291,373032.537164643,27.1999999999971 +19233,16386,179875.641780607,373031.928220548,27.1999999999971 +19234,16387,179875.582008805,373031.564393751,24.422900000005 +19235,16388,179875.675954267,373031.623748504,27.1999999999971 +19236,14077,179875.710127927,373031.31927646,27.1999999999971 +19237,16391,179875.800048582,373030.518123526,27.1999999999971 +19238,16395,179875.82252875,373030.317835294,27.1999999999971 +19239,14085,179875.168613046,373036.143932357,27.1999999999971 +19240,2185,179875.136,373036.434500005,27.1999999999971 +19241,12507,179874.949091602,373039.297261175,27.4891999999963 +19242,12509,179874.83640185,373040.312035438,27.4973000000027 +19243,16374,179874.785904083,373039.553698398,27.1999999999971 +19244,16373,179874.724530574,373040.100508962,27.1999999999971 +19245,14092,179874.635077473,373040.897496179,27.1999999999971 +19246,14094,179874.740865249,373041.172345124,27.5041999999958 +19247,16369,179874.561666332,373041.551556673,27.1999999999971 +19248,16371,179874.533300471,373041.80428379,27.1999999999971 +19249,16364,179874.488255192,373042.205617171,27.1999999999971 +19250,16370,179874.67763593,373041.741726823,27.5087000000058 +19251,16367,179874.437317774,373042.659446795,27.1999999999971 +19252,24458,179874.411849067,373042.886361606,27.1999999999971 +19253,16365,179874.386380363,373043.113276422,27.1999999999971 +19254,14087,179874.847277585,373039.006887827,27.1999999999971 +19255,16376,179874.918473572,373038.372563429,27.1999999999971 +19256,14088,179875.106795803,373037.877130587,27.4777999999933 +19257,16618,179884.499770928,372951.569056246,24.4565000000002 +19258,16622,179884.685058262,372949.896787956,24.4573999999993 +19259,16628,179884.858800046,372948.328721385,24.4581999999937 +19260,13944,179884.897025265,372948.891819336,27.1999999999971 +19261,16630,179884.966814749,372948.261953712,27.1999999999971 +19262,2088,179885.02,372948.945,27.5473000000056 +19263,16632,179885.103978138,372948.189775787,27.5467999999964 +19264,16626,179884.9736275,372949.362032846,27.5476000000053 +19265,16625,179884.92725499,372949.779065687,27.547900000005 +19266,16624,179884.833690003,372949.46343416,27.1999999999971 +19267,16627,179884.801693108,372949.752213236,27.1999999999971 +19268,16623,179884.77035474,372950.035048984,27.1999999999971 +19269,13948,179884.669064026,372950.949220162,27.1999999999971 +19270,16629,179885.066102143,372947.365862954,27.1999999999971 +19271,16631,179885.18795627,372947.434551571,27.5463000000018 +19272,16638,179885.229945343,372947.056939464,27.5460000000021 +19273,16637,179885.271934409,372946.67932735,27.5458000000071 +19274,9474,179885.355912548,372945.924103137,27.545299999998 +19275,16635,179885.150640577,372946.602884766,27.1999999999971 +19276,16639,179885.12950597,372946.793629315,27.1999999999971 +19277,16636,179885.108371358,372946.98437386,27.1999999999971 +19278,13943,179885.235179015,372945.839906577,27.1999999999971 +19279,16642,179885.41517058,372945.391189389,27.5448999999935 +19280,2091,179886.405000001,372945.298999999,27.7280000000028 +19281,9473,179885.474428613,372944.858275644,27.5445999999938 +19282,13186,179886.525478616,372944.286006391,27.7293999999965 +19283,13941,179885.522757947,372944.423644893,27.5442999999941 +19284,13939,179885.571087275,372943.989014149,27.5439999999944 +19285,13184,179886.886914469,372941.247025572,27.7338000000018 +19286,13940,179885.390651677,372944.440128356,27.1999999999971 +19287,16644,179885.455289155,372943.860706389,27.1999999999971 +19288,13942,179885.348912921,372944.814282089,27.1999999999971 +19289,2094,179885.335000001,372944.939000003,27.1999999999971 +19290,16641,179885.285089511,372945.389453288,27.1999999999971 +19291,16621,179884.63493013,372951.257286165,27.1999999999971 +19292,16619,179884.60079623,372951.565352179,27.1999999999971 +19293,13946,179884.532528438,372952.181484189,27.1999999999971 +19294,13932,179886.164095957,372938.656024594,27.540399999998 +19295,13185,179885.998645954,372940.143933948,27.5414000000019 +19296,13935,179885.906544235,372940.972214378,27.5418999999965 +19297,16650,179885.851410951,372941.468033787,27.542300000001 +19298,16654,179885.797538925,372940.792717863,27.1999999999971 +19299,13934,179885.834965926,372940.457215499,27.1999999999971 +19300,16653,179885.91494748,372939.740246411,27.1999999999971 +19301,13933,179886.001914773,372938.96065601,27.1999999999971 +19302,16657,179886.075290199,372938.302905422,27.1999999999971 +19303,24486,179886.246820968,372937.91206992,27.5399000000034 +19304,24487,179886.111977916,372937.974030126,27.1999999999971 +19305,13931,179886.148665637,372937.64515483,27.1999999999971 +19306,13182,179886.329545971,372937.16811524,27.5393999999942 +19307,16659,179886.218427829,372937.019793961,27.1999999999971 +19308,24489,179886.253308926,372936.707113519,27.1999999999971 +19309,13180,179889.281171735,372921.115923762,27.7624000000069 +19310,13903,179889.638085868,372918.114961881,27.7666999999929 +19311,13177,179890.396756671,372911.4991129,27.7727000000014 +19312,13895,179889.064584315,372912.544012234,27.5255999999936 +19313,16718,179889.137474302,372911.881147489,27.5258000000031 +19314,13893,179889.210364286,372911.218282737,27.5261000000028 +19315,9466,179889.302217346,372910.382966924,27.5265000000072 +19316,13891,179889.402997535,372909.466467544,27.5268999999971 +19317,16722,179889.258137919,372909.674854141,27.1999999999971 +19318,16723,179889.199256998,372910.213088959,27.1999999999971 +19319,13892,179889.140376084,372910.751323778,27.1999999999971 +19320,24499,179889.453387622,372909.00821786,27.5271000000066 +19321,16720,179889.085000943,372911.257511973,27.1999999999971 +19322,16717,179889.032516424,372911.737276867,27.1999999999971 +19323,13894,179888.924656764,372912.723229956,27.1999999999971 +19324,16716,179888.842070192,372913.47815986,27.1999999999971 +19325,9467,179888.91880434,372913.86974173,27.5249999999942 +19326,13896,179888.759483624,372914.233089767,27.1999999999971 +19327,13897,179888.868890271,372914.323662452,27.5247999999992 +19328,13898,179888.724620908,372914.551772442,27.1999999999971 +19329,2092,179888.713,372914.658,27.1999999999971 +19330,13902,179888.242113769,372919.968191721,27.5277999999962 +19331,13179,179888.148343585,372920.811476842,27.5283999999956 +19332,16697,179888.079630513,372921.429420747,27.5288 +19333,16695,179887.987997737,372921.157050826,27.1999999999971 +19334,16698,179887.964036133,372921.371846922,27.1999999999971 +19335,16694,179887.874249909,372921.274667349,24.444399999993 +19336,16696,179887.940074537,372921.586643018,27.1999999999971 +19337,13909,179887.892151333,372922.016235203,27.1999999999971 +19338,13911,179888.010917436,372922.047364645,27.5292000000045 +19339,16693,179887.847942468,372922.412531435,27.1999999999971 +19340,16691,179887.724158596,372922.620112889,24.4453000000067 +19341,16692,179887.803733606,372922.808827661,27.1999999999971 +19342,13912,179887.715315871,372923.601420119,27.1999999999971 +19343,13910,179887.873491287,372923.283252448,27.5299999999988 +19344,13178,179888.70655293,372925.947363473,27.7556000000041 +19345,16689,179887.785539281,372924.074214119,27.5305999999982 +19346,13913,179887.69758727,372924.865175787,27.5310999999929 +19347,13915,179887.606646914,372925.683012031,27.5317000000068 +19348,16683,179887.556167033,372926.136982862,27.5320000000065 +19349,9469,179887.505687159,372926.590953682,27.5323000000062 +19350,13919,179888.453276463,372928.076931737,27.7525000000023 +19351,13918,179887.42330933,372927.331786167,27.5328000000009 +19352,13917,179887.340931501,372928.072618656,27.5332999999955 +19353,13921,179887.258553676,372928.813451134,27.5338000000047 +19354,9470,179887.176175848,372929.554283619,27.5342999999993 +19355,16675,179887.119782798,372928.93988575,27.1999999999971 +19356,16679,179887.150804013,372928.66180604,27.1999999999971 +19357,13920,179887.181825224,372928.383726332,27.1999999999971 +19358,16678,179887.067240089,372928.508848611,24.4492000000027 +19359,16674,179887.100015379,372928.215044983,24.4489999999932 +19360,2096,179886.924600005,372929.787500001,24.4499999999971 +19361,13922,179887.057740379,372929.496045165,27.1999999999971 +19362,2093,179887.024,372929.798500001,27.1999999999971 +19363,13923,179886.973376945,372930.252294216,27.1999999999971 +19364,16680,179887.238115594,372926.977089837,24.4480999999942 +19365,16685,179887.388604134,372925.628083393,24.4472999999998 +19366,16682,179887.395855244,372926.4651227,27.1999999999971 +19367,16681,179887.442193296,372926.049740013,27.1999999999971 +19368,16686,179887.488531355,372925.634357329,27.1999999999971 +19369,13914,179887.534869414,372925.218974642,27.1999999999971 +19370,16687,179887.565257322,372924.044532493,24.4462000000058 +19371,16688,179887.625092641,372924.410197381,27.1999999999971 +19372,16690,179887.668218523,372924.023609243,27.1999999999971 +19373,13916,179887.349517185,372926.88050539,27.1999999999971 +19374,16684,179887.307594195,372927.256310627,27.1999999999971 +19375,16676,179887.265671201,372927.632115863,27.1999999999971 +19376,16677,179887.216928702,372928.069052421,27.1999999999971 +19377,13900,179888.083844133,372920.297866452,27.1999999999971 +19378,13908,179888.11273526,372920.038881168,27.1999999999971 +19379,16700,179888.142601527,372919.771154583,27.1999999999971 +19380,16703,179888.196691003,372919.286286823,27.1999999999971 +19381,16702,179888.355892777,372918.944965076,27.5271000000066 +19382,16701,179888.250780474,372918.801419072,27.1999999999971 +19383,16707,179888.279307514,372918.545697536,27.1999999999971 +19384,16705,179888.304869935,372918.316551317,27.1999999999971 +19385,13904,179888.358959414,372917.831683565,27.1999999999971 +19386,13901,179888.46967179,372917.92173842,27.5264000000025 +19387,13907,179888.550003842,372917.199303817,27.525999999998 +19388,16706,179888.412782289,372918.433351748,27.5268000000069 +19389,16709,179888.434859015,372917.151305843,27.1999999999971 +19390,24495,179891.234593365,372903.960507385,27.7761000000028 +19391,13175,179891.51387227,372901.447638884,27.7773000000016 +19392,13884,179890.108458776,372903.050971922,27.5295999999944 +19393,16731,179890.007678598,372903.967471294,27.5292000000045 +19394,24496,179889.957288511,372904.425720986,27.528999999995 +19395,16732,179889.847004291,372904.291983247,27.1999999999971 +19396,24497,179889.822003104,372904.520520933,27.1999999999971 +19397,16730,179889.797001921,372904.749058612,27.1999999999971 +19398,13887,179889.90689842,372904.88397067,27.5288 +19399,16729,179889.897006664,372903.834907874,27.1999999999971 +19400,16733,179889.864765894,372903.210062895,24.4088000000047 +19401,16734,179889.968640555,372903.180097226,27.1999999999971 +19402,13883,179890.028567616,372902.632299569,27.1999999999971 +19403,16735,179890.04705989,372901.543709125,24.4042000000045 +19404,2018,179887.500399999,372897.500799999,24.4100000000035 +19405,2017,179882.500799999,372897.500700004,24.3300000000017 +19406,2014,179887.500399999,372892.500299998,24.4600000000064 +19407,2013,179882.500799999,372892.500299998,24.320000000007 +19408,2011,179882.500399999,372887.500500005,24.320000000007 +19409,2010,179877.500800002,372887.500500005,24.4600000000064 +19410,2045,179872.500800002,372882.500700004,24.3899999999994 +19411,20412,179867.995981004,372883.74523969,24.4933000000019 +19412,20410,179868.133295909,372882.513131447,24.4940000000061 +19413,20408,179868.274307352,372881.247854695,24.4948000000004 +19414,20406,179868.428999655,372879.859821338,24.4955999999947 +19415,2034,179872.500800002,372877.500700004,24.3999999999942 +19416,2005,179877.5002,372877.500500001,24.4900000000052 +19417,2033,179872.500599999,372872.500500001,24.4400000000023 +19418,20401,179869.027839158,372874.486514729,24.4986000000063 +19419,2042,179869.294400003,372872.094700001,24.5 +19420,20400,179869.823738798,372867.012377501,24.5690000000031 +19421,1957,179872.500900004,372867.500599999,24.4600000000064 +19422,20398,179869.956986573,372865.733030219,24.5862999999954 +19423,20393,179870.096490558,372864.39361538,24.6045000000013 +19424,1949,179872.500900004,372862.500800006,24.4600000000064 +19425,20395,179870.13315041,372864.041634399,24.6092999999964 +19426,20397,179870.23614357,372863.052769635,24.6227000000072 +19427,1954,179870.368799999,372861.779100008,24.6399999999994 +19428,20392,179870.615356162,372859.411848761,24.6720999999961 +19429,1981,179877.5002,372857.500799999,24.4499999999971 +19430,20390,179870.828124333,372857.369005013,24.6999000000069 +19431,20386,179870.980223067,372855.908664636,24.7197000000015 +19432,20389,179871.170515068,372854.081620522,24.7445000000007 +19433,1978,179877.500300001,372852.500600003,24.429999999993 +19434,1953,179871.4432,372851.463500004,24.7799999999988 +19435,1951,179871.331,372851.574999999,27.1999999999971 +19436,20388,179871.064000003,372854.138625,27.1999999999971 +19437,1952,179871.342100002,372851.4734,24.7799999999988 +19438,20385,179871.497527309,372850.088460024,24.7716999999975 +19439,20384,179871.963809233,372845.933640108,24.7468999999983 +19440,1955,179873.455700003,372832.640099999,24.6674999999959 +19441,1965,179877.500900004,372837.500399999,24.4900000000052 +19442,1962,179877.500400003,372832.500200003,24.5299999999988 +19443,20383,179873.832189754,372829.285376057,24.6475000000064 +19444,20382,179874.913636278,372819.649112467,24.5899000000063 +19445,105,179873.857999999,372813.485700004,28.3099999999977 +19446,1947,179875.5693,372813.8068,24.554999999993 +19447,20381,179877.016270965,372800.912840705,24.4780000000028 +19448,1948,179875.850000005,372796.407000005,28.3099999999977 +19449,20380,179879.207474172,372781.387742352,24.3613000000041 +19450,1893,179879.796399999,372776.140100002,24.3300000000017 +19451,1878,179882.500399999,372782.500800002,24.3999999999942 +19452,1875,179887.500100002,372777.500700001,24.5399999999936 +19453,1874,179892.500300001,372777.500599999,24.3000000000029 +19454,1876,179887.500399999,372782.500300001,24.5399999999936 +19455,1879,179892.500400003,372782.500800002,24.2899999999936 +19456,1877,179897.500500005,372782.500400003,24.3000000000029 +19457,1898,179897.500800002,372777.500500005,24.2700000000041 +19458,17014,179904.004587244,372774.526182789,24.4902000000002 +19459,17009,179904.045865677,372774.148630407,24.4882999999973 +19460,17015,179904.230399512,372772.460795414,24.4796999999962 +19461,17017,179904.399217442,372770.916705567,24.4719999999943 +19462,13720,179904.444567312,372771.422127195,27.1999999999971 +19463,17020,179904.485141944,372771.051014058,27.1999999999971 +19464,13147,179904.597964492,372771.635689836,27.5580000000045 +19465,17019,179904.693673406,372770.77002456,27.5580000000045 +19466,13721,179904.789382316,372769.904359277,27.5580000000045 +19467,17025,179904.856164657,372769.300328285,27.5580000000045 +19468,17024,179904.922946993,372768.696297292,27.5580000000045 +19469,17026,179904.708868526,372769.004714243,27.1999999999971 +19470,17023,179904.667200193,372769.385830786,27.1999999999971 +19471,17021,179904.570438717,372769.350633591,24.4640999999974 +19472,13722,179904.595485717,372770.041762307,27.1999999999971 +19473,17018,179904.52002652,372770.731944747,27.1999999999971 +19474,17027,179904.738372225,372767.814633097,24.4563000000053 +19475,13716,179904.90558799,372767.205433108,27.1999999999971 +19476,17034,179904.957389243,372766.731636483,27.1999999999971 +19477,17032,179905.0091905,372766.257839855,27.1999999999971 +19478,17033,179905.149457335,372766.64756294,27.5580000000045 +19479,13148,179905.056511663,372767.488235306,27.5580000000045 +19480,17029,179904.989729326,372768.092266299,27.5580000000045 +19481,17030,179904.799127579,372768.179165993,27.1999999999971 +19482,17022,179904.750536848,372768.623597708,27.1999999999971 +19483,17028,179904.841252312,372767.793874964,27.1999999999971 +19484,17012,179904.341498371,372773.955367375,27.5580000000045 +19485,17016,179904.336170699,372772.413569398,27.1999999999971 +19486,17010,179904.196316876,372773.692732826,27.1999999999971 +19487,17013,179904.146090128,372774.15212829,27.1999999999971 +19488,17011,179904.072191656,372774.828035641,27.1999999999971 +19489,13151,179904.085032243,372776.275044918,27.5580000000045 +19490,17005,179904.005523421,372776.994184062,27.5580000000045 +19491,17004,179903.926014598,372777.713323209,27.5580000000045 +19492,13725,179903.788094699,372778.960777238,27.5580000000045 +19493,13726,179903.680097349,372779.937588621,27.5580000000045 +19494,13724,179903.587098621,372779.264905848,27.1999999999971 +19495,17000,179903.527379017,372779.811127119,27.1999999999971 +19496,1882,179903.572100002,372780.914400004,27.5580000000045 +19497,9451,179903.48140879,372781.734721348,27.5580000000045 +19498,16997,179903.389552128,372782.565584406,27.5580000000045 +19499,16996,179903.264058921,372782.219524257,27.1999999999971 +19500,16995,179903.221155744,372782.611914106,27.1999999999971 +19501,13731,179903.297695458,372783.396447465,27.5580000000045 +19502,13733,179903.205838799,372784.227310535,27.5580000000045 +19503,13729,179903.113982137,372785.058173593,27.5580000000045 +19504,13736,179903.022125479,372785.889036655,27.5580000000045 +19505,13735,179902.930268817,372786.719899714,27.5580000000045 +19506,16986,179902.833504409,372786.157349419,27.1999999999971 +19507,16985,179902.771062285,372786.728441235,27.1999999999971 +19508,13737,179902.709420975,372787.292208903,27.1999999999971 +19509,13738,179902.838412154,372787.550762776,27.5580000000045 +19510,16983,179902.662373491,372787.722502254,27.1999999999971 +19511,16982,179902.615326017,372788.152795609,27.1999999999971 +19512,13153,179902.746555489,372788.381625842,27.5580000000045 +19513,13739,179902.531299382,372788.921298012,27.1999999999971 +19514,13740,179902.642397735,372789.323754907,27.5580000000045 +19515,16980,179902.478820741,372789.401264451,27.1999999999971 +19516,16979,179902.375363678,372789.427412584,24.5654000000068 +19517,16976,179902.4263421,372789.88123088,27.1999999999971 +19518,16977,179902.371683922,372790.381131213,27.1999999999971 +19519,16975,179902.221679762,372790.833003752,24.5724999999948 +19520,13743,179902.321384817,372790.841163758,27.1999999999971 +19521,13742,179902.510763291,372790.514416501,27.5580000000045 +19522,16978,179902.576580513,372789.919085704,27.5580000000045 +19523,13154,179902.379128844,372791.705078091,27.5580000000045 +19524,13741,179902.263403144,372791.371460564,27.1999999999971 +19525,16974,179902.203674849,372791.917731911,27.1999999999971 +19526,16973,179902.082203083,372792.108655654,24.5788999999932 +19527,24550,179902.173810698,372792.19086758,27.1999999999971 +19528,16971,179902.143946551,372792.464003257,27.1999999999971 +19529,16970,179901.943792686,372793.37455539,24.5853000000061 +19530,1911,179897.500900004,372792.500799999,24.3999999999942 +19531,24547,179901.860014819,372794.140786644,24.5892000000022 +19532,16968,179901.776236963,372794.907017905,24.5929999999935 +19533,1940,179897.500300001,372797.500500005,24.3699999999953 +19534,1910,179892.500100005,372792.500799999,24.3000000000029 +19535,1945,179892.500500005,372797.500599999,24.3000000000029 +19536,1914,179887.500500001,372797.500800006,24.4799999999959 +19537,1942,179887.5009,372792.500399999,24.5 +19538,1908,179892.5002,372787.500600003,24.3000000000029 +19539,1909,179887.500399999,372787.500799999,24.5200000000041 +19540,1912,179882.501000002,372792.501000002,24.4400000000023 +19541,1907,179882.500300005,372787.500300005,24.4199999999983 +19542,1939,179877.682799999,372794.973400004,24.4425000000047 +19543,1913,179882.500600003,372797.500400003,24.4199999999983 +19544,1915,179882.500399999,372802.500300001,24.4400000000023 +19545,1918,179887.500799999,372802.500599999,24.4600000000064 +19546,1916,179892.500500005,372802.500400003,24.3300000000017 +19547,1920,179892.500599999,372807.500600006,24.3600000000006 +19548,8,179897.500400003,372807.500300005,24.429999999993 +19549,1917,179897.500700001,372802.500500005,24.4100000000035 +19550,1938,179901.191600002,372800.254099999,24.6199999999953 +19551,16953,179901.147234205,372800.655455492,24.6184000000067 +19552,13754,179901.24952317,372800.640222646,27.1999999999971 +19553,1936,179901.291000005,372800.265000004,27.1999999999971 +19554,13752,179901.325830258,372799.946444653,27.1999999999971 +19555,16959,179901.390600808,372799.354057126,27.1999999999971 +19556,16960,179901.330430739,372798.984355852,24.6135999999969 +19557,16961,179901.422986086,372799.057863366,27.1999999999971 +19558,16963,179901.439178731,372798.90976648,27.1999999999971 +19559,16957,179901.35847516,372798.727861967,24.6122999999934 +19560,16964,179901.498624019,372797.446062218,24.6058000000048 +19561,16966,179901.626898367,372796.272866745,24.5999000000011 +19562,13748,179901.666101106,372796.834348347,27.1999999999971 +19563,16967,179901.730082788,372796.249175854,27.1999999999971 +19564,13746,179901.831393261,372795.322596442,27.1999999999971 +19565,16969,179901.876445156,372794.910554558,27.1999999999971 +19566,24546,179901.950467549,372794.233550251,27.1999999999971 +19567,24545,179902.103558861,372794.197667278,27.5580000000045 +19568,24548,179901.981377341,372793.950851258,27.1999999999971 +19569,13745,179902.195415523,372793.36680422,27.5580000000045 +19570,13744,179902.024489954,372793.556545943,27.1999999999971 +19571,16972,179902.053614978,372793.290170275,27.1999999999971 +19572,24549,179902.287272181,372792.53594115,27.5580000000045 +19573,9452,179902.011702199,372795.028530337,27.5580000000045 +19574,13747,179901.873519868,372796.278418966,27.5580000000045 +19575,13749,179901.776481409,372797.156152446,27.5580000000045 +19576,16965,179901.603635091,372797.405658692,27.1999999999971 +19577,16958,179901.498237383,372798.369619589,27.1999999999971 +19578,13750,179901.455371365,372798.761669606,27.1999999999971 +19579,16956,179901.219589982,372800.911014929,27.1999999999971 +19580,16954,179901.189656809,372801.181807216,27.1999999999971 +19581,16951,179901.01413684,372801.85952197,24.6135999999969 +19582,16952,179901.129790448,372801.723391786,27.1999999999971 +19583,13758,179901.090777837,372802.07632171,27.1999999999971 +19584,16950,179901.04229166,372802.514954727,27.1999999999971 +19585,16948,179900.893077452,372802.954686634,24.6092999999964 +19586,16949,179900.993805494,372802.953587741,27.1999999999971 +19587,13760,179900.945182223,372803.393460993,27.1999999999971 +19588,16946,179900.775604978,372804.017402325,24.6051000000007 +19589,16947,179900.876869727,372804.011454094,27.1999999999971 +19590,13762,179900.788443699,372804.811405379,27.1999999999971 +19591,16945,179900.749081489,372805.167497937,27.1999999999971 +19592,16943,179900.638892516,372805.254172716,24.6002000000008 +19593,16944,179900.709719282,372805.523590498,27.1999999999971 +19594,13764,179900.629326615,372806.250867501,27.1999999999971 +19595,13158,179900.832833391,372805.691312149,27.5580000000045 +19596,13765,179900.734714422,372806.578771014,27.5580000000045 +19597,16942,179900.58767261,372806.627692923,27.1999999999971 +19598,16938,179900.5460186,372807.004518352,27.1999999999971 +19599,16939,179900.658365097,372807.269329567,27.5580000000045 +19600,16940,179900.504364595,372807.381343774,27.1999999999971 +19601,16937,179900.380049635,372807.595796961,24.5908999999956 +19602,13766,179900.462710597,372807.758169197,27.1999999999971 +19603,16935,179900.373818696,372808.562335044,27.1999999999971 +19604,16934,179900.251938175,372808.754758302,24.5862999999954 +19605,16933,179900.131702971,372809.842467055,24.5819999999949 +19606,16931,179899.968730751,372811.316796571,24.5761999999959 +19607,1922,179892.500599999,372812.500500001,24.3800000000047 +19608,16929,179899.791472372,372812.92036587,24.5699000000022 +19609,13771,179900.014542922,372811.812544599,27.1999999999971 +19610,24537,179900.065078989,372811.355367064,27.1999999999971 +19611,24535,179900.179696515,372811.598754283,27.5580000000045 +19612,24536,179900.235304434,372811.095796045,27.5580000000045 +19613,24531,179901.559142966,372810.545344025,27.7627000000066 +19614,9454,179900.290912356,372810.592837799,27.5580000000045 +19615,16932,179900.115830306,372810.896242239,27.1999999999971 +19616,24538,179900.090454645,372811.125804652,27.1999999999971 +19617,13768,179900.217117701,372809.979939874,27.1999999999971 +19618,24540,179900.244740553,372809.730048038,27.1999999999971 +19619,13770,179900.284926794,372809.366500888,27.1999999999971 +19620,13769,179900.436464056,372809.276362956,27.5580000000045 +19621,16936,179900.329372745,372808.964417968,27.1999999999971 +19622,24533,179900.509239912,372808.618125536,27.5580000000045 +19623,24532,179901.776877221,372808.5467095,27.7593000000052 +19624,13767,179900.582015764,372807.959888116,27.5580000000045 +19625,24534,179900.351595718,372808.763376508,27.1999999999971 +19626,24539,179900.363688204,372809.934600379,27.5580000000045 +19627,13772,179900.06848067,372812.604670767,27.5580000000045 +19628,13774,179899.917272538,372813.972306456,27.5580000000045 +19629,16927,179899.857023925,372814.517238457,27.5580000000045 +19630,16923,179899.796775315,372815.062170453,27.5580000000045 +19631,9455,179899.676278088,372816.152034454,27.5580000000045 +19632,16922,179899.548823327,372816.025704488,27.1999999999971 +19633,13775,179899.519660335,372816.289529201,27.1999999999971 +19634,13776,179899.573839039,372817.078567225,27.5580000000045 +19635,13777,179899.37566144,372817.592223749,27.1999999999971 +19636,1933,179899.4714,372818.005100004,27.5580000000045 +19637,13779,179899.365636669,372818.961705223,27.5580000000045 +19638,16917,179899.28079877,372819.729044672,27.5580000000045 +19639,16915,179899.158651397,372819.555417962,27.1999999999971 +19640,16916,179899.110373713,372819.99216488,27.1999999999971 +19641,16914,179898.977141581,372820.287229288,24.5406999999977 +19642,16910,179899.062096026,372820.428911801,27.1999999999971 +19643,13780,179898.868985295,372822.175899465,27.1999999999971 +19644,13781,179899.026285067,372822.031063009,27.5580000000045 +19645,16911,179899.195960868,372820.496384121,27.5580000000045 +19646,16908,179898.927936867,372822.920600004,27.5580000000045 +19647,16909,179898.815408282,372822.660587084,27.1999999999971 +19648,16913,179898.788619779,372822.902930893,27.1999999999971 +19649,16907,179898.761831272,372823.145274699,27.1999999999971 +19650,13161,179898.829588674,372823.810136996,27.5580000000045 +19651,13783,179898.654677249,372824.114649933,27.1999999999971 +19652,13785,179898.732590109,372824.687466837,27.5580000000045 +19653,16902,179898.601644598,372824.594412956,27.1999999999971 +19654,16901,179898.52273795,372824.398018599,24.5243999999948 +19655,16904,179898.461888745,372824.948494572,24.5222000000067 +19656,1930,179892.500900008,372822.500700001,24.4499999999971 +19657,1959,179892.500700001,372827.500599999,24.4700000000012 +19658,16899,179898.291294597,372826.491784595,24.5160999999935 +19659,16903,179898.514930319,372825.37887881,27.1999999999971 +19660,13786,179898.42821604,372826.163344659,27.1999999999971 +19661,13787,179898.620636556,372825.700061169,27.5580000000045 +19662,16905,179898.559225205,372824.978162482,27.1999999999971 +19663,13784,179898.508683007,372826.712655488,27.5580000000045 +19664,16900,179898.37712156,372826.625573862,27.1999999999971 +19665,16896,179898.326027088,372827.087803058,27.1999999999971 +19666,16897,179898.42845659,372827.438285116,27.5580000000045 +19667,16898,179898.274932608,372827.550032262,27.1999999999971 +19668,16895,179898.14024011,372827.858307969,24.5106999999989 +19669,13788,179898.223838136,372828.012261465,27.1999999999971 +19670,16893,179897.94402099,372829.633415852,24.5037000000011 +19671,16894,179898.051257011,372829.573526829,27.1999999999971 +19672,13790,179898.015159965,372829.900080901,27.1999999999971 +19673,9456,179898.187777344,372829.615173988,27.5580000000045 +19674,13789,179898.348230172,372828.16391474,27.5580000000045 +19675,13792,179898.034732867,372830.999426324,27.5580000000045 +19676,16892,179897.885008585,372831.077503078,27.1999999999971 +19677,13793,179897.82924173,372831.582001243,27.1999999999971 +19678,16890,179897.727494299,372832.502465434,27.1999999999971 +19679,13794,179897.658652332,372833.12524825,27.1999999999971 +19680,16889,179897.59058778,372832.830770317,24.4909999999945 +19681,16887,179897.566571102,372833.958266642,27.1999999999971 +19682,16886,179897.433098402,372834.255507287,24.485400000005 +19683,16888,179897.520530477,372834.374775831,27.1999999999971 +19684,13796,179897.474489857,372834.791285031,27.1999999999971 +19685,1995,179897.282600004,372835.617000002,24.4799999999959 +19686,13798,179897.400193024,372835.463415753,27.1999999999971 +19687,1989,179897.381999999,372835.627999995,27.1999999999971 +19688,16884,179897.18408994,372836.512949213,24.476999999999 +19689,1967,179892.500300001,372837.500700004,24.4900000000052 +19690,1964,179892.500700001,372832.500700004,24.4799999999959 +19691,1963,179887.501000002,372832.500300005,24.3399999999965 +19692,1994,179887.500200003,372837.500300005,24.3399999999965 +19693,1971,179887.500200003,372842.500800002,24.3600000000006 +19694,1966,179882.500799999,372837.500700004,24.5099999999948 +19695,1969,179882.500600003,372842.500500005,24.4900000000052 +19696,1997,179882.500799999,372832.500799999,24.5299999999988 +19697,1970,179877.500900004,372842.500800002,24.4100000000035 +19698,1972,179882.500799999,372847.500100005,24.4600000000064 +19699,1974,179877.500700001,372847.500700001,24.3899999999994 +19700,1977,179882.500600003,372852.500399999,24.429999999993 +19701,1975,179887.500100002,372852.500200003,24.3800000000047 +19702,1973,179887.500200003,372847.500300001,24.3699999999953 +19703,1968,179892.500500005,372842.500300001,24.4900000000052 +19704,16857,179896.088558521,372846.47680993,24.4440999999933 +19705,16859,179896.284050439,372844.698810551,24.4499999999971 +19706,16861,179896.413312737,372843.523169633,24.4538999999932 +19707,13810,179896.459251326,372844.020401265,27.1999999999971 +19708,13808,179896.40433529,372844.519862745,27.1999999999971 +19709,9459,179896.470318981,372845.196035124,27.5543000000034 +19710,16860,179896.342562366,372845.081687644,27.1999999999971 +19711,13813,179896.224294629,372846.157332946,27.1999999999971 +19712,13814,179896.336250488,372846.415259853,27.5537999999942 +19713,16858,179896.186135545,372846.504389949,27.1999999999971 +19714,16855,179896.118092205,372847.123244289,27.1999999999971 +19715,16853,179895.905892044,372848.138161965,24.438599999994 +19716,16854,179896.011889771,372848.089155633,27.1999999999971 +19717,13817,179895.971151955,372848.459666178,27.1999999999971 +19718,13815,179895.92654866,372848.86533324,27.1999999999971 +19719,24525,179895.876924329,372849.316666622,27.1999999999971 +19720,1992,179895.727899998,372849.757000003,24.4333000000042 +19721,106,179895.827300005,372849.768000003,27.1999999999971 +19722,16852,179895.792392787,372850.085501634,27.1999999999971 +19723,16851,179895.68504519,372850.146792401,24.4320000000007 +19724,13818,179895.757485572,372850.403003268,27.1999999999971 +19725,16850,179895.650335286,372851.377598058,27.1999999999971 +19726,16849,179895.538654916,372851.478307381,24.4275999999954 +19727,13820,179895.607643202,372851.765907586,27.1999999999971 +19728,13819,179895.791591659,372851.368411217,27.5516999999963 +19729,13821,179895.701758761,372852.185355581,27.5513000000064 +19730,16847,179895.536808103,372852.410194408,27.1999999999971 +19731,16848,179895.501390558,372852.732337825,27.1999999999971 +19732,16846,179895.421643224,372852.542604968,24.4241000000038 +19733,13822,179895.465973005,372853.054481242,27.1999999999971 +19734,13166,179895.611925855,372853.002299942,27.5510000000068 +19735,16845,179895.424248327,372853.433991682,27.1999999999971 +19736,16844,179895.314583227,372853.516385373,24.4208999999973 +19737,16843,179895.382523648,372853.813502125,27.1999999999971 +19738,16840,179895.193536006,372854.617388759,24.417300000001 +19739,1976,179892.500599999,372852.500300005,24.4600000000064 +19740,16838,179895.036076151,372856.049588703,24.412599999996 +19741,1979,179887.500300005,372857.500100002,24.4100000000035 +19742,16833,179894.863357715,372857.620575495,24.4073999999964 +19743,16835,179895.051056057,372856.828394558,27.1999999999971 +19744,16839,179895.116285909,372856.23509077,27.1999999999971 +19745,13823,179895.144130126,372855.981831238,27.1999999999971 +19746,13825,179895.266046237,372854.872932579,27.1999999999971 +19747,16841,179895.299074296,372854.572523013,27.1999999999971 +19748,16842,179895.511391215,372853.916566402,27.5506000000023 +19749,16837,179895.004519027,372857.251676209,27.1999999999971 +19750,16834,179894.957981989,372857.67495786,27.1999999999971 +19751,13833,179894.900568154,372858.197170429,27.1999999999971 +19752,16830,179894.69321546,372859.168130103,24.4023000000016 +19753,16831,179894.822342545,372858.908678297,27.1999999999971 +19754,16832,179894.788517188,372859.216339789,27.1999999999971 +19755,13831,179894.754691824,372859.524001289,27.1999999999971 +19756,16828,179894.668282844,372860.309941757,27.1999999999971 +19757,16827,179894.50575849,372860.873173449,24.3966999999975 +19758,13826,179894.60998366,372860.840207066,27.1999999999971 +19759,16829,179894.569362495,372861.209680427,27.1999999999971 +19760,16826,179894.528741326,372861.579153795,27.1999999999971 +19761,16824,179894.338720262,372862.392494954,24.3916999999929 +19762,16825,179894.447498992,372862.318100512,27.1999999999971 +19763,13835,179894.383076914,372862.904057197,27.1999999999971 +19764,13836,179894.590517767,372862.291030113,27.5470000000059 +19765,9461,179894.494377445,372863.165334418,27.5466000000015 +19766,13838,179894.439420428,372863.665115949,27.5464000000065 +19767,13168,179894.384463411,372864.16489749,27.546199999997 +19768,24512,179895.515549775,372865.441734243,27.7937999999995 +19769,16822,179894.284160431,372865.077057157,27.5458000000071 +19770,24513,179894.234008946,372865.53313699,27.5455999999976 +19771,16821,179894.099365633,372865.484476451,27.1999999999971 +19772,24514,179894.073221885,372865.72225396,27.1999999999971 +19773,16819,179894.183857456,372865.989216823,27.5454000000027 +19774,16817,179894.047078129,372865.960031472,27.1999999999971 +19775,24517,179894.083554488,372866.90137649,27.545100000003 +19776,16818,179893.939467166,372866.938753396,27.1999999999971 +19777,24519,179894.033402998,372867.357456323,27.5448999999935 +19778,24518,179893.899149399,372867.30544363,27.1999999999971 +19779,13840,179893.858831622,372867.672133874,27.1999999999971 +19780,9462,179893.983251508,372867.813536156,27.5446999999986 +19781,24511,179895.289309014,372867.477381356,27.7929000000004 +19782,24515,179893.900103752,372868.569685552,27.5443999999989 +19783,16810,179893.816955991,372869.325834952,27.5439999999944 +19784,13169,179894.836827494,372871.548675578,27.7909999999974 +19785,16811,179893.733808223,372870.081984352,27.5436999999947 +19786,13842,179893.650660466,372870.838133756,27.543399999995 +19787,16801,179893.597643107,372871.320275921,27.5432000000001 +19788,13170,179893.544625755,372871.802418076,27.5430000000051 +19789,16804,179893.469134707,372872.488936998,27.5427000000054 +19790,16796,179893.393643655,372873.175455913,27.5424000000057 +19791,2030,179894.348000005,372875.947000004,27.7890000000043 +19792,13171,179893.838857837,372880.528109848,27.7869000000064 +19793,13173,179892.736142449,372890.450015105,27.7823000000062 +19794,16767,179892.062465303,372885.281202104,27.5372000000061 +19795,9464,179891.824831564,372887.442242797,27.536300000007 +19796,16761,179891.722281247,372888.374835111,27.5359000000026 +19797,16760,179891.623887174,372888.049365945,27.1999999999971 +19798,13856,179891.522548512,372888.975710135,27.1999999999971 +19799,16758,179891.408715341,372889.096744806,24.3702000000048 +19800,16759,179891.488269441,372889.289057635,27.1999999999971 +19801,13860,179891.338452891,372890.658541739,27.1999999999971 +19802,13859,179891.500224549,372890.394218214,27.5350000000035 +19803,13857,179891.619730938,372889.307427425,27.5354999999981 +19804,13861,179891.443445165,372890.910569802,27.534799999994 +19805,13174,179891.386665784,372891.426921397,27.534599999999 +19806,13864,179892.453821223,372892.990257554,27.7811999999976 +19807,16754,179891.324786156,372891.989654578,27.5344000000041 +19808,13865,179891.262906529,372892.552387744,27.5341000000044 +19809,13863,179891.167582896,372893.419260703,27.5338000000047 +19810,13868,179891.048838172,372894.499124892,27.5332999999955 +19811,2024,179892.171500001,372895.530499998,27.7799999999988 +19812,13875,179891.842686135,372898.489069436,27.7786000000051 +19813,13876,179890.760026127,372897.125589687,27.5322000000015 +19814,13874,179890.684182864,372897.8153117,27.5319000000018 +19815,13878,179890.608339597,372898.505033713,27.5316000000021 +19816,13873,179890.532496326,372899.194755726,27.5313000000024 +19817,13880,179890.380809795,372900.574199751,27.530700000003 +19818,13882,179890.304966524,372901.263921764,27.5304000000033 +19819,13176,179890.229123253,372901.953643769,27.5301000000036 +19820,16736,179890.125808477,372901.743413672,27.1999999999971 +19821,16737,179890.173137251,372901.310777869,27.1999999999971 +19822,13881,179890.223049339,372900.854527783,27.1999999999971 +19823,16738,179890.197296642,372900.170391399,24.4005000000034 +19824,16739,179890.288745385,372900.253995422,27.1999999999971 +19825,13879,179890.39359479,372899.295559287,27.1999999999971 +19826,16740,179890.327248793,372898.982495759,24.3972000000067 +19827,16742,179890.427695516,372898.983841982,27.1999999999971 +19828,16741,179890.46179625,372898.67212468,27.1999999999971 +19829,16743,179890.450746138,372897.853603594,24.394100000005 +19830,16746,179890.561590113,372896.840376202,24.3913999999932 +19831,2027,179890.616100002,372896.342099998,24.3899999999994 +19832,16748,179890.773236334,372894.905705191,24.3861000000034 +19833,13870,179890.748923019,372896.047477785,27.1999999999971 +19834,13867,179890.849192053,372895.13091113,27.1999999999971 +19835,2023,179890.9485,372895.411600001,27.5329000000056 +19836,13869,179890.897897102,372894.685694661,27.1999999999971 +19837,16750,179891.035991199,372893.423366338,27.1999999999971 +19838,16749,179890.953110434,372893.261462789,24.3815999999933 +19839,16751,179891.069658864,372892.196085013,24.3787000000011 +19840,13866,179891.112642944,372892.722687051,27.1999999999971 +19841,16753,179891.154881719,372892.33657933,27.1999999999971 +19842,13862,179891.066366158,372893.145706628,27.1999999999971 +19843,16755,179891.176001105,372892.143525477,27.1999999999971 +19844,16752,179891.197120491,372891.95047161,27.1999999999971 +19845,16756,179891.209059447,372890.921814028,24.3751999999949 +19846,13858,179891.281598035,372891.178256173,27.1999999999971 +19847,16757,179891.310025465,372890.918398954,27.1999999999971 +19848,2012,179887.501000002,372887.500700001,24.4400000000023 +19849,16762,179891.550381925,372887.801760092,24.3666999999987 +19850,16764,179891.677647036,372886.638420347,24.3635000000068 +19851,16768,179891.822220691,372885.316861942,24.3598999999958 +19852,2008,179887.500300005,372882.5002,24.4199999999983 +19853,2032,179882.501000002,372882.5009,24.3099999999977 +19854,2009,179877.500800002,372882.500799999,24.4799999999959 +19855,2006,179882.500799999,372877.500700004,24.3099999999977 +19856,2004,179882.5009,372872.500900004,24.3099999999977 +19857,2007,179887.500399999,372877.500799999,24.4199999999983 +19858,2003,179887.500500001,372872.500700008,24.3500000000058 +19859,1986,179887.500200003,372867.500599999,24.3500000000058 +19860,16807,179893.505601697,372869.969817583,24.3665999999939 +19861,16814,179893.663023908,372868.538062267,24.3714000000036 +19862,16816,179893.819687173,372867.113209493,24.376099999994 +19863,16815,179893.774154436,372868.442273051,27.1999999999971 +19864,24516,179893.748297583,372868.677441161,27.1999999999971 +19865,16808,179893.689477254,372869.212412231,27.1999999999971 +19866,16813,179893.647138659,372869.597481817,27.1999999999971 +19867,16809,179893.604800068,372869.982551407,27.1999999999971 +19868,16812,179893.562461477,372870.367620997,27.1999999999971 +19869,13843,179893.520122886,372870.752690587,27.1999999999971 +19870,16800,179893.475690655,372871.156801827,27.1999999999971 +19871,16799,179893.342177745,372871.456158821,24.361699999994 +19872,16802,179893.453474537,372871.358857449,27.1999999999971 +19873,13841,179893.431258418,372871.560913064,27.1999999999971 +19874,16805,179893.287396677,372871.954392716,24.3601000000053 +19875,16793,179893.130463041,372873.381704479,24.3554000000004 +19876,16803,179893.344532039,372872.349689711,27.1999999999971 +19877,16806,179893.38789523,372871.955301389,27.1999999999971 +19878,16794,179893.257805653,372873.138466354,27.1999999999971 +19879,16797,179893.221719135,372873.466673378,27.1999999999971 +19880,16798,179893.108151216,372873.584630612,24.3546999999962 +19881,16795,179893.171079274,372873.927243002,27.1999999999971 +19882,13844,179893.084352888,372874.716019649,27.1999999999971 +19883,13845,179893.242661566,372874.548493758,27.5418000000063 +19884,16789,179893.174330778,372875.169896878,27.5415999999968 +19885,16792,179893.037797108,372875.139444578,27.1999999999971 +19886,16791,179892.943181887,372875.085026991,24.3497999999963 +19887,16788,179892.991241328,372875.562869515,27.1999999999971 +19888,16787,179892.784564197,372876.527655255,24.3450000000012 +19889,13846,179892.898129761,372876.409719389,27.1999999999971 +19890,2022,179893.106000002,372875.791300002,27.5412999999971 +19891,13847,179893.00350678,372876.723373126,27.5409000000072 +19892,9463,179892.873052374,372877.909725185,27.540399999998 +19893,13848,179892.76303244,372877.638429847,27.1999999999971 +19894,13849,179892.729258113,372877.945607465,27.1999999999971 +19895,2025,179892.718000002,372878.048000004,27.1999999999971 +19896,13851,179892.757931691,372878.956632461,27.5399000000034 +19897,13852,179892.626421601,372878.885124877,27.1999999999971 +19898,2028,179892.618600003,372878.037099998,24.3399999999965 +19899,16783,179892.470513903,372879.390765999,24.3436999999976 +19900,16784,179892.575856827,372879.347341225,27.1999999999971 +19901,16786,179892.550574437,372879.578449398,27.1999999999971 +19902,13850,179892.525292046,372879.809557576,27.1999999999971 +19903,16785,179892.70037134,372879.480086103,27.5396999999939 +19904,13172,179892.642810997,372880.003539741,27.539499999999 +19905,16776,179892.557133008,372880.782695159,27.5391999999993 +19906,16779,179892.534827724,372880.985539362,27.5390999999945 +19907,16775,179892.471455019,372881.56185057,27.5387999999948 +19908,13854,179892.300099045,372883.12016141,27.5381999999954 +19909,16774,179892.294287682,372881.921185516,27.1999999999971 +19910,13853,179892.167234898,372883.082584348,27.1999999999971 +19911,16771,179892.136058953,372883.367565978,27.1999999999971 +19912,16765,179891.946230371,372885.102803059,27.1999999999971 +19913,16769,179891.916635018,372885.373336334,27.1999999999971 +19914,16766,179891.835728105,372886.112912409,27.1999999999971 +19915,16770,179892.048220143,372883.250984281,24.3542000000016 +19916,16781,179892.213772096,372881.737661712,24.350099999996 +19917,16772,179892.313764069,372880.823627733,24.3475999999937 +19918,16777,179892.357814074,372881.340486102,27.1999999999971 +19919,16778,179892.38957727,372881.050136387,27.1999999999971 +19920,16780,179892.405458864,372880.904961538,27.1999999999971 +19921,16773,179892.421340466,372880.759786684,27.1999999999971 +19922,16782,179892.326050878,372881.630835805,27.1999999999971 +19923,16790,179892.864750523,372876.713303644,27.1999999999971 +19924,16820,179893.992221083,372865.54401318,24.3812999999936 +19925,1984,179887.500700004,372862.500500005,24.3899999999994 +19926,2000,179882.5009,372867.500599999,24.3300000000017 +19927,1982,179882.500100002,372862.500300001,24.3600000000006 +19928,1985,179877.500599999,372867.500400003,24.5 +19929,1983,179877.5002,372862.500400003,24.5099999999948 +19930,1980,179882.500300005,372857.500200003,24.3899999999994 +19931,2002,179877.500400003,372872.500399999,24.5099999999948 +19932,1991,179894.173300005,372863.897100005,24.3867000000027 +19933,16823,179894.167345136,372864.86620276,27.1999999999971 +19934,13839,179894.235324629,372864.247929078,27.1999999999971 +19935,1990,179894.272700004,372863.908000004,27.1999999999971 +19936,13837,179894.300294228,372863.657014307,27.1999999999971 +19937,13855,179891.725225832,372887.123021763,27.1999999999971 +19938,16763,179891.674556509,372887.586193852,27.1999999999971 +19939,13871,179890.892184697,372895.923733838,27.5326999999961 +19940,9465,179890.835869398,372896.435867675,27.5325000000012 +19941,2026,179890.715500005,372896.353000004,27.1999999999971 +19942,13872,179890.667135283,372896.795105465,27.1999999999971 +19943,16747,179890.632850889,372897.108501613,27.1999999999971 +19944,16744,179890.598566502,372897.421897769,27.1999999999971 +19945,16745,179890.560207967,372897.772535928,27.1999999999971 +19946,13877,179890.529997714,372898.048690073,27.1999999999971 +19947,16864,179896.504444595,372843.60936841,27.1999999999971 +19948,16862,179896.534223504,372843.338529181,27.1999999999971 +19949,13812,179896.609195676,372842.656657103,27.1999999999971 +19950,16865,179896.544619236,372842.328936752,24.4578000000038 +19951,16866,179896.646024801,372842.321696132,27.1999999999971 +19952,16869,179896.689700641,372841.924464241,27.1999999999971 +19953,16870,179896.678005729,372841.115786266,24.4618000000046 +19954,16867,179896.733376488,372841.527232341,27.1999999999971 +19955,16871,179896.777052328,372841.13000045,27.1999999999971 +19956,13804,179896.820728175,372840.732768554,27.1999999999971 +19957,16874,179896.881461669,372840.180397242,27.1999999999971 +19958,16875,179896.830014199,372839.733268883,24.4664000000048 +19959,13806,179896.942195173,372839.628025934,27.1999999999971 +19960,16876,179896.911828421,372839.904211588,27.1999999999971 +19961,13807,179897.026254501,372840.140332952,27.5565000000061 +19962,13801,179896.947784621,372840.853941508,27.5562000000064 +19963,1961,179882.501000002,372827.500999998,24.5500000000029 +19964,1960,179877.5002,372827.500900004,24.4900000000052 +19965,1943,179882.500600003,372822.500599999,24.5599999999977 +19966,1931,179887.500300005,372822.500900004,24.3399999999965 +19967,1927,179882.500600003,372817.500799999,24.5099999999948 +19968,1928,179877.500900004,372817.5009,24.3500000000058 +19969,1924,179882.500500001,372812.5009,24.4900000000052 +19970,1919,179882.5009,372807.500399999,24.4700000000012 +19971,1923,179887.500600003,372812.500600003,24.3899999999994 +19972,1921,179887.500799999,372807.500800002,24.4199999999983 +19973,1925,179887.500100002,372817.500100005,24.3600000000006 +19974,1926,179892.500800002,372817.500700004,24.4100000000035 +19975,16918,179899.143126018,372818.785641234,24.5466000000015 +19976,1941,179899.237100001,372817.935500003,24.5500000000029 +19977,16920,179899.443186395,372816.071137771,24.5574000000051 +19978,1937,179899.336500008,372817.946500003,27.1999999999971 +19979,13778,179899.25520676,372818.681924131,27.1999999999971 +19980,16919,179899.223578364,372818.968052298,27.1999999999971 +19981,16906,179898.754777666,372822.298857562,24.5326999999961 +19982,16912,179898.69659242,372822.825233858,24.5305999999982 +19983,1993,179887.500700004,372827.500599999,24.3300000000017 +19984,16924,179899.62150456,372814.457981143,24.5638000000035 +19985,16921,179899.662529085,372814.9970586,27.1999999999971 +19986,16926,179899.698246274,372814.673940945,27.1999999999971 +19987,16928,179899.716104865,372814.512382124,27.1999999999971 +19988,16925,179899.73396346,372814.350823298,27.1999999999971 +19989,13773,179899.805397831,372813.704587992,27.1999999999971 +19990,16930,179899.909970377,372812.758566294,27.1999999999971 +19991,1929,179877.500599999,372822.500400003,24.3999999999942 +19992,16891,179897.75712917,372831.324143756,24.497000000003 +19993,16941,179900.490158383,372806.599697284,24.5948999999964 +19994,1906,179897.500300001,372787.500100002,24.2899999999936 +19995,16981,179902.522599548,372788.080795199,24.5586000000039 +19996,16984,179902.663875077,372786.78869104,24.5521000000008 +19997,16987,179902.815860946,372785.398630209,24.5449999999983 +19998,16992,179902.971639469,372783.973881856,24.5378000000055 +19999,16989,179903.013411626,372783.591834236,24.5359000000026 +20000,16998,179903.165930271,372782.196900662,24.5289000000048 +20001,16994,179903.19085291,372781.968958557,24.527700000006 +20002,1889,179903.250000007,372781.428000003,24.5249999999942 +20003,13728,179903.306962106,372781.827134412,27.1999999999971 +20004,1888,179903.349400003,372781.439000003,27.1999999999971 +20005,13727,179903.395186983,372781.020212568,27.1999999999971 +20006,16999,179903.449752778,372779.600965243,24.5157999999938 +20007,16990,179903.135349382,372783.396693815,27.1999999999971 +20008,13732,179903.096958075,372783.747818358,27.1999999999971 +20009,16993,179903.059531707,372784.090117645,27.1999999999971 +20010,16991,179903.022105336,372784.432416935,27.1999999999971 +20011,16988,179902.947252594,372785.117015507,27.1999999999971 +20012,13734,179902.895946532,372785.586257599,27.1999999999971 +20013,17001,179903.654561795,372777.727683626,24.5062999999936 +20014,17007,179903.811073177,372776.296155348,24.4991000000009 +20015,17003,179903.844462357,372776.910946075,27.1999999999971 +20016,17006,179903.769454546,372777.59699985,27.1999999999971 +20017,17002,179903.740858275,372777.858553685,27.1999999999971 +20018,17008,179903.906680916,372776.341868289,27.1999999999971 +20019,13723,179903.948066436,372775.963338457,27.1999999999971 +20020,20402,179868.744917024,372877.025137141,24.497199999998 +20021,20404,179868.619949464,372878.146454301,24.4964999999938 +20022,24503,179889.806118242,372905.80047005,27.5285000000003 +20023,17043,179905.422032002,372761.59595798,24.4348000000027 +20024,13711,179905.484993696,372761.92931715,27.1999999999971 +20025,13714,179905.427023422,372762.442004289,27.1999999999971 +20026,13713,179905.525208689,372761.573657107,27.1999999999971 +20027,17044,179905.596645121,372760.941875659,27.1999999999971 +20028,17046,179905.656759948,372760.410222121,27.1999999999971 +20029,17045,179905.550057285,372760.463706642,24.440300000002 +20030,13707,179905.716874778,372759.878568579,27.1999999999971 +20031,17047,179905.685553856,372759.265379511,24.4459999999963 +20032,17048,179905.776638865,372759.350016989,27.1999999999971 +20033,17085,179907.36956438,372745.262236919,27.1999999999971 +20034,13696,179907.451624982,372744.536495715,27.1999999999971 +20035,1886,179907.5284,372743.857500002,27.1999999999971 +20036,13695,179907.552138299,372743.647548247,27.1999999999971 +20037,24563,179908.450339712,372735.703468077,27.1999999999971 +20038,17106,179908.484643742,372735.40006838,27.1999999999971 +20039,20465,179860.613107406,372949.089867078,27.1999999999971 +20040,20512,179855.251902584,372997.263019241,27.1999999999971 +20041,20547,179851.970147274,373028.31466271,24.6524999999965 +20042,20545,179851.938943699,373028.601125892,24.6543999999994 +20043,2187,179851.845400002,373029.459900003,24.6600000000035 +20044,20550,179851.600027785,373031.670983355,24.6625000000058 +20045,20548,179851.397359319,373033.497257225,24.6646000000037 +20046,20558,179850.112678196,373045.073698375,24.6778999999951 +20047,2283,179849.906399999,373046.932500001,24.679999999993 +20048,20562,179849.71896157,373048.621533927,24.6818999999959 +20049,14121,179872.097998723,373063.929090463,27.1999999999971 +20050,16324,179872.225898519,373062.758522015,27.1999999999971 +20051,16328,179872.257873461,373062.465879899,27.1999999999971 +20052,16327,179872.28984841,373062.173237793,27.1999999999971 +20053,14147,179870.418602765,373078.397985175,27.1999999999971 +20054,16290,179870.369598445,373078.817716952,27.1999999999971 +20055,16288,179870.320594136,373079.23744873,27.1999999999971 +20056,16286,179870.27650724,373079.615061834,27.1999999999971 +20057,14151,179869.926547714,373082.612535287,27.1999999999971 +20058,14152,179870.004381146,373083.264522236,27.5930999999982 +20059,16279,179869.883412976,373082.981992986,27.1999999999971 +20060,16274,179869.840278234,373083.351450685,27.1999999999971 +20061,14149,179869.754008751,373084.090366077,27.1999999999971 +20062,14155,179869.62893033,373086.504917067,27.6006999999954 +20063,2331,179869.385000009,373087.251000002,27.1999999999971 +20064,2330,179869.541500006,373087.259500001,27.6024999999936 +20065,16267,179869.340945292,373087.643840417,27.1999999999971 +20066,16268,179869.318917938,373087.840260625,27.1999999999971 +20067,14162,179869.296890587,373088.036680836,27.1999999999971 +20068,14160,179869.215325415,373088.764005937,27.1999999999971 +20069,16265,179869.17362342,373089.135866981,27.1999999999971 +20070,16254,179868.514176857,373094.118567508,24.3151000000071 +20071,24452,179868.610989571,373093.255265001,24.325800000006 +20072,24453,179868.742072001,373092.984055761,27.1999999999971 +20073,24451,179868.705848888,373093.30706105,27.1999999999971 +20074,16255,179868.627404399,373094.00655869,27.1999999999971 +20075,16246,179868.221314773,373097.627702091,27.1999999999971 +20076,16248,179868.270553198,373097.188637894,27.1999999999971 +20077,14172,179868.116076734,373098.566120617,27.1999999999971 +20078,16240,179868.034555782,373099.293051384,27.1999999999971 +20079,16243,179867.993795309,373099.656516768,27.1999999999971 +20080,16239,179867.953034837,373100.019982152,27.1999999999971 +20081,2310,179862.500100002,373107.500400003,24.1300000000047 +20082,2338,179867.263000004,373105.251400005,24.1999999999971 +20083,16229,179867.223294131,373105.612746924,24.2020000000048 +20084,16225,179867.081418112,373106.903902587,24.2091999999975 +20085,16223,179866.914770965,373108.420490198,24.2176999999938 +20086,16224,179867.036309313,373108.229659114,27.1999999999971 +20087,14187,179867.163676824,373107.070546139,27.1999999999971 +20088,16227,179867.212507617,373106.626159608,27.1999999999971 +20089,16226,179867.261338413,373106.181773074,27.1999999999971 +20090,16228,179867.455092993,373106.24695044,27.3889000000054 +20091,16230,179867.311811123,373105.722444206,27.1999999999971 +20092,2326,179867.559000004,373105.301000003,27.3889999999956 +20093,2335,179867.359000005,373105.293000005,27.1999999999971 +20094,14182,179867.418500002,373105.223500006,27.1999999999971 +20095,2339,179867.500300005,373104.974200003,24.1900000000023 +20096,2340,179867.534899998,373104.5944,24.1900000000023 +20097,2332,179867.478999998,373104.247000005,27.1999999999971 +20098,2333,179867.637000002,373104.576000005,27.1999999999971 +20099,2329,179867.6754,373104.269100003,27.3886000000057 +20100,2328,179867.723999999,373104.706000004,27.5749999999971 +20101,14181,179867.617746606,373104.78730597,27.1999999999971 +20102,2327,179867.704000004,373104.925500005,27.5745000000024 +20103,2334,179867.597000003,373105.015000001,27.1999999999971 +20104,14184,179867.351185985,373107.192900877,27.3888000000006 +20105,14186,179867.247278981,373108.138851319,27.3886999999959 +20106,12491,179867.143371977,373109.084801763,27.3886999999959 +20107,14183,179866.978373524,373108.756905958,27.1999999999971 +20108,16221,179866.911319502,373109.367133696,27.1999999999971 +20109,16222,179866.877792489,373109.672247566,27.1999999999971 +20110,16220,179866.770727355,373109.73137217,24.2250000000058 +20111,16213,179866.844265472,373109.977361441,27.1999999999971 +20112,16212,179866.599588428,373111.288837627,24.233699999997 +20113,16218,179866.565634899,373111.597834826,24.235400000005 +20114,16217,179866.672315381,373111.542199928,27.1999999999971 +20115,14188,179866.710157428,373111.19781692,27.1999999999971 +20116,12493,179866.931087729,373111.01739879,27.3885000000009 +20117,16214,179867.037229855,373110.051100276,27.3886000000057 +20118,16216,179866.844878227,373111.802234411,27.3883999999962 +20119,14190,179866.758668717,373112.587070026,27.388300000006 +20120,16215,179866.634473335,373111.886582926,27.1999999999971 +20121,16219,179866.653394356,373111.714391433,27.1999999999971 +20122,16211,179866.558789242,373112.575348932,27.1999999999971 +20123,16210,179866.428823307,373112.8429012,24.2424000000028 +20124,14192,179866.515697062,373112.967510954,27.1999999999971 +20125,14193,179866.672459215,373113.37190564,27.388300000006 +20126,16209,179866.458426017,373113.488708306,27.1999999999971 +20127,14189,179866.586249717,373114.156741254,27.3882000000012 +20128,14196,179866.500040207,373114.941576872,27.3880999999965 +20129,14195,179866.413830698,373115.726412486,27.3880000000063 +20130,16205,179866.238966931,373115.485904209,27.1999999999971 +20131,14198,179866.327621195,373116.511248101,27.3880000000063 +20132,12490,179866.241411686,373117.296083715,27.3879000000015 +20133,16206,179866.283991929,373115.076152477,27.1999999999971 +20134,14194,179866.329016924,373114.666400742,27.1999999999971 +20135,16207,179866.302381832,373113.993593425,24.2488000000012 +20136,16208,179866.401154973,373114.009905662,27.1999999999971 +20137,2311,179857.500599999,373107.500599999,24.179999999993 +20138,2315,179852.500800002,373112.500600003,24.3099999999977 +20139,20595,179844.644943897,373094.097708084,24.7764000000025 +20140,2344,179844.489399999,373095.487800002,24.7799999999988 +20141,20604,179844.081671525,373099.131635841,24.7893999999942 +20142,20602,179843.938676998,373100.409566201,24.7927000000054 +20143,20600,179843.831829432,373101.364454098,24.795100000003 +20144,20598,179843.728776779,373102.285427205,24.7975000000006 +20145,20597,179844.829381377,373092.449394859,24.7722000000067 +20146,20594,179845.11157557,373089.927432328,24.7657000000036 +20147,20609,179843.31856988,373105.951412514,24.8068999999959 +20148,2316,179847.500300001,373117.5,24.4700000000012 +20149,2356,179847.500300001,373122.500300001,24.3999999999942 +20150,20614,179841.841972951,373119.106407776,24.8267999999953 +20151,20612,179841.719553255,373120.194906425,24.8276999999944 +20152,20613,179841.644312341,373119.968995158,27.1999999999971 +20153,8898,179841.506529514,373121.1940955,27.1999999999971 +20154,20621,179841.556830563,373121.641760319,24.8288999999932 +20155,20622,179841.401041314,373122.132047143,27.1999999999971 +20156,20624,179841.250557635,373123.470077522,27.1999999999971 +20157,20626,179841.013178822,373125.580738757,27.1999999999971 +20158,2387,179840.775800008,373127.691400003,27.1999999999971 +20159,2405,179840.875200003,373127.702500004,24.8340000000026 +20160,20625,179841.132308688,373125.416410029,24.8320999999996 +20161,2364,179842.500399999,373132.500800002,24.4799999999959 +20162,20627,179840.504531108,373130.998314139,24.8368000000046 +20163,20628,179840.386828195,373132.044873312,24.8375999999989 +20164,8897,179840.377028655,373131.237088054,27.1999999999971 +20165,20629,179839.976176068,373134.801281478,27.1999999999971 +20166,20630,179840.099522095,373134.599464621,24.8398000000016 +20167,20631,179839.912075073,373136.266155731,24.8411999999953 +20168,2366,179842.500300005,373137.500300005,24.4499999999971 +20169,2369,179847.5002,373137.501000002,24.3999999999942 +20170,2372,179842.500799999,373142.500700004,24.5200000000041 +20171,20636,179839.543844949,373139.540285513,24.8439000000071 +20172,20635,179839.684516001,373138.289504372,24.8429000000033 +20173,8896,179839.470480911,373139.29768591,27.1999999999971 +20174,20637,179839.346856963,373140.39689213,27.1999999999971 +20175,2412,179837.374000005,373139.445000004,28.3800000000047 +20176,20639,179839.219249956,373141.531513873,27.1999999999971 +20177,20641,179839.059924982,373142.948156938,27.1999999999971 +20178,2386,179838.900600005,373144.364799999,27.1999999999971 +20179,20642,179839.141938355,373143.113850631,24.8469000000041 +20180,2406,179839.000000004,373144.375900004,24.8479999999981 +20181,2374,179842.500399999,373147.500400003,24.5500000000029 +20182,20647,179838.622568212,373147.731846645,24.8508000000002 +20183,20648,179838.441549893,373149.341376752,24.8521999999939 +20184,2376,179842.500399999,373152.500400003,24.5299999999988 +20185,2375,179847.500400003,373147.500700001,24.3600000000006 +20186,2377,179847.500700004,373152.500599999,24.3500000000058 +20187,2409,179852.500400003,373147.500400003,24.179999999993 +20188,2378,179852.500500005,373152.500599999,24.1600000000035 +20189,2373,179857.500700001,373147.500300001,24.0899999999965 +20190,16134,179862.728614163,373146.459135395,24.3399999999965 +20191,16129,179862.583812848,373147.762849558,24.3399999999965 +20192,16127,179862.441707388,373149.04229157,24.3399999999965 +20193,14231,179862.61454542,373148.391285341,27.1999999999971 +20194,16130,179862.680641662,373147.796205029,27.1999999999971 +20195,16133,179862.725127138,373147.395691592,27.1999999999971 +20196,16131,179862.769612614,373146.995178156,27.1999999999971 +20197,16132,179862.944141973,373147.25633055,27.3852999999945 +20198,14230,179863.038720384,373146.401871406,27.3853999999992 +20199,16135,179862.821436591,373146.528594445,27.1999999999971 +20200,14229,179862.85858357,373146.194151282,27.1999999999971 +20201,14225,179863.227877207,373144.692953125,27.385500000004 +20202,16137,179863.043978721,373144.524994228,27.1999999999971 +20203,14227,179863.107694771,373143.951343384,27.1999999999971 +20204,14228,179863.360151462,373143.497934725,27.3855999999942 +20205,16140,179863.203113861,373143.092262395,27.1999999999971 +20206,14226,179863.492425714,373142.302916318,27.3855999999942 +20207,12485,179863.60619086,373141.275116563,27.3856999999989 +20208,16146,179863.699490879,373140.432206992,27.3858000000037 +20209,12483,179863.79279089,373139.589297425,27.3858000000037 +20210,16153,179863.87139317,373138.879173063,27.3858999999939 +20211,14223,179863.616982363,373139.36610489,27.1999999999971 +20212,16145,179863.550210543,373139.967267621,27.1999999999971 +20213,16154,179863.655103251,373139.022893425,27.1999999999971 +20214,16150,179863.689986777,373138.708828662,27.1999999999971 +20215,16147,179863.515762866,373140.27740832,27.1999999999971 +20216,16144,179863.483438723,373140.56843036,27.1999999999971 +20217,14224,179863.358058944,373141.697254617,27.1999999999971 +20218,16138,179863.210285895,373142.122419011,24.3399999999965 +20219,16139,179863.298532952,373142.233181406,27.1999999999971 +20220,16141,179863.140741009,373142.748564199,24.3399999999965 +20221,16136,179862.978984866,373144.204930637,24.3399999999965 +20222,16142,179863.250823408,373142.662721898,27.1999999999971 +20223,12482,179862.849563554,373148.11078969,27.3852999999945 +20224,14233,179862.740997665,373149.091617271,27.3852000000043 +20225,16128,179862.546360441,373149.005171094,27.1999999999971 +20226,16121,179862.498635415,373149.434850924,27.1999999999971 +20227,16123,179862.686714724,373149.58203106,27.3852000000043 +20228,16122,179862.440680418,373149.956633713,27.1999999999971 +20229,14232,179862.632431779,373150.072444845,27.3850999999995 +20230,14236,179862.523865893,373151.05327243,27.3850999999995 +20231,14235,179862.382725418,373150.478416506,27.1999999999971 +20232,16126,179862.350620646,373150.767463412,27.1999999999971 +20233,16124,179862.318515886,373151.056510318,27.1999999999971 +20234,14238,179862.469582949,373151.543686215,27.3849999999948 +20235,14237,179862.254306357,373151.634604126,27.1999999999971 +20236,2390,179862.415300004,373152.034100004,27.3849999999948 +20237,16119,179862.334047042,373152.768171698,27.3849999999948 +20238,14240,179862.252794076,373153.502243392,27.3849000000046 +20239,12479,179862.090288155,373154.970386785,27.3847999999998 +20240,16115,179861.988485329,373154.027854662,27.1999999999971 +20241,14241,179862.060804497,373153.376747787,27.1999999999971 +20242,16118,179862.098478377,373153.037560839,27.1999999999971 +20243,16116,179862.001790311,373153.003012653,24.3399999999965 +20244,16114,179861.861481972,373154.266200118,24.3399999999965 +20245,2411,179857.500800002,373152.500500005,24.1399999999994 +20246,16111,179861.711867873,373155.613166824,24.3399999999965 +20247,14239,179861.916166153,373154.678961545,27.1999999999971 +20248,16112,179861.850010023,373155.27458109,27.1999999999971 +20249,16113,179861.816931952,373155.572390866,27.1999999999971 +20250,16108,179861.783853889,373155.870200638,27.1999999999971 +20251,16109,179861.692356702,373156.693971787,27.1999999999971 +20252,16107,179861.556956895,373157.00782096,24.3399999999965 +20253,14242,179861.651541617,373157.061439738,27.1999999999971 +20254,12481,179861.8759428,373156.906868309,27.3846999999951 +20255,16110,179861.983115479,373155.938627545,27.3846999999951 +20256,14244,179861.688268531,373158.602392539,27.3846000000049 +20257,14243,179861.500594266,373160.297916766,27.3845000000001 +20258,10765,179862.180375002,373163.807750005,27.7143999999971 +20259,14247,179861.31292,373161.993440997,27.3843000000052 +20260,14249,179861.21908287,373162.841203112,27.3843000000052 +20261,12478,179861.125245739,373163.688965224,27.3842000000004 +20262,14251,179861.010635633,373164.724398661,27.3842000000004 +20263,14250,179860.869394545,373164.103297602,27.1999999999971 +20264,16095,179860.805837985,373164.675512582,27.1999999999971 +20265,16094,179860.699640136,373164.726191822,24.3399999999965 +20266,16092,179860.753910922,373165.143024355,27.1999999999971 +20267,16091,179860.554777022,373166.030385632,24.3399999999965 +20268,16093,179860.670748666,373165.891754128,27.1999999999971 +20269,14252,179860.638427302,373166.182751115,27.1999999999971 +20270,2475,179860.411499999,373167.320300005,24.3399999999965 +20271,2421,179857.500800002,373167.500300001,24.1900000000023 +20272,2472,179860.302200001,373168.280299999,24.3500000000058 +20273,16089,179860.157582074,373169.613542944,24.3503999999957 +20274,14256,179860.277330425,373169.436433971,27.1999999999971 +20275,2462,179860.397999998,373168.324000001,27.1999999999971 +20276,14255,179860.461999997,373168.255000003,27.1999999999971 +20277,2473,179860.556200005,373168.006400004,24.3500000000058 +20278,2474,179860.575700004,373167.664900005,24.3399999999965 +20279,14254,179860.664022259,373167.872392613,27.1999999999971 +20280,2460,179860.677000009,373167.645000007,27.1999999999971 +20281,2459,179860.514000002,373167.302999999,27.1999999999971 +20282,2458,179860.723400004,373167.319400001,27.3840000000055 +20283,14253,179860.86701782,373166.021899335,27.3840999999957 +20284,2447,179861.763999999,373167.730000004,27.7200000000012 +20285,2457,179860.776000004,373167.752500001,27.3840000000055 +20286,2456,179860.7645,373167.954,27.5694999999978 +20287,2455,179860.609500002,373168.338800002,27.3840000000055 +20288,12477,179860.489108905,373169.443002827,27.3840999999957 +20289,16087,179860.398815583,373170.271154951,27.3840999999957 +20290,14257,179860.308522265,373171.099307075,27.3842000000004 +20291,16083,179860.21822894,373171.927459203,27.3842000000004 +20292,14258,179860.064833246,373171.395412344,27.1999999999971 +20293,16084,179860.03231312,373171.695210364,27.1999999999971 +20294,16082,179859.999792986,373171.995008387,27.1999999999971 +20295,16080,179859.934752725,373172.594604418,27.1999999999971 +20296,12475,179860.127935622,373172.755611327,27.3843000000052 +20297,14260,179859.988685276,373174.03278742,27.3843999999954 +20298,14259,179859.897366401,373172.939263117,27.1999999999971 +20299,16078,179859.780974485,373174.012262031,27.1999999999971 +20300,14261,179859.740725886,373174.383307599,27.1999999999971 +20301,16075,179859.638423305,373175.326419137,27.1999999999971 +20302,16076,179859.581720866,373175.849150062,27.1999999999971 +20303,16074,179859.534011483,373175.36228456,24.3522999999986 +20304,16077,179859.667982493,373174.127196278,24.3518999999942 +20305,2477,179857.500599999,373172.500599999,24.1999999999971 +20306,2425,179852.500500005,373172.500500005,24.1199999999953 +20307,2420,179852.500700001,373167.500300001,24.1300000000047 +20308,2385,179857.500400003,373162.5009,24.1999999999971 +20309,16096,179860.823103342,373163.614660069,24.3399999999965 +20310,16099,179860.939498976,373162.566757198,24.3399999999965 +20311,16102,179861.071468785,373161.378640983,24.3399999999965 +20312,16103,179861.211762365,373160.115586415,24.3399999999965 +20313,14246,179861.234155208,373160.819269795,27.1999999999971 +20314,16104,179861.310085919,373160.135647379,27.1999999999971 +20315,14245,179861.445682455,373158.914839245,27.1999999999971 +20316,16105,179861.36883064,373158.701510273,24.3399999999965 +20317,2382,179857.500300009,373157.5009,24.1699999999983 +20318,16106,179861.483944554,373158.570356376,27.1999999999971 +20319,16100,179861.142112456,373161.647952802,27.1999999999971 +20320,14248,179861.050069701,373162.476635814,27.1999999999971 +20321,16101,179861.019052729,373162.755889066,27.1999999999971 +20322,16098,179860.988035753,373163.035142317,27.1999999999971 +20323,2410,179852.500700001,373162.500700004,24.1199999999953 +20324,2380,179852.5002,373157.500500001,24.1499999999942 +20325,2383,179847.500400003,373162.500500001,24.3000000000029 +20326,2423,179847.500300001,373167.500700001,24.2700000000041 +20327,2384,179842.5009,373162.500799999,24.429999999993 +20328,2422,179842.500799999,373167.500500005,24.4700000000012 +20329,20668,179836.669790644,373165.095030103,24.8653999999951 +20330,20669,179836.455670919,373166.998882361,24.8669999999984 +20331,20670,179836.29285289,373168.446584012,24.8681999999972 +20332,20665,179836.23409386,373168.969041813,24.8686000000016 +20333,2424,179842.5009,373172.500400003,24.4100000000035 +20334,20663,179836.045483395,373170.646077715,24.8701000000001 +20335,20661,179835.894432597,373171.989150643,24.8711999999941 +20336,20662,179835.827679068,373171.687773518,27.1999999999971 +20337,8894,179835.6369588,373173.383568801,27.1999999999971 +20338,20671,179835.703820482,373173.683984246,24.8726000000024 +20339,20672,179835.508806441,373174.523039505,27.1999999999971 +20340,20673,179835.525986731,373175.265198696,24.873900000006 +20341,2428,179842.500500001,373177.500200003,24.4600000000064 +20342,2429,179847.500400003,373177.500399999,24.2100000000064 +20343,2430,179847.500400003,373182.500300005,24.1699999999983 +20344,2426,179847.5009,373172.500800002,24.25 +20345,2431,179842.501000002,373182.501000002,24.4400000000023 +20346,2480,179837.500900004,373182.500500001,24.6499999999942 +20347,2482,179835.249600001,373177.7227,24.8760000000038 +20348,20678,179834.923317466,373180.623851471,24.8784000000014 +20349,2446,179835.150199998,373177.711599998,27.1999999999971 +20350,20674,179835.391248494,373175.568309695,27.1999999999971 +20351,20677,179834.805440042,373180.777044035,27.1999999999971 +20352,20679,179834.740410171,373182.25017745,24.8797999999952 +20353,20675,179834.619649734,373183.323922712,24.8806999999942 +20354,20680,179834.493229236,373184.447994579,24.8815999999933 +20355,2434,179837.500399999,373187.500300001,24.5299999999988 +20356,2432,179842.500399999,373187.5002,24.3699999999953 +20357,2481,179837.500800002,373192.500300001,24.5899999999965 +20358,2437,179842.500399999,373192.500700001,24.3500000000058 +20359,2436,179847.500700004,373192.5002,24.1300000000047 +20360,2433,179847.5009,373187.5002,24.1699999999983 +20361,2435,179852.500300001,373187.500599999,24.0200000000041 +20362,16049,179858.398146626,373185.833756231,24.3557000000001 +20363,16047,179858.188005477,373187.770933349,24.3564000000042 +20364,16045,179858.038209729,373189.151819024,24.3567999999941 +20365,16041,179857.876071732,373190.646481242,24.3573000000033 +20366,2438,179852.500800002,373192.500700001,24.0500000000029 +20367,16039,179857.696986943,373192.297366671,24.357799999998 +20368,16034,179857.557590939,373193.58238272,24.3582000000024 +20369,16032,179857.413371727,373194.911861356,24.358699999997 +20370,14270,179857.605596464,373194.066732783,27.1999999999971 +20371,16035,179857.657162037,373193.591357831,27.1999999999971 +20372,24434,179857.694235705,373193.249581505,27.1999999999971 +20373,16038,179857.731309362,373192.907805171,27.1999999999971 +20374,24433,179857.907898091,373193.117285829,27.3855999999942 +20375,16037,179857.987669267,373192.385645531,27.3855999999942 +20376,16040,179857.772855878,373192.524794325,27.1999999999971 +20377,16036,179857.80545669,373192.224252515,27.1999999999971 +20378,14281,179857.953751348,373190.857147194,27.1999999999971 +20379,14282,179858.1472116,373190.922364935,27.385500000004 +20380,16043,179857.996708773,373190.461129397,27.1999999999971 +20381,16044,179858.266653627,373189.826873921,27.3853999999992 +20382,14272,179859.439874999,373189.485937499,27.7275999999983 +20383,14273,179858.384113457,373188.749563068,27.3852999999945 +20384,14276,179858.523110099,373187.474722303,27.3852999999945 +20385,14277,179859.756787501,373186.51921875,27.7265000000043 +20386,24432,179859.122962501,373192.45265625,27.7286000000022 +20387,10767,179858.806049999,373195.419375002,27.729600000006 +20388,2484,179860.576000001,373199.317000002,28.8000000000029 +20389,14287,179858.594775002,373197.397187505,27.7302999999956 +20390,2449,179858.383500006,373199.375000004,27.7309999999998 +20391,24411,179860.189846125,373202.859490059,28.7981 +20392,12469,179858.027618967,373202.70651561,27.7321999999986 +20393,10768,179857.671737932,373206.038031224,27.7333000000071 +20394,16016,179856.724424314,373203.877652179,27.3856999999989 +20395,12468,179856.625014536,373204.772287302,27.3856999999989 +20396,14295,179856.499905415,373205.89820293,27.3855999999942 +20397,14294,179856.396670315,373205.082038227,27.1999999999971 +20398,16017,179856.342191342,373205.57467692,27.1999999999971 +20399,16013,179856.287712358,373206.067315608,27.1999999999971 +20400,14296,179856.209608134,373206.773591064,27.1999999999971 +20401,14297,179856.368282799,373207.082736522,27.385500000004 +20402,16011,179856.150105495,373207.31165731,27.1999999999971 +20403,16009,179856.090602867,373207.849723559,27.1999999999971 +20404,12467,179856.168709435,373208.878790654,27.3853999999992 +20405,14298,179855.971597601,373208.925856054,27.1999999999971 +20406,24421,179855.929927781,373209.302664928,27.1999999999971 +20407,16008,179855.866392922,373208.96778965,24.3505000000005 +20408,24422,179855.771619838,373209.824806008,24.3475999999937 +20409,2485,179852.500700001,373207.500600003,24.1000000000058 +20410,16007,179855.676846754,373210.681822367,24.3448000000062 +20411,16004,179855.552787799,373211.803665634,24.3411999999953 +20412,16003,179855.415712971,373213.043209232,24.3371000000043 +20413,14300,179855.638239082,373211.940327045,27.1999999999971 +20414,24415,179855.674665894,373211.61092924,27.1999999999971 +20415,16006,179855.711092699,373211.281531435,27.1999999999971 +20416,24414,179855.903805897,373211.262781657,27.3852999999945 +20417,14299,179855.815504722,373212.057445325,27.3852000000043 +20418,24412,179857.22335504,373210.235486135,27.7348000000056 +20419,24413,179855.992107075,373210.46811799,27.3852999999945 +20420,24420,179856.080408253,373209.673454322,27.3853999999992 +20421,24410,179859.803692237,373206.401980117,28.7963000000018 +20422,24423,179855.846588153,373210.056282673,27.1999999999971 +20423,16005,179855.804918338,373210.433091544,27.1999999999971 +20424,24417,179855.781461928,373210.645201523,27.1999999999971 +20425,24418,179855.765106633,373210.793098085,27.1999999999971 +20426,24416,179855.758005522,373210.857311495,27.1999999999971 +20427,24424,179855.867423069,373209.867878236,27.1999999999971 +20428,24419,179855.888257965,373209.679473799,27.1999999999971 +20429,16002,179855.700162716,373213.095462002,27.3850999999995 +20430,14302,179855.584820721,373214.133478679,27.3850999999995 +20431,16001,179855.458234604,373213.568058964,27.1999999999971 +20432,14303,179855.398233108,373214.110636268,27.1999999999971 +20433,14301,179855.365809768,373214.403831765,27.1999999999971 +20434,2517,179855.275000002,373215.225000005,27.1999999999971 +20435,2528,179855.175799999,373215.212700002,24.3300000000017 +20436,15999,179855.304731123,373214.04679855,24.3337999999931 +20437,16000,179855.518236101,373213.02548166,27.1999999999971 +20438,2443,179852.500300001,373202.500300005,24.0800000000017 +20439,2442,179847.500700004,373202.500200003,24.1000000000058 +20440,2478,179852.500300001,373197.500600006,24.0500000000029 +20441,2468,179856.864100002,373199.945700001,24.3800000000047 +20442,2479,179856.973499998,373198.966800004,24.3600000000006 +20443,2470,179857.129600003,373199.289000001,24.3800000000047 +20444,2469,179857.106300004,373199.669700004,24.3800000000047 +20445,14288,179857.218272679,373199.476879649,27.1999999999971 +20446,2465,179857.230999999,373199.269000005,27.1999999999971 +20447,2464,179857.076000005,373198.949000001,27.1999999999971 +20448,2453,179857.270700008,373198.9615,27.3859999999986 +20449,14285,179857.155312568,373198.217829801,27.1999999999971 +20450,16026,179857.106363896,373197.741999865,24.3595999999961 +20451,16027,179857.21007631,373197.712971434,27.1999999999971 +20452,14286,179857.399564736,373197.779586405,27.3858999999939 +20453,16029,179857.477179158,373197.067727175,27.3858999999939 +20454,14284,179857.554793593,373196.355867952,27.3858000000037 +20455,16028,179857.301663291,373196.868645307,27.1999999999971 +20456,16031,179857.347456783,373196.446482249,27.1999999999971 +20457,14283,179857.393250279,373196.024319194,27.1999999999971 +20458,16030,179857.245046545,373196.46355984,24.3592000000062 +20459,16033,179857.49942337,373195.045525987,27.1999999999971 +20460,12471,179857.67644925,373195.240074083,27.3858000000037 +20461,14271,179857.828126922,373193.848926127,27.3856999999989 +20462,2452,179857.318000004,373199.397,27.5705000000016 +20463,2451,179857.304500002,373199.617500003,27.3859999999986 +20464,2450,179857.155200005,373200.000900004,27.3859999999986 +20465,12470,179857.022653636,373201.193746828,27.3858999999939 +20466,14291,179856.830527928,373201.158781033,27.1999999999971 +20467,16025,179856.786026612,373201.56119439,27.1999999999971 +20468,16024,179856.687010568,373201.547088679,24.3748000000051 +20469,16023,179856.7415253,373201.963607743,27.1999999999971 +20470,16020,179856.555994242,373202.731846217,24.3708999999944 +20471,16021,179856.656268667,373202.73456046,27.1999999999971 +20472,14293,179856.607157763,373203.178657085,27.1999999999971 +20473,14292,179856.823834091,373202.983017065,27.3858000000037 +20474,16022,179856.923243865,373202.088381942,27.3858999999939 +20475,16019,179856.534911539,373203.83196019,27.1999999999971 +20476,16018,179856.428806692,373203.881980896,24.3671000000031 +20477,16015,179856.485353794,373204.280097488,27.1999999999971 +20478,16014,179856.290662732,373205.131192431,24.3629999999976 +20479,2467,179856.960000001,373199.988000005,27.1999999999971 +20480,14290,179857.020999998,373199.918500002,27.1999999999971 +20481,2466,179857.204,373199.710000001,27.1999999999971 +20482,14289,179857.207568172,373199.65171992,27.1999999999971 +20483,2440,179847.500500008,373197.500300005,24.0899999999965 +20484,2444,179842.500600003,373202.500600003,24.2799999999988 +20485,2439,179842.500200003,373197.500300005,24.3099999999977 +20486,2445,179837.500800002,373202.500700004,24.5299999999988 +20487,2441,179837.500100002,373197.500600006,24.5200000000041 +20488,20693,179832.861775246,373199.057953805,24.8803999999946 +20489,20696,179832.693146259,373200.591480341,24.8772000000026 +20490,20698,179832.413376462,373203.135731049,24.8718999999983 +20491,20699,179831.950571708,373207.344517436,24.8632000000071 +20492,20695,179833.103891641,373196.85612642,24.8849000000046 +20493,2418,179833.374400001,373194.3961,24.8899999999994 +20494,20692,179833.419474319,373193.995320298,24.8896999999997 +20495,20690,179833.554697271,373192.792981178,24.8886999999959 +20496,20688,179833.682714663,373191.654710498,24.8877000000066 +20497,20686,179833.811664663,373190.508147486,24.8867000000027 +20498,20683,179833.95462662,373189.236996744,24.8856999999989 +20499,16012,179856.139928684,373206.494253859,24.3586000000068 +20500,16010,179856.00919855,373207.676423486,24.3546999999962 +20501,14275,179858.662106734,373186.199881528,27.3852000000043 +20502,16048,179858.307666395,373187.594459552,27.1999999999971 +20503,14274,179858.238382936,373188.233172961,27.1999999999971 +20504,14278,179858.48613409,373185.949193668,27.1999999999971 +20505,16052,179858.51665746,373185.667803526,27.1999999999971 +20506,16050,179858.547180828,373185.386413384,27.1999999999971 +20507,14280,179858.608227558,373184.823633101,27.1999999999971 +20508,16053,179858.561569441,373184.327250015,24.3552000000054 +20509,16056,179858.640420664,373184.526849825,27.1999999999971 +20510,14279,179858.801103368,373184.925040763,27.3850999999995 +20511,16055,179858.870601684,373184.287620381,27.3849999999948 +20512,2454,179858.940100003,373183.650199998,27.3849999999948 +20513,16054,179858.672613781,373184.230066549,27.1999999999971 +20514,2463,179858.737,373183.636500001,27.1999999999971 +20515,16051,179858.731605049,373185.562461145,27.3850999999995 +20516,16046,179858.165952176,373188.900900889,27.1999999999971 +20517,16042,179858.096067145,373189.545160081,27.1999999999971 +20518,20685,179834.041738052,373188.462442677,24.8849999999948 +20519,20682,179834.228998564,373186.7974099,24.883600000001 +20520,20664,179836.039849099,373169.801256914,27.1999999999971 +20521,20667,179836.28623683,373167.610492688,27.1999999999971 +20522,20666,179836.532624554,373165.419728458,27.1999999999971 +20523,2413,179835.293200001,373156.940800004,28.4199999999983 +20524,2414,179837.025400005,373161.038199998,27.1999999999971 +20525,20659,179837.203531086,373159.454341855,27.1999999999971 +20526,20657,179837.400739737,373157.700854931,27.1999999999971 +20527,8895,179837.544089265,373156.42625805,27.1999999999971 +20528,20652,179837.67200534,373155.28888822,27.1999999999971 +20529,20651,179837.687215902,373156.048561253,24.857799999998 +20530,20653,179837.799273562,373155.052197065,24.8570000000036 +20531,20654,179837.876675654,373153.469055708,27.1999999999971 +20532,20655,179837.970214225,373153.53227276,24.8557000000001 +20533,2379,179842.500399999,373157.500200003,24.5099999999948 +20534,20643,179838.170716923,373151.74949665,24.8542000000016 +20535,20645,179838.261773724,373150.939862274,24.8534999999974 +20536,20650,179838.286949877,373150.716007695,24.8533000000025 +20537,20644,179838.08134596,373151.649223197,27.1999999999971 +20538,20649,179838.286159474,373149.828117393,27.1999999999971 +20539,20646,179838.490972981,373148.007011596,27.1999999999971 +20540,20656,179837.521635264,373157.520826738,24.8589999999967 +20541,20660,179837.297172233,373159.516646843,24.8607000000047 +20542,20658,179837.216459569,373160.234306064,24.8613000000041 +20543,2407,179837.124800004,373161.049300004,24.8619999999937 +20544,2381,179847.5002,373157.500799999,24.3399999999965 +20545,16097,179860.92600181,373163.593648821,27.1999999999971 +20546,16085,179860.023703665,373170.847777549,24.3508000000002 +20547,16081,179859.91272942,373171.870856963,24.3512000000046 +20548,16079,179859.80444609,373172.869128712,24.3515000000043 +20549,16086,179860.122692473,373170.86201714,27.1999999999971 +20550,16088,179860.199783493,373170.151327122,27.1999999999971 +20551,16090,179860.238556955,373169.793880548,27.1999999999971 +20552,2461,179860.653999999,373168.048,27.1999999999971 +20553,2400,179862.112500004,373152.006299999,24.3399999999965 +20554,16117,179862.136152253,373152.698373895,27.1999999999971 +20555,2399,179862.211500004,373152.020000003,27.1999999999971 +20556,16125,179862.261747934,373150.662550896,24.3399999999965 +20557,16120,179862.285692289,373150.44696869,24.3399999999965 +20558,2371,179847.500400003,373142.500300001,24.3800000000047 +20559,20640,179839.283040911,373141.85923285,24.8459000000003 +20560,20638,179839.405791093,373140.767795693,24.8450000000012 +20561,20634,179839.607601009,373138.078478239,27.1999999999971 +20562,20632,179839.744721107,373136.859270573,27.1999999999971 +20563,20633,179839.805141665,373137.216957469,24.8420000000042 +20564,20623,179841.385368217,373123.166323211,24.8301999999967 +20565,20615,179841.789018478,373118.682335969,27.1999999999971 +20566,20617,179841.981534291,373116.970575515,27.1999999999971 +20567,20619,179842.316267148,373113.994287759,27.1999999999971 +20568,20618,179842.14114242,373116.446332995,24.8245000000024 +20569,20620,179842.43380883,373113.844080426,24.8224000000046 +20570,20616,179841.970006082,373117.967997156,24.825800000006 +20571,20713,179830.692627981,373218.783809379,24.8396000000066 +20572,2394,179864.216600001,373135.729500003,27.3861000000034 +20573,2393,179864.259,373136.169500001,27.3859999999986 +20574,2396,179864.160999998,373136.046999998,27.1999999999971 +20575,16190,179865.3510364,373123.5665503,27.1999999999971 +20576,16183,179865.315675721,373123.888351489,27.1999999999971 +20577,16187,179865.280315045,373124.210152682,27.1999999999971 +20578,16184,179865.24495437,373124.531953879,27.1999999999971 +20579,14208,179865.174233023,373125.175556261,27.1999999999971 +20580,16179,179865.114769246,373125.71670863,27.1999999999971 +20581,16181,179865.085037358,373125.987284817,27.1999999999971 +20582,16174,179865.055305474,373126.257861,27.1999999999971 +20583,16176,179864.995841701,373126.799013361,27.1999999999971 +20584,14214,179864.816491466,373128.431197066,27.1999999999971 +20585,17123,179909.519473068,372727.463350918,27.5556999999972 +20586,13682,179909.205754828,372729.022251301,27.1999999999971 +20587,17117,179909.17802944,372729.26746656,27.1999999999971 +20588,17115,179909.087768752,372729.175534572,24.590400000001 +20589,17126,179909.374890007,372727.526346866,27.1999999999971 +20590,17129,179909.404200241,372727.267114569,27.1999999999971 +20591,24588,179917.193133544,372656.62459372,27.1999999999971 +20592,24584,179921.409000002,372669.129000004,28.5007999999943 +20593,103,179919.73,372667.022500001,28.4199999999983 +20594,24594,179919.315686528,372670.608547319,28.4106999999931 +20595,24593,179918.901373059,372674.194594622,28.4014000000025 +20596,1807,179917.497000001,372686.350000001,28.3699999999953 +20597,13122,179915.879959494,372680.582202937,27.7810000000027 +20598,24595,179916.237236921,372677.422443978,27.7798000000039 +20599,13124,179916.594514348,372674.26268502,27.7786999999953 +20600,24597,179915.177185401,372675.870653167,27.5587999999989 +20601,13614,179915.099334024,372676.567945864,27.5587999999989 +20602,24599,179915.021482635,372677.265238557,27.5586999999941 +20603,13611,179914.943631254,372677.96253125,27.5586999999941 +20604,24596,179914.863975815,372678.67598233,27.5586000000039 +20605,17238,179914.832963411,372677.83403964,27.1999999999971 +20606,13616,179914.709688749,372678.94183575,27.1999999999971 +20607,13617,179914.784320381,372679.389433417,27.5584999999992 +20608,17232,179914.659889631,372679.389350805,27.1999999999971 +20609,17231,179914.565259993,372679.335482441,24.680600000007 +20610,17236,179914.522179674,372679.722619656,24.681700000001 +20611,1777,179907.500200003,372677.500900004,24.3399999999965 +20612,1780,179907.500700004,372682.500600003,24.3399999999965 +20613,17229,179914.337338366,372681.383678559,24.6863000000012 +20614,17233,179914.570859086,372680.189415399,27.1999999999971 +20615,13620,179914.481828537,372680.989479993,27.1999999999971 +20616,13619,179914.639063425,372680.690458663,27.5583999999944 +20617,17234,179914.711691905,372680.039946035,27.5584999999992 +20618,17235,179914.61537436,372679.789383102,27.1999999999971 +20619,9440,179914.535575006,372681.617375005,27.5583999999944 +20620,17227,179914.412613023,372682.718710471,27.5583000000042 +20621,13125,179915.399989881,372684.827050734,27.7825000000012 +20622,13622,179914.289651047,372683.820045941,27.5581999999995 +20623,17222,179914.208584897,372684.546132345,27.5581999999995 +20624,9441,179914.127518754,372685.272218745,27.5580999999947 +20625,1804,179915.239999998,372686.242000002,27.7829999999958 +20626,13624,179914.076511718,372685.729074221,27.5580999999947 +20627,9442,179914.025504693,372686.185929686,27.5580000000045 +20628,1794,179913.991500005,372686.490499999,27.5580000000045 +20629,17217,179913.936236229,372686.997627836,27.5580000000045 +20630,17218,179913.838492904,372686.780316979,27.1999999999971 +20631,13626,179913.863509379,372686.551488947,27.1999999999971 +20632,17215,179913.727447182,372686.875841502,24.6984999999986 +20633,17216,179913.813476428,372687.009144999,27.1999999999971 +20634,17214,179913.763443485,372687.466801047,27.1999999999971 +20635,17213,179913.880972445,372687.504755665,27.5578999999998 +20636,17212,179913.671952695,372688.303675856,27.1999999999971 +20637,13629,179913.770444892,372688.519011326,27.5578999999998 +20638,13628,179914.803868957,372690.324275251,27.7850999999937 +20639,13129,179914.367737915,372694.406550504,27.7872000000061 +20640,13126,179913.885115374,372698.923995622,27.7896000000037 +20641,13637,179912.919857923,372696.324419189,27.5574000000051 +20642,13639,179912.826147106,372697.184356134,27.5573000000004 +20643,13128,179912.732436281,372698.044293076,27.5573000000004 +20644,17186,179912.685580876,372698.474261545,27.5573000000004 +20645,17182,179912.638725463,372698.904230013,27.5571999999956 +20646,13641,179912.54501465,372699.764166959,27.5571999999956 +20647,9443,179912.357593007,372701.484040845,27.5571000000054 +20648,13130,179913.350031473,372703.932489701,27.7921999999962 +20649,13644,179912.243394755,372702.531980637,27.5570000000007 +20650,13646,179912.186295629,372703.05595053,27.5570000000007 +20651,13131,179912.12919651,372703.579920422,27.5568999999959 +20652,17174,179912.072097383,372704.103890315,27.5568999999959 +20653,17172,179911.971158214,372703.861001875,27.1999999999971 +20654,17173,179911.928854872,372704.247954492,27.1999999999971 +20655,17171,179911.825410608,372704.273947753,24.6582000000053 +20656,13647,179911.886551525,372704.634907115,27.1999999999971 +20657,1842,179911.674100004,372705.658000007,24.6549999999988 +20658,1839,179911.773499999,372705.669,27.1999999999971 +20659,17168,179911.70560221,372706.290067419,27.1999999999971 +20660,17167,179911.587636173,372706.448888656,24.6532000000007 +20661,17170,179911.678031757,372706.542256933,27.1999999999971 +20662,13655,179911.637704421,372706.911134832,27.1999999999971 +20663,13654,179911.751944188,372707.041702341,27.556700000001 +20664,17169,179911.826372094,372706.35875117,27.5568000000058 +20665,1837,179913.1745,372705.5755,27.7930000000051 +20666,1835,179911.900800005,372705.675800007,27.5568000000058 +20667,13648,179912.014998257,372704.627860215,27.5568999999959 +20668,17165,179911.695338506,372707.56111661,27.556700000001 +20669,13650,179911.638732821,372708.080530878,27.5565999999963 +20670,17161,179911.560426008,372708.799074925,27.5565999999963 +20671,17159,179911.438944735,372708.72920832,27.1999999999971 +20672,17162,179911.414582677,372708.952050325,27.1999999999971 +20673,17160,179911.39022062,372709.174892332,27.1999999999971 +20674,13656,179911.341496505,372709.620576356,27.1999999999971 +20675,13649,179911.300383121,372709.996644337,27.1999999999971 +20676,17156,179911.183731504,372710.143423423,24.6445999999996 +20677,17158,179911.318713941,372708.90873279,24.6475000000064 +20678,1812,179907.500300005,372707.500500001,24.3500000000058 +20679,1852,179902.500300005,372707.500000007,24.25 +20680,1810,179907.501000002,372702.500799999,24.429999999993 +20681,1808,179902.500200003,372702.500200003,24.3000000000029 +20682,1809,179897.500599999,372702.500500001,24.5099999999948 +20683,1789,179897.500700001,372697.500200007,24.5299999999988 +20684,1792,179892.500500005,372697.500800002,24.4700000000012 +20685,1787,179892.500800002,372692.500300001,24.4499999999971 +20686,1785,179897.500999998,372692.5002,24.5599999999977 +20687,1784,179897.500800002,372687.500799999,24.5399999999936 +20688,1786,179902.500399999,372692.5002,24.320000000007 +20689,1783,179902.500999998,372687.500600003,24.3300000000017 +20690,1778,179902.500200003,372682.500399999,24.3500000000058 +20691,1782,179907.500600003,372687.500499997,24.3600000000006 +20692,1797,179913.798600003,372686.225000001,24.6999999999971 +20693,17219,179913.984442919,372684.554940153,24.6953000000067 +20694,17224,179914.150119726,372683.066101227,24.6910999999964 +20695,13621,179914.159398567,372683.886966504,27.1999999999971 +20696,17226,179914.231611121,372683.23803518,27.1999999999971 +20697,17228,179914.267717399,372682.913569521,27.1999999999971 +20698,17225,179914.30382368,372682.589103863,27.1999999999971 +20699,17230,179914.413351037,372681.604846571,27.1999999999971 +20700,13618,179914.448248789,372681.291241217,27.1999999999971 +20701,17221,179914.109400693,372684.336267624,27.1999999999971 +20702,17223,179914.08440176,372684.56091819,27.1999999999971 +20703,17220,179914.059402823,372684.785568751,27.1999999999971 +20704,13623,179913.959407091,372685.684171002,27.1999999999971 +20705,13625,179913.913351774,372686.098042749,27.1999999999971 +20706,1796,179913.897999998,372686.236000001,27.1999999999971 +20707,17211,179913.573219955,372688.286572356,24.6952000000019 +20708,17208,179913.406267636,372689.813700818,24.6916999999958 +20709,13630,179913.634061396,372688.650271043,27.1999999999971 +20710,17209,179913.527573567,372689.624325208,27.1999999999971 +20711,17210,179913.493713595,372689.934045516,27.1999999999971 +20712,13632,179913.459853623,372690.243765824,27.1999999999971 +20713,13633,179913.604653556,372690.04039482,27.557799999995 +20714,13627,179913.54938978,372690.547522653,27.5577000000048 +20715,13631,179913.659917343,372689.533266991,27.557799999995 +20716,17206,179913.491988853,372691.074261997,27.5577000000048 +20717,17200,179913.434587933,372691.601001348,27.5577000000048 +20718,13635,179913.319786079,372692.654480044,27.5576000000001 +20719,17201,179913.258476764,372692.085778821,27.1999999999971 +20720,13634,179913.191351142,372692.69978315,27.1999999999971 +20721,17198,179913.135841276,372693.207537089,27.1999999999971 +20722,17195,179913.086401671,372692.73954466,24.6848999999929 +20723,17202,179913.011427727,372693.425338343,24.6833000000042 +20724,1788,179907.500799999,372692.500400003,24.3800000000047 +20725,17189,179912.843356542,372694.962701183,24.6797999999981 +20726,17196,179913.080331407,372693.715291027,27.1999999999971 +20727,17203,179913.10808634,372693.461414058,27.1999999999971 +20728,17197,179913.21353282,372693.629512675,27.5576000000001 +20729,13127,179913.107279558,372694.60454531,27.5574999999953 +20730,17192,179913.01356874,372695.464482244,27.5574000000051 +20731,17191,179912.918813825,372695.192707427,27.1999999999971 +20732,17194,179912.893564906,372695.423661694,27.1999999999971 +20733,17190,179912.86831598,372695.654615961,27.1999999999971 +20734,13638,179912.767320283,372696.578433026,27.1999999999971 +20735,17193,179912.800629653,372695.353528038,24.678899999999 +20736,17187,179912.632835727,372696.888354789,24.6753000000026 +20737,17188,179912.711462922,372697.089365512,27.1999999999971 +20738,13640,179912.602849428,372698.082863312,27.1999999999971 +20739,17184,179912.463350952,372698.438647833,24.6717000000062 +20740,1791,179907.500799999,372697.500700001,24.4100000000035 +20741,17180,179912.318973023,372699.759286232,24.6686999999947 +20742,17178,179912.128352989,372701.502905481,24.6646000000037 +20743,13642,179912.400284201,372699.935746349,27.1999999999971 +20744,17181,179912.427160624,372699.689905178,27.1999999999971 +20745,17183,179912.515005026,372698.886384245,27.1999999999971 +20746,17185,179912.558927227,372698.484623775,27.1999999999971 +20747,17179,179912.236281786,372701.435891822,27.1999999999971 +20748,13643,179912.205827814,372701.714457136,27.1999999999971 +20749,17176,179912.111176834,372702.580238476,27.1999999999971 +20750,17175,179911.971150856,372702.940848056,24.661300000007 +20751,17177,179912.082820706,372702.839614641,27.1999999999971 +20752,13645,179912.055764895,372703.087096624,27.1999999999971 +20753,1790,179902.500399999,372697.500700001,24.3099999999977 +20754,13636,179912.969311677,372694.730798893,27.1999999999971 +20755,17204,179913.236719422,372691.364574187,24.6880999999994 +20756,17205,179913.392728005,372690.85777016,27.1999999999971 +20757,17207,179913.359165192,372691.164772321,27.1999999999971 +20758,17199,179913.325602382,372691.471774485,27.1999999999971 +20759,17163,179911.460503653,372707.611775737,24.6505000000034 +20760,13653,179911.536392957,372707.837840281,27.1999999999971 +20761,17166,179911.561720822,372707.606163915,27.1999999999971 +20762,17164,179911.587048691,372707.374487557,27.1999999999971 +20763,17157,179911.258261543,372710.3819343,27.1999999999971 +20764,1776,179902.500200003,372677.500800002,24.3800000000047 +20765,17237,179914.780882701,372677.397809308,24.6750999999931 +20766,17239,179914.974900302,372675.654288504,24.6701999999932 +20767,13615,179914.940953992,372676.863592487,27.1999999999971 +20768,17241,179915.014144927,372676.20586909,27.1999999999971 +20769,24598,179915.05305234,372675.856231261,27.1999999999971 +20770,17240,179915.087335862,372675.548145697,27.1999999999971 +20771,13610,179915.177550532,372674.737440035,27.1999999999971 +20772,17242,179915.153448995,372674.049777489,24.6656999999977 +20773,17247,179915.34032825,372672.370404746,24.6609000000026 +20774,13608,179915.392328124,372672.807361457,27.1999999999971 +20775,17248,179915.439628467,372672.382301435,27.1999999999971 +20776,13606,179915.622240178,372670.74127854,27.1999999999971 +20777,17249,179915.545492243,372670.526717931,24.655700000003 +20778,17250,179915.650464889,372670.487639848,27.1999999999971 +20779,17252,179915.74151317,372669.669443049,27.1999999999971 +20780,17253,179915.683519587,372669.286348235,24.6521999999968 +20781,17254,179915.787037317,372669.260344658,27.1999999999971 +20782,13605,179915.832561456,372668.851246256,27.1999999999971 +20783,17255,179915.806694079,372668.179452259,24.6490999999951 +20784,17259,179915.93018692,372667.069695525,24.6459999999934 +20785,1802,179915.968600005,372666.7245,24.6450000000041 +20786,17264,179916.104124196,372665.506624665,24.6416000000027 +20787,17263,179916.162712023,372665.884379342,27.1999999999971 +20788,17265,179916.19364243,372665.606426165,27.1999999999971 +20789,13599,179916.306399826,372665.756543767,27.5595999999932 +20790,13598,179916.224572837,372665.328472994,27.1999999999971 +20791,9438,179916.389559723,372665.011670034,27.559699999998 +20792,17262,179916.260247312,372665.007887714,27.1999999999971 +20793,17261,179916.30946435,372664.565603472,27.1999999999971 +20794,13597,179916.472719613,372664.266796291,27.559699999998 +20795,17267,179916.351910099,372664.184168715,27.1999999999971 +20796,13596,179916.394355863,372663.802733954,27.1999999999971 +20797,13595,179916.555879511,372663.521922547,27.5598000000027 +20798,13121,179917.668343164,372664.765750818,27.7752000000037 +20799,13592,179916.897821918,372660.45910091,27.5599999999977 +20800,1795,179917.429000001,372666.8825,27.775999999998 +20801,9439,179916.223239936,372666.50141751,27.559500000003 +20802,1793,179916.167800006,372666.998000003,27.559500000003 +20803,17257,179916.065785944,372667.911710937,27.5593999999983 +20804,17258,179915.950656027,372667.790000554,27.1999999999971 +20805,13601,179916.031484,372667.063647658,27.1999999999971 +20806,1799,179916.068,372666.7355,27.1999999999971 +20807,13600,179916.100851215,372666.440285698,27.1999999999971 +20808,17256,179915.906576518,372668.186116919,27.1999999999971 +20809,13603,179915.96377188,372668.825421877,27.5593999999983 +20810,13604,179917.011757173,372670.572592512,27.7773000000016 +20811,17251,179915.861757819,372669.739132818,27.5592999999935 +20812,13602,179915.75974375,372670.652843755,27.5592000000033 +20813,13607,179915.555715632,372672.480265629,27.5590999999986 +20814,13609,179915.453701563,372673.393976562,27.5589999999938 +20815,17245,179915.402694538,372673.850832034,27.5589999999938 +20816,13123,179915.351687502,372674.307687499,27.5589000000036 +20817,13612,179915.255036794,372675.173360467,27.5589000000036 +20818,17244,179915.234019879,372674.229983609,27.1999999999971 +20819,17246,179915.259479605,372674.001192179,27.1999999999971 +20820,17243,179915.284939326,372673.772400748,27.1999999999971 +20821,13613,179914.904365636,372677.1923903,27.1999999999971 +20822,24600,179914.874078572,372677.464562133,27.1999999999971 +20823,17138,179910.06997171,372720.331035882,24.6209999999992 +20824,17140,179910.211475313,372719.036695879,24.6239999999962 +20825,17142,179910.3368004,372717.890341461,24.6266999999934 +20826,13670,179910.417582758,372718.07170172,27.1999999999971 +20827,17143,179910.464138385,372717.645853069,27.1999999999971 +20828,13668,179910.540065531,372716.951340374,27.1999999999971 +20829,17141,179910.327184606,372718.89858203,27.1999999999971 +20830,13672,179910.287291504,372719.263487998,27.1999999999971 +20831,17139,179910.20166133,372720.046755239,27.1999999999971 +20832,13674,179910.116031151,372720.830022477,27.1999999999971 +20833,17135,179910.056804206,372721.371776834,27.1999999999971 +20834,17137,179910.02287161,372721.682161465,27.1999999999971 +20835,17134,179909.997577265,372721.913531195,27.1999999999971 +20836,13676,179909.895639386,372722.845966484,27.1999999999971 +20837,9445,179910.070632819,372722.469430879,27.5556999999972 +20838,17136,179910.144392855,372721.792608101,27.5556999999972 +20839,13677,179909.9805094,372723.296404213,27.555600000007 +20840,17132,179909.844937373,372723.309742536,27.1999999999971 +20841,17131,179909.803149622,372723.691979054,27.1999999999971 +20842,17897,179952.460294325,372348.823734775,24.5181000000011 +20843,20070,179952.554658327,372348.004183996,24.5213999999978 +20844,17895,179952.649022333,372347.184633218,24.5246000000043 +20845,22568,179952.749325722,372346.31349887,24.5280999999959 +20846,17894,179952.782479696,372346.899454135,27.1999999999971 +20847,24800,179952.826405808,372346.517953917,27.1999999999971 +20848,22567,179952.856428787,372346.257203095,27.1999999999971 +20849,22569,179952.893403325,372345.936077584,27.1999999999971 +20850,17900,179952.849629119,372345.442364499,24.5316000000021 +20851,17899,179952.930377875,372345.614952061,27.1999999999971 +20852,24805,179952.951243047,372345.433737103,27.1999999999971 +20853,24804,179952.972108223,372345.252522141,27.1999999999971 +20854,24803,179953.013838578,372344.890092228,27.1999999999971 +20855,17893,179952.908553865,372344.930603422,24.5335999999952 +20856,17898,179952.877365701,372345.201472435,24.5325000000012 +20857,17901,179953.069289044,372343.534619354,24.5391999999993 +20858,17892,179953.078276049,372344.33044998,27.1999999999971 +20859,22565,179953.131892346,372343.864790123,27.1999999999971 +20860,17891,179953.243791889,372342.019063275,24.5451999999932 +20861,22563,179953.333209645,372342.116340645,27.1999999999971 +20862,22559,179953.373678062,372341.764870729,27.1999999999971 +20863,13306,179953.454614885,372341.061930906,27.1999999999971 +20864,22560,179953.482271552,372340.821731579,27.1999999999971 +20865,22557,179953.509928215,372340.581532251,27.1999999999971 +20866,20067,179953.559645813,372340.149732787,27.1999999999971 +20867,22571,179952.747976366,372347.199117001,27.1999999999971 +20868,20069,179952.675435301,372347.829139378,27.1999999999971 +20869,22573,179952.648313101,372348.0646968,27.1999999999971 +20870,20071,179952.614837576,372348.355433218,27.1999999999971 +20871,22575,179952.584275365,372348.620867357,27.1999999999971 +20872,17904,179953.678086165,372339.121073179,27.1999999999971 +20873,22554,179953.733953983,372338.635858748,27.1999999999971 +20874,20065,179953.789821807,372338.150644317,27.1999999999971 +20875,22552,179953.845689625,372337.66542989,27.1999999999971 +20876,17903,179953.901557446,372337.180215459,27.1999999999971 +20877,22549,179953.957425263,372336.695001021,27.1999999999971 +20878,22544,179954.01329308,372336.209786594,27.1999999999971 +20879,22550,179954.041226994,372335.96717938,27.1999999999971 +20880,1331,179947.500200003,372322.500599999,24.1999999999971 +20881,20054,179955.756098371,372320.199049897,24.6321999999927 +20882,17925,179955.901864138,372318.933012459,24.6371999999974 +20883,22493,179956.011099298,372317.984258886,24.6410000000033 +20884,17928,179956.120334454,372317.03550531,24.6447999999946 +20885,22492,179956.194546524,372317.265506089,27.1999999999971 +20886,17927,179956.22449014,372317.005444508,27.1999999999971 +20887,22490,179956.284952961,372316.480322275,27.1999999999971 +20888,22489,179956.317750148,372316.469349399,27.5399999999936 +20889,22494,179956.106436994,372318.030741174,27.1999999999971 +20890,22496,179956.086029306,372318.207982846,27.1999999999971 +20891,17924,179956.014737576,372318.827154573,27.1999999999971 +20892,22498,179955.999380112,372318.960534792,27.1999999999971 +20893,22500,179955.949105401,372319.397172846,27.1999999999971 +20894,20053,179955.898830686,372319.833810903,27.1999999999971 +20895,22503,179955.859136112,372320.178560041,27.1999999999971 +20896,20055,179955.840877239,372320.33713907,27.1999999999971 +20897,20052,179955.782923803,372320.840467229,27.1999999999971 +20898,22505,179955.720699478,372321.380888194,27.1999999999971 +20899,17923,179955.610332597,372321.465087336,24.6270999999979 +20900,17914,179954.629652422,372329.98270971,24.593200000003 +20901,17916,179954.761290424,372328.839377943,24.5976999999984 +20902,17917,179954.872510321,372327.873386063,24.6015999999945 +20903,22519,179954.948963113,372327.209361225,24.6042000000016 +20904,22523,179954.990483105,372327.722848978,27.1999999999971 +20905,22518,179955.035015903,372327.336079657,27.1999999999971 +20906,22520,179955.079548713,372326.949310336,27.1999999999971 +20907,22522,179955.085894227,372327.418809015,27.5399999999936 +20908,20060,179955.124081511,372326.562541015,27.1999999999971 +20909,20061,179955.025415905,372326.545336381,24.6068999999989 +20910,22521,179955.156085771,372326.284582648,27.1999999999971 +20911,22515,179955.101868689,372325.881311543,24.6095000000059 +20912,22514,179955.193574548,372325.95899098,27.1999999999971 +20913,24823,179955.210947812,372325.808103465,27.1999999999971 +20914,22516,179955.228321072,372325.657215957,27.1999999999971 +20915,22513,179955.263067584,372325.355440944,27.1999999999971 +20916,17920,179955.302212726,372325.015463725,27.1999999999971 +20917,22524,179955.007339574,372328.117048953,27.5399999999936 +20918,22526,179954.917809978,372328.912840638,27.5399999999936 +20919,22528,179954.854906775,372329.471961327,27.5399999999936 +20920,22527,179954.815107893,372329.245990269,27.1999999999971 +20921,17915,179954.771493763,372329.624780931,27.1999999999971 +20922,22530,179954.727416921,372330.007590137,27.1999999999971 +20923,20058,179954.858722031,372328.867199615,27.1999999999971 +20924,13303,179954.945950303,372328.109618299,27.1999999999971 +20925,22525,179954.968216699,372327.91623364,27.1999999999971 +20926,17913,179954.553793143,372331.515520189,27.1999999999971 +20927,22535,179954.478062619,372332.173243076,27.1999999999971 +20928,22451,179957.635396276,372304.414249409,27.1999999999971 +20929,22478,179956.534756355,372314.267069284,27.1999999999971 +20930,22480,179956.516250119,372314.432735324,27.1999999999971 +20931,17930,179956.497743871,372314.59840136,27.1999999999971 +20932,22483,179956.466057904,372314.882051021,27.1999999999971 +20933,22482,179956.434371941,372315.165700682,27.1999999999971 +20934,20042,179957.735176194,372302.619910412,24.6101999999955 +20935,22447,179957.839166977,372302.590114191,27.1999999999971 +20936,20041,179957.873755239,372302.280483525,27.1999999999971 +20937,22445,179957.901460994,372302.032464299,27.1999999999971 +20938,22443,179957.923719522,372301.833208203,27.1999999999971 +20939,17966,179960.983045541,372274.445428502,27.1999999999971 +20940,22357,179961.062991824,372273.729757294,27.1999999999971 +20941,20024,179961.085318312,372273.529892746,27.1999999999971 +20942,22355,179961.149431765,372272.955955487,27.1999999999971 +20943,13296,179961.187591083,372272.614356991,27.1999999999971 +20944,17969,179961.238707498,372272.156767927,27.1999999999971 +20945,22353,179961.269871864,372271.877787605,27.1999999999971 +20946,13295,179961.289823912,372271.699178863,27.1999999999971 +20947,22351,179961.331455279,372271.326498937,27.1999999999971 +20948,22346,179961.603481803,372268.891344339,27.1999999999971 +20949,17972,179961.622874886,372268.717739444,27.1999999999971 +20950,20020,179962.072915312,372264.689021923,27.1999999999971 +20951,24835,179962.102566525,372264.423587225,27.1999999999971 +20952,24832,179962.131410047,372264.165382873,27.1999999999971 +20953,24834,179962.16065741,372263.903563347,27.1999999999971 +20954,17976,179962.189904779,372263.64174382,27.1999999999971 +20955,22339,179962.248399507,372263.118104767,27.1999999999971 +20956,22338,179962.345916063,372262.888107326,27.5351999999984 +20957,20021,179962.306894235,372262.594465725,27.1999999999971 +20958,22336,179962.416612111,372262.259716064,27.5348999999987 +20959,22333,179962.487330128,372261.63112957,27.534599999999 +20960,22327,179962.587372631,372260.741888445,27.5341000000044 +20961,22331,179962.623643368,372260.419491176,27.5338999999949 +20962,22332,179962.543536887,372260.476064056,27.1999999999971 +20963,22328,179962.513851691,372260.741802998,27.1999999999971 +20964,17975,179962.423883699,372261.547187619,27.1999999999971 +20965,22335,179962.394636333,372261.809007145,27.1999999999971 +20966,22334,179962.365388963,372262.070826672,27.1999999999971 +20967,22337,179962.336141601,372262.332646199,27.1999999999971 +20968,22330,179962.566353731,372260.271809958,27.1999999999971 +20969,22326,179962.678478628,372259.268078923,27.1999999999971 +20970,17980,179962.599576525,372259.07338376,24.4777000000031 +20971,17979,179962.703091849,372259.047743812,27.1999999999971 +20972,22322,179962.829748739,372257.913923811,27.1999999999971 +20973,22325,179962.772059288,372259.100276526,27.5332999999955 +20974,22323,179962.919955507,372257.785681315,27.5326000000059 +20975,1275,179964.561000001,372256.932500005,27.6925000000047 +20976,22319,179963.043876395,372256.684194021,27.5320000000065 +20977,22316,179963.124290876,372255.969419222,27.5317000000068 +20978,22317,179963.033186249,372256.09274834,27.1999999999971 +20979,1269,179962.982299998,372256.548300005,27.1999999999971 +20980,22320,179962.956405632,372256.780103806,27.1999999999971 +20981,1272,179962.8829,372256.537099998,24.4700000000012 +20982,22321,179962.741238263,372257.805241879,24.4738999999972 +20983,22324,179962.850428451,372257.728801101,27.1999999999971 +20984,22318,179963.058629375,372255.864972509,27.1999999999971 +20985,22312,179963.084072497,372255.637196671,27.1999999999971 +20986,22315,179963.109515626,372255.409420844,27.1999999999971 +20987,22313,179963.134958748,372255.181645006,27.1999999999971 +20988,22311,179963.209739614,372255.209896717,27.5313000000024 +20989,17982,179963.185845003,372254.726093348,27.1999999999971 +20990,22309,179963.322719365,372254.205661166,27.5307999999932 +20991,22307,179963.416457918,372253.372453578,27.5304000000033 +20992,1277,179963.496600002,372252.660100002,27.5299999999988 +20993,13293,179963.389389999,372252.903886687,27.1999999999971 +20994,22308,179963.342882667,372253.320236735,27.1999999999971 +20995,20016,179963.287617501,372253.814990014,27.1999999999971 +20996,17985,179963.467894584,372252.201085966,27.1999999999971 +20997,22306,179963.530828685,372252.355855342,27.5299999999988 +20998,22304,179963.609990899,372251.652215026,27.5299999999988 +20999,22305,179963.519992389,372251.734688029,27.1999999999971 +21000,13292,179963.546399165,372251.498285249,27.1999999999971 +21001,22301,179963.71206522,372250.744918421,27.5299999999988 +21002,22310,179963.236731257,372254.270541679,27.1999999999971 +21003,24859,179973.707000002,372218.942000002,28.5184000000008 +21004,24867,179971.321655493,372225.658885453,28.5877999999939 +21005,56,179972.144700002,372218.0788,28.5800000000017 +21006,20002,179968.09575798,372224.221139036,27.7067999999999 +21007,24868,179967.596101243,372228.687582821,27.6987999999983 +21008,20007,179967.096444499,372233.154026616,27.6909000000014 +21009,22254,179965.954992317,372230.80845274,27.5299999999988 +21010,22256,179965.830285762,372231.916923553,27.5299999999988 +21011,22258,179965.746737946,372232.659549437,27.5299999999988 +21012,1194,179965.711799998,372232.970100001,27.5299999999988 +21013,22259,179965.623754654,372233.752698831,27.5299999999988 +21014,22263,179965.525689784,372234.624357045,27.5299999999988 +21015,1274,179966.603999998,372237.556000005,27.6830000000045 +21016,22265,179965.372982301,372235.981710963,27.5299999999988 +21017,22270,179965.284326926,372236.769732047,27.5299999999988 +21018,22274,179965.196711548,372237.548509013,27.5299999999988 +21019,22276,179965.11596591,372238.266223706,27.5299999999988 +21020,22280,179965.016538069,372239.149996817,27.5299999999988 +21021,22282,179964.863628209,372240.509149533,27.5299999999988 +21022,22284,179964.754455805,372241.479538076,27.5299999999988 +21023,22286,179964.668625504,372242.242448296,27.5299999999988 +21024,22288,179964.595414381,372242.893191747,27.5299999999988 +21025,22291,179964.489599474,372243.833736863,27.5299999999988 +21026,22289,179964.469340686,372244.013808861,27.5299999999988 +21027,22293,179964.324840311,372245.298213173,27.5299999999988 +21028,17991,179964.257225771,372245.13471467,27.1999999999971 +21029,22294,179964.226495724,372245.40982084,27.1999999999971 +21030,17990,179964.020283569,372247.255904861,27.1999999999971 +21031,22296,179963.989168942,372247.534453984,27.1999999999971 +21032,17992,179963.889615737,372247.524671152,24.4425999999949 +21033,20018,179963.677159991,372249.426640369,24.4483999999939 +21034,1234,179957.500800002,372247.500600003,24.2700000000041 +21035,17993,179964.159198672,372245.111281864,24.4352999999974 +21036,1229,179957.500800002,372242.500400003,24.25 +21037,1230,179952.501000002,372242.500599999,24.2799999999988 +21038,1264,179957.500300001,372237.500100005,24.1699999999983 +21039,1225,179952.500700004,372237.500300001,24.3099999999977 +21040,1227,179947.500799999,372237.500800002,24.3999999999942 +21041,1216,179947.500799999,372232.500799999,24.3800000000047 +21042,1226,179942.5002,372237.500800002,24.4600000000064 +21043,25181,179939.853110399,372234.627272997,24.6775999999954 +21044,20326,179939.566347197,372237.31173066,24.6267999999982 +21045,1228,179942.500100005,372242.500400003,24.3899999999994 +21046,20327,179939.026393216,372242.366366703,24.5311999999976 +21047,1256,179938.737399999,372245.071699999,24.4799999999959 +21048,1232,179942.500400003,372247.500300005,24.3300000000017 +21049,1231,179947.500200003,372242.500700001,24.4100000000035 +21050,1233,179947.500600003,372247.500500001,24.4199999999983 +21051,1258,179952.5009,372247.5009,24.25 +21052,1237,179947.500399999,372252.500500001,24.429999999993 +21053,1236,179942.500300001,372252.500500001,24.2799999999988 +21054,20328,179937.907038223,372252.75939836,24.4529000000039 +21055,92,179937.513400003,372256.4038,24.4400000000023 +21056,1262,179936.581700001,372253.176300004,28.3699999999953 +21057,25190,179937.382847778,372244.791036516,28.3813999999984 +21058,25192,179935.151000001,372243.322000004,28.6781999999948 +21059,25191,179937.688073896,372241.596368261,28.3856999999989 +21060,1266,179937.993299998,372238.401700005,28.3899999999994 +21061,25189,179935.355,372241.654000003,28.6771000000008 +21062,25179,179938.346225001,372234.708025001,28.3975000000064 +21063,25178,179938.69915,372231.014350004,28.4049999999988 +21064,1224,179939.405000001,372223.627,28.4199999999983 +21065,90,179940.932,372209.546000008,28.3300000000017 +21066,1222,179942.458999999,372195.465000004,28.2400000000052 +21067,89,179944.470000003,372178.853999998,28.2799999999988 +21068,1151,179946.480999999,372162.243000001,28.320000000007 +21069,1126,179948.018499997,372147.069500003,28.2899999999936 +21070,87,179949.556000005,372131.896000002,28.25 +21071,86,179953.728999998,372092.324000005,28.2599999999948 +21072,1039,179955.837300003,372073.243500005,28.3000000000029 +21073,84,179957.945500001,372054.162999999,28.3399999999965 +21074,20312,179959.083204046,372061.249568775,24.5984000000026 +21075,1031,179958.376700003,372067.768599998,24.570000000007 +21076,1010,179962.500900004,372062.500700001,24.3399999999965 +21077,1026,179962.500599999,372067.500500005,24.179999999993 +21078,1008,179967.500399999,372062.500300001,24.4100000000035 +21079,1013,179967.500999998,372067.500800002,24.3699999999953 +21080,1009,179972.500300005,372062.500400003,24.2599999999948 +21081,1012,179972.5009,372067.500400003,24.2400000000052 +21082,1028,179977.500100005,372062.500100005,24.1399999999994 +21083,1011,179977.500799999,372067.5002,24.1499999999942 +21084,18332,179984.001576073,372065.622765712,24.2837 +21085,18336,179984.16885284,372064.105237227,24.2838000000047 +21086,1020,179984.2399,372063.460700005,24.2838000000047 +21087,18338,179984.405349862,372061.959816575,24.2838999999949 +21088,1003,179982.500599999,372057.500300005,24.3099999999977 +21089,1006,179977.5002,372057.500799999,24.1399999999994 +21090,999,179977.500500008,372052.500300005,24.1900000000023 +21091,18356,179985.188567877,372054.854830395,24.2842999999993 +21092,18358,179985.307920255,372053.77212166,24.2844000000041 +21093,18359,179985.415739309,372052.794037834,24.2844999999943 +21094,12329,179985.469351865,372053.220311727,27.1999999999971 +21095,18360,179985.528094832,372052.687392198,27.1999999999971 +21096,12327,179985.60583546,372051.982124731,27.1999999999971 +21097,12328,179985.660662688,372052.644415338,27.5280000000057 +21098,12326,179985.788843237,372051.483128246,27.5283999999956 +21099,12330,179985.441003822,372054.63447566,27.5273000000016 +21100,10752,179986.780948877,372057.181108642,27.7376999999979 +21101,12339,179986.458474439,372060.062304322,27.745299999995 +21102,12336,179985.085746162,372057.853030689,27.526199999993 +21103,12337,179984.942467224,372059.151105903,27.5258000000031 +21104,18344,179984.836273443,372060.113197815,27.5255000000034 +21105,12340,179984.73007967,372061.075289723,27.5252000000037 +21106,18340,179984.648666181,372061.812877718,27.524900000004 +21107,12341,179984.567252696,372062.55046571,27.5246999999945 +21108,18339,179984.51256714,372061.900317781,27.1999999999971 +21109,12342,179984.445773128,372062.506276857,27.1999999999971 +21110,1017,179984.339400001,372063.471299998,27.1999999999971 +21111,12132,179984.306322828,372063.771376453,27.1999999999971 +21112,18337,179984.253639851,372064.249316949,27.1999999999971 +21113,18335,179984.200956877,372064.727257434,27.1999999999971 +21114,24938,179984.147129539,372065.215579547,27.1999999999971 +21115,18333,179984.102918241,372065.616664872,27.1999999999971 +21116,12347,179984.061221261,372065.994940277,27.1999999999971 +21117,18329,179983.824766129,372067.226778854,24.283500000005 +21118,18330,179983.926133972,372067.22045349,27.1999999999971 +21119,18331,179983.889047362,372067.556903604,27.1999999999971 +21120,12344,179983.851960752,372067.893353723,27.1999999999971 +21121,18327,179983.668432809,372068.645028844,24.2834000000003 +21122,18324,179983.491126437,372070.253545564,24.2832999999955 +21123,1041,179977.500600003,372072.500500001,24.1600000000035 +21124,18326,179983.452326953,372070.60553303,24.2832999999955 +21125,24924,179983.562596139,372070.518472333,27.1999999999971 +21126,24925,179983.588625457,372070.282334115,27.1999999999971 +21127,12350,179983.614654776,372070.046195898,27.1999999999971 +21128,12351,179983.73330776,372068.969774812,27.1999999999971 +21129,12352,179983.777396217,372069.706069496,27.5222000000067 +21130,12349,179983.88842788,372068.700200524,27.5225999999966 +21131,18328,179983.771006078,372068.627775285,27.1999999999971 +21132,12343,179983.999279477,372067.69596279,27.5228999999963 +21133,24923,179983.689127304,372070.505724002,27.5219999999972 +21134,12353,179983.600858383,372071.305378497,27.5216999999975 +21135,24921,179983.526694085,372071.977254998,27.5215000000026 +21136,12355,179983.452529795,372072.649131496,27.5212000000029 +21137,18323,179983.368409403,372072.280136332,27.1999999999971 +21138,12356,179983.319160331,372072.726924419,27.1999999999971 +21139,12133,179983.22066218,372073.620500594,27.1999999999971 +21140,12357,179983.330202408,372073.757331777,27.5209000000032 +21141,12362,179983.165590018,372075.248604622,27.5203000000038 +21142,18320,179983.086191058,372075.967903547,27.5200999999943 +21143,18319,179982.988736447,372075.724533156,27.1999999999971 +21144,18316,179982.906021804,372076.474921193,27.1999999999971 +21145,12360,179983.006792091,372076.687202472,27.5198999999993 +21146,12363,179982.902584881,372077.631246723,27.5194999999949 +21147,12358,179982.852276362,372076.962500367,27.1999999999971 +21148,18317,179982.807214905,372077.37129838,27.1999999999971 +21149,18315,179982.747756571,372076.997368939,24.2829000000056 +21150,18311,179982.762153443,372077.780096382,27.1999999999971 +21151,18310,179982.601085939,372078.327959441,24.2828000000009 +21152,1078,179977.500799999,372077.500500001,24.1600000000035 +21153,18305,179982.436662819,372079.819599733,24.2826999999961 +21154,1045,179972.500200003,372077.500500001,24.2100000000064 +21155,1043,179972.500799999,372072.500799999,24.2200000000012 +21156,1044,179967.500500001,372077.500500001,24.3899999999994 +21157,1049,179967.500300005,372082.500700001,24.3899999999994 +21158,1046,179962.500800002,372077.500700004,24.2400000000052 +21159,1047,179962.500300001,372082.5002,24.2200000000012 +21160,1052,179962.500500005,372087.500400003,24.25 +21161,1036,179956.3884,372086.115800001,24.4900000000052 +21162,1055,179962.500700001,372092.500600006,24.3399999999965 +21163,20314,179955.563441806,372093.650686506,24.4967000000033 +21164,1033,179957.500700001,372097.500500001,24.3500000000058 +21165,1058,179962.500900004,372097.500799999,24.2799999999988 +21166,1061,179962.500599999,372102.500400007,24.3300000000017 +21167,1034,179957.500500005,372102.500500001,24.3600000000006 +21168,1038,179954.543400001,372102.967400003,24.5050000000047 +21169,1035,179957.500599999,372107.500100005,24.320000000007 +21170,20315,179954.022316009,372107.726803262,24.5092000000004 +21171,1037,179952.433000002,372105.975499999,28.2899999999936 +21172,20316,179953.029378999,372116.795950815,24.5173000000068 +21173,1128,179951.136999998,372119.627,28.320000000007 +21174,20317,179951.463135105,372130.95164321,24.4533999999985 +21175,1125,179952.698399998,372119.819000002,24.5200000000041 +21176,1119,179957.500400003,372127.500400003,24.2799999999988 +21177,1120,179957.5002,372132.500100005,24.25 +21178,1088,179962.500599999,372127.500599999,24.3600000000006 +21179,1092,179962.500999998,372132.500900004,24.3600000000006 +21180,1090,179967.500500001,372132.500100005,24.1699999999983 +21181,1093,179967.500300005,372137.500200003,24.1699999999983 +21182,1094,179972.500600003,372137.500300005,24.25 +21183,1114,179967.500399999,372142.500200003,24.1600000000035 +21184,1095,179962.500599999,372137.500799999,24.3399999999965 +21185,1096,179962.5002,372142.500700004,24.3099999999977 +21186,1121,179957.500700001,372137.500399999,24.3300000000017 +21187,1122,179957.500300001,372142.5009,24.3000000000029 +21188,1124,179950.658399999,372138.204200003,24.4100000000035 +21189,1127,179952.500500001,372147.500300001,24.2799999999988 +21190,20318,179949.673511956,372146.7805916,24.3763000000035 +21191,1146,179948.905400004,372153.469300006,24.3500000000058 +21192,1129,179952.500799999,372152.500500005,24.320000000007 +21193,1131,179952.500799999,372157.500600006,24.3600000000006 +21194,20319,179947.995690405,372161.587480925,24.4033000000054 +21195,1150,179952.500200003,372162.500300005,24.2799999999988 +21196,1133,179957.500300001,372162.500700004,24.4100000000035 +21197,1132,179957.500700001,372157.500700001,24.4199999999983 +21198,1130,179957.500800002,372152.500800002,24.4199999999983 +21199,1154,179962.500700001,372157.500500001,24.25 +21200,1153,179962.500800002,372152.500700001,24.2799999999988 +21201,1098,179962.500300001,372147.500300001,24.3000000000029 +21202,1123,179957.500500005,372147.500400003,24.3600000000006 +21203,1099,179967.500300005,372147.500700001,24.1900000000023 +21204,1152,179967.500399999,372152.500400003,24.1999999999971 +21205,1100,179972.5009,372147.500700001,24.2400000000052 +21206,1097,179972.500100002,372142.501000002,24.3099999999977 +21207,18153,179975.159886558,372145.565927498,24.4201999999932 +21208,19943,179975.079955142,372146.283309884,24.424199999994 +21209,18152,179975.000023719,372147.000692271,24.4281999999948 +21210,19941,179975.156201027,372146.502117403,27.1999999999971 +21211,19944,179975.179736182,372146.290890012,27.1999999999971 +21212,19940,179975.315063529,372146.155540444,27.5155999999988 +21213,19942,179975.203271337,372146.079662621,27.1999999999971 +21214,13224,179975.25034165,372145.657207839,27.1999999999971 +21215,13225,179975.433147851,372145.094759602,27.5151000000042 +21216,18154,179975.292747941,372145.276612509,27.1999999999971 +21217,13226,179975.335154224,372144.896017179,27.1999999999971 +21218,19947,179975.510609809,372144.398899503,27.5148999999947 +21219,18158,179975.588071771,372143.703039411,27.514599999995 +21220,19945,179975.665533736,372143.007179309,27.5142999999953 +21221,13223,179975.742995698,372142.31131921,27.5139999999956 +21222,18165,179975.606354915,372142.461998172,27.1999999999971 +21223,18160,179975.558940675,372142.887539707,27.1999999999971 +21224,19946,179975.521642931,372143.222285952,27.1999999999971 +21225,18159,179975.414380938,372143.281847183,24.4073000000062 +21226,18156,179975.484345194,372143.557032198,27.1999999999971 +21227,18155,179975.292133126,372144.379018053,24.4134999999951 +21228,18157,179975.409749713,372144.226524688,27.1999999999971 +21229,19948,179975.383616183,372144.461072415,27.1999999999971 +21230,18161,179975.527818352,372142.263749316,24.4015999999974 +21231,18166,179975.646068223,372141.202459853,24.3956999999937 +21232,18168,179975.831445199,372139.538706388,24.3862999999983 +21233,18162,179975.77441388,372140.95367337,27.1999999999971 +21234,13219,179975.915291604,372139.689299531,27.1999999999971 +21235,18171,179975.943041414,372139.440245695,27.1999999999971 +21236,18169,179975.970791224,372139.19119186,27.1999999999971 +21237,18172,179975.961313918,372138.37313807,24.3797999999952 +21238,13221,179976.026290849,372138.693084192,27.1999999999971 +21239,18173,179976.062536281,372138.367782399,27.1999999999971 +21240,18176,179976.099410478,372138.036837477,27.1999999999971 +21241,18174,179976.136284675,372137.705892552,27.1999999999971 +21242,18177,179976.081000131,372137.298957452,24.3736999999965 +21243,18178,179976.176166233,372137.347956616,27.1999999999971 +21244,13218,179976.210033059,372137.044002697,27.1999999999971 +21245,18179,179976.257969726,372135.710660007,24.3647999999957 +21246,1091,179972.5009,372132.500400003,24.179999999993 +21247,1111,179976.418299999,372134.271699999,24.3567000000039 +21248,19934,179976.588496067,372132.744082961,24.3481000000029 +21249,18183,179976.758692138,372131.216465924,24.3395000000019 +21250,18187,179976.937649779,372129.610208206,24.3304999999964 +21251,1109,179972.500200003,372127.500000004,24.1600000000035 +21252,1089,179967.500500001,372127.500599999,24.1699999999983 +21253,1085,179967.500399999,372122.500200003,24.179999999993 +21254,1086,179962.500500005,372122.500300005,24.3800000000047 +21255,1083,179967.500200003,372117.500399999,24.1999999999971 +21256,1084,179972.500100002,372117.500799999,24.1900000000023 +21257,1081,179967.500200003,372112.500800002,24.2200000000012 +21258,1082,179972.500600003,372112.500800002,24.2200000000012 +21259,1064,179972.500500001,372107.500300001,24.1900000000023 +21260,1063,179967.500200003,372107.500300001,24.25 +21261,1062,179967.500200003,372102.500600003,24.2799999999988 +21262,1075,179977.500500008,372102.500799999,24.2100000000064 +21263,18239,179979.447217744,372106.939732824,24.2808999999979 +21264,18231,179979.272466656,372108.525068089,24.2807999999932 +21265,18237,179979.137023017,372109.753807664,24.280700000003 +21266,18238,179979.263350412,372109.52046492,27.1999999999971 +21267,18232,179979.347653601,372108.755665585,27.1999999999971 +21268,12141,179979.379753578,372108.46445423,27.1999999999971 +21269,12398,179979.50304281,372107.345973123,27.1999999999971 +21270,12403,179979.494766697,372108.503789466,27.5090999999957 +21271,12396,179979.635188099,372107.23167007,27.5096000000049 +21272,10755,179981.025373533,372108.916162878,27.752800000002 +21273,12399,179981.465436768,372104.938831437,27.7602000000043 +21274,12402,179979.762094308,372106.081988804,27.5099999999948 +21275,18240,179979.545058601,372106.964805439,27.1999999999971 +21276,12397,179979.626332041,372106.227492008,27.1999999999971 +21277,18241,179979.612440959,372105.440834042,24.2810000000027 +21278,18242,179979.704489745,372105.518444527,27.1999999999971 +21279,18246,179979.744784713,372105.15288816,27.1999999999971 +21280,18243,179979.785079688,372104.787331786,27.1999999999971 +21281,18248,179979.73867872,372104.295609806,24.2810999999929 +21282,18250,179979.867907379,372103.123252317,24.2811999999976 +21283,18255,179979.969542995,372102.201217771,24.2813000000024 +21284,18253,179979.995251849,372101.967988078,24.2813000000024 +21285,1071,179980.037700001,372101.582900003,24.2813000000024 +21286,12140,179980.105007216,372101.884946089,27.1999999999971 +21287,1068,179980.137100004,372101.593800001,27.1999999999971 +21288,1070,179980.236600004,372101.783300001,27.5114000000031 +21289,18254,179980.040532082,372102.469865117,27.1999999999971 +21290,18252,179980.107227057,372102.955328159,27.5109999999986 +21291,12394,179980.278456762,372101.404105138,27.5114999999932 +21292,18258,179980.3412419,372100.835312851,27.5117000000027 +21293,12392,179980.404027037,372100.26652056,27.5118999999977 +21294,18260,179980.260542374,372100.473976977,27.1999999999971 +21295,18257,179980.234076381,372100.71406661,27.1999999999971 +21296,12395,179980.173594486,372101.262735732,27.1999999999971 +21297,18259,179980.16675853,372100.412085898,24.2814000000071 +21298,12393,179980.287008375,372100.233887337,27.1999999999971 +21299,18256,179980.184110422,372100.254670225,24.2814000000071 +21300,18265,179980.352914799,372098.723283224,24.2814999999973 +21301,18261,179980.477961734,372097.588862188,24.2816000000021 +21302,18272,179980.602505546,372096.459005374,24.2816000000021 +21303,18267,179980.652247231,372096.007750716,24.2817000000068 +21304,18271,179980.716242235,372096.340038441,27.1999999999971 +21305,18268,179980.754970826,372095.988707099,27.1999999999971 +21306,12139,179980.821288381,372095.387099098,27.1999999999971 +21307,18275,179980.903036211,372094.645513408,27.1999999999971 +21308,12384,179980.984784037,372093.903927721,27.1999999999971 +21309,18273,179980.696877934,372096.51570411,27.1999999999971 +21310,18269,179980.677513637,372096.691369783,27.1999999999971 +21311,12137,179980.60005644,372097.394032463,27.1999999999971 +21312,18263,179980.545377254,372097.890061557,27.1999999999971 +21313,18264,179980.566216912,372098.797186274,27.5124000000069 +21314,18266,179980.473923791,372098.538260639,27.1999999999971 +21315,18262,179980.443532411,372098.8139599,27.1999999999971 +21316,12400,179979.977854114,372104.127356317,27.5105999999942 +21317,18244,179979.873425331,372105.073407821,27.5102999999945 +21318,18247,179979.869505137,372105.108922008,27.5102999999945 +21319,18245,179979.817759823,372105.577698309,27.5100999999995 +21320,18249,179979.833536919,372104.347727314,27.1999999999971 +21321,12401,179979.86566963,372104.056219049,27.1999999999971 +21322,18251,179979.976056948,372103.054784141,27.1999999999971 +21323,24916,179984.544847213,372106.231374972,28.4851000000053 +21324,24909,179980.713780154,372111.732372161,27.7476000000024 +21325,12143,179980.402186766,372114.548581444,27.7424000000028 +21326,12406,179978.994228702,372113.038312688,27.5075999999972 +21327,12409,179978.898221128,372113.908073951,27.5072999999975 +21328,12404,179978.827666767,372114.54724697,27.5071000000025 +21329,12410,179978.725291643,372115.474693798,27.5068000000028 +21330,18214,179978.607605893,372116.540844146,27.5063999999984 +21331,18216,179978.548763026,372117.073919311,27.5062999999936 +21332,12411,179978.489920147,372117.606994487,27.5060999999987 +21333,18218,179978.422810122,372118.214964267,27.5059000000037 +21334,18209,179978.355700091,372118.822934058,27.5056999999942 +21335,18207,179978.240823474,372118.796839401,27.1999999999971 +21336,18211,179978.208044749,372119.094208363,27.1999999999971 +21337,18210,179978.288590066,372119.430903841,27.5054999999993 +21338,18208,179978.175266016,372119.391577322,27.1999999999971 +21339,12414,179978.109708555,372119.986315243,27.1999999999971 +21340,12413,179978.221480034,372120.03887362,27.5053000000044 +21341,1102,179978.131999999,372120.849500004,27.5050000000047 +21342,18204,179978.061485942,372121.482982822,27.5053000000044 +21343,13207,179978.003969599,372120.942493051,27.1999999999971 +21344,18203,179977.947311182,372121.451038085,27.1999999999971 +21345,18202,179977.825574402,372121.640524786,24.2856000000029 +21346,18205,179977.918981969,372121.705310594,27.1999999999971 +21347,18201,179977.890652765,372121.959583115,27.1999999999971 +21348,18200,179977.990971878,372122.116465624,27.5054999999993 +21349,18199,179977.777335931,372122.976673182,27.1999999999971 +21350,13210,179977.849943753,372123.383431256,27.5060999999987 +21351,19926,179977.779429689,372124.01691407,27.5062999999936 +21352,18196,179977.708915625,372124.650396872,27.5065999999933 +21353,19930,179977.63840156,372125.28387969,27.506899999993 +21354,13208,179977.567887504,372125.917362504,27.5071000000025 +21355,19923,179977.426859379,372127.184328124,27.5077000000019 +21356,13213,179977.28583125,372128.451293752,27.5081999999966 +21357,11195,179977.003775004,372130.985224999,27.5093000000052 +21358,19931,179977.989996433,372135.006368726,27.7207999999955 +21359,19932,179976.815737501,372132.674512509,27.5099999999948 +21360,57,179976.627700001,372134.3638,27.5106999999989 +21361,19936,179976.551222514,372135.05081632,27.5109999999986 +21362,13216,179976.473318309,372134.681024563,27.1999999999971 +21363,19937,179976.419940013,372135.16009336,27.1999999999971 +21364,1104,179976.517700002,372134.282699998,27.1999999999971 +21365,19933,179976.681142718,372132.815698557,27.1999999999971 +21366,18181,179976.474745031,372135.737832647,27.5112999999983 +21367,18182,179976.366561715,372135.639162164,27.1999999999971 +21368,18180,179976.341675684,372135.862513628,27.1999999999971 +21369,13217,179976.321790054,372137.111865286,27.5117999999929 +21370,19938,179977.542624112,372138.713717185,27.7179000000033 +21371,18175,179976.237503514,372137.869032282,27.5121999999974 +21372,13220,179976.153216969,372138.626199283,27.5124999999971 +21373,18170,179976.084548537,372139.243064929,27.5127000000066 +21374,11196,179976.015880104,372139.859930575,27.5130000000063 +21375,18163,179975.879437901,372141.085624892,27.5135000000009 +21376,18167,179975.743121665,372141.234520186,27.1999999999971 +21377,18164,179975.703975022,372141.585860297,27.1999999999971 +21378,13222,179975.633536156,372142.218047217,27.1999999999971 +21379,19935,179976.707582723,372132.578382872,27.1999999999971 +21380,18184,179976.844585434,372131.348697111,27.1999999999971 +21381,13215,179976.884155411,372130.993531637,27.1999999999971 +21382,18186,179977.011274125,372129.852560926,27.1999999999971 +21383,18185,179977.004991721,372129.005771797,24.327099999995 +21384,13214,179977.138392854,372128.711590223,27.1999999999971 +21385,18191,179977.154720988,372127.661857195,24.3194999999978 +21386,18188,179977.183962803,372127.399393491,24.3179999999993 +21387,18192,179977.33743773,372126.021859236,24.3102999999974 +21388,1087,179972.500700004,372122.500500001,24.1999999999971 +21389,18194,179977.502819166,372124.537456572,24.3019000000058 +21390,19928,179977.5845761,372123.803636506,24.2978000000003 +21391,18198,179977.666333038,372123.06981644,24.2936999999947 +21392,1110,179977.9366,372120.644000001,24.2799999999988 +21393,18206,179978.094638519,372119.210280515,24.2801000000036 +21394,18219,179978.251082417,372117.791027393,24.2801999999938 +21395,18212,179978.268844519,372117.629890267,24.2801999999938 +21396,18221,179978.426025108,372116.203953955,24.2802999999985 +21397,18224,179978.592541751,372114.693321206,24.2804000000033 +21398,12144,179978.628117099,372115.283307813,27.1999999999971 +21399,18225,179978.70370093,372114.597610556,27.1999999999971 +21400,18226,179978.763786186,372114.05251655,27.1999999999971 +21401,18227,179978.752967615,372113.237943783,24.2804999999935 +21402,12405,179978.823871437,372113.507422552,27.1999999999971 +21403,18228,179978.87101702,372113.079717338,27.1999999999971 +21404,24914,179978.915343311,372112.677588798,27.1999999999971 +21405,24910,179979.094019078,372112.134281885,27.5078999999969 +21406,24911,179978.959669597,372112.275460266,27.1999999999971 +21407,24912,179978.858735122,372112.27842493,24.2805999999982 +21408,24913,179978.999236476,372111.916509137,27.1999999999971 +21409,18229,179978.964502633,372111.318906076,24.2805999999982 +21410,18236,179979.145457275,372110.589992635,27.1999999999971 +21411,18234,179979.212856047,372109.978550289,27.1999999999971 +21412,18235,179979.291261677,372110.347402241,27.5084999999963 +21413,12408,179979.19380945,372111.230251081,27.5081999999966 +21414,12407,179979.048322175,372111.471203186,27.1999999999971 +21415,18230,179979.078058504,372111.201434985,27.1999999999971 +21416,18233,179979.388713904,372109.464553405,27.508799999996 +21417,18222,179978.564072423,372115.86432175,27.1999999999971 +21418,18223,179978.532050084,372116.15482872,27.1999999999971 +21419,18213,179978.50002775,372116.445335686,27.1999999999971 +21420,18215,179978.435983077,372117.026349623,27.1999999999971 +21421,12142,179978.371938393,372117.607363559,27.1999999999971 +21422,18220,179978.339159667,372117.904732522,27.1999999999971 +21423,18217,179978.306380935,372118.20210148,27.1999999999971 +21424,1103,179978.035999998,372120.655000001,27.1999999999971 +21425,13211,179977.735670991,372123.350642275,27.1999999999971 +21426,19929,179977.70578016,372123.618931357,27.1999999999971 +21427,19927,179977.675889324,372123.887220427,27.1999999999971 +21428,18195,179977.616107661,372124.423798583,27.1999999999971 +21429,18197,179977.588538695,372124.6712474,27.1999999999971 +21430,13209,179977.496544324,372125.496954896,27.1999999999971 +21431,18193,179977.448102046,372125.931754943,27.1999999999971 +21432,18189,179977.401795447,372126.347385861,27.1999999999971 +21433,13212,179977.307046562,372127.197816826,27.1999999999971 +21434,19925,179977.28596485,372127.387038503,27.1999999999971 +21435,19924,179977.264883142,372127.576260179,27.1999999999971 +21436,18190,179977.222719707,372127.954703525,27.1999999999971 +21437,1077,179962.500700001,372107.500400003,24.3699999999953 +21438,1080,179962.500400003,372112.500200007,24.3699999999953 +21439,1116,179957.500900008,372112.500599999,24.2899999999936 +21440,1112,179962.5002,372117.500399999,24.3999999999942 +21441,1117,179957.500800002,372117.500700004,24.2799999999988 +21442,1118,179957.500400003,372122.500300005,24.2799999999988 +21443,24901,179975.103717037,372146.973159857,27.1999999999971 +21444,13227,179975.062060416,372147.347026963,27.1999999999971 +21445,1106,179974.899900001,372147.899300009,24.4333000000042 +21446,1105,179974.999300003,372147.910300002,27.1999999999971 +21447,18151,179974.950136211,372148.351576015,27.1999999999971 +21448,18150,179974.848231122,372148.363060758,24.4358999999968 +21449,18147,179974.741953116,372149.316972915,24.4413000000059 +21450,18148,179974.900972422,372148.79285204,27.1999999999971 +21451,18149,179974.85180863,372149.234128047,27.1999999999971 +21452,24905,179974.82740913,372149.453128953,27.1999999999971 +21453,18143,179974.802644845,372149.675404061,27.1999999999971 +21454,18146,179974.753481053,372150.116680086,27.1999999999971 +21455,18142,179974.608280953,372150.516764849,24.448000000004 +21456,18140,179974.434133895,372152.079844575,24.4567999999999 +21457,18136,179974.268326845,372153.568067402,24.465200000006 +21458,18134,179974.086770784,372155.197647523,24.4744000000064 +21459,18135,179974.232720498,372154.79083449,27.1999999999971 +21460,13233,179974.327193685,372153.942878019,27.1999999999971 +21461,19951,179974.361267813,372153.637041289,27.1999999999971 +21462,19950,179974.450012121,372153.926870089,27.5188999999955 +21463,18138,179974.527462747,372153.231070694,27.5185999999958 +21464,13232,179974.372561488,372154.622669488,27.519100000005 +21465,19952,179974.268266074,372155.559636578,27.5194999999949 +21466,13229,179974.163970653,372156.496603668,27.5198999999993 +21467,19956,179975.153012499,372158.516289897,27.7029000000039 +21468,13230,179974.07263241,372157.317166325,27.5203000000038 +21469,13228,179973.974871099,372157.105195414,27.1999999999971 +21470,18131,179973.852525573,372158.203323711,27.1999999999971 +21471,18130,179973.729947947,372158.400357515,24.4924000000028 +21472,19958,179973.825089704,372158.44957795,27.1999999999971 +21473,13236,179973.797653828,372158.695832185,27.1999999999971 +21474,19957,179973.927371208,372158.622161016,27.5207999999984 +21475,11197,179973.981294166,372158.137728985,27.5206000000035 +21476,13237,179973.873448238,372159.106593054,27.5209999999934 +21477,1175,179975.008000001,372159.717999998,27.7020000000048 +21478,19959,179974.5059928,372164.534601435,27.707899999994 +21479,88,179976.376000002,372179.108500004,28.5500000000029 +21480,19966,179973.539482612,372173.807963226,27.7194000000018 +21481,19974,179973.077761363,372178.238033656,27.7247999999963 +21482,1177,179972.938000005,372179.579000004,27.7265000000043 +21483,24881,179976.042763676,372182.177544035,28.5516000000061 +21484,24882,179972.666560438,372182.183377389,27.7296999999962 +21485,13260,179971.492083285,372180.871411249,27.5280999999959 +21486,13263,179971.389162268,372181.813991345,27.5283999999956 +21487,24883,179971.337701764,372182.285281383,27.5285000000003 +21488,13262,179971.286241256,372182.756571427,27.5286999999953 +21489,19978,179971.184898987,372183.684692916,27.528999999995 +21490,19977,179972.395120878,372184.78775477,27.7329000000027 +21491,24880,179975.709527351,372185.246588055,28.5531999999948 +21492,24884,179971.923366375,372189.314091019,27.7385000000068 +21493,13265,179970.880872171,372186.469057363,27.5298000000039 +21494,24891,179970.779529903,372187.397178851,27.5301000000036 +21495,13268,179970.678187635,372188.325300328,27.5304000000033 +21496,24889,179970.627516497,372188.789361067,27.5304999999935 +21497,24885,179970.576845359,372189.25342181,27.530700000003 +21498,11201,179970.475503091,372190.181543294,27.5310000000027 +21499,19989,179970.361587524,372191.224814631,27.5313000000024 +21500,18071,179970.286848407,372190.676761515,27.1999999999971 +21501,18068,179970.235457018,372191.145581283,27.1999999999971 +21502,18069,179970.184065633,372191.61440105,27.1999999999971 +21503,18067,179970.060136952,372191.827164803,24.5016999999934 +21504,18062,179970.132674243,372192.083220825,27.1999999999971 +21505,18066,179970.08128285,372192.552040588,27.1999999999971 +21506,18065,179969.954472434,372192.791093171,24.5013999999937 +21507,1167,179967.500200003,372192.500599999,24.3699999999953 +21508,18061,179969.846765693,372193.773651671,24.5011999999988 +21509,18059,179969.710728228,372195.014658298,24.5007999999943 +21510,18060,179969.832885403,372194.818055142,27.1999999999971 +21511,19988,179969.785773762,372195.247832764,27.1999999999971 +21512,13270,179969.73866212,372195.67761039,27.1999999999971 +21513,19987,179969.912608299,372195.336694729,27.5326000000059 +21514,11202,179969.805375773,372196.318760827,27.5329000000056 +21515,19982,179971.45161188,372193.840427265,27.7440999999963 +21516,13271,179970.019840825,372194.35462863,27.5323000000062 +21517,13272,179969.927108686,372193.958499897,27.1999999999971 +21518,19984,179970.076798603,372193.832992963,27.5320999999967 +21519,19986,179969.952804383,372193.724090014,27.1999999999971 +21520,19985,179969.978500076,372193.48968013,27.1999999999971 +21521,19983,179970.133756384,372193.311357293,27.5319000000018 +21522,18064,179970.029891461,372193.020860355,27.1999999999971 +21523,18063,179970.247671958,372192.26808596,27.5316000000021 +21524,19990,179971.002536848,372198.149161212,27.7494000000006 +21525,1195,179974.260299999,372198.593699999,28.5599999999977 +21526,1192,179970.868000004,372199.440000001,27.7510000000038 +21527,19993,179970.219560966,372205.236412387,27.7406999999948 +21528,24860,179973.202500001,372208.33625,28.570000000007 +21529,24861,179969.74419345,372209.485734202,27.7330999999976 +21530,18033,179968.495200772,372208.159154955,27.530700000003 +21531,24863,179968.38318418,372209.168691792,27.5304000000033 +21532,18036,179968.327769604,372208.444427963,27.1999999999971 +21533,18034,179968.262140635,372209.037170142,27.1999999999971 +21534,24864,179968.211909134,372209.490846783,27.1999999999971 +21535,24865,179968.327175882,372209.673460208,27.5301999999938 +21536,24866,179968.186793387,372209.717685103,27.1999999999971 +21537,13286,179968.16167764,372209.944523431,27.1999999999971 +21538,13285,179968.271167584,372210.178228628,27.5301000000036 +21539,24862,179968.18512569,372210.95367147,27.5298999999941 +21540,18029,179968.099083792,372211.72911432,27.5295999999944 +21541,20000,179969.268825933,372213.735056013,27.7255000000005 +21542,24878,179972.673599996,372213.207525004,28.5749999999971 +21543,22223,179969.002412967,372216.116528012,27.7212 +21544,24877,179974.138396639,372215.090596996,28.5301999999938 +21545,1193,179968.736000001,372218.498000003,27.7170000000042 +21546,22229,179967.539977085,372216.720104694,27.5299999999988 +21547,22231,179967.428178824,372217.713838466,27.5299999999988 +21548,22234,179967.332767904,372218.561911095,27.5299999999988 +21549,22235,179967.220157191,372219.562866427,27.5299999999988 +21550,22237,179967.060497224,372220.982025236,27.5299999999988 +21551,13288,179966.968707774,372220.719088908,27.1999999999971 +21552,22238,179966.917687397,372221.179890499,27.1999999999971 +21553,18016,179966.813433331,372221.212711632,24.4462000000058 +21554,18015,179966.816846378,372222.090657972,27.1999999999971 +21555,18014,179966.669330984,372222.514196418,24.4431999999942 +21556,1183,179962.500400003,372222.500300005,24.2799999999988 +21557,18012,179966.523962241,372223.827118896,24.4401999999973 +21558,20005,179966.383135546,372225.099019077,24.4372000000003 +21559,1184,179962.500900004,372227.500799999,24.2899999999936 +21560,1221,179957.500400003,372227.500200003,24.1999999999971 +21561,1185,179962.500599999,372232.500700004,24.25 +21562,20009,179965.837409314,372230.027838189,24.4257999999973 +21563,18010,179965.954696804,372228.968536358,24.4281999999948 +21564,24873,179966.096857872,372227.684584547,24.4312000000064 +21565,18011,179966.242308855,372226.370919265,24.4342999999935 +21566,24874,179966.239667408,372227.303574767,27.1999999999971 +21567,22250,179966.328555584,372226.500762012,27.1999999999971 +21568,18008,179966.361262195,372226.205365162,27.1999999999971 +21569,20006,179966.470026191,372225.223039582,27.1999999999971 +21570,22248,179966.492913436,372225.016328488,27.1999999999971 +21571,22246,179966.515800685,372224.809617385,27.1999999999971 +21572,20004,179966.578790192,372224.240714006,27.1999999999971 +21573,22243,179966.705890186,372224.13399712,27.5299999999988 +21574,22247,179966.610598333,372224.981011406,27.5299999999988 +21575,22241,179966.788407184,372223.400533784,27.5299999999988 +21576,22239,179966.896413554,372222.440504801,27.5299999999988 +21577,22240,179966.778881028,372222.433550242,27.1999999999971 +21578,20003,179966.740915682,372222.776442505,27.1999999999971 +21579,18013,179966.66498499,372223.462227035,27.1999999999971 +21580,22242,179966.621887583,372223.851470523,27.1999999999971 +21581,22244,179966.600338887,372224.046092264,27.1999999999971 +21582,22245,179966.578300234,372225.268097408,27.5299999999988 +21583,22249,179966.43817275,372226.513639163,27.5299999999988 +21584,24876,179966.344209202,372227.348846655,27.5299999999988 +21585,24875,179966.195223328,372227.704981141,27.1999999999971 +21586,24871,179966.250245657,372228.184054147,27.5299999999988 +21587,22251,179966.142489932,372229.141855221,27.5299999999988 +21588,24869,179966.048741125,372229.975153983,27.5299999999988 +21589,22252,179965.973693062,372229.705779672,27.1999999999971 +21590,24870,179965.936514243,372230.041568175,27.1999999999971 +21591,20008,179965.88984672,372230.463056058,27.1999999999971 +21592,22255,179965.82850419,372231.01708436,27.1999999999971 +21593,18007,179965.720121834,372231.087140024,24.4232999999949 +21594,13289,179965.753816612,372231.691641424,27.1999999999971 +21595,18005,179965.599926271,372232.172706611,24.4208000000071 +21596,22257,179965.71626053,372232.03083726,27.1999999999971 +21597,18006,179965.678704452,372232.370033104,27.1999999999971 +21598,13290,179965.603592299,372233.048424792,27.1999999999971 +21599,18000,179965.471032202,372233.336835314,24.4180999999953 +21600,18004,179965.453090277,372233.498880837,24.4177000000054 +21601,18002,179965.541490041,372233.609314807,27.1999999999971 +21602,22262,179965.504816569,372233.940539207,27.1999999999971 +21603,22261,179965.373694666,372234.215955812,24.4159999999974 +21604,22260,179965.468143094,372234.2717636,27.1999999999971 +21605,22264,179965.431469623,372234.602987997,27.1999999999971 +21606,18003,179965.294299051,372234.933030784,24.4143999999942 +21607,18001,179965.394796148,372234.934212398,27.1999999999971 +21608,22266,179965.290398076,372235.877106201,27.1999999999971 +21609,22268,179965.190449521,372235.870965395,24.4122000000061 +21610,22269,179965.264298558,372236.112829648,27.1999999999971 +21611,22267,179965.23819904,372236.348553102,27.1999999999971 +21612,1273,179965.086599998,372236.808900002,24.4100000000035 +21613,22273,179965.212099519,372236.58427655,27.1999999999971 +21614,1268,179965.186000001,372236.820000004,27.1999999999971 +21615,22271,179965.116606824,372237.441232234,27.1999999999971 +21616,22272,179965.023273714,372237.375816394,24.4116999999969 +21617,22275,179965.081910234,372237.751848347,27.1999999999971 +21618,17999,179964.95994743,372237.942732789,24.4134000000049 +21619,17998,179965.047213644,372238.062464468,27.1999999999971 +21620,22279,179965.012517054,372238.373080574,27.1999999999971 +21621,22277,179964.977820463,372238.683696698,27.1999999999971 +21622,22278,179964.893862329,372238.53434686,24.4152000000031 +21623,17997,179964.82777724,372239.125960942,24.4170000000013 +21624,22281,179964.932995267,372239.0849877,27.1999999999971 +21625,17996,179964.908427287,372239.304928925,27.1999999999971 +21626,20011,179964.812131807,372240.166999996,27.1999999999971 +21627,17995,179964.674246054,372240.500419296,24.421199999997 +21628,22283,179964.771449544,372240.531201962,27.1999999999971 +21629,13291,179964.715836328,372241.02907107,27.1999999999971 +21630,17987,179964.504016634,372242.02436541,24.425900000002 +21631,22285,179964.660419241,372241.525184423,27.1999999999971 +21632,20012,179964.605002154,372242.021297771,27.1999999999971 +21633,22287,179964.577293608,372242.269354448,27.1999999999971 +21634,17994,179964.472738449,372242.304377388,24.4266999999963 +21635,17989,179964.306338318,372243.794042468,24.4312000000064 +21636,17988,179964.494167969,372243.013524476,27.1999999999971 +21637,20013,179964.549585063,372242.517411124,27.1999999999971 +21638,22290,179964.409893535,372243.767978981,27.1999999999971 +21639,22292,179964.394719541,372243.903821863,27.1999999999971 +21640,20014,179964.379545555,372244.039664745,27.1999999999971 +21641,1267,179962.500599999,372237.500599999,24.320000000007 +21642,1217,179957.500100005,372232.500799999,24.1699999999983 +21643,22253,179966.028882347,372229.207325663,27.1999999999971 +21644,18009,179966.057539407,372228.948503297,27.1999999999971 +21645,24872,179966.150779244,372228.106387511,27.1999999999971 +21646,1214,179952.501000002,372227.500700004,24.3600000000006 +21647,1215,179952.500200003,372232.500400007,24.3399999999965 +21648,1213,179947.500600003,372227.500500001,24.3399999999965 +21649,25180,179940.139873601,372231.942815326,24.7284000000072 +21650,1219,179940.713399999,372226.573900003,24.8300000000017 +21651,20325,179941.059177972,372223.488219921,24.809699999998 +21652,20324,179942.077984873,372214.396512572,24.75 +21653,1208,179947.500399999,372217.500400003,24.3399999999965 +21654,1223,179947.500300005,372222.500900004,24.2799999999988 +21655,1211,179952.500500001,372222.500300005,24.3899999999994 +21656,1210,179952.501000002,372217.500900004,24.4100000000035 +21657,1212,179957.500800002,372222.500800002,24.1999999999971 +21658,1209,179957.500800002,372217.500700001,24.1999999999971 +21659,1206,179957.500599999,372212.500500005,24.2100000000064 +21660,1207,179952.500700004,372212.500599999,24.4100000000035 +21661,1203,179952.500500001,372207.500200003,24.3800000000047 +21662,1205,179947.500600003,372212.500300001,24.3500000000058 +21663,1220,179947.500300005,372207.500700004,24.3500000000058 +21664,1201,179947.500399999,372202.500200003,24.3600000000006 +21665,20323,179943.205756437,372204.332396135,24.6839999999938 +21666,1218,179942.761399999,372208.297800004,24.7100000000064 +21667,1198,179947.500500001,372197.500500005,24.4100000000035 +21668,1200,179952.500300005,372202.500100002,24.3999999999942 +21669,1199,179952.500799999,372197.500700001,24.4100000000035 +21670,1202,179957.500900008,372202.500300005,24.2299999999959 +21671,1197,179957.500700001,372197.500400003,24.2599999999948 +21672,1144,179957.500700001,372192.500599999,24.2899999999936 +21673,1143,179952.500600003,372192.500400003,24.3500000000058 +21674,1145,179947.501000002,372192.500999998,24.4400000000023 +21675,1142,179952.501000002,372187.5009,24.3300000000017 +21676,1148,179944.8094,372190.021600004,24.5899999999965 +21677,20322,179944.18832612,372195.564017218,24.6263999999937 +21678,1140,179952.500600003,372182.500700004,24.3800000000047 +21679,20321,179946.012318742,372179.286901183,24.5194999999949 +21680,1147,179946.857400004,372171.745499998,24.4700000000012 +21681,1137,179952.500300005,372177.500700001,24.3300000000017 +21682,1149,179952.500200003,372172.500100005,24.320000000007 +21683,20320,179947.211915281,372168.581831947,24.4492000000027 +21684,1135,179952.500700004,372167.500400007,24.3500000000058 +21685,1136,179957.5002,372172.500400003,24.3999999999942 +21686,1134,179957.500700001,372167.500300001,24.4100000000035 +21687,1156,179962.500400003,372162.500600003,24.2299999999959 +21688,1158,179962.500500005,372167.500700004,24.2100000000064 +21689,1159,179962.500400003,372172.500500005,24.1699999999983 +21690,1160,179967.500300005,372172.500800002,24.2899999999936 +21691,1157,179967.500600003,372167.500400007,24.2700000000041 +21692,18112,179972.437017545,372170.143987078,24.5075999999972 +21693,18105,179972.24619022,372171.88481608,24.5071999999927 +21694,13252,179972.362212565,372171.744178195,27.1999999999971 +21695,18106,179972.336568359,372171.978118356,27.1999999999971 +21696,19972,179972.266632475,372172.616110966,27.1999999999971 +21697,19971,179972.098442934,372173.232646,24.5068000000028 +21698,19969,179972.196696591,372173.254103575,27.1999999999971 +21699,19967,179972.32412596,372173.251326632,27.5256999999983 +21700,19973,179972.40126517,372172.544863701,27.5255000000034 +21701,13251,179972.47840438,372171.838400774,27.5252999999939 +21702,18110,179972.686244745,372169.934939243,27.5246999999945 +21703,18109,179972.520256247,372170.302419037,27.1999999999971 +21704,18113,179972.559069514,372169.948343627,27.1999999999971 +21705,18111,179972.599278096,372169.581539456,27.1999999999971 +21706,13250,179972.678299937,372168.860659879,27.1999999999971 +21707,18107,179972.564052761,372168.985103752,24.5080000000016 +21708,18108,179972.759788848,372168.117274359,27.1999999999971 +21709,18114,179972.708411191,372167.668188855,24.5083000000013 +21710,18116,179972.854656756,372166.334058471,24.5087000000058 +21711,18119,179973.01283269,372164.891092908,24.5090999999957 +21712,18117,179973.051831175,372165.453107908,27.1999999999971 +21713,18120,179973.116421621,372164.863879219,27.1999999999971 +21714,13244,179973.168328226,372164.390359413,27.1999999999971 +21715,18121,179973.175296161,372163.409014113,24.5095000000001 +21716,1155,179967.500399999,372162.500300005,24.2100000000064 +21717,18123,179973.335406844,372161.948398747,24.5099000000046 +21718,1173,179973.381600004,372161.527000003,24.5099999999948 +21719,18125,179973.547347166,372160.039314661,24.5016000000032 +21720,13238,179973.554974306,372160.874033961,27.1999999999971 +21721,13240,179973.586731549,372160.588992685,27.1999999999971 +21722,18127,179973.639462117,372160.115702562,27.1999999999971 +21723,18129,179973.665827405,372159.879057501,27.1999999999971 +21724,18126,179973.692192689,372159.642412435,27.1999999999971 +21725,1174,179967.500500001,372157.500399999,24.1900000000023 +21726,18132,179973.908993386,372156.793311764,24.4833999999973 +21727,13231,179974.139378559,372155.628637224,27.1999999999971 +21728,18133,179974.033958171,372156.574851736,27.1999999999971 +21729,19953,179974.185865965,372155.211383492,27.1999999999971 +21730,18128,179973.806318659,372159.709670402,27.5212999999931 +21731,13239,179973.739189081,372160.312747747,27.5215000000026 +21732,1168,179973.618999999,372161.392500002,27.5219999999972 +21733,19961,179973.528385647,372162.222372219,27.5222999999969 +21734,19962,179973.44260928,372161.888220735,27.1999999999971 +21735,1170,179973.480999999,372161.537999995,27.1999999999971 +21736,13241,179973.49949358,372161.372008491,27.1999999999971 +21737,18124,179973.406074528,372162.221510295,27.1999999999971 +21738,13246,179973.331149057,372162.905020587,27.1999999999971 +21739,13245,179973.437771283,372163.052244429,27.5225000000064 +21740,19963,179973.34715692,372163.882116642,27.5228000000061 +21741,19964,179973.301849738,372164.297052752,27.5228999999963 +21742,13243,179973.256542556,372164.711988859,27.523000000001 +21743,19960,179973.165928204,372165.541861076,27.5233000000007 +21744,13248,179973.07531384,372166.371733293,27.5236000000004 +21745,11198,179972.89408512,372168.031477727,27.5240999999951 +21746,13242,179972.841277763,372167.373888832,27.1999999999971 +21747,13247,179972.90091493,372166.829846703,27.1999999999971 +21748,18115,179972.800533306,372167.745581593,27.1999999999971 +21749,13249,179972.935334116,372166.515856404,27.1999999999971 +21750,18118,179972.961550519,372166.276696384,27.1999999999971 +21751,19965,179973.223516151,372163.886905566,27.1999999999971 +21752,18122,179973.278194811,372163.38809751,27.1999999999971 +21753,19968,179972.246986747,372173.95778957,27.5258999999933 +21754,13254,179972.169847537,372174.664252501,27.526199999993 +21755,18101,179972.046871912,372175.790498469,27.5265000000072 +21756,18100,179971.950460218,372175.500403598,27.1999999999971 +21757,18102,179971.897560943,372175.982979111,27.1999999999971 +21758,18099,179971.793503422,372176.014467511,24.5059999999939 +21759,13253,179971.844095621,372176.470718399,27.1999999999971 +21760,18096,179971.659528561,372177.236658018,24.5056999999942 +21761,1161,179967.500399999,372177.500800002,24.2799999999988 +21762,1178,179962.500800002,372177.500599999,24.1600000000035 +21763,1162,179967.500600003,372182.500399999,24.3000000000029 +21764,1163,179962.5002,372182.500500001,24.1699999999983 +21765,1138,179957.500700001,372177.500700001,24.3899999999994 +21766,1139,179957.500400003,372182.500399999,24.3600000000006 +21767,1141,179957.500800002,372187.500399999,24.320000000007 +21768,1165,179962.500900004,372187.500600003,24.179999999993 +21769,1166,179962.500400003,372192.500300001,24.179999999993 +21770,1164,179967.500700008,372187.500300005,24.3000000000029 +21771,18079,179970.705818091,372185.936915647,24.5032999999967 +21772,18083,179970.851882696,372184.604436144,24.5037000000011 +21773,18085,179970.999295469,372183.259657808,24.5041000000056 +21774,18087,179971.11936906,372182.16428224,24.5044000000053 +21775,18089,179971.293187827,372180.578614306,24.5047999999952 +21776,13261,179971.249234855,372181.897356942,27.1999999999971 +21777,18090,179971.369132396,372180.803587347,27.1999999999971 +21778,13259,179971.414051302,372180.393813033,27.1999999999971 +21779,1172,179971.378100004,372179.804000005,24.5050000000047 +21780,18091,179971.527781215,372178.438527849,24.5053999999946 +21781,13258,179971.518988509,372179.436519582,27.1999999999971 +21782,18092,179971.598679833,372178.709532686,27.1999999999971 +21783,18095,179971.61860266,372178.527785968,27.1999999999971 +21784,18093,179971.638525493,372178.346039239,27.1999999999971 +21785,13256,179971.678371154,372177.982545793,27.1999999999971 +21786,18098,179971.723274183,372177.572916288,27.1999999999971 +21787,19976,179971.745725699,372177.36810153,27.1999999999971 +21788,18097,179971.768177215,372177.163286783,27.1999999999971 +21789,19975,179971.863259476,372177.4720736,27.5270000000019 +21790,11199,179971.923896279,372176.91674443,27.5268999999971 +21791,13257,179971.802622676,372178.027402773,27.5271999999968 +21792,18094,179971.741985876,372178.582731944,27.5274000000063 +21793,11200,179971.681349073,372179.138061106,27.5276000000013 +21794,1169,179971.600499999,372179.878500003,27.5277999999962 +21795,1171,179971.477500003,372179.815000005,27.1999999999971 +21796,18088,179971.214555498,372182.213720553,27.1999999999971 +21797,18086,179971.179876149,372182.530084159,27.1999999999971 +21798,13264,179971.11051745,372183.162811372,27.1999999999971 +21799,19979,179971.059354544,372183.629546829,27.1999999999971 +21800,18082,179970.985948786,372184.299193431,27.1999999999971 +21801,18081,179971.083556719,372184.612814397,27.5292999999947 +21802,18084,179970.947465282,372184.650260575,27.1999999999971 +21803,18080,179970.861380123,372185.435575478,27.1999999999971 +21804,19980,179970.98221444,372185.540935881,27.5295000000042 +21805,19981,179970.815625105,372185.852977257,27.1999999999971 +21806,13266,179970.769870091,372186.270379029,27.1999999999971 +21807,18077,179970.582487989,372187.061998911,24.502999999997 +21808,18078,179970.714609493,372186.774495825,27.1999999999971 +21809,18075,179970.659348886,372187.278612625,27.1999999999971 +21810,18076,179970.592643399,372187.887135886,27.1999999999971 +21811,18074,179970.460762102,372188.172447633,24.5026999999973 +21812,13267,179970.548827689,372188.286846209,27.1999999999971 +21813,24888,179970.502896294,372188.705856968,27.1999999999971 +21814,24887,179970.386382785,372188.85097561,24.5025000000023 +21815,18072,179970.312003464,372189.529503584,24.5022999999928 +21816,24886,179970.456964903,372189.124867722,27.1999999999971 +21817,24890,179970.479930602,372188.915362339,27.1999999999971 +21818,18073,179970.412022095,372189.534860093,27.1999999999971 +21819,13269,179970.338239796,372190.207941748,27.1999999999971 +21820,18070,179970.176171802,372190.76863277,24.5019999999931 +21821,1196,179962.500700001,372197.5002,24.1699999999983 +21822,18056,179969.562874019,372196.363463603,24.5004999999946 +21823,1191,179969.374600004,372198.081000004,24.5 +21824,18050,179969.303863812,372198.719869185,24.4985000000015 +21825,13275,179969.435886599,372198.436229505,27.1999999999971 +21826,18052,179969.380903345,372198.932822607,27.1999999999971 +21827,18054,179969.271202464,372199.014857229,24.4977999999974 +21828,18055,179969.353411719,372199.181119163,27.1999999999971 +21829,18051,179969.325920094,372199.429415718,27.1999999999971 +21830,18053,179969.488491189,372199.207237564,27.5332999999955 +21831,13276,179969.394982379,372200.049975134,27.5329999999958 +21832,13277,179969.2159536,372200.422601942,27.1999999999971 +21833,18048,179969.321423925,372200.712912414,27.5328000000009 +21834,18049,179969.190001093,372200.656997599,27.1999999999971 +21835,18046,179969.091655254,372200.636476751,24.4940999999963 +21836,18047,179969.164048593,372200.891393244,27.1999999999971 +21837,18042,179969.11214358,372201.360184561,27.1999999999971 +21838,18041,179968.926651858,372202.126740653,24.4906000000046 +21839,1179,179962.500400003,372202.500200003,24.1900000000023 +21840,18044,179968.901578009,372202.353200521,24.4900999999954 +21841,13279,179969.022775393,372202.167332713,27.1999999999971 +21842,18045,179968.99560741,372202.412706207,27.1999999999971 +21843,18043,179968.968439434,372202.658079706,27.1999999999971 +21844,13281,179969.121620107,372202.513621632,27.5323000000062 +21845,13280,179968.995374758,372203.651393551,27.5320000000065 +21846,18040,179968.863440376,372203.606401414,27.1999999999971 +21847,13282,179968.81787369,372204.017946806,27.1999999999971 +21848,19994,179968.878114812,372204.708185531,27.5317000000068 +21849,19995,179968.730502993,372204.807054166,27.1999999999971 +21850,19998,179968.696399048,372205.115071293,27.1999999999971 +21851,19996,179968.596262541,372205.110723253,24.483699999997 +21852,19997,179968.662295107,372205.423088428,27.1999999999971 +21853,18037,179968.469606284,372206.254646599,24.4809999999998 +21854,1180,179962.500300001,372207.5009,24.2200000000012 +21855,18035,179968.238160908,372208.344995592,24.4760999999999 +21856,18031,179968.085273668,372209.72582984,24.4728999999934 +21857,1181,179962.500400003,372212.500700001,24.2700000000041 +21858,1182,179962.500100005,372217.500599999,24.3000000000029 +21859,18024,179967.422334727,372215.713306349,24.4590000000026 +21860,18021,179967.567840509,372214.399139397,24.4621000000043 +21861,18025,179967.718291018,372213.040313009,24.465200000006 +21862,18027,179967.888705697,372211.501176011,24.4688000000024 +21863,13284,179967.862629522,372212.645441186,27.1999999999971 +21864,18030,179967.970062811,372211.675134234,27.1999999999971 +21865,18028,179968.012153581,372211.294982307,27.1999999999971 +21866,20001,179968.013041902,372212.504557163,27.5293999999994 +21867,18026,179967.816671416,372213.060521778,27.1999999999971 +21868,1187,179967.927000009,372213.280000001,27.5292000000045 +21869,18022,179967.774701722,372213.439580157,27.1999999999971 +21870,22219,179967.810796425,372214.312890965,27.5299999999988 +21871,13287,179967.686773922,372214.233719125,27.1999999999971 +21872,22220,179967.658671517,372214.487532072,27.1999999999971 +21873,22227,179967.682352114,372215.45458531,27.5299999999988 +21874,22221,179967.630305324,372215.917210173,27.5299999999988 +21875,22228,179967.537552092,372215.581448339,27.1999999999971 +21876,18023,179967.508386962,372215.84485957,27.1999999999971 +21877,22226,179967.463790227,372216.247644681,27.1999999999971 +21878,22225,179967.326467365,372216.579153173,24.4569999999949 +21879,22224,179967.41919348,372216.650429782,27.1999999999971 +21880,22230,179967.374596737,372217.053214893,27.1999999999971 +21881,1190,179967.230600003,372217.445000004,24.4550000000017 +21882,1189,179967.330000002,372217.456000004,27.1999999999971 +21883,22233,179967.303078506,372217.699147336,27.1999999999971 +21884,22232,179967.276157003,372217.942294668,27.1999999999971 +21885,18019,179967.144891985,372218.219086476,24.4532000000036 +21886,18017,179966.974451356,372219.758449979,24.4496000000072 +21887,18018,179967.112472162,372219.420649771,27.1999999999971 +21888,18020,179967.222314008,372218.428589333,27.1999999999971 +21889,22236,179967.074118633,372219.767047957,27.1999999999971 +21890,22222,179967.56671723,372215.318037108,27.1999999999971 +21891,1204,179957.500999998,372207.500200003,24.2200000000012 +21892,18032,179968.362603631,372208.129816856,27.1999999999971 +21893,13283,179968.563529618,372206.315110281,27.1999999999971 +21894,18038,179968.594087221,372206.039122682,27.1999999999971 +21895,11203,179968.719233952,372206.140081272,27.5313000000024 +21896,19999,179968.798674386,372205.424133401,27.5314999999973 +21897,18039,179968.72291879,372203.966799907,24.4863000000041 +21898,13278,179969.247865461,372201.375849705,27.5326000000059 +21899,1186,179969.581999999,372198.364500005,27.533500000005 +21900,1188,179969.474000003,372198.092000004,27.1999999999971 +21901,19991,179969.63784394,372197.853065215,27.5332999999955 +21902,19992,179969.500951376,372197.846135095,27.1999999999971 +21903,13273,179969.52790276,372197.600270189,27.1999999999971 +21904,13274,179969.69368789,372197.341630414,27.5332000000053 +21905,18058,179969.595523305,372196.983399335,27.1999999999971 +21906,18057,179969.663143851,372196.366528478,27.1999999999971 +21907,18103,179971.950695638,372174.580475923,24.5063999999984 +21908,19970,179972.126760706,372173.892096188,27.1999999999971 +21909,13255,179972.056824811,372174.530088797,27.1999999999971 +21910,18104,179972.030421544,372174.770953573,27.1999999999971 +21911,18139,179974.395341929,372153.331204548,27.1999999999971 +21912,18137,179974.466591686,372152.691693071,27.1999999999971 +21913,19955,179974.503687624,372152.35873365,27.1999999999971 +21914,18141,179974.540783562,372152.025774233,27.1999999999971 +21915,20313,179957.692441382,372074.082652103,24.5424999999959 +21916,1042,179962.5002,372072.500799999,24.2100000000064 +21917,1040,179967.500200003,372072.500200003,24.3999999999942 +21918,18318,179982.907734189,372075.546058062,24.2829999999958 +21919,18321,179983.129666664,372073.532694988,24.2831000000006 +21920,12361,179983.036469273,372075.291500479,27.1999999999971 +21921,18322,179983.279489201,372072.17351057,24.2832000000053 +21922,18301,179982.280617941,372081.235232975,24.2826000000059 +21923,12134,179982.483890552,372080.304500148,27.1999999999971 +21924,18307,179982.530925542,372079.877798207,27.1999999999971 +21925,18309,179982.554443035,372079.664447241,27.1999999999971 +21926,18306,179982.577960532,372079.45109627,27.1999999999971 +21927,18308,179982.693477605,372079.525612,27.5188999999955 +21928,12365,179982.785981227,372078.687594116,27.5191999999952 +21929,12364,179982.672030527,372078.597692393,27.1999999999971 +21930,18314,179982.694561254,372078.393293392,27.1999999999971 +21931,18313,179982.844283052,372078.159420416,27.5194000000047 +21932,18312,179982.717091981,372078.188894387,27.1999999999971 +21933,12366,179982.600973986,372080.363629885,27.5185999999958 +21934,18304,179982.538567923,372080.928985089,27.5184000000008 +21935,12368,179982.476161852,372081.494340301,27.5182000000059 +21936,12370,179982.386724174,372082.304582916,27.5179000000062 +21937,1069,179982.341200002,372082.717000004,27.5178000000014 +21938,18300,179982.171163496,372083.141537271,27.1999999999971 +21939,12135,179982.205768034,372082.82761782,27.1999999999971 +21940,18297,179982.046133332,372083.362468507,24.2823999999964 +21941,18298,179982.136558954,372083.455456715,27.1999999999971 +21942,1072,179982.138800003,372082.521800004,24.2825000000012 +21943,1067,179982.238299999,372082.532499999,27.1999999999971 +21944,12371,179982.268998824,372082.254000016,27.1999999999971 +21945,12369,179982.299697638,372081.97550004,27.1999999999971 +21946,12367,179982.361095276,372081.418500073,27.1999999999971 +21947,18303,179982.391794089,372081.14000009,27.1999999999971 +21948,18302,179982.422492906,372080.861500114,27.1999999999971 +21949,24922,179983.393033944,372072.056742292,27.1999999999971 +21950,12354,179983.417658474,372071.833348244,27.1999999999971 +21951,18325,179983.516156625,372070.939772073,27.1999999999971 +21952,12338,179984.588620089,372061.210361071,27.1999999999971 +21953,18341,179984.570988648,372060.457219254,24.2839999999997 +21954,18343,179984.650925111,372060.645126335,27.1999999999971 +21955,18345,179984.682077616,372060.362508968,27.1999999999971 +21956,18342,179984.713230129,372060.0798916,27.1999999999971 +21957,18346,179984.709729791,372059.198624745,24.2841000000044 +21958,18348,179984.8334614,372058.076189626,24.2841000000044 +21959,12131,179984.83784017,372058.949422136,27.1999999999971 +21960,18349,179984.930955138,372058.104677815,27.1999999999971 +21961,18347,179984.806045044,372059.237869378,27.1999999999971 +21962,12335,179984.968938008,372057.760095004,27.1999999999971 +21963,18350,179984.937375348,372057.133531116,24.2841999999946 +21964,18353,179985.011911768,372057.370234601,27.1999999999971 +21965,18351,179985.042140812,372057.095994975,27.1999999999971 +21966,12333,179985.100035846,372056.570767876,27.1999999999971 +21967,18354,179985.044489797,372056.161839098,24.2842999999993 +21968,18355,179985.171491701,372055.922516279,27.1999999999971 +21969,12128,179985.254543208,372055.169068199,27.1999999999971 +21970,18357,179985.307219781,372054.691183288,27.1999999999971 +21971,12331,179985.36194754,372054.194689967,27.1999999999971 +21972,12332,179985.311230402,372055.810193807,27.5268999999971 +21973,12334,179985.204949815,372056.773072228,27.5265999999974 +21974,18352,179985.145347986,372057.313051458,27.5264000000025 +21975,998,179972.500600003,372052.500100002,24.320000000007 +21976,1005,179972.500200003,372057.500700004,24.2899999999936 +21977,1002,179967.500300005,372052.5009,24.3399999999965 +21978,995,179967.500500001,372047.500300001,24.3099999999977 +21979,1001,179962.500500005,372052.500500001,24.4400000000023 +21980,1030,179960.3651,372049.421300001,24.6499999999942 +21981,20311,179959.834529437,372054.316963527,24.6287000000011 +21982,1004,179962.500100005,372057.500500001,24.4199999999983 +21983,20310,179961.682457559,372037.265275944,24.7029999999941 +21984,1024,179967.500900004,372042.500700001,24.2100000000064 +21985,990,179967.500399999,372037.5002,24.2599999999948 +21986,993,179972.500600003,372042.500500005,24.3600000000006 +21987,996,179972.500300005,372047.500300001,24.3500000000058 +21988,1007,179967.500200003,372057.501000002,24.3699999999953 +21989,25193,179933.655000005,372258.613000005,28.6551999999938 +21990,25194,179936.095983222,372258.259759501,28.3597000000009 +21991,25198,179935.864487413,372260.682569627,28.354800000001 +21992,20432,179865.594548319,372905.293872423,24.4809999999998 +21993,2044,179865.4027,372907.015400004,24.4799999999959 +21994,20439,179864.358611424,372916.383866902,24.4746000000014 +21995,20437,179864.264670905,372917.226782594,24.4741999999969 +21996,20446,179863.808537245,372921.319608841,24.4717999999993 +21997,2516,179853.817000005,373230.892000005,27.3840000000055 +21998,2515,179853.799000002,373231.098999999,27.3840000000055 +21999,14315,179853.712926112,373231.136349797,27.1999999999971 +22000,2520,179853.708000004,373231.193,27.1999999999971 +22001,2514,179853.648500003,373231.501200002,27.3840000000055 +22002,15963,179853.416312773,373231.90715025,27.1999999999971 +22003,15967,179853.386036951,373232.180880282,27.1999999999971 +22004,12459,179852.947124358,373237.883479666,27.3843000000052 +22005,15944,179852.852307823,373238.746277839,27.3843999999954 +22006,14323,179852.757491287,373239.609076008,27.3843999999954 +22007,15947,179852.752206288,373237.911476146,27.1999999999971 +22008,20729,179829.12451791,373233.043885231,24.8101000000024 +22009,20727,179829.26376627,373231.777548637,24.8126999999949 +22010,20724,179829.381389145,373230.707876038,24.8148999999976 +22011,23149,179807.733026315,373475.709194101,27.1999999999971 +22012,21971,179817.282197282,373475.284751046,21.355899999995 +22013,3051,179817.540600002,373472.98,21.3500000000058 +22014,21964,179816.876750801,373479.705007508,27.1999999999971 +22015,21967,179816.719174165,373481.137863092,27.1999999999971 +22016,21965,179816.662107058,373480.815473013,21.3702000000048 +22017,21968,179816.484613713,373482.398575455,21.3742999999959 +22018,3019,179816.235800002,373484.617800001,21.3800000000047 +22019,21969,179816.564049982,373482.548418358,27.1999999999971 +22020,3039,179816.337000001,373484.613000002,27.1999999999971 +22021,3037,179816.729000006,373484.919000003,27.1999999999971 +22022,3038,179816.535999998,373484.925000001,27.1999999999971 +22023,3016,179816.619100001,373485.022500001,21.3800000000047 +22024,3015,179816.597000003,373485.264100004,21.3800000000047 +22025,3014,179816.558699999,373485.251000002,21.3800000000047 +22026,3035,179816.422000002,373485.351000004,27.1999999999971 +22027,3013,179816.395999998,373485.251000002,21.3899999999994 +22028,3012,179816.201299999,373485.359700006,21.3899999999994 +22029,3018,179816.284400001,373484.849199999,21.3800000000047 +22030,3034,179816.197999999,373485.590000007,27.1999999999971 +22031,21958,179816.111801423,373486.384201426,27.1999999999971 +22032,3036,179816.684999999,373485.400000002,27.1999999999971 +22033,21960,179816.07557378,373486.717989363,27.1999999999971 +22034,3017,179816.501800001,373485.026099999,21.3800000000047 +22035,3103,179814.058200002,373504.686000004,21.3600000000006 +22036,23180,179804.4916321,373505.924053069,21.2844999999943 +22037,23178,179804.380774312,373506.934167776,21.2805999999982 +22038,23181,179804.214583825,373508.448463302,21.274900000004 +22039,23175,179804.130982541,373509.210222058,21.272100000002 +22040,23172,179804.050039697,373509.947757568,21.2692999999999 +22041,23173,179803.975657638,373509.708473306,27.1999999999971 +22042,23174,179803.752031129,373511.746053413,27.1999999999971 +22043,23182,179803.850380704,373511.767011598,21.2624000000069 +22044,23183,179803.632581729,373513.751553699,21.2548999999999 +22045,3060,179807.500900004,373512.500599999,21.2799999999988 +22046,3061,179807.500500005,373517.500300001,21.2899999999936 +22047,3175,179803.198700003,373517.704999998,21.2400000000052 +22048,21895,179803.528404608,373513.783633512,27.1999999999971 +22049,3117,179803.100499999,373517.682500001,27.1999999999971 +22050,23193,179802.898763359,373520.437776722,21.2317999999941 +22051,23192,179802.784694932,373520.559967972,27.1999999999971 +22052,3179,179796.337500002,373521.324000001,28.0130000000063 +22053,23190,179802.570306931,373522.513371065,27.1999999999971 +22054,23188,179802.38604489,373524.192280497,27.1999999999971 +22055,23185,179802.192740262,373525.95358175,27.1999999999971 +22056,12081,179795.695893537,373529.60115876,28.0170000000071 +22057,23186,179802.082646348,373526.956705965,27.1999999999971 +22058,21896,179801.972552434,373527.959830172,27.1999999999971 +22059,23196,179801.810276214,373529.438415088,27.1999999999971 +22060,3120,179801.212000001,373530.964000005,27.1999999999971 +22061,23198,179801.729138106,373530.177707542,27.1999999999971 +22062,3118,179801.648000002,373530.917000003,27.1999999999971 +22063,3160,179801.7443,373530.956300005,21.1999999999971 +22064,23197,179801.866763659,373529.840511657,21.2033999999985 +22065,3064,179807.500500005,373532.500500008,21.3000000000029 +22066,3063,179807.500400003,373527.500700004,21.3000000000029 +22067,23195,179802.031666752,373528.338049863,21.207899999994 +22068,23184,179802.185123015,373526.939882252,21.2121000000043 +22069,23194,179802.234499712,373526.490002271,21.213499999998 +22070,23187,179802.381299455,373525.152483381,21.2174999999988 +22071,3062,179807.500999998,373522.500200003,21.2899999999936 +22072,23189,179802.552519612,373523.592465762,21.2222000000038 +22073,23191,179802.71388543,373522.122232739,21.2266999999993 +22074,21918,179812.33843638,373519.716837801,21.2801999999938 +22075,21919,179812.441034112,373518.818580579,21.2707999999984 +22076,21915,179812.543631844,373517.920323346,21.2614000000031 +22077,21916,179812.660615921,373516.896111675,21.2507000000041 +22078,3095,179812.777599998,373515.871900003,21.2400000000052 +22079,21914,179812.76426224,373516.689827837,27.1999999999971 +22080,21923,179812.736145854,373516.941803087,27.1999999999971 +22081,21917,179812.562943574,373518.494018413,27.1999999999971 +22082,21920,179812.389799062,373520.045716029,27.1999999999971 +22083,21924,179812.925843593,373515.241757672,27.1999999999971 +22084,21925,179812.932362631,373514.457399689,21.2467999999935 +22085,21928,179813.036091726,373513.509335861,21.2513000000035 +22086,21921,179812.125760172,373521.578847222,21.2997000000032 +22087,21910,179811.181270871,373530.486782089,21.3300000000017 +22088,3093,179811.038200002,373531.8884,21.3300000000017 +22089,3087,179811.033900008,373532.500799999,21.3000000000029 +22090,3164,179801.650400002,373531.694700003,21.2400000000052 +22091,3165,179801.2524,373535.207800001,21.4700000000012 +22092,3078,179810.435900006,373536.9881,21.4700000000012 +22093,3079,179810.525300004,373536.7914,21.4700000000012 +22094,3135,179810.534000006,373537.013999999,27.1999999999971 +22095,3136,179810.809999999,373536.794000003,27.1999999999971 +22096,3080,179810.797300003,373536.692200001,21.4700000000012 +22097,3081,179810.999400005,373536.7128,21.4700000000012 +22098,3077,179810.391800005,373537.477300003,21.3300000000017 +22099,3169,179801.186600003,373535.944899999,21.4700000000012 +22100,3170,179801.027000003,373536.674200006,21.3600000000006 +22101,3172,179799.4441,373542.265000004,21.3000000000029 +22102,3227,179800.227500003,373542.968199998,21.3000000000029 +22103,3228,179800.3193,373543.048500001,21.4799999999959 +22104,3271,179800.224000007,373543.098000001,25 +22105,3272,179800.240000002,373543.25,25 +22106,3270,179800.105000004,373542.994000003,25 +22107,3269,179799.651999999,373543.074000001,25 +22108,3268,179799.618000004,373543.068999998,25 +22109,3267,179799.558000006,373543.015999999,25 +22110,3132,179799.330999997,373542.392000005,27.1999999999971 +22111,3131,179799.983000003,373536.545000002,27.1999999999971 +22112,3171,179800.070700001,373536.656100005,21.3300000000017 +22113,21897,179800.226250004,373536.557,27.1999999999971 +22114,3130,179800.955999997,373536.592999998,27.1999999999971 +22115,3127,179800.596000005,373535.692000002,27.1999999999971 +22116,3129,179801.085000005,373535.949000001,27.1999999999971 +22117,3128,179801.049000002,373535.788000003,27.1999999999971 +22118,3168,179801.135100003,373535.715,21.4700000000012 +22119,23201,179801.025707014,373535.68649184,21.4570999999996 +22120,3167,179800.710700005,373535.604400001,21.4199999999983 +22121,23200,179800.904942915,373535.527614739,21.4401999999973 +22122,3125,179800.910999998,373535.432,27.1999999999971 +22123,3166,179801.1921,373535.414099999,21.4700000000012 +22124,3124,179801.153999999,373535.188000005,27.1999999999971 +22125,3126,179800.645000003,373535.375000004,27.1999999999971 +22126,3121,179801.151999999,373531.470000003,27.1999999999971 +22127,3123,179801.548999995,373531.701000001,27.1999999999971 +22128,3122,179801.423000004,373531.454,27.1999999999971 +22129,3163,179801.4703,373531.357700001,21.2400000000052 +22130,3162,179801.232000005,373531.343700003,21.2400000000052 +22131,3161,179801.293699998,373531.1241,21.2400000000052 +22132,3180,179796.094000001,373532.706999999,28.0320000000065 +22133,3119,179801.364000004,373531.052000009,27.1999999999971 +22134,23199,179801.408595286,373531.081313875,21.229800000001 +22135,3182,179795.527000003,373531.780000001,28.0179999999964 +22136,3275,179799.909000006,373544.697000001,25 +22137,3233,179799.686500009,373544.7788,21.6199999999953 +22138,3106,179797.148000002,373510.868000001,28.0080000000016 +22139,3173,179794.932000004,373510.784000006,28.6900000000023 +22140,12080,179797.599999998,373506.759000003,28.0124999999971 +22141,23479,179798.278000005,373500.595500004,28.0191999999952 +22142,3114,179804.179000001,373504.166000001,27.1999999999971 +22143,3113,179804.234000001,373503.634,27.1999999999971 +22144,23169,179804.859813727,373501.758482564,27.1999999999971 +22145,23165,179805.045627449,373500.052965127,27.1999999999971 +22146,3111,179804.673999999,373503.464000002,27.1999999999971 +22147,3112,179804.562000003,373503.660000004,27.1999999999971 +22148,3155,179804.626699999,373503.748300005,21.3300000000017 +22149,3156,179804.3182,373503.791900001,21.3300000000017 +22150,23171,179804.487068627,373504.150859147,21.2899999999936 +22151,3116,179804.552999999,373504.447999999,27.1999999999971 +22152,3115,179804.392000001,373504.144000001,27.1999999999971 +22153,3157,179804.291099999,373504.053900003,21.2899999999936 +22154,23179,179804.408664409,373505.76311833,27.1999999999971 +22155,23176,179804.264328822,373507.078236658,27.1999999999971 +22156,23177,179804.119993232,373508.393354982,27.1999999999971 +22157,20981,179796.33006556,373556.913011618,25 +22158,20984,179795.807096235,373558.557092514,25 +22159,20986,179795.341599256,373560.020495158,25 +22160,20983,179796.359924056,373557.14901679,21.8549000000057 +22161,20979,179796.680761304,373556.140384518,21.8472000000038 +22162,20978,179796.934557322,373555.012645159,25 +22163,23473,179797.323848221,373553.78881482,25 +22164,20970,179797.713139117,373552.564984478,25 +22165,20977,179797.787762396,373552.330388106,25 +22166,3194,179802.500700004,373567.500100002,21.7899999999936 +22167,3196,179807.500800002,373567.500600003,21.5399999999936 +22168,12888,179811.191992089,373565.332275748,21.7660000000033 +22169,3213,179811.320099998,373566.727400005,21.7899999999936 +22170,3251,179811.413000003,373566.645,25.0200000000041 +22171,12889,179811.285935737,373565.261263136,25.0200000000041 +22172,12887,179811.179832712,373564.105795357,25.0200000000041 +22173,12886,179811.06388418,373563.937151492,21.7421000000031 +22174,12885,179811.068398394,373562.89226944,25.0200000000041 +22175,8860,179810.936213408,373562.54678781,21.718200000003 +22176,12892,179810.848248933,373561.588834707,21.7017999999953 +22177,12890,179810.942797963,373561.524473857,25.0200000000041 +22178,12893,179810.826199099,373560.254705768,25.0200000000041 +22179,23437,179814.680709612,373561.979571097,28.1958000000013 +22180,43,179815.188000001,373561.789000001,25.0200000000041 +22181,3249,179817.530000001,373562.063000005,25.0200000000041 +22182,3246,179818.153000001,373562.104000002,25.0200000000041 +22183,12870,179817.508956399,373562.261437833,25.0200000000041 +22184,12871,179818.115619428,373562.454155494,25.0200000000041 +22185,12869,179817.445825584,373562.856751326,25.0200000000041 +22186,12846,179818.078238845,373562.804310996,25.0200000000041 +22187,12848,179818.189450108,373562.704341877,21.8859999999986 +22188,3209,179818.241599999,373562.215800002,21.929999999993 +22189,3208,179820.414700005,373562.487,21.929999999993 +22190,3245,179820.525000002,373562.400000002,25.0200000000041 +22191,23436,179821.109616958,373561.373320617,28.1729999999952 +22192,12844,179820.341595218,373564.045948416,25.0200000000041 +22193,23435,179820.289783303,373564.510929409,25.0200000000041 +22194,23434,179820.237971384,373564.975910392,25.0200000000041 +22195,12842,179820.17327014,373565.556565437,25.0200000000041 +22196,12841,179820.032127559,373566.823235795,25.0200000000041 +22197,8853,179820.052605048,373565.736600168,21.6339000000007 +22198,12856,179820.127755422,373565.062167492,21.6953000000067 +22199,12855,179817.921706252,373565.212575004,21.6600000000035 +22200,8854,179817.815074999,373566.2115,21.570000000007 +22201,8855,179819.940202523,373566.745350081,21.5418999999965 +22202,12859,179817.743987501,373566.877450004,21.5099999999948 +22203,3207,179819.827800002,373567.754099999,21.4499999999971 +22204,3244,179819.938999999,373567.659000006,25.0200000000041 +22205,3243,179820.138000004,373567.668000001,25.0200000000041 +22206,3206,179820.024600003,373567.763000004,21.4499999999971 +22207,12839,179820.064260896,373568.227917295,25.0200000000041 +22208,3290,179820.452,373567.585000001,28.1499999999942 +22209,22793,179819.953652237,373569.067793235,25.0200000000041 +22210,12840,179819.957819507,373568.270078409,21.4667999999947 +22211,22794,179819.852009755,373569.073514204,21.4934000000067 +22212,12838,179819.843043573,373569.907669175,25.0200000000041 +22213,22792,179819.744888317,373570.652983706,25.0200000000041 +22214,12836,179819.746200003,373569.876949999,21.5200000000041 +22215,12837,179819.607000005,373570.933925003,21.554999999993 +22216,8852,179819.467799999,373571.990900002,21.5899999999965 +22217,3296,179816.857000005,373567.461399999,21.4499999999971 +22218,3210,179817.672900002,373567.543400001,21.4499999999971 +22219,3248,179816.967000004,373567.372000005,25.0200000000041 +22220,3247,179817.584000003,373567.434,25.0200000000041 +22221,12860,179817.626665398,373567.034339968,25.0200000000041 +22222,12861,179817.065804452,373566.440289851,25.0200000000041 +22223,8859,179816.974185821,373566.35621975,21.5498999999982 +22224,12862,179817.138803154,373565.751923755,25.0200000000041 +22225,12863,179817.032778725,373565.803629614,21.5997999999963 +22226,8856,179817.091371644,373565.25103949,21.6497999999992 +22227,12874,179814.894831326,373565.35434847,21.630799999999 +22228,8858,179814.819094904,373566.0401714,21.5714000000007 +22229,12881,179814.739673931,373565.848148666,25.0200000000041 +22230,12882,179814.687315781,373566.322199829,25.0200000000041 +22231,12883,179814.741697453,373566.741035696,21.5106999999989 +22232,12884,179814.634475697,373566.800614487,25.0200000000041 +22233,3250,179814.577,373567.320999999,25.0200000000041 +22234,3295,179814.664300002,373567.441900004,21.4499999999971 +22235,3299,179807.500500005,373572.500500001,21.2899999999936 +22236,12824,179819.156266578,373574.356439061,21.6683000000048 +22237,12828,179819.011338215,373575.456910733,21.7048000000068 +22238,3197,179802.500200003,373572.500399999,21.9600000000064 +22239,12825,179819.312033288,373573.173669532,21.6291999999958 +22240,3292,179814.189000003,373566.357000005,28.1900000000023 +22241,12872,179814.830890536,373565.022272613,25.0200000000041 +22242,23441,179814.419046115,373564.309021886,28.1926999999996 +22243,12877,179814.89014028,373564.485824872,25.0200000000041 +22244,23442,179814.951798193,373563.927573517,25.0200000000041 +22245,12880,179815.013456106,373563.369322162,25.0200000000041 +22246,23440,179815.071401611,373562.844682973,25.0200000000041 +22247,23438,179815.129347119,373562.32004378,25.0200000000041 +22248,23439,179815.199866936,373562.592131387,21.8701000000001 +22249,3212,179815.276300002,373561.900000002,21.929999999993 +22250,3211,179817.420100003,373562.150800005,21.929999999993 +22251,12868,179817.337917913,373562.925859872,21.8598999999958 +22252,12878,179815.123433866,373563.284262765,21.8101000000024 +22253,12851,179817.255735818,373563.700919747,21.7899000000034 +22254,12866,179817.391673692,373563.367395002,25.0200000000041 +22255,12867,179818.044948407,373563.11615289,25.0200000000041 +22256,12852,179818.011657972,373563.427994791,25.0200000000041 +22257,12847,179818.137300216,373563.19288376,21.8420000000042 +22258,12850,179818.082818858,373563.703266881,21.7960000000021 +22259,12849,179817.991206605,373563.619569093,25.0200000000041 +22260,12853,179817.923716258,373564.251772139,25.0200000000041 +22261,12865,179817.339345414,373563.860842273,25.0200000000041 +22262,12876,179817.269359756,373564.520795885,25.0200000000041 +22263,12857,179817.823686592,373565.188781139,25.0200000000041 +22264,8857,179818.028337501,373564.213649999,21.75 +22265,12854,179817.738690257,373565.98496826,25.0200000000041 +22266,12864,179817.199374095,373565.180749495,25.0200000000041 +22267,12875,179817.173553728,373564.475979615,21.7198000000062 +22268,12873,179814.970567737,373564.668525551,21.6901999999973 +22269,12879,179815.047000799,373563.976394162,21.7501999999949 +22270,12843,179820.202905796,373564.387734815,21.7568000000028 +22271,12845,179820.308802903,373563.437367409,21.8433999999979 +22272,12858,179817.684925247,373566.488601834,25.0200000000041 +22273,3291,179821.309,373559.490000002,28.179999999993 +22274,9485,179792.607501533,373568.793230742,21.5576000000001 +22275,20990,179793.052919447,373567.422620352,21.6223000000027 +22276,21000,179792.271300763,373569.827765375,21.508799999996 +22277,3300,179791.935100008,373570.862300005,21.4600000000064 +22278,3306,179791.871000003,373570.736000005,25 +22279,3313,179791.739999998,373570.798300002,21.4600000000064 +22280,21003,179791.631515753,373571.131108727,21.4927000000025 +22281,21002,179791.58666452,373570.946063083,25 +22282,21004,179791.488594979,373571.246920493,25 +22283,24327,179820.557785314,373592.253245041,28.4339000000036 +22284,3364,179817.896000002,373584.692000005,25.0200000000041 +22285,3226,179810.101400003,373543.989800002,21.2599999999948 +22286,3264,179809.856000002,373544.114,25.0200000000041 +22287,3265,179810.094000001,373544.091000002,25.0200000000041 +22288,3263,179809.831000004,373544.329999998,25.0200000000041 +22289,3262,179809.561000004,373545.438000005,25.0200000000041 +22290,3260,179809.731000002,373545.744000003,25.0200000000041 +22291,3220,179809.945200004,373545.878900003,21.4499999999971 +22292,3219,179809.934500001,373545.975500003,21.4499999999971 +22293,8863,179809.74682828,373545.955827501,21.4499999999971 +22294,3256,179809.609000001,373546.040000003,25.0200000000041 +22295,3218,179809.550999999,373545.9353,21.4499999999971 +22296,3222,179809.522200003,373545.732700005,21.4499999999971 +22297,3221,179809.695599999,373545.839699998,21.4499999999971 +22298,3261,179809.611000001,373545.670000006,25.0200000000041 +22299,12902,179809.971870232,373550.951017253,25.0200000000041 +22300,3102,179814.240400001,373504.924400005,21.3600000000006 +22301,18277,179981.028384723,372093.508398522,27.1999999999971 +22302,24930,179981.088776868,372092.960543677,27.1999999999971 +22303,24932,179981.116298757,372092.710875347,27.1999999999971 +22304,12386,179981.149168998,372092.412688833,27.1999999999971 +22305,18279,179981.177135494,372092.15898728,27.1999999999971 +22306,12388,179981.299788956,372091.046320945,27.1999999999971 +22307,18281,179981.330392718,372090.768695086,27.1999999999971 +22308,18283,179981.390400816,372090.22432407,27.1999999999971 +22309,12136,179981.450408913,372089.679953057,27.1999999999971 +22310,12272,179990.333306339,372010.313035965,27.5421999999962 +22311,12274,179990.222114928,372011.320357431,27.5418999999965 +22312,18449,179990.360226389,372008.850902032,27.1999999999971 +22313,12296,179988.049908236,372029.80943254,27.1999999999971 +22314,18410,179988.093867961,372029.410629503,27.1999999999971 +22315,18412,179988.131676227,372029.067632552,27.1999999999971 +22316,18409,179988.169484492,372028.724635601,27.1999999999971 +22317,18411,179988.281424705,372028.901724309,27.5359999999928 +22318,18414,179988.23952153,372028.089258876,27.1999999999971 +22319,12297,179988.190808952,372029.722639464,27.5356999999931 +22320,18399,179987.778973993,372033.453575365,27.5344000000041 +22321,18395,179987.716304827,372034.021313988,27.5341999999946 +22322,12305,179987.590966512,372035.156791233,27.5338999999949 +22323,12306,179987.38895198,372036.986901242,27.5332000000053 +22324,12302,179987.348917194,372037.349588323,27.5331000000006 +22325,12307,179987.226162508,372038.461659666,27.5328000000009 +22326,12123,179987.176870376,372037.729640651,27.1999999999971 +22327,18389,179987.133938532,372038.119118806,27.1999999999971 +22328,18386,179987.091006681,372038.508596964,27.1999999999971 +22329,12308,179987.005142979,372039.287553281,27.1999999999971 +22330,18391,179987.267031219,372036.911700584,27.1999999999971 +22331,12304,179987.314206872,372036.483722638,27.1999999999971 +22332,12303,179987.451543365,372035.237804621,27.1999999999971 +22333,18394,179987.479530178,372034.983907964,27.1999999999971 +22334,18393,179987.588879857,372033.991886605,27.1999999999971 +22335,18398,179987.62321398,372033.680407099,27.1999999999971 +22336,18400,179987.640381042,372033.524667349,27.1999999999971 +22337,18397,179987.6575481,372033.368927602,27.1999999999971 +22338,219,180031.256000001,371399.739,26.75 +22339,25176,180028.648698773,371394.188012883,29.0347000000038 +22340,25175,180031.831096981,371394.397128087,26.75 +22341,6642,180030.952175204,371402.561111256,26.75 +22342,20207,180031.060370754,371402.490350414,25.1827000000048 +22343,221,180031.3519,371399.782499999,25.193299999999 +22344,201,180037.500600003,371402.500599999,24.5200000000041 +22345,200,180037.500399999,371397.500600006,24.5899999999965 +22346,225,180042.500300001,371397.500300009,23.9600000000064 +22347,25172,180035.034233909,371394.607606024,25.1245000000054 +22348,25173,180052.412568126,371395.749535333,24.6208000000042 +22349,25174,180031.910499793,371394.402345635,25.5295000000042 +22350,227,180031.931000005,371394.403700002,25.2143999999971 +22351,25171,180058.379987065,371396.141654074,24.4478999999992 +22352,19700,180058.259985186,371396.642984733,24.4622999999992 +22353,244,180058.481199998,371396.148300003,27.0359999999928 +22354,19701,180058.344437499,371396.719656259,27.046199999997 +22355,14833,180058.207674999,371397.291012499,27.0565000000061 +22356,19702,180058.530292422,371396.863940999,28.2884999999951 +22357,250,180058.701800004,371396.162800007,28.3332999999984 +22358,25170,180060.414497714,371396.275341656,29.1079000000027 +22359,14834,180058.358784836,371397.56508201,28.2436000000016 +22360,14832,180058.146677934,371398.432197265,28.1882000000041 +22361,14830,180057.664047074,371400.40524289,28.0620000000054 +22362,19691,180057.319748539,371401.812771447,27.9719999999943 +22363,14827,180056.975449998,371403.2203,27.8819999999978 +22364,19684,180056.687725008,371404.396550007,27.806700000001 +22365,243,180056.514999997,371405.815000001,27.6889999999985 +22366,19675,180056.406625003,371406.964187499,27.7173000000039 +22367,14837,180056.298250001,371408.113375001,27.7455999999947 +22368,12906,180056.081500001,371410.411750007,27.8022000000055 +22369,14841,180055.683305208,371409.192735199,27.6215999999986 +22370,14839,180055.868587963,371408.256895315,27.6499999999942 +22371,14838,180055.96403069,371407.774826128,27.6646000000037 +22372,14836,180055.775350265,371407.891200732,27.1999999999971 +22373,19673,180055.839933164,371407.56667031,27.1999999999971 +22374,19676,180056.058485135,371407.297748603,27.6790999999939 +22375,19677,180055.918434046,371407.172201745,27.1999999999971 +22376,19674,180056.152939584,371406.820671082,27.6935999999987 +22377,19681,180056.247394025,371406.343593568,27.7081000000035 +22378,19680,180056.052331094,371406.499366276,27.1999999999971 +22379,19672,180055.996934935,371406.777733162,27.1999999999971 +22380,19678,180055.95780782,371406.462040212,24.6820000000007 +22381,19671,180055.735675212,371407.578295872,24.6557999999932 +22382,235,180052.500300009,371407.500400007,24.5 +22383,19669,180055.528457541,371408.619601291,24.6313999999984 +22384,19664,180055.317846164,371409.677960716,24.6065999999992 +22385,19660,180055.076655421,371410.889986824,24.5780999999988 +22386,14590,180055.332180932,371410.118135862,27.1999999999971 +22387,19661,180055.242863085,371410.566959921,27.1999999999971 +22388,19662,180055.198204156,371410.791371942,27.1999999999971 +22389,14591,180055.153545234,371411.015783966,27.1999999999971 +22390,14843,180055.312960248,371411.063300982,27.5647000000026 +22391,19663,180055.400974404,371410.618752539,27.5782000000036 +22392,14842,180055.488988563,371410.1742041,27.5917000000045 +22393,19667,180055.586146884,371409.683469649,27.6065999999992 +22394,19666,180055.387577102,371409.839768976,27.1999999999971 +22395,19668,180055.415275183,371409.700585525,27.1999999999971 +22396,19665,180055.442973264,371409.561402079,27.1999999999971 +22397,14840,180055.553765595,371409.004668295,27.1999999999971 +22398,19670,180055.664557934,371408.447934519,27.1999999999971 +22399,264,180055.936999999,371411.944000006,27.8399999999965 +22400,14846,180055.738387071,371413.798911281,27.8349000000017 +22401,14593,180055.539774146,371415.653822564,27.8298000000068 +22402,12907,180055.142548285,371419.363645125,27.8196999999927 +22403,266,180056.664000001,371428.678000007,29.0200000000041 +22404,12908,180054.498663798,371425.377093568,27.8031999999948 +22405,14598,180054.161331896,371428.527546786,27.7945999999938 +22406,265,180053.824000005,371431.677999999,27.7859999999928 +22407,14871,180053.362276245,371435.471419547,27.7688999999955 +22408,284,180055.110000003,371441.479000006,28.6000000000058 +22409,12909,180052.900552489,371439.264839094,27.7516999999934 +22410,14881,180052.710042648,371440.83002552,27.7446000000054 +22411,14604,180052.519532807,371442.395211935,27.7375999999931 +22412,12910,180052.138513125,371445.525584772,27.7234000000026 +22413,272,180051.884500004,371447.612500001,27.7140000000072 +22414,64,180053.103000004,371456.105500001,28.3800000000047 +22415,274,180051.096000001,371470.732000001,28.148000000001 +22416,273,180049.945,371463.546999998,27.6420000000071 +22417,12912,180050.284965724,371460.753917385,27.6545999999944 +22418,14906,180049.404988114,371462.117390674,27.5270000000019 +22419,279,180049.291000005,371463.133500006,27.5265000000072 +22420,14908,180049.201681305,371463.943525944,27.5271000000066 +22421,14911,180049.079442147,371465.052105557,27.5277999999962 +22422,14910,180048.941327207,371464.661396224,27.1999999999971 +22423,19534,180049.00659088,371464.061034296,27.1999999999971 +22424,14614,180049.094038103,371463.25660542,27.1999999999971 +22425,19533,180048.883321296,371464.269621331,24.7995999999985 +22426,282,180049.039600004,371462.831999999,24.820000000007 +22427,298,180042.500300001,371462.500700004,24.1499999999942 +22428,19531,180048.707670528,371465.885447923,24.7767000000022 +22429,299,180037.500399999,371462.500800002,24.2100000000064 +22430,295,180037.500700004,371457.500500001,24.179999999993 +22431,296,180032.500999998,371457.500999998,24.4400000000023 +22432,297,180032.500700008,371462.500100009,24.3999999999942 +22433,66,180027.500800002,371462.500700004,24.7700000000041 +22434,20248,180025.602898993,371459.629552949,24.7909999999974 +22435,20253,180025.439667027,371461.226591777,24.783500000005 +22436,20251,180025.312756404,371462.468267661,24.777700000006 +22437,20249,180025.253702644,371463.046041436,24.7749999999942 +22438,314,180025.144200001,371464.117400002,24.7700000000041 +22439,311,180025.055,371464.007000007,26.75 +22440,315,180025.043400001,371464.1063,24.7700000000041 +22441,316,180022.048,371463.606000002,28.8300000000017 +22442,361,180020.620999999,371478.875500001,28.75 +22443,356,180017.765999999,371504.004000001,28.7100000000064 +22444,353,180019.194000002,371494.145000007,28.6699999999983 +22445,351,180023.082400002,371481.8248,24.9400000000023 +22446,20256,180021.883266706,371493.126446273,24.9832000000024 +22447,329,180027.500800002,371492.500500001,24.6499999999942 +22448,333,180027.500500005,371497.500500001,24.6100000000006 +22449,332,180032.500300005,371497.500399999,24.3000000000029 +22450,338,180027.500900004,371502.5009,24.5500000000029 +22451,336,180032.500999998,371502.500500001,24.2700000000041 +22452,341,180027.500300001,371507.500700008,24.5 +22453,340,180022.500800002,371507.500700008,24.7799999999988 +22454,345,180022.500700001,371512.500599999,24.7599999999948 +22455,20257,180020.416433558,371506.712295171,24.9928000000073 +22456,357,180019.039400004,371519.235100001,24.9600000000064 +22457,348,180022.500100005,371517.500300009,24.7200000000012 +22458,347,180027.5002,371517.5002,24.4600000000064 +22459,344,180027.500599999,371512.500399999,24.5200000000041 +22460,374,180027.500400003,371522.500399999,24.429999999993 +22461,373,180022.500400003,371522.500100002,24.6900000000023 +22462,378,180022.500400003,371527.500400007,24.6399999999994 +22463,377,180027.500400003,371527.500300009,24.3999999999942 +22464,380,180032.500200003,371527.500800002,24.1399999999994 +22465,381,180027.500500005,371532.500300001,24.3600000000006 +22466,413,180032.500500001,371532.500399999,24.1300000000047 +22467,383,180037.500300005,371532.500700001,24.3999999999942 +22468,407,180041.613400005,371530.439800009,24.6750000000029 +22469,19463,180041.509007163,371531.38659187,24.6747000000032 +22470,19464,180041.643909939,371531.075595364,27.1999999999971 +22471,23349,180041.678354971,371530.763197683,27.1999999999971 +22472,404,180041.7128,371530.450800002,27.1999999999971 +22473,23346,180041.765823778,371529.969874438,27.1999999999971 +22474,23344,180041.720753983,371529.466099627,24.6753000000026 +22475,23347,180041.792335667,371529.729411665,27.1999999999971 +22476,23342,180041.818847559,371529.488948878,27.1999999999971 +22477,23343,180041.871961001,371529.007210068,27.1999999999971 +22478,19470,180041.828107961,371528.492399257,24.6756000000023 +22479,19717,180041.916317225,371527.692341484,24.6757999999973 +22480,19468,180042.004526477,371526.892283719,24.6760999999969 +22481,19716,180042.034049422,371527.537068423,27.1999999999971 +22482,23338,180042.101627287,371526.924137354,27.1999999999971 +22483,19466,180042.136990234,371526.603395507,27.1999999999971 +22484,23334,180042.296429355,371525.157283057,27.1999999999971 +22485,19467,180042.327378441,371524.876574874,27.1999999999971 +22486,23333,180042.44113541,371525.136468533,27.5399999999936 +22487,23336,180042.473434616,371524.844425563,27.5399999999936 +22488,23337,180042.262909047,371526.747955672,27.5399999999936 +22489,23339,180042.155093521,371527.722802151,27.5399999999936 +22490,23341,180042.04747989,371528.695823111,27.5399999999936 +22491,19469,180041.924895115,371528.527097754,27.1999999999971 +22492,23345,180041.927443061,371529.781172175,27.5399999999936 +22493,23348,180041.830002356,371530.662211545,27.5399999999936 +22494,23350,180041.731793452,371531.550196812,27.5399999999936 +22495,23353,180041.594189402,371532.794385217,27.5399999999936 +22496,23351,180041.50612982,371532.325186085,27.1999999999971 +22497,23354,180041.471684784,371532.637583766,27.1999999999971 +22498,19459,180041.437239751,371532.949981444,27.1999999999971 +22499,19460,180041.335820552,371533.869798429,27.1999999999971 +22500,23355,180041.453203615,371534.069150515,27.5399999999936 +22501,23356,180041.353112828,371534.974151451,27.5399999999936 +22502,23358,180041.255675998,371535.855155807,27.5399999999936 +22503,23360,180041.113249082,371537.142951544,27.5399999999936 +22504,23364,180040.894565616,371539.120243777,27.5399999999936 +22505,23361,180040.875602353,371538.04372694,27.1999999999971 +22506,23365,180040.786969859,371538.847575463,27.1999999999971 +22507,14624,180040.756002691,371539.128430791,27.1999999999971 +22508,19452,180040.594808497,371540.590374369,27.1999999999971 +22509,412,180040.704000004,371540.843300007,27.5399999999936 +22510,23366,180040.50941262,371542.602633417,27.5390000000043 +22511,23370,180040.382311516,371543.75179952,27.5384000000049 +22512,23374,180040.292620584,371544.56272696,27.5380000000005 +22513,23376,180040.206130631,371545.344713282,27.5375000000058 +22514,23378,180040.086945649,371546.422306955,27.5369999999966 +22515,23381,180039.972896278,371547.453467734,27.5363999999972 +22516,23385,180039.873917032,371548.348374099,27.5359000000026 +22517,23382,180039.815886337,371547.654795848,27.1999999999971 +22518,23386,180039.753103469,371548.224236406,27.1999999999971 +22519,23384,180039.722442675,371548.502329651,27.1999999999971 +22520,19443,180039.617263254,371549.456306837,27.1999999999971 +22521,23388,180039.577133231,371549.820285995,27.1999999999971 +22522,19442,180039.517582234,371549.447942782,24.6693999999989 +22523,23389,180039.387369413,371550.628965795,24.6689999999944 +22524,23390,180039.478079867,371550.718699835,27.1999999999971 +22525,14626,180039.379026499,371551.617113683,27.1999999999971 +22526,19441,180039.257156592,371551.809988808,24.6686999999947 +22527,23393,180039.350804541,371551.873086773,27.1999999999971 +22528,19726,180039.273608088,371552.573258378,27.1999999999971 +22529,19727,180039.077284157,371553.441421676,24.6682000000001 +22530,23395,180039.206243169,371553.184258066,27.1999999999971 +22531,19728,180039.138878249,371553.795257755,27.1999999999971 +22532,19440,180038.884954832,371555.18583788,24.6677000000054 +22533,393,180032.500500001,371552.500399999,24.179999999993 +22534,398,180032.500900004,371557.500799999,24.2200000000012 +22535,19736,180038.716506451,371556.713655256,24.6671999999962 +22536,19438,180038.548058074,371558.241472617,24.6667000000016 +22537,19436,180038.374868151,371559.812295552,24.6662999999971 +22538,19437,180038.52742609,371559.341127548,27.1999999999971 +22539,19732,180038.480885483,371559.763250731,27.1999999999971 +22540,14628,180038.434344877,371560.185373913,27.1999999999971 +22541,19733,180038.368136216,371560.78588634,27.1999999999971 +22542,19434,180038.199109562,371561.406416103,24.6658000000025 +22543,402,180032.500200003,371562.501000006,24.2799999999988 +22544,19432,180038.046505734,371562.790524252,24.665399999998 +22545,464,180037.898900002,371564.129299998,24.6649999999936 +22546,440,180032.500900004,371567.500599999,24.3399999999965 +22547,19424,180037.630652677,371566.562171653,24.664300000004 +22548,19422,180037.488754015,371567.849122915,24.6638999999996 +22549,14636,180037.67079648,371567.110578705,27.1999999999971 +22550,19425,180037.736953486,371566.510570616,27.1999999999971 +22551,14635,180037.795244999,371567.147386923,27.5326999999961 +22552,19742,180037.870781247,371566.464008652,27.5329000000056 +22553,19740,180037.719708752,371567.830765188,27.5326000000059 +22554,19421,180037.644172497,371568.514143459,27.5323999999964 +22555,19738,180037.568636253,371569.197521728,27.5323000000062 +22556,456,180037.493099999,371569.880899999,27.5320999999967 +22557,19739,180037.412325598,371569.454768896,27.1999999999971 +22558,14637,180037.375401184,371569.789653212,27.1999999999971 +22559,19416,180037.315834932,371570.32988672,27.1999999999971 +22560,19415,180037.201361317,371570.455633745,24.6631000000052 +22561,19417,180037.286051802,371570.600003477,27.1999999999971 +22562,19412,180037.256268673,371570.870120235,27.1999999999971 +22563,19411,180037.053006966,371571.801134892,24.6627000000008 +22564,19413,180037.162802678,371571.717805956,27.1999999999971 +22565,14643,180037.137136161,371571.950587258,27.1999999999971 +22566,14642,180037.270987503,371571.890168753,27.5316000000021 +22567,19414,180037.382043749,371570.885534383,27.5319000000018 +22568,19749,180037.159931254,371572.894803125,27.5314000000071 +22569,14639,180037.048875,371573.899437498,27.5310999999929 +22570,19744,180036.937818751,371574.904071875,27.5308999999979 +22571,14640,180036.826762501,371575.908706255,27.5305999999982 +22572,19748,180036.742369637,371575.530904751,27.1999999999971 +22573,19406,180036.705753215,371575.86299574,27.1999999999971 +22574,14644,180036.667937391,371576.205964718,27.1999999999971 +22575,6608,180036.604649998,371577.917975001,27.5301000000036 +22576,14646,180036.456575003,371579.257487506,27.5298000000039 +22577,14645,180036.470514029,371577.996487129,27.1999999999971 +22578,19400,180036.335550405,371579.220533717,27.1999999999971 +22579,14647,180036.306178484,371579.48692105,27.1999999999971 +22580,14648,180036.382537503,371579.927243751,27.5296999999991 +22581,19402,180036.273673397,371579.78172449,27.1999999999971 +22582,19399,180036.241168313,371580.076527931,27.1999999999971 +22583,457,180036.308500007,371580.596999999,27.5295000000042 +22584,6609,180036.223505042,371581.372013874,27.5295000000042 +22585,19394,180036.123950742,371582.279785018,27.5295000000042 +22586,14653,180036.024396431,371583.187556162,27.5295000000042 +22587,19393,180035.945254583,371582.776507474,27.1999999999971 +22588,14654,180035.898870811,371583.201022461,27.1999999999971 +22589,19389,180035.820151128,371583.921483245,27.1999999999971 +22590,19390,180035.924842123,371584.095327314,27.5295000000042 +22591,19391,180035.777141202,371584.315120105,27.1999999999971 +22592,19756,180035.875064973,371584.549212888,27.5295000000042 +22593,14652,180035.734131269,371584.708756965,27.1999999999971 +22594,14651,180035.825287823,371585.003098458,27.5293999999994 +22595,19752,180035.725733511,371585.910869598,27.5293999999994 +22596,19387,180035.691024709,371585.103278212,27.1999999999971 +22597,19753,180035.610723216,371585.83821607,27.1999999999971 +22598,19755,180035.585263368,371586.071230493,27.1999999999971 +22599,14655,180035.530421726,371586.573153913,27.1999999999971 +22600,19382,180035.49914084,371586.859443873,27.1999999999971 +22601,19381,180035.405087955,371586.799605805,24.6432000000059 +22602,19384,180035.373276822,371587.090748705,24.642399999997 +22603,19379,180035.263548635,371588.095006477,24.6395000000048 +22604,19383,180035.443485014,371587.36881889,27.1999999999971 +22605,14659,180035.387829185,371587.878193919,27.1999999999971 +22606,14657,180035.363038041,371588.105088204,27.1999999999971 +22607,19380,180035.331515297,371588.39359168,27.1999999999971 +22608,19378,180035.29999255,371588.682095166,27.1999999999971 +22609,19385,180035.471312925,371587.114131376,27.1999999999971 +22610,19754,180035.4978108,371585.950984836,24.6456999999937 +22611,19386,180035.590533648,371585.102363847,24.6481000000058 +22612,451,180032.500200003,371582.500600006,24.4700000000012 +22613,452,180027.500700001,371587.500599999,24.2100000000064 +22614,436,180027.500400003,371592.500300001,24.2100000000064 +22615,455,180022.500500005,371587.500799999,24.3800000000047 +22616,422,180022.500500005,371592.500400003,24.3600000000006 +22617,426,180027.500599999,371597.500399999,24.25 +22618,19366,180034.414840814,371595.862577248,24.6171000000031 +22619,19373,180034.768443797,371592.626320761,24.6263999999937 +22620,19374,180034.86558174,371592.657923646,27.1999999999971 +22621,434,180034.240400001,371597.459100001,24.6125000000029 +22622,14668,180034.40467139,371596.876282033,27.1999999999971 +22623,19368,180034.453670677,371596.427829195,27.1999999999971 +22624,19367,180034.50266996,371595.979376353,27.1999999999971 +22625,14669,180034.554285664,371596.592542689,27.5292999999947 +22626,432,180034.496100005,371597.123100001,27.5292999999947 +22627,6611,180034.41044056,371597.9042207,27.5292999999947 +22628,433,180034.339800004,371597.469999999,27.1999999999971 +22629,14671,180034.292462729,371597.903217655,27.1999999999971 +22630,19365,180034.245904114,371598.329309203,27.1999999999971 +22631,19364,180034.154510472,371598.245137289,24.6101999999955 +22632,19363,180034.16698952,371599.051513765,27.1999999999971 +22633,19360,180033.99162481,371599.735821847,24.605899999995 +22634,19361,180034.089942135,371599.756630208,27.1999999999971 +22635,14675,180034.027937889,371600.324075855,27.1999999999971 +22636,14674,180034.150550641,371600.274133444,27.5292000000045 +22637,19362,180034.280495599,371599.089177076,27.5292999999947 +22638,19765,180035.079314623,371602.695245244,27.8383999999933 +22639,19358,180034.020605676,371601.459089812,27.5292000000045 +22640,19768,180033.955633197,371602.051567998,27.5292000000045 +22641,14672,180033.890660714,371602.64404618,27.5292000000045 +22642,19766,180033.831725493,371603.181471169,27.5292000000045 +22643,19352,180033.772790268,371603.718896158,27.5292000000045 +22644,14677,180033.654919814,371604.793746132,27.5292000000045 +22645,19769,180034.699801479,371606.102259394,27.8494000000064 +22646,19772,180033.583910078,371605.441277511,27.5290999999997 +22647,19343,180033.512900341,371606.088808894,27.5290999999997 +22648,19770,180033.441890609,371606.736340273,27.5290999999997 +22649,6612,180033.370880865,371607.38387166,27.5290999999997 +22650,25161,180034.41356235,371608.671922106,27.8576999999932 +22651,25166,180033.320641331,371607.842001434,27.5290999999997 +22652,25162,180033.270401794,371608.300131205,27.5290999999997 +22653,19338,180033.169922728,371609.216390748,27.5290999999997 +22654,19775,180033.069443662,371610.132650293,27.5290999999997 +22655,19776,180032.998621307,371609.744096972,27.1999999999971 +22656,19337,180032.95939064,371610.103125151,27.1999999999971 +22657,14680,180032.968964595,371611.048909836,27.528999999995 +22658,19774,180034.127323221,371611.241584815,27.8659999999945 +22659,19777,180032.917475924,371611.518430371,27.528999999995 +22660,19331,180032.865987256,371611.987950906,27.528999999995 +22661,505,180033.885000002,371613.417000003,27.8730000000069 +22662,25167,180033.490583513,371616.814220157,27.8696000000054 +22663,19326,180032.508822031,371615.244810648,27.528999999995 +22664,19323,180032.422174934,371616.034889307,27.528999999995 +22665,25168,180032.335527837,371616.824967973,27.528999999995 +22666,19322,180032.239939731,371616.687492859,27.1999999999971 +22667,25169,180032.198950198,371617.062638562,27.1999999999971 +22668,14691,180032.24888074,371617.615046639,27.528999999995 +22669,14693,180032.157960661,371617.437784266,27.1999999999971 +22670,19318,180032.058324151,371618.349680733,27.1999999999971 +22671,19317,180031.941911191,371618.494459677,24.5519000000058 +22672,19784,180032.03341502,371618.57765485,27.1999999999971 +22673,19319,180032.008505896,371618.805628974,27.1999999999971 +22674,14694,180031.958687637,371619.261577204,27.1999999999971 +22675,14692,180032.075586546,371619.19520396,27.5289000000048 +22676,19783,180032.162233643,371618.405125301,27.5289000000048 +22677,19778,180033.09616702,371620.21144031,27.866200000004 +22678,19785,180032.690694638,371623.70388801,27.8626999999979 +22679,19781,180031.822824012,371621.499981612,27.5289000000048 +22680,14687,180031.743355662,371622.224601936,27.5289000000048 +22681,19308,180031.651350621,371623.063536234,27.5289000000048 +22682,19792,180031.605348099,371623.483003378,27.5289000000048 +22683,6614,180031.559345573,371623.902470525,27.5289000000048 +22684,19787,180031.47335238,371624.686586715,27.5289000000048 +22685,19786,180031.387359176,371625.470702898,27.5289000000048 +22686,14696,180031.21537279,371627.038935263,27.5288 +22687,19798,180031.164998002,371627.498270243,27.5288 +22688,19794,180031.114623223,371627.95760522,27.5288 +22689,19800,180031.064248435,371628.416940197,27.5288 +22690,14699,180031.013873655,371628.876275182,27.5288 +22691,19799,180030.952077679,371628.474304888,27.1999999999971 +22692,14698,180030.901459072,371628.937578127,27.1999999999971 +22693,14701,180030.942636825,371629.525837593,27.5288 +22694,19302,180030.84493269,371629.454920709,27.1999999999971 +22695,19301,180030.786666702,371629.067460909,24.5213999999978 +22696,503,180030.637900002,371630.429000005,24.5175000000017 +22697,14700,180030.778339773,371630.064394534,27.1999999999971 +22698,14702,180030.747559946,371630.346098639,27.1999999999971 +22699,497,180030.871400002,371630.175400004,27.5288 +22700,6615,180030.786953535,371630.945412554,27.5288 +22701,500,180030.737300001,371630.440000005,27.1999999999971 +22702,14703,180030.684506305,371630.923153359,27.1999999999971 +22703,25145,180030.618828986,371631.524214,27.1999999999971 +22704,19300,180030.585963637,371630.904307283,24.5160999999935 +22705,25146,180030.506747872,371631.629268058,24.5139999999956 +22706,489,180027.500500005,371632.500400003,24.5500000000029 +22707,19296,180030.42753211,371632.354228832,24.5120000000024 +22708,25153,180030.361005682,371632.963060278,24.5102000000043 +22709,19294,180030.294479266,371633.571891721,24.5084000000061 +22710,14708,180030.421797048,371633.327395916,27.1999999999971 +22711,25154,180030.447469071,371633.092452642,27.1999999999971 +22712,14707,180030.506537158,371633.502347592,27.5286999999953 +22713,25151,180030.57664125,371632.863113835,27.5288 +22714,25148,180030.436433066,371634.141581349,27.5286999999953 +22715,19295,180030.392428234,371633.596171185,27.1999999999971 +22716,25149,180030.338956337,371634.085531212,27.1999999999971 +22717,19806,180030.178194169,371634.636100784,24.5053999999946 +22718,19805,180030.285484437,371634.574891236,27.1999999999971 +22719,19807,180030.259528495,371634.812432829,27.1999999999971 +22720,19292,180030.06190908,371635.700309839,24.5022999999928 +22721,14706,180030.178540643,371635.55361129,27.1999999999971 +22722,19293,180030.14781259,371635.83482594,27.1999999999971 +22723,14704,180030.11708454,371636.116040587,27.1999999999971 +22724,19290,180029.883799553,371637.330318965,24.4976000000024 +22725,490,180022.500599999,371637.500300009,24.2599999999948 +22726,514,180022.500900008,371632.5002,24.25 +22727,487,180017.500300005,371632.5002,24.4100000000035 +22728,486,180017.500600003,371627.500599999,24.4400000000023 +22729,485,180012.500600003,371627.500500008,24.5200000000041 +22730,488,180012.500799999,371632.500300001,24.4799999999959 +22731,513,180012.5009,371637.500800002,24.429999999993 +22732,20264,180006.058875803,371636.887167152,24.6251000000047 +22733,509,180006.908399999,371629.120999999,24.6699999999983 +22734,516,180003.948000003,371635.804300003,28.6100000000006 +22735,510,180005.203699999,371644.704999998,24.5800000000017 +22736,522,180001.974000003,371654.6329,28.6000000000058 +22737,20265,180004.251023665,371653.414616752,24.5296999999991 +22738,525,180007.500500005,371647.500799999,24.5399999999936 +22739,492,180007.500800002,371642.500200003,24.4600000000064 +22740,494,180012.5009,371642.500500001,24.4600000000064 +22741,491,180017.500399999,371637.500800002,24.3699999999953 +22742,493,180017.500700004,371642.500300005,24.3300000000017 +22743,495,180022.500500005,371642.500700004,24.2899999999936 +22744,524,180017.500600003,371647.500100009,24.2799999999988 +22745,527,180022.5002,371647.5009,24.2799999999988 +22746,19271,180029.008336283,371645.342316978,24.4744999999966 +22747,502,180028.836599998,371646.914000001,24.4700000000012 +22748,14717,180029.061404005,371645.777337249,27.1999999999971 +22749,19272,180029.126311105,371645.183325425,27.1999999999971 +22750,14716,180029.232769687,371645.117006931,27.5285000000003 +22751,19812,180029.308638152,371644.425211683,27.5285000000003 +22752,19811,180030.240882941,371644.804805156,27.8417000000045 +22753,14713,180029.384506606,371643.733416442,27.5286000000051 +22754,14715,180029.228161469,371644.25121896,27.1999999999971 +22755,19274,180029.284370936,371643.736805443,27.1999999999971 +22756,14712,180029.392070867,371642.75116542,27.1999999999971 +22757,19273,180029.178408843,371643.785859913,24.4790000000066 +22758,19275,180029.344297815,371642.267689817,24.4833999999973 +22759,19277,180029.439379018,371642.318214316,27.1999999999971 +22760,19279,180029.469716199,371642.040576801,27.1999999999971 +22761,19276,180029.50005338,371641.762939297,27.1999999999971 +22762,19280,180029.532512225,371640.545203529,24.4882999999973 +22763,14709,180029.6080359,371640.774713166,27.1999999999971 +22764,19810,180029.626194019,371640.608535003,27.1999999999971 +22765,19283,180029.644352149,371640.442356847,27.1999999999971 +22766,19281,180029.680668402,371640.110000525,27.1999999999971 +22767,14711,180029.753300909,371639.445287887,27.1999999999971 +22768,19284,180029.707946789,371638.939674888,24.4930000000022 +22769,25141,180029.780919429,371639.192530785,27.1999999999971 +22770,19289,180029.808537956,371638.939773683,27.1999999999971 +22771,19286,180029.84424682,371638.612976059,27.1999999999971 +22772,19285,180029.935192727,371637.780664235,27.1999999999971 +22773,19291,180029.995601922,371637.227815982,27.1999999999971 +22774,19287,180030.030609656,371637.842021801,27.5286999999953 +22775,19809,180029.707740661,371640.786054771,27.5286000000051 +22776,6616,180029.665288035,371641.173152708,27.5286000000051 +22777,19278,180029.595092673,371641.813218642,27.5286000000051 +22778,14714,180029.524897315,371642.453284577,27.5286000000051 +22779,14718,180029.145884849,371645.909253463,27.5285000000003 +22780,507,180030.045000006,371646.491999999,27.8399999999965 +22781,19813,180029.097719941,371655.126122717,27.8138000000035 +22782,14727,180028.735676624,371649.622932889,27.5286000000051 +22783,14724,180028.494524293,371651.801898029,27.5286999999953 +22784,19817,180028.373948123,371652.891380593,27.5286999999953 +22785,14725,180028.253371958,371653.980863165,27.5286999999953 +22786,19814,180028.193083875,371654.525604449,27.5286999999953 +22787,14731,180028.132795792,371655.070345733,27.5286999999953 +22788,19815,180028.072507702,371655.615087021,27.5288 +22789,14722,180028.012219619,371656.159828305,27.5288 +22790,14733,180027.818824168,371657.90727957,27.5288 +22791,19819,180028.641334835,371659.285911556,27.8012000000017 +22792,567,180031.597400006,371660.762400005,28.8699999999953 +22793,19823,180028.295737602,371662.435908109,27.7917000000016 +22794,559,180028.1435,371663.823500004,27.7875000000058 +22795,25121,180030.472289182,371670.864916593,28.8864000000031 +22796,25127,180027.743385084,371667.470405962,27.7765000000072 +22797,19824,180027.343270168,371671.117311917,27.7654000000039 +22798,25133,180030.238466892,371672.964437451,28.8898000000045 +22799,25123,180027.04506446,371673.835351449,27.7571999999927 +22800,19828,180026.231659263,371672.248326678,27.5292999999947 +22801,14747,180026.134122025,371673.1296378,27.5292999999947 +22802,25125,180026.085353404,371673.570293367,27.5292999999947 +22803,25124,180026.036584791,371674.01094893,27.5292999999947 +22804,14750,180025.939047553,371674.892260052,27.5292999999947 +22805,19834,180026.746858757,371676.553390976,27.748900000006 +22806,19839,180025.841510318,371675.773571182,27.5293999999994 +22807,6620,180025.74397308,371676.654882304,27.5293999999994 +22808,19835,180025.646561675,371677.535056487,27.5293999999994 +22809,14752,180025.535486545,371678.538691159,27.5293999999994 +22810,19843,180026.395935792,371679.751929712,27.7393000000011 +22811,565,180029.537,371679.263,28.8999999999942 +22812,560,180026.241999999,371681.155000005,27.7350000000006 +22813,25109,180029.136732861,371683.018084601,28.908500000005 +22814,25110,180025.920118358,371684.033254568,27.7360999999946 +22815,14759,180025.133947086,371682.166856226,27.5295999999944 +22816,14761,180025.034423541,371683.066114932,27.5295999999944 +22817,6621,180024.934899993,371683.965373639,27.5295999999944 +22818,25112,180024.888840616,371684.381549463,27.5295999999944 +22819,25111,180024.842781246,371684.797725286,27.5295999999944 +22820,19201,180024.750662494,371685.630076934,27.5296999999991 +22821,19847,180025.59823671,371686.911509123,27.7372999999934 +22822,25108,180028.736465715,371686.773169193,28.9170000000013 +22823,25115,180025.247641057,371690.046523374,27.7385000000068 +22824,598,180027.656000007,371696.909499999,28.9400000000023 +22825,19852,180024.897045407,371693.181537621,27.7397999999957 +22826,19854,180024.535886355,371696.411009409,27.7410999999993 +22827,594,180024.4155,371697.487500004,27.7415000000037 +22828,19856,180023.940616358,371701.73389319,27.7431999999972 +22829,600,180025.775000002,371714.556000002,28.9900000000052 +22830,25107,180029.638000004,371686.240000002,28.6826000000001 +22831,25091,180024.939000003,371729.207000006,28.7508999999991 +22832,25120,180030.472076595,371679.090377476,28.6524000000063 +22833,25132,180031.260087714,371672.335623633,28.6325999999972 +22834,25122,180030.004644595,371675.063958298,28.8932000000059 +22835,25092,180024.490530703,371727.572119862,28.9689000000071 +22836,25101,180021.823259704,371721.042314112,27.7526000000071 +22837,19881,180022.208384365,371717.409892969,27.7502999999997 +22838,19146,180021.056564402,371718.981160652,27.5310999999929 +22839,25106,180020.986596052,371719.609802525,27.5311999999976 +22840,14794,180020.91662769,371720.238444395,27.5313000000024 +22841,25102,180020.842748977,371720.902219508,27.5314000000071 +22842,19892,180020.768870264,371721.56599462,27.5314999999973 +22843,25104,180020.694991555,371722.229769729,27.5314999999973 +22844,14799,180020.621112835,371722.893544842,27.5316000000021 +22845,19891,180021.43813505,371724.674735252,27.7550000000047 +22846,19900,180020.553388499,371723.502024963,27.5317000000068 +22847,19137,180020.462791208,371723.324357588,27.1999999999971 +22848,19901,180020.437748864,371723.547104582,27.1999999999971 +22849,19136,180020.352878168,371723.406919945,24.6377999999968 +22850,19135,180020.39843519,371723.89679252,27.1999999999971 +22851,19134,180020.237394467,371724.434131913,24.6398000000045 +22852,19897,180020.363791227,371724.204944193,27.1999999999971 +22853,19899,180020.346469246,371724.359020025,27.1999999999971 +22854,19902,180020.343298111,371724.387226671,27.1999999999971 +22855,19896,180020.329147264,371724.513095867,27.1999999999971 +22856,14798,180020.269723155,371725.041662369,27.1999999999971 +22857,19895,180020.405631073,371724.829575192,27.5319000000018 +22858,19898,180020.44564762,371724.470040143,27.531799999997 +22859,19894,180020.485664167,371724.110505089,27.531799999997 +22860,6625,180020.325597979,371725.548645291,27.5320000000065 +22861,25099,180020.259429418,371726.143147297,27.5320999999967 +22862,25100,180020.166058872,371725.963737056,27.1999999999971 +22863,14801,180020.127335798,371726.308171742,27.1999999999971 +22864,19903,180020.19326086,371726.737649295,27.5320999999967 +22865,19904,180020.076333597,371726.761826873,27.1999999999971 +22866,19131,180019.978905134,371726.733359896,24.6442999999999 +22867,25096,180020.031754561,371727.158349179,27.1999999999971 +22868,25097,180019.918673292,371727.269114085,24.645399999994 +22869,586,180017.500600003,371727.500399999,24.429999999993 +22870,19129,180019.85844145,371727.804868277,24.6463999999978 +22871,19123,180019.726209588,371728.981052961,24.6487999999954 +22872,14803,180019.947667547,371727.906287707,27.1999999999971 +22873,19130,180019.987175528,371727.554871481,27.1999999999971 +22874,14802,180020.060923737,371727.926653307,27.5323000000062 +22875,25095,180020.127092302,371727.332151301,27.5322000000015 +22876,25098,180020.009465046,371727.356610335,27.1999999999971 +22877,25094,180021.147720873,371727.413865451,27.7566999999981 +22878,19125,180019.928586621,371729.115657322,27.5323999999964 +22879,19905,180020.857306704,371730.15299565,27.7584999999963 +22880,25093,180024.220515352,371730.308309931,28.9643999999971 +22881,659,180020.690000005,371731.731000002,27.7595000000001 +22882,14806,180019.706627842,371731.109881379,27.5326999999961 +22883,650,180019.619800001,371731.890000001,27.5328000000009 +22884,6627,180019.529631019,371732.700096633,27.5329000000056 +22885,19116,180019.378352359,371734.059215087,27.5331000000006 +22886,19115,180019.366121724,371733.079030737,27.1999999999971 +22887,19119,180019.279115029,371733.852939315,27.1999999999971 +22888,19117,180019.245606162,371734.150994487,27.1999999999971 +22889,19910,180019.302713037,371734.738774315,27.5332000000053 +22890,14816,180019.104634039,371735.40491559,27.1999999999971 +22891,14815,180019.227073703,371735.418333538,27.5332000000053 +22892,19907,180020.310746547,371735.308045078,27.7617999999929 +22893,19908,180019.151434377,371736.097892765,27.5332999999955 +22894,19110,180019.075795051,371736.777451996,27.5334000000003 +22895,14813,180018.924516387,371738.136570454,27.5335999999952 +22896,19911,180019.60289827,371741.984332919,27.7660999999935 +22897,664,180023.950500004,371733.044500005,28.9600000000064 +22898,75,180022.125999998,371751.533,28.9199999999983 +22899,19917,180018.946239162,371748.177814361,27.7700999999943 +22900,652,180018.791000005,371749.642000001,27.7709999999934 +22901,9796,180018.414040469,371752.941196136,27.7660999999935 +22902,25085,180021.519076075,371756.729187787,28.9199999999983 +22903,6658,180018.037080936,371756.240392271,27.7611999999936 +22904,25088,180021.312710095,371758.495993078,28.9199999999983 +22905,25086,180017.704435702,371759.151744202,27.7568000000028 +22906,12529,180016.796473529,371757.397961322,27.5371000000014 +22907,25089,180016.717108317,371758.124342017,27.5372999999963 +22908,9798,180016.637743101,371758.8507227,27.5375000000058 +22909,25087,180016.584432211,371759.33864424,27.537599999996 +22910,19065,180016.44545725,371759.441711035,27.1999999999971 +22911,19066,180016.531121328,371759.826565772,27.5377000000008 +22912,19067,180016.407533385,371759.793205857,27.1999999999971 +22913,19064,180016.332674541,371759.554847814,24.6952000000019 +22914,12531,180016.337971877,371760.437932014,27.1999999999971 +22915,19062,180016.184088238,371760.932009958,24.6959000000061 +22916,645,180012.500500001,371757.5002,24.3899999999994 +22917,647,180012.500300005,371762.500900004,24.4600000000064 +22918,19055,180016.053900171,371762.138649344,24.6965999999957 +22919,19061,180016.024735343,371762.408961553,24.6967000000004 +22920,19052,180015.901704464,371763.549265005,24.6974000000046 +22921,19050,180015.754742496,371764.911372177,24.6980999999942 +22922,19053,180015.959070265,371763.949756157,27.1999999999971 +22923,19054,180015.994718682,371763.619351204,27.1999999999971 +22924,12535,180016.028983358,371763.301771373,27.1999999999971 +22925,19058,180016.095343623,371762.68671567,27.1999999999971 +22926,9800,180016.189755164,371762.950878914,27.5385999999999 +22927,19059,180016.246109385,371762.435103647,27.5384999999951 +22928,19060,180016.128523763,371762.379187819,27.1999999999971 +22929,12533,180016.1617039,371762.071659967,27.1999999999971 +22930,19056,180016.249837887,371761.254795991,27.1999999999971 +22931,12534,180016.302463602,371761.919328388,27.5383000000002 +22932,19057,180016.363481581,371761.360868614,27.5381999999954 +22933,12532,180016.424499556,371760.802408837,27.5380000000005 +22934,19063,180016.293904882,371760.846363999,27.1999999999971 +22935,9799,180017.371790469,371762.063096132,27.7525000000023 +22936,25084,180021.106344119,371760.262798365,28.9199999999983 +22937,12538,180017.039145239,371764.97444807,27.7480999999971 +22938,667,180020.065499999,371769.174000002,28.9199999999983 +22939,25083,180021.561000001,371759.790000003,28.8114999999962 +22940,25076,180018.700386375,371780.86143969,28.9134000000049 +22941,25077,180018.352693185,371783.838219848,28.9116999999969 +22942,9807,180014.98714475,371782.933725834,27.7213000000047 +22943,682,180014.622000005,371786.129500005,27.716499999995 +22944,9809,180014.354121905,371788.474002026,27.7130000000034 +22945,9808,180013.490538474,371787.642683066,27.5445999999938 +22946,18990,180013.427686006,371788.210241143,27.5442999999941 +22947,18989,180013.36428605,371787.959567495,27.1999999999971 +22948,18992,180013.343708996,371788.142686747,27.1999999999971 +22949,18988,180013.323131941,371788.325805992,27.1999999999971 +22950,12569,180013.364833545,371788.777799219,27.5439999999944 +22951,12570,180013.240823708,371789.058282986,27.1999999999971 +22952,12571,180013.301981077,371789.345357295,27.5436999999947 +22953,18986,180013.202776436,371789.396873161,27.1999999999971 +22954,12567,180013.239128608,371789.912915368,27.5434999999998 +22955,6660,180014.086243808,371790.818504047,27.7094999999972 +22956,18983,180013.17627614,371790.480473444,27.5432000000001 +22957,12573,180013.113423679,371791.04803152,27.5429000000004 +22958,12576,180013.050571207,371791.615589596,27.5427000000054 +22959,9810,180012.987718739,371792.183147669,27.5424000000057 +22960,25070,180013.795854341,371793.360028286,27.7057000000059 +22961,25073,180012.924932826,371792.75010483,27.542100000006 +22962,18975,180012.850497369,371792.531873383,27.1999999999971 +22963,25074,180012.815381952,371792.844372381,27.1999999999971 +22964,18978,180012.682746202,371793.129243787,24.6496000000043 +22965,18979,180012.780266531,371793.156871378,27.1999999999971 +22966,18977,180012.744692001,371793.47345604,27.1999999999971 +22967,25072,180012.691789322,371793.944247369,27.1999999999971 +22968,18967,180012.525246575,371794.530863792,24.6358000000037 +22969,12577,180012.638886631,371794.415038701,27.1999999999971 +22970,18969,180012.611728579,371794.656723551,27.1999999999971 +22971,18971,180012.493293282,371794.815222364,24.6330000000016 +22972,671,180007.500500005,371792.500500001,24.320000000007 +22973,672,180007.5002,371797.500100002,24.3000000000029 +22974,18965,180012.325225379,371796.310891494,24.6183000000019 +22975,12581,180012.46687663,371795.945789326,27.1999999999971 +22976,18966,180012.427370459,371796.297362462,27.1999999999971 +22977,12578,180012.381118864,371796.708964486,27.1999999999971 +22978,9812,180012.485431381,371796.718804941,27.5402000000031 +22979,12582,180012.548217304,371796.151847783,27.5405000000028 +22980,9811,180013.505464882,371795.901552532,27.7019 +22981,12580,180012.61100322,371795.584890626,27.5408000000025 +22982,18970,180012.673789144,371795.017933469,27.5409999999974 +22983,12574,180012.736575063,371794.450976312,27.5412999999971 +22984,25067,180013.215075415,371798.443076771,27.6980999999942 +22985,18964,180012.420900911,371797.301515393,27.5399000000034 +22986,18955,180012.356370449,371797.884225842,27.5396999999939 +22987,25068,180012.291839976,371798.466936294,27.5393999999942 +22988,12579,180012.227309506,371799.049646743,27.5390999999945 +22989,18957,180012.162779033,371799.632357195,27.5387999999948 +22990,6661,180012.924685955,371800.98460101,27.694399999993 +22991,12585,180012.098248564,371800.215067644,27.5384999999951 +22992,12588,180012.033718098,371800.797778096,27.5383000000002 +22993,9813,180011.969187628,371801.380488545,27.5380000000005 +22994,18949,180011.911601674,371801.900489978,27.5377000000008 +22995,18947,180011.79959444,371801.88406397,27.1999999999971 +22996,18948,180011.770467997,371802.14326584,27.1999999999971 +22997,18946,180011.686991591,371801.990658708,24.5623999999953 +22998,18943,180011.741341569,371802.402467709,27.1999999999971 +22999,18942,180011.555278003,371803.162803635,24.550900000002 +23000,18944,180011.664773807,371803.083859123,27.1999999999971 +23001,12589,180011.624835808,371803.439275187,27.1999999999971 +23002,12586,180011.738843814,371803.460494272,27.5369999999966 +23003,18945,180011.854015715,371802.420491405,27.5375000000058 +23004,683,180012.537500005,371804.373300008,27.6892999999982 +23005,12590,180011.6236719,371804.50049714,27.536500000002 +23006,12592,180011.566085953,371805.020498566,27.5362000000023 +23007,677,180011.508499999,371805.5405,27.5359999999928 +23008,9814,180011.228170447,371808.071877182,27.534799999994 +23009,679,180011.359000005,371805.805000003,27.1999999999971 +23010,12594,180011.129950598,371807.843355451,27.1999999999971 +23011,18939,180011.101645831,371808.095245093,27.1999999999971 +23012,18938,180011.01446937,371807.975565419,24.5035000000062 +23013,18933,180011.012390025,371808.889549915,27.1999999999971 +23014,18932,180010.87442217,371809.221872818,24.4912999999942 +23015,674,180007.500900004,371807.500800002,24.3000000000029 +23016,18929,180010.735823367,371810.455290668,24.4790999999968 +23017,675,180007.500599999,371812.500700004,24.3399999999965 +23018,703,180002.500800002,371812.500600003,24.2599999999948 +23019,751,180002.500599999,371817.500500001,24.2200000000012 +23020,713,179997.500799999,371817.500600003,24.429999999993 +23021,18896,180009.52469781,371821.233333707,24.3730999999971 +23022,18900,180009.707604397,371819.605612244,24.3891000000003 +23023,18908,180009.883546494,371818.039869115,24.4045000000042 +23024,18910,180010.06443923,371816.430069342,24.4204000000027 +23025,18909,180010.042482067,371817.52095047,27.1999999999971 +23026,12607,180010.108906519,371816.929826222,27.1999999999971 +23027,12603,180009.976057604,371818.112074718,27.1999999999971 +23028,18902,180009.887203988,371818.902800381,27.1999999999971 +23029,18903,180009.999717794,371819.164810561,27.5295000000042 +23030,18905,180009.842777185,371819.298163213,27.1999999999971 +23031,18906,180009.965899281,371819.470191948,27.5292999999947 +23032,18907,180009.820563782,371819.495844632,27.1999999999971 +23033,18901,180009.798350375,371819.693526052,27.1999999999971 +23034,12609,180009.704882026,371820.5253192,27.1999999999971 +23035,9818,180009.871471263,371820.322877347,27.5289000000048 +23036,18904,180009.935594529,371819.743843954,27.5292000000045 +23037,18898,180009.776826266,371821.177522149,27.5285000000003 +23038,12610,180009.682181273,371822.032166958,27.5280999999959 +23039,12612,180009.60093018,371822.765864674,27.5277999999962 +23040,12614,180009.513215095,371823.557932332,27.5274000000063 +23041,18894,180009.394001707,371823.291903883,27.1999999999971 +23042,12613,180009.305200685,371824.082161553,27.1999999999971 +23043,12615,180009.260800172,371824.477290392,27.1999999999971 +23044,18893,180009.329593293,371822.969606947,24.3559999999998 +23045,18895,180009.438402221,371822.896775045,27.1999999999971 +23046,12611,180009.482802734,371822.501646202,27.1999999999971 +23047,18897,180009.59384238,371821.513482701,27.1999999999971 +23048,18899,180009.63379401,371821.157945354,27.1999999999971 +23049,702,179997.500500001,371812.500399999,24.4499999999971 +23050,704,179992.501000002,371812.500900004,24.2799999999988 +23051,712,179992.500200003,371817.500399999,24.2899999999936 +23052,715,179992.500300005,371822.500800006,24.3099999999977 +23053,718,179992.500500001,371827.500300001,24.4100000000035 +23054,750,179987.500500005,371827.500500005,24.2599999999948 +23055,723,179992.500300005,371832.500800002,24.3800000000047 +23056,721,179997.500600003,371832.500600006,24.3300000000017 +23057,725,179997.500200003,371837.500399999,24.2899999999936 +23058,727,180002.5002,371837.500799999,24.3000000000029 +23059,18877,180008.047541112,371834.84643808,24.4043999999994 +23060,18868,180008.136980809,371834.012444276,24.3990999999951 +23061,18880,180008.290037673,371832.585242789,24.3901999999944 +23062,18871,180008.293696716,371833.488893572,27.1999999999971 +23063,12625,180008.239783265,371833.991617564,27.1999999999971 +23064,18872,180008.404527836,371833.635061048,27.5356000000029 +23065,12626,180008.359161042,371834.04764178,27.5359999999928 +23066,18870,180008.449894626,371833.222480312,27.5353000000032 +23067,18876,180008.300533094,371834.580823876,27.536500000002 +23068,18874,180008.199558508,371834.366699357,27.1999999999971 +23069,18878,180008.15870221,371834.747669932,27.1999999999971 +23070,18879,180008.138274066,371834.938155223,27.1999999999971 +23071,18873,180008.117845923,371835.128640514,27.1999999999971 +23072,18875,180008.241905145,371835.114005968,27.5369999999966 +23073,12628,180008.124649253,371836.180370152,27.5380000000005 +23074,12629,180007.995908573,371836.265663452,27.1999999999971 +23075,18867,180007.97664924,371836.445249975,27.1999999999971 +23076,18864,180007.870344799,371836.498731412,24.4146999999939 +23077,18865,180007.957389902,371836.624836501,27.1999999999971 +23078,12627,180007.918871239,371836.984009538,27.1999999999971 +23079,18866,180008.073810428,371836.642715286,27.5384999999951 +23080,9822,180008.022971615,371837.105060413,27.5388999999996 +23081,9823,180008.953085586,371836.566036403,27.7446000000054 +23082,18862,180007.9594508,371837.682739876,27.5393999999942 +23083,754,180008.664000005,371839.254500005,27.760500000004 +23084,9825,180008.376622003,371841.927083265,27.7762999999977 +23085,757,180007.6785,371840.237799998,27.5418000000063 +23086,9826,180007.578378547,371841.148332112,27.5426000000007 +23087,760,180007.538000003,371840.535500001,27.1999999999971 +23088,12637,180007.47647202,371841.109226801,27.1999999999971 +23089,763,180007.438600004,371840.524599999,24.4400000000023 +23090,12636,180007.557378795,371840.354799561,27.1999999999971 +23091,12630,180007.633217808,371839.647627383,27.1999999999971 +23092,18856,180007.586385965,371839.146547806,24.4312999999966 +23093,729,180002.500400003,371842.500300005,24.3000000000029 +23094,728,179997.500500001,371842.500300005,24.2599999999948 +23095,732,180002.500100005,371847.5002,24.320000000007 +23096,746,179997.500300005,371847.500400003,24.25 +23097,731,179992.500300005,371842.500799999,24.5200000000041 +23098,733,179992.500600003,371847.500500005,24.5 +23099,735,179992.500799999,371852.500599999,24.4799999999959 +23100,737,179987.500999998,371852.500900004,24.25 +23101,738,179992.500700004,371857.500100002,24.4700000000012 +23102,734,179997.500799999,371852.500500005,24.2200000000012 +23103,752,179997.500799999,371857.500700004,24.1900000000023 +23104,739,180002.500800002,371857.500399999,24.3800000000047 +23105,736,180002.500800002,371852.500800002,24.3600000000006 +23106,18824,180006.393998113,371850.265084535,24.5011999999988 +23107,18822,180006.242392562,371851.67874413,24.5099999999948 +23108,12651,180006.468300842,371850.510068856,27.1999999999971 +23109,18826,180006.493755348,371850.272714525,27.1999999999971 +23110,9829,180006.559164736,371850.417343758,27.5512000000017 +23111,18829,180006.591956887,371850.119122833,27.550900000002 +23112,9828,180007.482122,371850.245833255,27.8255999999965 +23113,18827,180006.624749046,371849.820901901,27.5507000000071 +23114,12650,180006.690333363,371849.224460047,27.5500999999931 +23115,25033,180006.75591768,371848.628018193,27.5495999999985 +23116,25031,180007.785683006,371847.422749888,27.8089000000036 +23117,12646,180006.821501996,371848.031576335,27.5489999999991 +23118,18832,180006.703245215,371848.319295131,27.1999999999971 +23119,25034,180006.669018969,371848.638442852,27.1999999999971 +23120,18831,180006.530428581,371848.992926292,24.4931999999972 +23121,12649,180006.634792723,371848.957590569,27.1999999999971 +23122,18833,180006.604583908,371849.239277139,27.1999999999971 +23123,18825,180006.551546782,371849.733829714,27.1999999999971 +23124,18828,180006.522651069,371850.00327212,27.1999999999971 +23125,18830,180006.508203212,371850.137993325,27.1999999999971 +23126,18834,180006.655107446,371847.83034699,24.4858999999997 +23127,18837,180006.782491919,371846.642538987,24.4784000000072 +23128,18840,180006.920884348,371845.352086253,24.4703000000009 +23129,18838,180006.967576046,371845.854502976,27.1999999999971 +23130,12645,180006.900072601,371846.48394892,27.1999999999971 +23131,25035,180007.002683308,371846.383863449,27.5475000000006 +23132,9827,180007.063077081,371845.834625818,27.5470000000059 +23133,18843,180007.001327772,371845.539779998,27.1999999999971 +23134,18844,180007.109960102,371845.408258699,27.5466000000015 +23135,18845,180007.018203638,371845.38241851,27.1999999999971 +23136,12643,180007.035079494,371845.225057021,27.1999999999971 +23137,18841,180007.115708515,371844.47321979,27.1999999999971 +23138,18846,180007.062990997,371844.027000036,24.4619999999995 +23139,18852,180007.202631783,371842.724906906,24.453800000003 +23140,18848,180007.233384393,371842.438151464,24.4520000000048 +23141,18853,180007.37363765,371841.13034733,24.4437999999936 +23142,18849,180007.392385744,371841.893301819,27.1999999999971 +23143,12638,180007.335315067,371842.425465785,27.1999999999971 +23144,9824,180007.487047113,371841.978925373,27.543399999995 +23145,18855,180007.532712832,371841.563628741,27.5430000000051 +23146,12640,180007.410426863,371842.675731085,27.5440999999992 +23147,12639,180007.333806608,371843.372536801,27.5446999999986 +23148,6665,180008.089244004,371844.599666521,27.792100000006 +23149,12642,180007.250609163,371844.129157338,27.5454000000027 +23150,18842,180007.203726143,371844.555524454,27.5458000000071 +23151,12644,180007.156843122,371844.981891572,27.546199999997 +23152,18847,180007.156023022,371844.09730117,27.1999999999971 +23153,12641,180007.196337525,371843.721382551,27.1999999999971 +23154,18850,180007.265826296,371843.073424168,27.1999999999971 +23155,18851,180007.303494994,371842.722176839,27.1999999999971 +23156,18854,180007.43581352,371841.488353029,27.1999999999971 +23157,12647,180006.942289535,371846.933101073,27.5479999999952 +23158,25032,180006.881895769,371847.482338704,27.5485000000044 +23159,18835,180006.835885156,371847.082474306,27.1999999999971 +23160,12648,180006.771697707,371847.680999685,27.1999999999971 +23161,18836,180006.737471461,371848.000147406,27.1999999999971 +23162,18839,180006.867978875,371846.783211615,27.1999999999971 +23163,12653,180006.425171956,371851.63591101,27.5522999999957 +23164,12654,180007.178561002,371853.068916634,27.8423000000039 +23165,12656,180006.335252166,371852.453666449,27.5531000000046 +23166,12658,180006.290292263,371852.862544164,27.5534999999945 +23167,12652,180006.245332368,371853.271421876,27.553899999999 +23168,12661,180006.179733098,371853.867999759,27.5543999999936 +23169,12660,180006.114133827,371854.464577619,27.554999999993 +23170,755,180006.875000004,371855.892000001,27.8589999999967 +23171,9831,180006.581617072,371858.466224506,27.8505000000005 +23172,18809,180005.785163615,371857.426350839,27.5568000000058 +23173,12668,180005.697849423,371858.202526506,27.5570000000007 +23174,18804,180005.654192325,371858.590614334,27.5571000000054 +23175,18799,180005.610535227,371858.978702173,27.5571000000054 +23176,18800,180005.566878136,371859.36679,27.5571999999956 +23177,9832,180005.523221038,371859.754877843,27.5573000000004 +23178,6666,180006.288234144,371861.040449005,27.8420000000042 +23179,25020,180005.987065241,371863.682989821,27.8332999999984 +23180,18784,180005.257158045,371862.120033044,27.557799999995 +23181,25023,180005.212814216,371862.51422558,27.5578999999998 +23182,9833,180005.168470383,371862.908418119,27.5580000000045 +23183,25025,180005.1152841,371863.381215211,27.5580999999947 +23184,18781,180005.048146792,371863.311288059,27.1999999999971 +23185,25026,180005.02185012,371863.541655444,27.1999999999971 +23186,18780,180004.905861914,371863.675973535,24.5381000000052 +23187,18777,180004.995553453,371863.772022832,27.1999999999971 +23188,18779,180004.94296011,371864.232757598,27.1999999999971 +23189,18775,180004.788598608,371864.7032382,24.5378000000055 +23190,25022,180004.916663438,371864.463124987,27.1999999999971 +23191,12680,180004.890366767,371864.693492372,27.1999999999971 +23192,12679,180004.95572526,371864.799606483,27.5583999999944 +23193,25021,180005.008911543,371864.326809391,27.5583000000042 +23194,18778,180005.062097825,371863.854012303,27.5581999999995 +23195,9834,180005.685896337,371866.32553063,27.8246000000072 +23196,12677,180004.856623005,371865.680571638,27.5586000000039 +23197,12675,180004.794723246,371866.230826791,27.5587999999989 +23198,9835,180004.730830397,371866.798799478,27.5589000000036 +23199,18770,180004.667731058,371867.359718274,27.5589999999938 +23200,25013,180005.384727441,371868.968071438,27.8157999999967 +23201,12683,180004.604631718,371867.920637049,27.5590999999986 +23202,25015,180004.541532379,371868.481555846,27.5592999999935 +23203,12682,180004.478433039,371869.042474631,27.5593999999983 +23204,25014,180004.409424502,371869.655922953,27.559500000003 +23205,12685,180004.340415973,371870.269371275,27.559699999998 +23206,6667,180005.083558537,371871.610612255,27.8071000000054 +23207,12691,180004.882779267,371873.372306127,27.8013000000064 +23208,9836,180004.121219702,371872.217906773,27.5601000000024 +23209,12692,180004.078042246,371872.601730924,27.5602000000072 +23210,12688,180003.991077878,371872.571555175,27.1999999999971 +23211,12690,180004.03486478,371872.985555079,27.5602999999974 +23212,18755,180003.905323714,371873.322789457,27.1999999999971 +23213,18758,180003.933579903,371872.193479758,24.5357999999978 +23214,18754,180003.75832925,371873.728732403,24.5353999999934 +23215,18763,180004.110988948,371870.639318895,24.5362000000023 +23216,18760,180004.097894881,371871.635803476,27.1999999999971 +23217,18762,180004.066704866,371871.90903813,27.1999999999971 +23218,18759,180004.035514854,371872.182272792,27.1999999999971 +23219,18761,180004.176200677,371871.729155853,27.5599999999977 +23220,12687,180004.231181648,371871.240404934,27.5598999999929 +23221,12686,180004.160274915,371871.08933416,27.1999999999971 +23222,18764,180004.242530949,371870.368744545,27.1999999999971 +23223,12684,180004.329678122,371869.605306983,27.1999999999971 +23224,18765,180004.288612969,371869.083274763,24.5366999999969 +23225,779,179997.500799999,371867.500700001,24.2100000000064 +23226,18767,180004.458716676,371867.593111057,24.5369999999966 +23227,18772,180004.641404688,371865.99270476,24.5375000000058 +23228,775,180002.500800002,371862.500700004,24.2700000000041 +23229,773,179997.5009,371862.500300005,24.2299999999959 +23230,777,179992.500500001,371867.500400003,24.3899999999994 +23231,774,179992.500300005,371862.500700004,24.4400000000023 +23232,776,179987.500300009,371867.500100005,24.2899999999936 +23233,772,179987.500599999,371862.500300005,24.2899999999936 +23234,747,179987.500599999,371857.500799999,24.2400000000052 +23235,20279,179981.579975475,371860.033961281,24.6364000000031 +23236,804,179981.442299999,371861.5055,24.6699999999983 +23237,805,179981.143100005,371861.478599999,24.6699999999983 +23238,20284,179979.449608624,371865.508337583,24.5720000000001 +23239,778,179982.500700001,371867.500500005,24.2799999999988 +23240,20285,179979.296868518,371866.907295387,24.5831000000035 +23241,811,179980.523900002,371869.337699998,24.2899999999936 +23242,810,179980.226300001,371869.301600005,24.2899999999936 +23243,20295,179980.118175004,371870.229300003,24.3699999999953 +23244,20290,179978.93891925,371870.185778864,24.6091000000015 +23245,20287,179979.094850466,371868.757593486,24.5976999999984 +23246,20286,179978.937893983,371868.812577158,27.9275999999954 +23247,20289,179978.782343283,371870.237182211,27.9315999999963 +23248,20288,179978.916649759,371870.389746737,24.6107000000047 +23249,20299,179978.835511342,371871.132899422,24.6165999999939 +23250,10786,179978.626792587,371871.661787271,27.9355000000069 +23251,20291,179978.754372925,371871.876052111,24.6224999999977 +23252,20297,179979.955987506,371871.620850001,24.4900000000052 +23253,20298,179980.037081249,371870.925075006,24.429999999993 +23254,20296,179980.303903073,371871.215988666,24.3313000000053 +23255,20300,179980.100405373,371872.95341029,24.3695000000007 +23256,780,179982.500999998,371872.500400003,24.25 +23257,60,179982.500900004,371877.500700004,24.3500000000058 +23258,20301,179979.576114815,371877.429695468,24.4677999999985 +23259,801,179978.335999999,371874.325000003,27.9429999999993 +23260,813,179979.307500005,371878.8816,24.5 +23261,817,179976.096999999,371891.887800001,28.4499999999971 +23262,819,179978.195999999,371872.221000001,28.4700000000012 +23263,749,179980.223500002,371853.7775,28.4499999999971 +23264,10787,179979.871198148,371860.264946818,27.9036000000051 +23265,740,179980.286000002,371856.465999998,27.8929999999964 +23266,20278,179981.851001211,371857.137113612,24.5703000000067 +23267,744,179982.425799999,371850.993400004,24.429999999993 +23268,743,179982.327800002,371850.983600006,24.429999999993 +23269,745,179987.500300009,371847.500900004,24.2799999999988 +23270,742,179983.595100004,371839.799400005,24.4049999999988 +23271,730,179987.500500005,371842.500400007,24.3999999999942 +23272,724,179987.500400003,371837.500399999,24.3399999999965 +23273,20277,179984.137130972,371835.015858024,24.3942999999999 +23274,79,179982.251000002,371835.334000003,28.429999999993 +23275,741,179984.862399999,371828.615200002,24.3800000000047 +23276,748,179984.2225,371818.396500003,28.3999999999942 +23277,20276,179985.788217928,371820.387753315,24.3989000000001 +23278,706,179986.4914,371814.138800003,24.4133000000002 +23279,710,179986.194000002,371801.458999999,28.3800000000047 +23280,20275,179987.523629632,371804.965770066,24.434500000003 +23281,707,179992.500700004,371807.500700001,24.2599999999948 +23282,699,179992.500799999,371802.500700001,24.2599999999948 +23283,61,179988.120400004,371799.662500005,24.4467000000004 +23284,696,179992.5009,371797.500799999,24.3000000000029 +23285,698,179997.500700004,371802.500500005,24.4900000000052 +23286,700,179997.500799999,371807.500700001,24.4799999999959 +23287,701,180002.500300001,371807.500800002,24.2799999999988 +23288,697,180002.500500005,371802.500400003,24.2599999999948 +23289,708,180002.500400003,371797.500399999,24.25 +23290,695,179997.500300005,371797.500100002,24.4700000000012 +23291,692,179997.500600003,371792.500300005,24.5 +23292,694,179992.500700004,371792.500500001,24.2700000000041 +23293,25185,179988.934900004,371792.4243,24.4633000000031 +23294,25186,179989.34215001,371788.805200003,24.4716999999946 +23295,711,179992.500500001,371787.500500005,24.320000000007 +23296,705,179989.749400005,371785.186100002,24.4799999999959 +23297,25184,179987.674125005,371787.638,28.3724999999977 +23298,25183,179987.180750001,371792.245000001,28.375 +23299,709,179988.1675,371783.030999999,28.3699999999953 +23300,25187,179989.15425,371773.817000002,28.3699999999953 +23301,631,179990.140999999,371764.603,28.3699999999953 +23302,76,179990.857000005,371755.677000005,28.5 +23303,635,179992.886000004,371736.9265,28.5 +23304,62,179994.915000003,371718.176000003,28.4900000000052 +23305,612,179996.610000003,371703.271200001,28.5200000000041 +23306,523,179998.305,371688.366300005,28.5500000000029 +23307,73,180000,371673.461500004,28.5800000000017 +23308,561,180003.499100003,371660.288900003,24.4900000000052 +23309,20266,180003.687080916,371658.570329189,24.4998999999953 +23310,533,180007.500700001,371657.500400003,24.4199999999983 +23311,537,180007.500599999,371662.500500001,24.4400000000023 +23312,536,180012.500500001,371662.500300005,24.429999999993 +23313,562,180012.500700004,371657.500100005,24.3800000000047 +23314,538,180017.500799999,371662.500500001,24.2200000000012 +23315,566,180017.500300005,371667.500200003,24.2200000000012 +23316,540,180012.500100002,371667.500300005,24.4400000000023 +23317,543,180012.500300005,371672.500800002,24.4199999999983 +23318,541,180007.500599999,371672.500599999,24.4400000000023 +23319,545,180012.500300005,371677.500300001,24.3999999999942 +23320,564,180017.500300005,371677.500800002,24.2100000000064 +23321,550,180012.5009,371682.500799999,24.3699999999953 +23322,548,180017.501000002,371682.500300005,24.2200000000012 +23323,547,180022.500300001,371682.500100002,24.4400000000023 +23324,552,180017.500300005,371687.500100002,24.2200000000012 +23325,19199,180024.475427307,371685.996876292,24.611699999994 +23326,19203,180024.615305677,371684.719357975,24.6113000000041 +23327,19204,180024.728191487,371683.688364483,24.6110000000044 +23328,19206,180024.82547982,371682.799823727,24.6107000000047 +23329,19209,180024.93236864,371681.823601089,24.6104999999952 +23330,19212,180025.044531167,371680.799213409,24.6101999999955 +23331,19210,180025.095119536,371681.25601327,27.1999999999971 +23332,19213,180025.128408484,371680.951983079,27.1999999999971 +23333,14757,180025.236607932,371681.239250027,27.5295000000042 +23334,19214,180025.281803966,371680.830875013,27.5295000000042 +23335,19215,180025.145052962,371680.799967982,27.1999999999971 +23336,14756,180025.161697444,371680.647952888,27.1999999999971 +23337,557,180025.101599999,371680.278000005,24.6100000000006 +23338,556,180025.201000005,371680.289000005,27.1999999999971 +23339,554,180025.327000007,371680.422500003,27.5295000000042 +23340,19844,180025.379121635,371679.951547787,27.5295000000042 +23341,14755,180025.231228799,371680.018972319,27.1999999999971 +23342,14754,180025.431243274,371679.480595574,27.5295000000042 +23343,14753,180025.345847942,371678.995102655,27.1999999999971 +23344,19216,180025.286408123,371678.627146408,24.603099999993 +23345,19846,180025.370850019,371678.771764129,27.1999999999971 +23346,19845,180025.483364906,371679.009643365,27.5295000000042 +23347,19217,180025.3958521,371678.5484256,27.1999999999971 +23348,19836,180025.484128505,371677.759870343,27.1999999999971 +23349,19837,180025.393969428,371677.666322976,24.599000000002 +23350,19218,180025.501530737,371676.705499552,24.5950000000012 +23351,544,180022.500900008,371672.500800002,24.3699999999953 +23352,542,180017.500799999,371672.500599999,24.2299999999959 +23353,72,180022.500500005,371667.500399999,24.3899999999994 +23354,19827,180026.187206972,371670.580492396,24.5693000000028 +23355,19231,180026.287820823,371669.681729164,24.565499999997 +23356,19832,180026.379223339,371668.865248963,24.5620999999956 +23357,19233,180026.470625855,371668.048768762,24.5586999999941 +23358,19235,180026.599790502,371666.894967072,24.5537999999942 +23359,19239,180026.738380648,371665.656969313,24.5485999999946 +23360,535,180022.500300001,371662.500100002,24.320000000007 +23361,532,180017.501000002,371657.500100005,24.2299999999959 +23362,534,180022.500400003,371657.500400003,24.3099999999977 +23363,531,180022.500300001,371652.500700001,24.3099999999977 +23364,19258,180027.968552019,371654.668097172,24.5025000000023 +23365,19261,180028.138510674,371653.149890855,24.4961999999941 +23366,19259,180028.117264457,371654.238599125,27.1999999999971 +23367,14729,180028.204995573,371653.454914812,27.1999999999971 +23368,19818,180028.260300536,371652.960886732,27.1999999999971 +23369,19262,180028.315605506,371652.466858659,27.1999999999971 +23370,19263,180028.291175194,371651.786169533,24.4903999999951 +23371,19264,180028.387294948,371651.826471359,27.1999999999971 +23372,14726,180028.42621544,371651.478802502,27.1999999999971 +23373,19265,180028.531726312,371649.637375023,24.4814000000042 +23374,19268,180028.693778805,371648.189792871,24.4753999999957 +23375,19266,180028.703369785,371649.003038708,27.1999999999971 +23376,19269,180028.781373478,371648.306247465,27.1999999999971 +23377,19270,180028.831191432,371647.861233756,27.1999999999971 +23378,14720,180028.881009389,371647.41622005,27.1999999999971 +23379,501,180028.936000004,371646.925000004,27.1999999999971 +23380,14719,180028.967351004,371646.638084315,27.1999999999971 +23381,498,180029.059000004,371646.701500002,27.5285000000003 +23382,6617,180028.976828963,371647.443967748,27.5285000000003 +23383,19267,180028.856252797,371648.533450317,27.5286000000051 +23384,14728,180028.631319456,371649.646649737,27.1999999999971 +23385,529,180017.500600003,371652.500400003,24.2400000000052 +23386,19260,180028.073398903,371654.630441289,27.1999999999971 +23387,14730,180028.029533345,371655.022283442,27.1999999999971 +23388,14723,180027.997765962,371655.306055039,27.1999999999971 +23389,19256,180027.806988094,371656.111314975,24.508600000001 +23390,19816,180027.954984222,371655.688215625,27.1999999999971 +23391,19257,180027.912202492,371656.070376214,27.1999999999971 +23392,14721,180027.885890096,371656.305419516,27.1999999999971 +23393,19254,180027.624044798,371657.745510533,24.5154999999941 +23394,19255,180027.72339626,371657.756944116,27.1999999999971 +23395,14734,180027.688950315,371658.06464275,27.1999999999971 +23396,19252,180027.722126439,371658.7810052,27.5289000000048 +23397,19251,180027.611290906,371658.758358598,27.1999999999971 +23398,19253,180027.572461199,371659.105216529,27.1999999999971 +23399,19821,180027.673777577,371659.217868019,27.5289000000048 +23400,19822,180027.553046346,371659.278645489,27.1999999999971 +23401,14732,180027.533631489,371659.45207445,27.1999999999971 +23402,6618,180027.625428714,371659.65473083,27.5289000000048 +23403,19820,180027.554762483,371660.293245267,27.5289000000048 +23404,19246,180027.484096259,371660.931759708,27.5289000000048 +23405,19249,180027.413169887,371660.528133623,27.1999999999971 +23406,19244,180027.373016015,371660.886820015,27.1999999999971 +23407,19245,180027.238848887,371662.085307892,27.1999999999971 +23408,19243,180027.133662187,371662.125999246,24.5338000000047 +23409,14735,180027.212400541,371662.321565587,27.1999999999971 +23410,14736,180027.342763804,371662.208788574,27.528999999995 +23411,14738,180027.2678819,371662.885394286,27.528999999995 +23412,14737,180027.104475137,371663.285641398,27.1999999999971 +23413,553,180027.193,371663.562000003,27.528999999995 +23414,14740,180027.105925296,371664.348775506,27.528999999995 +23415,6619,180027.018850591,371665.135550998,27.528999999995 +23416,19242,180026.959926799,371664.576862503,27.1999999999971 +23417,14739,180026.914113689,371664.986101747,27.1999999999971 +23418,19240,180026.848578941,371665.571510408,27.1999999999971 +23419,19236,180026.783044189,371666.15691907,27.1999999999971 +23420,19238,180026.895205684,371666.252761569,27.5290999999997 +23421,19237,180026.708293602,371666.824650954,27.1999999999971 +23422,25130,180026.833383232,371666.81136686,27.5290999999997 +23423,25131,180026.680134147,371667.076193675,27.1999999999971 +23424,14744,180026.771560777,371667.369972143,27.5290999999997 +23425,25128,180026.709738329,371667.928577431,27.5290999999997 +23426,19830,180026.64791587,371668.487182721,27.5290999999997 +23427,14743,180026.52427097,371669.604393296,27.5292000000045 +23428,19833,180026.44867393,371669.143781014,27.1999999999971 +23429,19232,180026.405115619,371669.532878648,27.1999999999971 +23430,14746,180026.377563279,371669.778998062,27.1999999999971 +23431,19825,180026.426733728,371670.485704426,27.5292000000045 +23432,19826,180026.290246349,371670.558982585,27.1999999999971 +23433,19226,180026.202929415,371671.338967115,27.1999999999971 +23434,19228,180026.329196498,371671.367015548,27.5292000000045 +23435,19230,180026.171401441,371671.620600123,27.1999999999971 +23436,19227,180026.115612477,371672.118951641,27.1999999999971 +23437,19829,180026.071954008,371672.508943908,27.1999999999971 +23438,19225,180025.962106671,371672.591267873,24.5776999999944 +23439,14748,180026.028295543,371672.898936171,27.1999999999971 +23440,19224,180025.96739522,371673.442946427,27.1999999999971 +23441,19223,180025.838017479,371673.699731518,24.5823999999993 +23442,25126,180025.936945066,371673.71495156,27.1999999999971 +23443,19221,180025.906494901,371673.986956682,27.1999999999971 +23444,19220,180025.700966422,371674.92398091,24.5874999999942 +23445,19222,180025.812613476,371674.825580504,27.1999999999971 +23446,14749,180025.784694258,371675.074977182,27.1999999999971 +23447,19842,180025.732267935,371675.543290928,27.1999999999971 +23448,19841,180025.601248581,371675.814740229,24.5913 +23449,19840,180025.697516367,371675.853719685,27.1999999999971 +23450,19219,180025.610338472,371676.632462192,27.1999999999971 +23451,14751,180025.572404902,371676.97131509,27.1999999999971 +23452,19229,180026.086593121,371671.479255632,24.5730999999942 +23453,19831,180026.492232248,371668.754683379,27.1999999999971 +23454,14742,180026.561386865,371668.13693919,27.1999999999971 +23455,25129,180026.584033817,371667.934638485,27.1999999999971 +23456,19234,180026.606680781,371667.732337791,27.1999999999971 +23457,14745,180026.651974693,371667.327736396,27.1999999999971 +23458,19241,180026.885344665,371664.344169494,24.5430999999953 +23459,14741,180026.991529088,371664.294565655,27.1999999999971 +23460,558,180026.969099998,371663.596000001,24.5399999999936 +23461,555,180027.068500005,371663.607000005,27.1999999999971 +23462,19247,180027.300701007,371660.633875232,24.5276000000013 +23463,19248,180027.453323755,371660.169447232,27.1999999999971 +23464,19250,180027.467470169,371659.144160025,24.5212999999931 +23465,528,180012.500399999,371652.500300001,24.3800000000047 +23466,526,180012.5009,371647.500799999,24.4499999999971 +23467,530,180007.500800002,371652.500700001,24.4199999999983 +23468,19838,180025.51548532,371677.479766212,27.1999999999971 +23469,14758,180025.028541625,371681.864073656,27.1999999999971 +23470,19211,180024.993616294,371682.183048978,27.1999999999971 +23471,19207,180024.958690967,371682.502024297,27.1999999999971 +23472,19208,180024.923765644,371682.820999619,27.1999999999971 +23473,14760,180024.888840314,371683.139974933,27.1999999999971 +23474,19205,180024.822426274,371683.74653871,27.1999999999971 +23475,14762,180024.762762245,371684.291454192,27.1999999999971 +23476,25114,180024.73797112,371684.517873161,27.1999999999971 +23477,25113,180024.713179998,371684.744292118,27.1999999999971 +23478,19202,180024.663597751,371685.197130036,27.1999999999971 +23479,19200,180024.58455376,371685.919044003,27.1999999999971 +23480,19851,180024.53024675,371686.415033486,27.1999999999971 +23481,14766,180024.444271974,371687.200246774,27.1999999999971 +23482,19850,180024.658543747,371686.462428585,27.5296999999991 +23483,14765,180024.566424992,371687.294780232,27.5296999999991 +23484,19848,180024.474306248,371688.127131872,27.5296999999991 +23485,19198,180024.389490258,371687.700571742,27.1999999999971 +23486,19849,180024.338098776,371688.169933531,27.1999999999971 +23487,19197,180024.289496686,371687.694992855,24.6122000000032 +23488,19194,180024.286707293,371688.639295314,27.1999999999971 +23489,19193,180024.121025216,371689.233653884,24.6125999999931 +23490,19196,180024.226668537,371689.18763322,27.1999999999971 +23491,25119,180024.202287056,371689.410310879,27.1999999999971 +23492,25118,180024.177905571,371689.632988542,27.1999999999971 +23493,14764,180024.129142612,371690.078343861,27.1999999999971 +23494,25116,180024.284291793,371689.844033644,27.5298000000039 +23495,25117,180024.333239645,371689.401758581,27.5298000000039 +23496,19195,180024.382187493,371688.959483523,27.5298000000039 +23497,14763,180024.197949994,371690.624186821,27.5298000000039 +23498,14769,180024.013712496,371692.28889012,27.5298999999941 +23499,14767,180023.914846003,371692.035528842,27.1999999999971 +23500,19190,180023.868260961,371692.46099313,27.1999999999971 +23501,19189,180023.765699182,371692.478869796,24.6135999999969 +23502,19187,180023.801250711,371693.073002096,27.1999999999971 +23503,19186,180023.610851802,371693.893101096,24.6140000000014 +23504,595,180017.500799999,371692.500300001,24.2400000000052 +23505,19184,180023.414114017,371695.689920206,24.614499999996 +23506,572,180017.500600003,371697.500599999,24.320000000007 +23507,593,180023.234099999,371697.334000003,24.6150000000052 +23508,14774,180023.367459517,371697.034845557,27.1999999999971 +23509,14772,180023.485670265,371695.955219015,27.1999999999971 +23510,19185,180023.523521814,371695.609518308,27.1999999999971 +23511,14771,180023.645237502,371695.618296705,27.5299999999988 +23512,14770,180023.687655423,371694.110475346,27.1999999999971 +23513,14768,180023.829475004,371693.953593414,27.5298999999941 +23514,19188,180023.715726167,371693.854103379,27.1999999999971 +23515,19853,180023.921593748,371693.121241767,27.5298999999941 +23516,19855,180023.599178124,371696.034472529,27.5299999999988 +23517,14773,180023.55311875,371696.450648353,27.5299999999988 +23518,588,180023.461000003,371697.283000004,27.5299999999988 +23519,14776,180023.383323561,371697.984856147,27.5299999999988 +23520,590,180023.333500002,371697.345000003,27.1999999999971 +23521,14777,180023.267653197,371697.946383189,27.1999999999971 +23522,19182,180023.122758161,371698.350892302,24.6153000000049 +23523,19183,180023.234149441,371698.252375204,27.1999999999971 +23524,14775,180023.200645685,371698.558367219,27.1999999999971 +23525,19178,180023.076035745,371699.696437985,27.1999999999971 +23526,19177,180022.937954664,371700.038714837,24.6157999999996 +23527,575,180017.500100002,371702.500500005,24.3300000000017 +23528,571,180012.500700004,371697.500500005,24.2799999999988 +23529,574,180012.501000002,371702.500500005,24.2400000000052 +23530,577,180017.500399999,371707.500300005,24.320000000007 +23531,19165,180022.3204237,371705.678665601,24.6174000000028 +23532,19163,180022.162399527,371707.121910702,24.6178999999975 +23533,19164,180022.292923145,371706.84865671,27.1999999999971 +23534,14782,180022.243241657,371707.302400969,27.1999999999971 +23535,14781,180022.407508198,371706.801970299,27.5302999999985 +23536,14780,180022.389329635,371705.968169883,27.1999999999971 +23537,19167,180022.5999314,371705.063303918,27.5301999999938 +23538,19864,180023.069438104,371709.523939066,27.7462999999989 +23539,19874,180022.311296593,371707.671303496,27.5302999999985 +23540,14783,180022.215084992,371708.540636685,27.5302999999985 +23541,19865,180022.131247148,371709.298165079,27.5304000000033 +23542,19869,180022.076954465,371709.788734078,27.5304000000033 +23543,6623,180022.022661783,371710.279303078,27.5304000000033 +23544,19871,180021.915746335,371711.245352305,27.5304000000033 +23545,19878,180022.709109526,371712.745984774,27.7476000000024 +23546,19879,180021.862288617,371711.728376925,27.5304000000033 +23547,14786,180021.808830891,371712.211401541,27.5304000000033 +23548,14788,180021.701915447,371713.177450769,27.5304999999935 +23549,74,180022.589000002,371713.820000004,27.7480000000069 +23550,14790,180021.648457721,371713.660475388,27.5304999999935 +23551,589,180021.594999999,371714.143500004,27.5304999999935 +23552,6624,180021.507657412,371714.928243496,27.5305999999982 +23553,19150,180021.352079257,371716.326060209,27.5307999999932 +23554,19887,180021.274290185,371717.024968565,27.5308999999979 +23555,19889,180021.235395651,371717.37442274,27.5308999999979 +23556,14796,180021.196501117,371717.723876916,27.5310000000027 +23557,19882,180021.126532763,371718.352518782,27.5310000000027 +23558,19883,180021.056377623,371718.044515632,27.1999999999971 +23559,19886,180021.028773054,371718.290053207,27.1999999999971 +23560,19145,180021.001168486,371718.535590772,27.1999999999971 +23561,19147,180020.955199257,371718.944478579,27.1999999999971 +23562,19144,180020.890721984,371718.622871194,24.6282999999967 +23563,14795,180020.867544118,371719.724154901,27.1999999999971 +23564,19143,180020.829098985,371720.066117279,27.1999999999971 +23565,19142,180020.732964627,371720.026101734,24.6310999999987 +23566,14793,180020.790653858,371720.408079661,27.1999999999971 +23567,25103,180020.744057797,371720.82254301,27.1999999999971 +23568,19140,180020.591285031,371721.28632281,24.633600000001 +23569,583,180017.500700004,371722.500400003,24.5099999999948 +23570,581,180017.500200003,371717.500900004,24.4199999999983 +23571,582,180012.500300005,371722.500199996,24.2299999999959 +23572,585,180012.500600003,371727.500399999,24.2100000000064 +23573,19132,180020.102480799,371725.634170923,24.642200000002 +23574,660,180012.500399999,371732.500600003,24.2100000000064 +23575,19120,180019.563094731,371730.431937754,24.6515999999974 +23576,19127,180019.704645917,371729.172858905,24.6490999999951 +23577,14804,180019.692865603,371730.172704082,27.1999999999971 +23578,19126,180019.777113091,371729.42333822,27.1999999999971 +23579,19906,180019.862418059,371729.710159317,27.5325000000012 +23580,6626,180019.796249494,371730.304661326,27.5326000000059 +23581,19122,180019.660606265,371730.459645003,27.1999999999971 +23582,19121,180019.609103508,371730.917752549,27.1999999999971 +23583,14805,180019.525341406,371731.662801024,27.1999999999971 +23584,661,180019.370100003,371732.148600005,24.6549999999988 +23585,14807,180019.483460359,371732.035325255,27.1999999999971 +23586,657,180019.469500005,371732.159499999,27.1999999999971 +23587,14808,180019.411181938,371732.678228449,27.1999999999971 +23588,19114,180019.272920698,371733.012991983,24.6567000000068 +23589,19118,180019.177653421,371733.860376891,24.6584000000003 +23590,19112,180018.98138281,371735.606167924,24.6618000000017 +23591,638,180012.500600003,371737.500700001,24.2599999999948 +23592,19108,180018.807800185,371737.150153391,24.6649000000034 +23593,19105,180018.647860292,371738.572789237,24.6677000000054 +23594,14814,180018.8454955,371737.709905211,27.1999999999971 +23595,19111,180018.913537826,371737.104681212,27.1999999999971 +23596,19109,180018.975064769,371736.5574104,27.1999999999971 +23597,19106,180018.759262074,371738.476935636,27.1999999999971 +23598,19107,180018.68508501,371739.136727009,27.1999999999971 +23599,19103,180018.460759576,371740.237015668,24.6708999999973 +23600,14817,180018.610907935,371739.796518393,27.1999999999971 +23601,14818,180018.742356673,371739.77313067,27.5338000000047 +23602,19104,180018.567370601,371740.183775011,27.1999999999971 +23603,19912,180018.651276816,371740.591410778,27.5338999999949 +23604,14812,180018.523833256,371740.571031637,27.1999999999971 +23605,14810,180018.560196955,371741.409690887,27.5339999999997 +23606,19913,180018.453479256,371742.368464608,27.5341000000044 +23607,14819,180018.342054881,371742.187916808,27.1999999999971 +23608,19914,180018.276390981,371742.771985162,27.1999999999971 +23609,19101,180018.2807706,371741.837984525,24.6741000000038 +23610,19100,180018.115977511,371743.30378871,24.676999999996 +23611,19916,180018.243559025,371743.064019341,27.1999999999971 +23612,14809,180018.21072707,371743.356053516,27.1999999999971 +23613,14811,180018.337989859,371743.406045027,27.5341999999946 +23614,19915,180018.395734556,371742.887254819,27.5341999999946 +23615,6628,180018.115782753,371745.402399156,27.5344999999943 +23616,19099,180017.991876736,371745.302686982,27.1999999999971 +23617,14820,180017.965552974,371745.536832009,27.1999999999971 +23618,19921,180017.916509315,371745.973066308,27.1999999999971 +23619,19098,180017.879403599,371745.408070102,24.6811000000016 +23620,19920,180017.775367927,371746.333448261,24.6830000000045 +23621,642,180012.501000002,371747.500900004,24.3300000000017 +23622,19096,180017.671332255,371747.258826412,24.6848000000027 +23623,19093,180017.520745508,371748.598267801,24.6873999999953 +23624,662,180017.373600006,371749.907099999,24.6900000000023 +23625,14824,180017.55716553,371749.169363126,27.1999999999971 +23626,14826,180017.494041383,371749.730840784,27.1999999999971 +23627,655,180017.473000001,371749.918000009,27.1999999999971 +23628,19092,180017.443189852,371750.194293369,27.1999999999971 +23629,19091,180017.331515353,371750.297158729,24.6901999999973 +23630,12521,180017.413379706,371750.470586732,27.1999999999971 +23631,9795,180017.551539969,371750.487305611,27.5351999999984 +23632,19088,180017.347289667,371751.083137833,27.1999999999971 +23633,19089,180017.437882785,371751.527539473,27.5354999999981 +23634,19090,180017.31424465,371751.38941339,27.1999999999971 +23635,19087,180017.281199623,371751.695688941,27.1999999999971 +23636,12522,180017.324225601,371752.567773346,27.5357999999978 +23637,19084,180017.267397005,371753.087890275,27.5359000000026 +23638,12524,180017.210568409,371753.608007211,27.5360999999975 +23639,9797,180017.096911225,371754.648241077,27.5363999999972 +23640,12525,180017.023734912,371754.081983369,27.1999999999971 +23641,19082,180017.102126978,371753.355411723,27.1999999999971 +23642,19081,180017.036433127,371753.032108549,24.6916999999958 +23643,19079,180016.88307688,371754.453480657,24.6925000000047 +23644,643,180012.500600003,371752.500600003,24.3000000000029 +23645,19074,180016.737397671,371755.803698637,24.6931999999942 +23646,644,180007.500700001,371752.500700004,24.2700000000041 +23647,666,180007.500100005,371757.500599999,24.2400000000052 +23648,621,180002.500700001,371752.500700004,24.4900000000052 +23649,622,180002.500300001,371757.5002,24.4900000000052 +23650,625,180002.500300001,371762.500700001,24.4799999999959 +23651,623,179997.500300005,371757.500700004,24.3600000000006 +23652,624,179997.500600003,371762.500599999,24.3500000000058 +23653,632,179993.005400002,371755.962900005,24.7599999999948 +23654,20273,179992.054738078,371764.495265935,24.6781999999948 +23655,20272,179993.389275003,371752.383900002,24.7400000000052 +23656,634,179994.540900003,371741.646899998,24.679999999993 +23657,618,179997.500700004,371747.500300005,24.3899999999994 +23658,620,179997.500500001,371752.500500001,24.3399999999965 +23659,619,180002.500300001,371747.500300005,24.4900000000052 +23660,617,179997.500799999,371742.500800002,24.3800000000047 +23661,633,180002.500599999,371742.500599999,24.5 +23662,616,180002.5002,371737.500900004,24.4700000000012 +23663,615,179997.500500001,371737.500100005,24.3899999999994 +23664,20271,179995.072509497,371736.690519966,24.6523000000016 +23665,613,179996.076400001,371727.330900002,24.6000000000058 +23666,614,180002.500700001,371732.500500001,24.3899999999994 +23667,608,180002.500900004,371727.500500001,24.3800000000047 +23668,607,180002.500800002,371722.500100005,24.4199999999983 +23669,611,179997.124400001,371718.044100005,24.5299999999988 +23670,20270,179997.513575006,371714.529825006,24.5191999999952 +23671,606,180002.500900004,371717.500900004,24.3399999999965 +23672,605,180002.500800002,371712.500700004,24.3399999999965 +23673,604,180002.500400003,371707.5009,24.3099999999977 +23674,610,179998.681100003,371703.987000003,24.486699999994 +23675,20269,179998.996140037,371701.142005958,24.477899999998 +23676,603,180002.500300001,371702.500700001,24.3899999999994 +23677,602,180002.500500005,371697.5002,24.429999999993 +23678,609,180000.2377,371689.930000003,24.443299999999 +23679,20268,180000.626875002,371686.415725008,24.4324999999953 +23680,521,180001.794400003,371675.872900002,24.3999999999942 +23681,549,180007.500300001,371682.500700008,24.4600000000064 +23682,546,180007.500300001,371677.500599999,24.4100000000035 +23683,20267,180002.213702761,371672.039724562,24.4220999999961 +23684,539,180007.500500005,371667.500200003,24.4499999999971 +23685,551,180007.500100005,371687.500100002,24.3899999999994 +23686,563,180012.500600003,371687.500600003,24.3399999999965 +23687,19191,180023.952388369,371690.773825176,24.6131000000023 +23688,568,180012.5009,371692.500599999,24.3099999999977 +23689,569,180007.5002,371692.500800006,24.4700000000012 +23690,570,180007.500300001,371697.500500005,24.4499999999971 +23691,573,180007.500599999,371702.500500005,24.4600000000064 +23692,576,180007.500599999,371707.500300005,24.4400000000023 +23693,597,180012.500600003,371707.500500001,24.2100000000064 +23694,578,180007.500800002,371712.500500001,24.4499999999971 +23695,579,180012.500799999,371712.500799999,24.1999999999971 +23696,599,180012.500600003,371717.500500005,24.1999999999971 +23697,580,180007.500999998,371717.500900004,24.4400000000023 +23698,584,180007.500500005,371722.500599999,24.4100000000035 +23699,596,180017.500600003,371712.500500001,24.3600000000006 +23700,19154,180021.315103065,371714.84805835,24.6208999999944 +23701,19152,180021.160612252,371716.222233407,24.6236000000063 +23702,19148,180021.031996444,371717.366253786,24.6258999999991 +23703,19884,180020.961359218,371717.994562495,24.6270999999979 +23704,19885,180021.083982196,371717.798978064,27.1999999999971 +23705,14797,180021.111586764,371717.553440489,27.1999999999971 +23706,19890,180021.130232256,371717.387592275,27.1999999999971 +23707,19888,180021.148877747,371717.221744053,27.1999999999971 +23708,19151,180021.18616873,371716.890047617,27.1999999999971 +23709,19153,180021.227461088,371716.522759724,27.1999999999971 +23710,19149,180021.2607507,371716.226654749,27.1999999999971 +23711,14792,180021.409914643,371714.899868999,27.1999999999971 +23712,591,180021.466000002,371714.401000004,27.1999999999971 +23713,592,180021.366599999,371714.390000001,24.6199999999953 +23714,14791,180021.485695418,371714.221120499,27.1999999999971 +23715,14789,180021.566045161,371713.487281017,27.1999999999971 +23716,19155,180021.501171999,371713.160945088,24.6196000000054 +23717,19157,180021.634651341,371711.941869523,24.6193000000058 +23718,19873,180021.724732276,371711.119154412,24.6190000000061 +23719,19880,180021.772840384,371711.598606683,27.1999999999971 +23720,19872,180021.81758856,371711.189918619,27.1999999999971 +23721,14785,180021.899469756,371710.442092296,27.1999999999971 +23722,19159,180021.814813219,371710.296439297,24.6187999999966 +23723,19160,180021.923968296,371710.218345497,27.1999999999971 +23724,19870,180021.963693429,371709.855533298,27.1999999999971 +23725,19867,180021.906243537,371709.461400159,24.6186000000016 +23726,19161,180021.997673858,371708.626361024,24.6183000000019 +23727,19876,180022.0800367,371707.874135863,24.618100000007 +23728,19162,180022.110917285,371708.510928158,27.1999999999971 +23729,19875,180022.177079469,371707.906664561,27.1999999999971 +23730,19877,180022.210160561,371707.604532763,27.1999999999971 +23731,14784,180022.082868811,371708.767096695,27.1999999999971 +23732,19868,180022.034410648,371709.209668301,27.1999999999971 +23733,19866,180022.003418557,371709.492721096,27.1999999999971 +23734,19158,180021.735707369,371711.937744934,27.1999999999971 +23735,14787,180021.700386394,371712.260333706,27.1999999999971 +23736,19156,180021.604327973,371713.137641534,27.1999999999971 +23737,601,180002.5002,371692.500700004,24.4199999999983 +23738,587,180007.500100005,371727.500600003,24.3800000000047 +23739,636,180007.500100005,371732.500799999,24.3600000000006 +23740,637,180007.5002,371737.500100005,24.3300000000017 +23741,640,180007.500700001,371742.500400003,24.3099999999977 +23742,639,180012.501000002,371742.500300001,24.2899999999936 +23743,19102,180018.415652655,371741.533278149,27.1999999999971 +23744,641,180007.500400003,371747.500399999,24.2899999999936 +23745,626,179997.500200003,371767.500600006,24.3600000000006 +23746,630,179991.3774,371770.574499998,24.6199999999953 +23747,628,179997.500200003,371772.500100002,24.429999999993 +23748,627,180002.500900004,371767.500800002,24.4600000000064 +23749,629,180002.5002,371772.501000002,24.429999999993 +23750,663,180007.500999998,371772.500399999,24.2599999999948 +23751,648,180007.500700001,371767.500300009,24.2599999999948 +23752,665,180012.5009,371767.500800002,24.5399999999936 +23753,646,180007.500800002,371762.500700001,24.25 +23754,649,180012.5009,371772.500600003,24.4600000000064 +23755,19035,180015.164388698,371770.383026764,24.7010000000009 +23756,19042,180015.289441369,371769.223984435,24.7004000000015 +23757,658,180015.373100001,371768.448600002,24.6999999999971 +23758,19044,180015.503659949,371767.238513898,24.6992999999929 +23759,12547,180015.501229391,371768.19322357,27.1999999999971 +23760,19046,180015.574634559,371767.512872692,27.1999999999971 +23761,654,180015.618000001,371768.183800001,27.5399999999936 +23762,12546,180015.691686366,371767.509394314,27.5397999999986 +23763,12545,180015.610061429,371767.184521109,27.1999999999971 +23764,12543,180015.765372735,371766.834988635,27.5396000000037 +23765,19045,180015.670738097,371766.622143496,27.1999999999971 +23766,12544,180015.834625162,371766.201164048,27.539499999999 +23767,19049,180015.710094489,371766.257371467,27.1999999999971 +23768,12542,180015.73723748,371766.005798493,27.1999999999971 +23769,19047,180015.616636477,371766.191398527,24.6987999999983 +23770,19048,180015.81319733,371765.301769715,27.1999999999971 +23771,19051,180015.851177253,371764.949755326,27.1999999999971 +23772,12540,180015.889157176,371764.597740941,27.1999999999971 +23773,12541,180015.975346982,371764.913224321,27.5390999999945 +23774,12537,180016.046816375,371764.259109188,27.5388999999996 +23775,12539,180016.118285775,371763.604994047,27.5387999999948 +23776,12536,180015.903877582,371765.567339461,27.539300000004 +23777,653,180016.706500005,371767.8858,27.7437999999966 +23778,9801,180015.523540474,371769.048324913,27.5402000000031 +23779,9802,180016.394539502,371770.616101664,27.7397000000055 +23780,19038,180015.428023156,371769.922531091,27.5405000000028 +23781,19041,180015.40708787,371770.114137843,27.5405000000028 +23782,19039,180015.380264495,371770.359634176,27.540599999993 +23783,12549,180015.332505837,371770.796737265,27.5406999999977 +23784,19032,180015.236988518,371771.67094345,27.5409000000072 +23785,6659,180016.082578998,371773.346403327,27.7356 +23786,9803,180015.1414712,371772.545149624,27.5412000000069 +23787,19028,180015.075777441,371773.146400671,27.5412999999971 +23788,12554,180015.010083683,371773.747651719,27.5415000000066 +23789,19024,180014.944389928,371774.348902766,27.5417000000016 +23790,12552,180014.87869617,371774.95015382,27.5418000000063 +23791,25078,180015.717434254,371776.542177491,27.7308000000048 +23792,25081,180014.813002419,371775.551404856,27.5420000000013 +23793,19019,180014.74730866,371776.152655903,27.542100000006 +23794,25079,180014.681614902,371776.75390695,27.542300000001 +23795,25080,180014.604346216,371776.505925074,27.1999999999971 +23796,19018,180014.555858795,371776.9553275,27.1999999999971 +23797,9804,180014.615921147,371777.355157994,27.5424999999959 +23798,12556,180014.516236484,371777.322564211,27.1999999999971 +23799,19011,180014.382367305,371778.563321762,27.1999999999971 +23800,19010,180014.255599529,371778.806078158,24.7056000000011 +23801,19015,180014.348900009,371778.87351115,27.1999999999971 +23802,19012,180014.315432712,371779.183700547,27.1999999999971 +23803,12558,180014.248498119,371779.80407932,27.1999999999971 +23804,19014,180014.413770545,371779.205307286,27.5430000000051 +23805,12557,180014.346387018,371779.82202372,27.5430999999953 +23806,9805,180015.352289502,371779.737951662,27.7260999999999 +23807,19013,180014.481154077,371778.58859086,27.5427999999956 +23808,19006,180014.256622199,371780.6435811,27.543399999995 +23809,9806,180014.076852888,371782.288889442,27.5437999999995 +23810,19002,180014.016183779,371782.844153259,27.5439999999944 +23811,19001,180013.943408616,371782.631780878,27.1999999999971 +23812,19003,180013.902583718,371783.010163713,27.1999999999971 +23813,19000,180013.849241067,371782.572384294,24.7075999999943 +23814,18996,180013.861758821,371783.388546549,27.1999999999971 +23815,18995,180013.692656718,371784.023675811,24.7084000000032 +23816,18997,180013.795267288,371784.004818849,27.1999999999971 +23817,12561,180013.740828305,371784.509382911,27.1999999999971 +23818,12560,180013.834176447,371784.509944722,27.5443999999989 +23819,18999,180013.894845553,371783.954680897,27.5442999999941 +23820,18998,180013.955514669,371783.399417084,27.5440999999992 +23821,18994,180013.62827225,371785.552601181,27.1999999999971 +23822,18993,180013.530518863,371785.526439656,24.7091999999975 +23823,12563,180013.577060424,371786.027254533,27.1999999999971 +23824,12562,180013.712838221,371785.620472364,27.5446999999986 +23825,12564,180013.652169112,371786.175736181,27.5448000000033 +23826,12565,180013.493485399,371786.801864047,27.1999999999971 +23827,681,180013.372600004,371786.990100004,24.7100000000064 +23828,678,180013.471999999,371787.000999998,27.1999999999971 +23829,676,180013.591500003,371786.730999999,27.5449999999983 +23830,12566,180013.405440167,371787.593328997,27.1999999999971 +23831,18987,180013.306989372,371787.573981799,24.7042999999976 +23832,18991,180013.265903924,371787.939609241,24.7007000000012 +23833,670,180007.500500005,371787.500700001,24.2899999999936 +23834,18985,180013.103605315,371789.383936297,24.686400000006 +23835,18980,180012.939596552,371790.84348233,24.6720999999961 +23836,12568,180013.148475863,371789.880104531,27.1999999999971 +23837,18982,180013.090741917,371790.393890195,27.1999999999971 +23838,18984,180013.061874948,371790.650783025,27.1999999999971 +23839,18981,180013.033007972,371790.907675855,27.1999999999971 +23840,12575,180012.978999477,371791.388308007,27.1999999999971 +23841,18973,180012.786801711,371792.203233469,24.6587 +23842,18974,180012.935453504,371791.775832146,27.1999999999971 +23843,12572,180012.891907532,371792.163356293,27.1999999999971 +23844,693,180002.500900004,371792.500399999,24.2700000000041 +23845,690,180002.500800002,371787.500300001,24.2899999999936 +23846,691,179997.5009,371787.500599999,24.4799999999959 +23847,688,179997.500399999,371782.500800002,24.4700000000012 +23848,689,179992.500300005,371782.500900004,24.3500000000058 +23849,685,179997.500300005,371777.500300005,24.4700000000012 +23850,687,180002.500700001,371782.500300001,24.3399999999965 +23851,686,180002.500900004,371777.500799999,24.3800000000047 +23852,668,180007.500100005,371777.5002,24.2899999999936 +23853,669,180007.500100005,371782.500700001,24.3000000000029 +23854,19004,180014.084181894,371780.394850943,24.7063999999955 +23855,19008,180014.060492642,371780.614413291,24.706600000005 +23856,19005,180014.180885047,371780.430746555,27.1999999999971 +23857,19009,180014.162427198,371780.601821836,27.1999999999971 +23858,19007,180014.143969357,371780.772897117,27.1999999999971 +23859,12559,180013.982689332,371782.267710183,27.1999999999971 +23860,19016,180014.444637518,371777.053992216,24.7045999999973 +23861,19020,180014.610671803,371775.515114624,24.703800000003 +23862,19022,180014.736850388,371774.34563683,24.7032000000036 +23863,19026,180014.840240046,371773.387376752,24.7026999999944 +23864,19030,180014.941709567,371772.446913272,24.7021999999997 +23865,19029,180014.97595451,371773.061698548,27.1999999999971 +23866,12551,180015.034288634,371772.52103265,27.1999999999971 +23867,19031,180015.085788347,371772.04371101,27.1999999999971 +23868,19033,180015.044526834,371771.493958376,24.7016000000003 +23869,19034,180015.139930069,371771.541902076,27.1999999999971 +23870,12550,180015.213829782,371770.856967587,27.1999999999971 +23871,19036,180015.262907825,371770.402091019,27.1999999999971 +23872,19040,180015.300289039,371770.055625755,27.1999999999971 +23873,19037,180015.337670252,371769.709160499,27.1999999999971 +23874,19043,180015.380775671,371769.309640814,27.1999999999971 +23875,12548,180015.412432678,371769.01622998,27.1999999999971 +23876,656,180015.472500004,371768.459500004,27.1999999999971 +23877,19027,180014.938902944,371773.405108552,27.1999999999971 +23878,12555,180014.894984335,371773.812165227,27.1999999999971 +23879,19023,180014.842207562,371774.301323161,27.1999999999971 +23880,19025,180014.815819182,371774.545902126,27.1999999999971 +23881,12553,180014.789430797,371774.790481091,27.1999999999971 +23882,19021,180014.721132219,371775.423501872,27.1999999999971 +23883,25082,180014.699037984,371775.628280841,27.1999999999971 +23884,19017,180014.652833644,371776.056522653,27.1999999999971 +23885,25188,179990.74531436,371776.247585122,24.5656000000017 +23886,20274,179990.113228712,371781.920670241,24.5112999999983 +23887,19086,180017.184510421,371751.659664113,24.6909000000014 +23888,19070,180016.597334735,371757.101862527,24.6938999999984 +23889,19068,180016.473125439,371758.253088091,24.6944999999978 +23890,12530,180016.651436195,371757.532609049,27.1999999999971 +23891,19072,180016.695064045,371757.128247235,27.1999999999971 +23892,19071,180016.747056622,371756.646357518,27.1999999999971 +23893,19073,180016.875838745,371756.671580642,27.5369000000064 +23894,19078,180016.814520564,371756.021072473,27.1999999999971 +23895,12527,180016.955203958,371755.945199944,27.5366999999969 +23896,12526,180016.842677049,371755.760105982,27.1999999999971 +23897,19077,180016.887941517,371755.340575326,27.1999999999971 +23898,19076,180017.026057594,371755.296720505,27.536500000002 +23899,19075,180016.933205981,371754.921044674,27.1999999999971 +23900,19080,180016.978470448,371754.501514021,27.1999999999971 +23901,19069,180016.598479789,371758.023431893,27.1999999999971 +23902,25090,180016.572001591,371758.268843312,27.1999999999971 +23903,12528,180016.54552339,371758.51425473,27.1999999999971 +23904,12523,180017.180519048,371752.628840081,27.1999999999971 +23905,19083,180017.141323015,371752.992125902,27.1999999999971 +23906,19085,180017.121724997,371753.173768818,27.1999999999971 +23907,651,180017.644499999,371749.636500005,27.5350000000035 +23908,14825,180017.703410346,371749.107237399,27.5348999999987 +23909,14823,180017.762320686,371748.577974789,27.5348999999987 +23910,19095,180017.591119431,371748.867349446,27.1999999999971 +23911,19094,180017.625073329,371748.565335765,27.1999999999971 +23912,14822,180017.728680294,371747.64377087,27.1999999999971 +23913,14821,180017.880141381,371747.519449584,27.5347000000038 +23914,19097,180017.770569436,371747.271174654,27.1999999999971 +23915,19918,180017.997962069,371746.460924368,27.534599999999 +23916,19919,180017.86746566,371746.409300603,27.1999999999971 +23917,19909,180019.022053629,371736.139453124,27.1999999999971 +23918,19113,180019.069042493,371735.721495848,27.1999999999971 +23919,19128,180019.800619867,371729.214249738,27.1999999999971 +23920,19124,180019.824126646,371729.005161252,27.1999999999971 +23921,19138,180020.464251172,371722.416271944,24.6358000000037 +23922,14800,180020.527147219,371722.751922663,27.1999999999971 +23923,25105,180020.565708425,371722.408927865,27.1999999999971 +23924,19139,180020.604269627,371722.065933067,27.1999999999971 +23925,19893,180020.660243679,371721.568054184,27.1999999999971 +23926,19141,180020.697461739,371721.237006366,27.1999999999971 +23927,14779,180022.79235461,371703.324637525,27.5301999999938 +23928,19166,180022.54576778,371704.539410073,27.1999999999971 +23929,19168,180022.467548706,371705.253789976,27.1999999999971 +23930,19169,180022.482370026,371704.199599199,24.6169999999984 +23931,19170,180022.623986851,371703.825030167,27.1999999999971 +23932,19171,180022.636287164,371702.793863822,24.6165999999939 +23933,19175,180022.780643757,371701.475445647,24.616200000004 +23934,19173,180022.826815866,371701.972579498,27.1999999999971 +23935,19862,180022.764510892,371702.541614879,27.1999999999971 +23936,19859,180022.746120781,371702.709572971,27.1999999999971 +23937,14778,180022.702205919,371703.110650256,27.1999999999971 +23938,19858,180022.861438051,371702.700424559,27.5301999999938 +23939,19857,180022.930521499,371702.076211594,27.5301000000036 +23940,19860,180022.989761185,371701.540943254,27.5301000000036 +23941,19174,180023.04900087,371701.00567491,27.5301000000036 +23942,19863,180023.113162432,371700.425934255,27.5301000000036 +23943,19180,180023.177323997,371699.846193604,27.5301000000036 +23944,19179,180023.013730776,371700.265473358,27.1999999999971 +23945,19172,180022.951425802,371700.834508739,27.1999999999971 +23946,19176,180022.889120828,371701.403544124,27.1999999999971 +23947,19861,180022.865285642,371701.62123248,27.1999999999971 +23948,19181,180023.044883255,371699.980955668,27.1999999999971 +23949,6622,180023.305647124,371698.686712295,27.5299999999988 +23950,19192,180024.056686673,371690.740088731,27.1999999999971 +23951,673,180007.500900004,371802.500700001,24.2899999999936 +23952,18950,180011.826099716,371800.752708338,24.5746000000072 +23953,18958,180011.98217985,371799.363720667,24.5883000000031 +23954,18952,180012.034360409,371798.899355687,24.5927999999985 +23955,18961,180012.178915452,371797.61293212,24.6055000000051 +23956,18954,180012.18868706,371798.421452761,27.1999999999971 +23957,18953,180012.25283099,371797.850623339,27.1999999999971 +23958,18963,180012.28490296,371797.565208625,27.1999999999971 +23959,18962,180012.316974927,371797.279793914,27.1999999999971 +23960,25069,180012.156615086,371798.706867475,27.1999999999971 +23961,12583,180012.124543119,371798.992282186,27.1999999999971 +23962,18960,180012.10195148,371799.193329591,27.1999999999971 +23963,18959,180012.079359841,371799.394376993,27.1999999999971 +23964,18956,180012.038667336,371799.756507583,27.1999999999971 +23965,12587,180011.952791549,371800.520732973,27.1999999999971 +23966,18951,180011.919399261,371800.817897461,27.1999999999971 +23967,12584,180011.857847318,371801.365660232,27.1999999999971 +23968,680,180011.259599999,371805.794100005,24.5249999999942 +23969,18940,180011.410639662,371804.449968532,24.5381999999954 +23970,12591,180011.467975061,371804.835209634,27.1999999999971 +23971,18941,180011.512302402,371804.440731999,27.1999999999971 +23972,12593,180011.386243768,371805.562552407,27.1999999999971 +23973,720,179987.500400003,371832.500500005,24.3300000000017 +23974,726,179992.5009,371837.500799999,24.4499999999971 +23975,807,179980.303400002,371857.688400004,24.5099999999948 +23976,806,179981.484400004,371857.831599999,24.5099999999948 +23977,20280,179981.287272066,371859.938033011,24.6024000000034 +23978,20281,179980.045872364,371860.047114402,24.5286999999953 +23979,20282,179979.929004487,371861.117515866,24.5372000000061 +23980,20283,179979.248995367,371865.963367045,27.9195999999938 +23981,873,179973.998,371911.554499999,28.429999999993 +23982,864,179976.625100005,371904.934500005,24.4566999999952 +23983,20303,179975.757686723,371912.522523969,24.5476999999955 +23984,827,179982.500500005,371907.500700004,24.179999999993 +23985,831,179982.5002,371912.500900004,24.1900000000023 +23986,829,179987.500599999,371912.500500005,24.3300000000017 +23987,826,179987.500599999,371907.500500001,24.3600000000006 +23988,824,179987.500999998,371902.501000002,24.3899999999994 +23989,821,179982.500400003,371902.500399999,24.1999999999971 +23990,798,179987.500999998,371897.500900004,24.3999999999942 +23991,820,179982.500800002,371897.500399999,24.1300000000047 +23992,20302,179977.633684874,371896.111988597,24.3508000000002 +23993,793,179982.500400003,371892.5002,24.1600000000035 +23994,814,179978.308499999,371890.209100004,24.2799999999988 +23995,815,179982.500800002,371887.500599999,24.2400000000052 +23996,788,179982.500599999,371882.500700004,24.3000000000029 +23997,812,179979.404700004,371878.893200003,24.5 +23998,786,179987.500300009,371882.500200003,24.3999999999942 +23999,784,179987.500700001,371877.500700004,24.3800000000047 +24000,782,179987.500300009,371872.500900004,24.2599999999948 +24001,796,179992.500799999,371897.500300005,24.1999999999971 +24002,822,179992.500600003,371902.500500001,24.1499999999942 +24003,797,179997.500399999,371897.500300005,24.3800000000047 +24004,823,179997.500799999,371902.500799999,24.4499999999971 +24005,825,179997.500300005,371907.500300005,24.3600000000006 +24006,828,179992.5009,371907.500799999,24.1499999999942 +24007,830,179992.500300005,371912.500599999,24.1699999999983 +24008,18657,179999.62851065,371910.979847021,24.479600000006 +24009,18662,179999.76354913,371909.716045797,24.4833999999973 +24010,18666,179999.87241473,371908.697191894,24.4864999999991 +24011,18667,179999.978221308,371907.706966892,24.489499999996 +24012,855,180000,371908.444600001,27.1999999999971 +24013,18663,179999.921674296,371909.17764695,27.1999999999971 +24014,9852,180000.041420046,371909.350371465,27.5665000000008 +24015,9851,180000.165130056,371908.182778068,27.5663000000059 +24016,6670,180000.861724291,371910.089697838,27.7140999999974 +24017,24982,180001.153612144,371907.271098912,27.7173000000039 +24018,24981,180004.099749997,371907.699750006,28.6750000000029 +24019,849,180001.445500005,371904.452500001,27.7204999999958 +24020,18674,180000.438041918,371905.606995478,27.5660999999964 +24021,12738,180000.347071297,371906.465589669,27.5662000000011 +24022,24984,180000.301585987,371906.894886773,27.5662000000011 +24023,24983,180000.256100681,371907.324183866,27.5663000000059 +24024,18668,180000.138245717,371907.150765616,27.1999999999971 +24025,24986,180000.096772004,371907.538915928,27.1999999999971 +24026,12739,180000.055298291,371907.927066248,27.1999999999971 +24027,18669,180000.076540709,371906.786813036,24.4921999999933 +24028,24985,180000.158982575,371906.956690457,27.1999999999971 +24029,18670,180000.179719433,371906.762615297,27.1999999999971 +24030,12737,180000.221193146,371906.374464985,27.1999999999971 +24031,18671,180000.195129134,371905.676964927,24.4955000000045 +24032,18673,180000.273104828,371905.88862633,27.1999999999971 +24033,18675,180000.299060665,371905.645707,27.1999999999971 +24034,18672,180000.325016502,371905.402787678,27.1999999999971 +24035,863,180000.353500001,371904.194800004,24.5 +24036,18679,180000.467679642,371903.126213003,24.5032000000065 +24037,18676,180000.502000198,371902.805012938,24.5041999999958 +24038,18681,180000.608911902,371901.804445274,24.5071999999927 +24039,18687,180000.750048961,371900.483568482,24.5111000000034 +24040,18684,180000.827674456,371900.698438402,27.1999999999971 +24041,12729,180000.722894769,371901.679065902,27.1999999999971 +24042,18682,180000.691129509,371901.976355292,27.1999999999971 +24043,18677,180000.659364257,371902.273644686,27.1999999999971 +24044,12730,180000.799105458,371902.199224293,27.5657999999967 +24045,12731,180000.595833734,371902.868223466,27.1999999999971 +24046,12732,180000.708906889,371903.050531816,27.5657999999967 +24047,18680,180000.566212326,371903.145448655,27.1999999999971 +24048,18678,180000.536590923,371903.42267384,27.1999999999971 +24049,9849,180000.618708313,371903.901839331,27.5659000000014 +24050,12733,180000.477348108,371903.977124214,27.1999999999971 +24051,12735,180000.573860426,371904.3251203,27.5660000000062 +24052,12736,180000.445454847,371904.275611568,27.1999999999971 +24053,12734,180000.428839855,371904.431110375,27.1999999999971 +24054,9850,180000.529012542,371904.748401277,27.5660000000062 +24055,6669,180001.674396608,371902.242172632,27.7229999999981 +24056,875,180004.602499999,371902.629500005,28.679999999993 +24057,12726,180001.878047455,371900.275629468,27.7253000000055 +24058,24988,180004.853875004,371900.094375003,28.6824999999953 +24059,24977,180005.724716805,371903.05746296,28.6477000000014 +24060,24987,180006.113000002,371898.819000002,28.661500000002 +24061,24978,180005.105250001,371897.559250001,28.6849999999977 +24062,9847,180002.081698302,371898.309086315,27.7274999999936 +24063,24979,180002.285349149,371896.342543155,27.729800000001 +24064,24990,180005.356625002,371895.024125006,28.6875 +24065,799,180002.489000004,371894.376000002,27.7320000000036 +24066,12720,180001.510749679,371895.482620813,27.5651000000071 +24067,24980,180001.456124511,371895.998181213,27.5651999999973 +24068,12719,180001.401499342,371896.51374162,27.5651999999973 +24069,12723,180001.292249013,371897.544862431,27.565300000002 +24070,12722,180001.184254162,371897.361227617,27.1999999999971 +24071,18697,180001.158141941,371897.605610605,27.1999999999971 +24072,18695,180001.045896683,371897.714782033,24.5194999999949 +24073,18696,180001.132029701,371897.849993594,27.1999999999971 +24074,18690,180001.079805247,371898.338759568,27.1999999999971 +24075,18689,180000.928993959,371898.808853969,24.5161999999982 +24076,12724,180001.032100331,371898.785227362,27.1999999999971 +24077,9848,180001.182998676,371898.575983237,27.5654000000068 +24078,18691,180001.237623844,371898.06042283,27.5654000000068 +24079,18693,180001.122351937,371899.148376204,27.565499999997 +24080,12725,180001.061705187,371899.720769174,27.565499999997 +24081,12728,180000.987650637,371900.419707026,27.5656000000017 +24082,18685,180000.933249347,371900.933154456,27.5656000000017 +24083,9846,180000.878848057,371901.44660189,27.5657000000065 +24084,18688,180000.856461015,371900.429026444,27.1999999999971 +24085,12727,180000.885247581,371900.159614488,27.1999999999971 +24086,18683,180000.791727401,371900.093507424,24.5123000000021 +24087,18686,180000.933758374,371899.705604546,27.1999999999971 +24088,18692,180000.982929349,371899.245415956,27.1999999999971 +24089,18694,180001.007514838,371899.015321661,27.1999999999971 +24090,18698,180001.178035043,371896.478122491,24.523199999996 +24091,18700,180001.319383848,371895.155264053,24.5271999999968 +24092,803,180001.420600001,371894.208000004,24.5299999999988 +24093,18704,180001.552568749,371893.051910907,24.5302999999985 +24094,18709,180001.70641223,371891.704192042,24.530700000003 +24095,18705,180001.693169177,371892.701981746,27.1999999999971 +24096,12715,180001.794816092,371891.811521813,27.1999999999971 +24097,18712,180001.840290472,371891.413151447,27.1999999999971 +24098,18710,180001.885764856,371891.014781088,27.1999999999971 +24099,18715,180001.931526028,371890.613898359,27.1999999999971 +24100,12713,180001.976713616,371890.218040355,27.1999999999971 +24101,18714,180002.059235137,371889.495125033,27.1999999999971 +24102,12714,180002.117096972,371890.032783419,27.5639999999985 +24103,12712,180002.189021476,371889.393443376,27.5638999999937 +24104,18717,180002.100495897,371889.133667372,27.1999999999971 +24105,12709,180002.306909576,371888.345530897,27.5636999999988 +24106,9842,180002.045172464,371890.672123462,27.5641999999934 +24107,18711,180001.972456053,371891.318502828,27.5642999999982 +24108,9843,180002.729359824,371892.267015196,27.7390000000014 +24109,12716,180001.899739642,371891.964882191,27.5644999999931 +24110,18707,180001.813016377,371892.73576903,27.5645999999979 +24111,9844,180001.726293121,371893.506655868,27.5647999999928 +24112,9845,180001.646573287,371894.215288967,27.5648999999976 +24113,800,180001.620000005,371894.451499999,27.5650000000023 +24114,18702,180001.565374836,371894.967060406,27.5651000000071 +24115,12718,180001.486776728,371894.529934883,27.1999999999971 +24116,18703,180001.441487905,371894.95379059,27.1999999999971 +24117,18701,180001.407641426,371895.270557966,27.1999999999971 +24118,12721,180001.328506131,371896.011181049,27.1999999999971 +24119,802,180001.52,371894.219000004,27.1999999999971 +24120,12717,180001.591522273,371893.592441678,27.1999999999971 +24121,18706,180001.642345723,371893.147211712,27.1999999999971 +24122,18708,180001.667757455,371892.924596727,27.1999999999971 +24123,18699,180001.274164744,371896.519759249,27.1999999999971 +24124,24976,180004.579,371915.563999999,28.6092999999964 +24125,81,180003.597000003,371912.770000003,28.6699999999983 +24126,24969,180003.322792817,371915.856089439,28.6633000000002 +24127,24967,180004.492099844,371916.739676978,28.605899999995 +24128,24968,180003.048585631,371918.942178886,28.6566000000021 +24129,865,180002.3715,371926.5625,28.6399999999994 +24130,12089,179999.739691436,371923.358996242,27.7090000000026 +24131,10745,179999.479382865,371926.82949248,27.7090000000026 +24132,853,179999.207500003,371930.454300001,27.7090000000026 +24133,18622,179998.31684003,371928.783227008,27.5464999999967 +24134,12179,179998.219880059,371929.956654008,27.5448999999935 +24135,18617,179998.186318886,371930.362817384,27.5442999999941 +24136,12181,179998.152757704,371930.768980764,27.5436999999947 +24137,12183,179998.082533136,371931.618851155,27.5424999999959 +24138,12184,179997.969939936,371932.981474329,27.540599999993 +24139,12092,179997.878272343,371932.543973695,27.1999999999971 +24140,18609,179997.836875793,371933.047877572,27.1999999999971 +24141,18605,179997.795479238,371933.551781453,27.1999999999971 +24142,18607,179997.908545349,371933.724482641,27.539499999999 +24143,18606,179997.731304403,371934.332956385,27.1999999999971 +24144,18604,179997.623946402,371934.418105103,24.5469000000012 +24145,12185,179997.712686136,371934.559589203,27.1999999999971 +24146,12188,179997.587143332,371936.08777228,27.1999999999971 +24147,12187,179997.707746096,371936.154591333,27.5360999999975 +24148,12186,179997.847150762,371934.467490956,27.5384999999951 +24149,12093,179998.9103125,371934.416437503,27.7090000000026 +24150,24963,179998.761718754,371936.397506252,27.7090000000026 +24151,18600,179997.646244816,371936.898890771,27.5350000000035 +24152,12189,179997.584743544,371937.643190205,27.5338999999949 +24153,10746,179998.613125004,371938.378575001,27.7090000000026 +24154,18596,179997.529549222,371938.311161816,27.5329999999958 +24155,12191,179997.4743549,371938.979133431,27.5320000000065 +24156,12192,179997.36346373,371940.321158361,27.5301000000036 +24157,861,179997.326500002,371940.7685,27.5295000000042 +24158,18590,179997.291244157,371941.183258764,27.5295000000042 +24159,18591,179997.179481689,371941.028514288,27.1999999999971 +24160,12095,179997.196731623,371940.826708961,27.1999999999971 +24161,18586,179997.080099899,371941.016447503,24.5691999999981 +24162,18588,179997.162231743,371941.230319612,27.1999999999971 +24163,18592,179997.055990472,371941.298531186,24.5687999999936 +24164,878,179992.5009,371942.500700004,24.2899999999936 +24165,869,179997.125300001,371940.487600002,24.570000000007 +24166,848,179992.500300005,371937.500700001,24.3099999999977 +24167,877,179987.500500005,371942.500500001,24.2100000000064 +24168,847,179987.500800002,371937.500700001,24.2100000000064 +24169,844,179987.500700001,371932.500700001,24.2400000000052 +24170,846,179982.500700001,371937.500700001,24.3000000000029 +24171,841,179982.5002,371932.500300001,24.3300000000017 +24172,845,179977.500400003,371937.500599999,24.2100000000064 +24173,876,179982.500700001,371942.500399999,24.3399999999965 +24174,879,179977.500300001,371942.500900004,24.1499999999942 +24175,930,179977.5009,371947.500799999,24.1100000000006 +24176,915,179971.507700007,371950.0902,24.8533000000025 +24177,868,179973.258400001,371934.385200001,24.8099999999977 +24178,925,179969.800000004,371950.888000004,28.3899999999994 +24179,871,179971.899000004,371931.221299998,28.4100000000035 +24180,920,179967.890500005,371967.166500002,28.3899999999994 +24181,20305,179970.534460939,371958.821331892,24.8773999999976 +24182,916,179969.757100005,371965.795200005,24.8966999999975 +24183,921,179972.500500001,371962.500900004,24.2599999999948 +24184,887,179977.5002,371957.500700001,24.2599999999948 +24185,889,179977.500400003,371962.500399999,24.3099999999977 +24186,891,179977.500400003,371967.500399999,24.3300000000017 +24187,893,179972.500500001,371967.500500001,24.2799999999988 +24188,898,179972.500500001,371972.500600003,24.2599999999948 +24189,20306,179969.277416777,371970.098293103,24.9085999999952 +24190,885,179982.500599999,371957.500400003,24.3300000000017 +24191,922,179977.500600003,371952.500300001,24.2100000000064 +24192,882,179982.500999998,371952.5002,24.3399999999965 +24193,924,179982.500700001,371947.500700004,24.3500000000058 +24194,880,179987.500200003,371947.500100002,24.2200000000012 +24195,881,179992.500399999,371947.500200003,24.2899999999936 +24196,883,179987.500400003,371952.500400003,24.2400000000052 +24197,884,179992.500600003,371952.500500005,24.3300000000017 +24198,928,179996.261900004,371950.589500003,24.554999999993 +24199,18571,179996.383899894,371949.162084311,24.5571000000054 +24200,18573,179996.492685106,371947.889282193,24.5589999999938 +24201,24946,179996.531978674,371948.603587121,27.1999999999971 +24202,12096,179996.570307907,371948.155177239,27.1999999999971 +24203,18574,179996.607928079,371947.715062622,27.1999999999971 +24204,12200,179996.649986327,371947.223027416,27.1999999999971 +24205,12199,179996.823243879,371946.688933562,27.5298000000039 +24206,18576,179996.690441184,371946.749750104,27.1999999999971 +24207,12098,179996.729664739,371946.290877596,27.1999999999971 +24208,12198,179996.883276042,371945.982699815,27.5298000000039 +24209,18580,179996.947547279,371945.226596586,27.5298000000039 +24210,18578,179996.797310997,371945.499490827,27.1999999999971 +24211,18581,179996.817862578,371945.259059906,27.1999999999971 +24212,18579,179996.838414162,371945.018628992,27.1999999999971 +24213,18577,179996.706828374,371945.383776192,24.5626999999949 +24214,12197,179996.879517335,371944.537767153,27.1999999999971 +24215,18582,179996.81846375,371944.077626791,24.5647000000026 +24216,18575,179996.590943817,371946.739641637,24.5607000000018 +24217,24954,179996.88148167,371943.340308402,24.5657999999967 +24218,18584,179996.944499582,371942.602990016,24.5669000000053 +24219,12195,179997.029369924,371942.784656711,27.1999999999971 +24220,18585,179997.058732092,371942.441151582,27.1999999999971 +24221,18587,179997.12773186,371941.633930266,27.1999999999971 +24222,18593,179997.144981798,371941.432124939,27.1999999999971 +24223,18589,179997.255988315,371941.598017525,27.5295000000042 +24224,24955,179996.995901529,371943.176200058,27.1999999999971 +24225,24953,179996.962433144,371943.567743406,27.1999999999971 +24226,18583,179996.918009844,371944.087447084,27.1999999999971 +24227,18572,179996.493649438,371949.051996991,27.1999999999971 +24228,12203,179996.461415287,371949.429101057,27.1999999999971 +24229,909,179996.361500002,371950.598000001,27.1999999999971 +24230,12204,179996.485623382,371950.660787221,27.5301000000036 +24231,18570,179996.335095927,371950.906898629,27.1999999999971 +24232,12206,179996.424701806,371951.377484251,27.5301000000036 +24233,12205,179996.308691848,371951.215797253,27.1999999999971 +24234,18566,179996.254593264,371951.848691236,27.1999999999971 +24235,18568,179996.377166584,371951.936700694,27.5301000000036 +24236,18567,179996.227543969,371952.165138233,27.1999999999971 +24237,18565,179996.11766379,371952.276888333,24.5525000000052 +24238,18562,179996.200494673,371952.481585231,27.1999999999971 +24239,18561,179996.010969505,371953.525081702,24.5506000000023 +24240,18563,179996.114569407,371953.486816272,27.1999999999971 +24241,12099,179996.092297487,371953.747373208,27.1999999999971 +24242,12207,179996.234560937,371953.614350013,27.5301999999938 +24243,18564,179996.32963137,371952.495917134,27.5301999999938 +24244,24942,179997.235599339,371953.890850674,27.7293000000063 +24245,911,179996.151500005,371954.591499999,27.5302999999985 +24246,12208,179996.062416155,371955.6395051,27.5304000000033 +24247,12100,179995.974901918,371955.12077225,27.1999999999971 +24248,18560,179996.014807213,371954.653924186,27.1999999999971 +24249,18559,179995.898225464,371954.844049897,24.5486999999994 +24250,18555,179995.90645019,371955.921582177,27.1999999999971 +24251,18554,179995.779546119,371956.232453924,24.5466000000015 +24252,18550,179995.688729893,371957.294893354,24.5449999999983 +24253,18546,179995.600411959,371958.328105744,24.5434999999998 +24254,18544,179995.509554803,371959.39102402,24.5418999999965 +24255,12101,179995.664062038,371958.757256836,27.1999999999971 +24256,18547,179995.699047033,371958.347970936,27.1999999999971 +24257,18549,179995.7600528,371957.634270638,27.1999999999971 +24258,18548,179995.889417265,371957.67470827,27.5304999999935 +24259,18552,179995.779539213,371957.406300999,27.1999999999971 +24260,18553,179995.930170868,371957.195272431,27.5304000000033 +24261,10747,179996.987698682,371956.596201357,27.7335000000021 +24262,12210,179995.970924482,371956.715836581,27.5304000000033 +24263,12209,179995.837998461,371956.722392108,27.1999999999971 +24264,18551,179995.799025629,371957.178331371,27.1999999999971 +24265,18556,179995.872224327,371956.321987141,27.1999999999971 +24266,18557,179996.016670316,371956.177670836,27.5304000000033 +24267,18558,179995.889337253,371956.121784657,27.1999999999971 +24268,12102,179996.769849345,371958.973600678,27.7372999999934 +24269,908,179996.552000001,371961.351,27.7409999999945 +24270,12212,179995.728982721,371959.5621012,27.5305999999982 +24271,12214,179995.625710819,371960.777018219,27.5305999999982 +24272,12216,179995.5683304,371961.452056076,27.5305999999982 +24273,18541,179995.491221402,371962.359186012,27.530700000003 +24274,18539,179995.358740237,371962.291997198,27.1999999999971 +24275,18540,179995.298483107,371962.980847809,27.1999999999971 +24276,12217,179995.414112404,371963.266315952,27.530700000003 +24277,12104,179996.550125007,371964.154125001,27.770199999999 +24278,12218,179995.301056266,371964.596337311,27.5307999999932 +24279,12220,179995.216988809,371965.585328277,27.5308999999979 +24280,18543,179995.428765271,371961.491481315,27.1999999999971 +24281,12215,179995.450772945,371961.239892744,27.1999999999971 +24282,914,179995.398400005,371960.691400006,24.5399999999936 +24283,926,179995.498000003,371960.699999999,27.1999999999971 +24284,12213,179995.581031021,371959.728628423,27.1999999999971 +24285,18545,179995.609708283,371959.393136002,27.1999999999971 +24286,12211,179995.807910051,371958.633579951,27.5304999999935 +24287,18569,179996.220526244,371951.073522683,24.5543000000034 +24288,20304,179973.780823991,371929.81534005,24.7551999999996 +24289,866,179974.941800002,371919.6598,24.6333000000013 +24290,834,179977.500700004,371922.500500001,24.4199999999983 +24291,870,179977.500500008,371917.500800002,24.4700000000012 +24292,832,179982.500500005,371917.500400003,24.2299999999959 +24293,833,179987.500200003,371917.500800002,24.3000000000029 +24294,82,179982.500800002,371922.500600003,24.2899999999936 +24295,836,179987.500300009,371922.5009,24.2700000000041 +24296,835,179992.5009,371922.500500001,24.2299999999959 +24297,867,179992.500100002,371917.5,24.1699999999983 +24298,18649,179999.192702811,371915.32218232,24.4743000000017 +24299,874,179999.286400001,371914.181600001,24.4700000000012 +24300,18654,179999.453088306,371912.621593714,24.4747000000061 +24301,12160,179999.44605897,371913.628910694,27.1999999999971 +24302,856,179999.386000004,371914.191000003,27.1999999999971 +24303,12161,179999.527787421,371914.198172901,27.5669999999955 +24304,12159,179999.614414331,371913.380564198,27.5669000000053 +24305,850,180000.401999999,371914.529000003,27.7090000000026 +24306,12086,180000.631862149,371912.309348918,27.7115000000049 +24307,12157,179999.837401666,371911.275948055,27.5666999999958 +24308,12158,179999.731601369,371912.27452055,27.5668000000005 +24309,12155,179999.702875517,371912.545643061,27.5668000000005 +24310,18655,179999.577763885,371912.396289904,27.1999999999971 +24311,18656,179999.548034661,371912.674524482,27.1999999999971 +24312,12085,179999.506117932,371913.066821393,27.1999999999971 +24313,12156,179999.686294828,371911.380553477,27.1999999999971 +24314,18658,179999.728068836,371910.989592243,27.1999999999971 +24315,18661,179999.762669556,371910.665765572,27.1999999999971 +24316,18659,179999.797270283,371910.341938902,27.1999999999971 +24317,18660,179999.918700837,371910.508624028,27.5666000000056 +24318,18665,179999.959350415,371910.124962013,27.5665000000008 +24319,852,180000,371909.741300002,27.5665000000008 +24320,18664,179999.831870999,371910.018112235,27.1999999999971 +24321,12084,179999.866471719,371909.694285564,27.1999999999971 +24322,859,179999.501000002,371914.451000005,27.5669999999955 +24323,18652,179999.441545606,371915.170599438,27.5660000000062 +24324,12162,179999.382091213,371915.890198879,27.5648999999976 +24325,24970,180000.200999998,371917.208750002,27.7090000000026 +24326,24972,179999.311984837,371916.738723237,27.5636999999988 +24327,12163,179999.185990382,371916.625638112,27.1999999999971 +24328,24975,179999.154025022,371917.014739837,27.1999999999971 +24329,18647,179999.047882881,371917.085085195,24.4809999999998 +24330,24974,179999.149608742,371917.068497494,27.1999999999971 +24331,18648,179999.122059662,371917.403841555,27.1999999999971 +24332,12165,179999.031625878,371918.504656341,27.1999999999971 +24333,18645,179998.899347313,371918.893218685,24.4878999999928 +24334,18633,179998.776013907,371920.394564703,24.4936000000016 +24335,18639,179998.954443626,371919.444165461,27.1999999999971 +24336,18640,179998.915852498,371919.913920019,27.1999999999971 +24337,12088,179998.87726137,371920.383674573,27.1999999999971 +24338,12167,179999.020258997,371920.269593369,27.5586999999941 +24339,18642,179999.050155327,371919.907746624,27.5592000000033 +24340,851,180000,371919.888500001,27.7090000000026 +24341,18641,179999.080051653,371919.545899887,27.559699999998 +24342,12166,179999.139844302,371918.822206397,27.5608000000066 +24343,24971,179999.190861385,371918.204726998,27.5616000000009 +24344,12164,179999.241878472,371917.587247595,27.5625 +24345,24973,179999.276931658,371917.162985418,27.5630999999994 +24346,18646,179998.998693429,371918.90553008,27.1999999999971 +24347,18637,179998.971738376,371920.856857225,27.557799999995 +24348,18638,179998.853097998,371920.677805759,27.1999999999971 +24349,18636,179998.828934625,371920.971936945,27.1999999999971 +24350,18644,179998.804771252,371921.266068127,27.1999999999971 +24351,18643,179998.705956317,371921.24738048,24.4968999999983 +24352,18634,179998.780607883,371921.560199313,27.1999999999971 +24353,18635,179998.923217736,371921.444121093,27.5570000000007 +24354,12168,179998.826176479,371922.618648812,27.5553000000073 +24355,12169,179998.683954399,371922.736724045,27.1999999999971 +24356,18631,179998.788677532,371923.072513022,27.5546999999933 +24357,18632,179998.659791026,371923.030855235,27.1999999999971 +24358,18629,179998.575270411,371922.83822893,24.5029000000068 +24359,18630,179998.635627653,371923.324986413,27.1999999999971 +24360,12171,179998.587300908,371923.913248781,27.1999999999971 +24361,18627,179998.447448917,371924.39420861,24.508799999996 +24362,18625,179998.326128431,371925.87105117,24.5144 +24363,840,179992.500799999,371927.500600003,24.2200000000012 +24364,862,179998.205900002,371927.334600002,24.5200000000041 +24365,18619,179998.15115853,371928.000910003,24.5225000000064 +24366,18623,179998.113083586,371928.464356009,24.5243000000046 +24367,18621,179998.236118145,371928.188057952,27.1999999999971 +24368,12091,179998.277934793,371927.679040406,27.1999999999971 +24369,860,179998.413800001,371927.6098,27.5482000000047 +24370,18624,179998.211908288,371928.482754964,27.1999999999971 +24371,18620,179998.187698431,371928.777451985,27.1999999999971 +24372,18613,179998.097462077,371929.875863571,27.1999999999971 +24373,18612,179997.986934111,371929.999840014,24.5301000000036 +24374,12180,179998.078103565,371930.111507051,27.1999999999971 +24375,18615,179997.964004703,371930.278935436,24.5311999999976 +24376,843,179992.500200003,371932.500400003,24.2599999999948 +24377,839,179987.500599999,371927.500500001,24.25 +24378,838,179982.500500005,371927.500200003,24.3099999999977 +24379,837,179977.500700004,371927.500200003,24.3000000000029 +24380,842,179977.500600003,371932.500400003,24.2200000000012 +24381,18610,179997.845628295,371931.719806135,24.5366999999969 +24382,18614,179998.028145764,371930.719623711,27.1999999999971 +24383,18616,179998.05312467,371930.415565383,27.1999999999971 +24384,18618,179998.065614115,371930.263536211,27.1999999999971 +24385,12182,179997.978187956,371931.327740375,27.1999999999971 +24386,18611,179997.945787389,371931.722139709,27.1999999999971 +24387,18608,179997.733670302,371933.082552273,24.5418000000063 +24388,18602,179997.467322897,371936.324517358,24.5541999999987 +24389,18598,179997.362221446,371937.603806026,24.5589999999938 +24390,18594,179997.259177834,371938.858046882,24.5638000000035 +24391,18597,179997.412632309,371938.212025981,27.1999999999971 +24392,12094,179997.461600516,371937.615955349,27.1999999999971 +24393,18601,179997.492986217,371937.233909581,27.1999999999971 +24394,18599,179997.524371922,371936.851863813,27.1999999999971 +24395,18603,179997.563069187,371936.380817238,27.1999999999971 +24396,18595,179997.363664106,371938.808096621,27.1999999999971 +24397,12190,179997.343300261,371939.055977672,27.1999999999971 +24398,12193,179997.252365399,371940.162891794,27.1999999999971 +24399,858,179997.225000001,371940.495999999,27.1999999999971 +24400,857,179998.305500004,371927.343499999,27.1999999999971 +24401,12178,179998.32864343,371927.061784193,27.1999999999971 +24402,12176,179998.351786856,371926.780068383,27.1999999999971 +24403,12177,179998.459888145,371927.051977437,27.5489999999991 +24404,12175,179998.513429761,371926.403942712,27.5498999999982 +24405,12173,179998.584258687,371925.546672914,27.5510999999969 +24406,12174,179998.398073711,371926.216636758,27.1999999999971 +24407,18626,179998.444360565,371925.653205138,27.1999999999971 +24408,12090,179998.490647428,371925.089773521,27.1999999999971 +24409,12172,179998.687797304,371924.293505199,27.5528999999951 +24410,12170,179998.751178585,371923.526377242,27.5540000000037 +24411,18628,179998.548257075,371924.388514012,27.1999999999971 +24412,18650,179999.271970928,371915.579030875,27.1999999999971 +24413,18653,179999.293466065,371915.317379065,27.1999999999971 +24414,18651,179999.314961206,371915.055727255,27.1999999999971 +24415,12087,179999.357951473,371914.532423634,27.1999999999971 +24416,10785,179978.507405203,371872.755192075,27.938599999994 +24417,808,179978.650699999,371872.825599998,24.6300000000047 +24418,809,179979.793800004,371873.012400001,24.6100000000006 +24419,20293,179978.676618233,371872.58821303,24.6281000000017 +24420,20292,179978.567098893,371872.208489675,27.9370999999956 +24421,20294,179978.537252054,371872.481840879,27.9377999999997 +24422,18790,180005.246321764,371860.693434648,24.5388999999996 +24423,18786,180005.121867832,371861.783691525,24.5385999999999 +24424,18782,180005.013690908,371862.731356505,24.5383000000002 +24425,18783,180005.187506802,371862.090449125,27.1999999999971 +24426,18789,180005.209198471,371861.900423083,27.1999999999971 +24427,18787,180005.230890132,371861.710397046,27.1999999999971 +24428,12672,180005.274273466,371861.330344971,27.1999999999971 +24429,12671,180005.345845707,371861.331647977,27.5577000000048 +24430,18792,180005.320187248,371860.928125311,27.1999999999971 +24431,18794,180005.390189543,371860.937455438,27.5576000000001 +24432,18793,180005.434533376,371860.543262899,27.5574999999953 +24433,18795,180005.343144137,371860.727015484,27.1999999999971 +24434,18791,180005.366101034,371860.525905654,27.1999999999971 +24435,12670,180005.457928602,371859.72146634,27.1999999999971 +24436,18796,180005.393772595,371859.401717514,24.5391999999993 +24437,18801,180005.480178032,371859.526554085,27.1999999999971 +24438,18798,180005.502427462,371859.331641831,27.1999999999971 +24439,18797,180005.546926327,371858.941817317,27.1999999999971 +24440,18802,180005.514908444,371858.340528134,24.539499999999 +24441,18805,180005.578547485,371858.664805707,27.1999999999971 +24442,18803,180005.610168643,371858.387794096,27.1999999999971 +24443,12669,180005.635924064,371858.162168283,27.1999999999971 +24444,18807,180005.720768582,371857.418902706,27.1999999999971 +24445,18810,180005.644094985,371857.208812051,24.5397999999986 +24446,18811,180005.741979714,371857.23308631,27.1999999999971 +24447,18808,180005.763190847,371857.047269918,27.1999999999971 +24448,9830,180005.872477811,371856.650175173,27.5565999999963 +24449,12667,180005.805613108,371856.67563713,27.1999999999971 +24450,18806,180005.676677108,371856.923382044,24.5399000000034 +24451,762,180005.730600003,371856.451000005,24.5399999999936 +24452,18812,180005.858182788,371855.261342783,24.5325000000012 +24453,12664,180005.899410553,371855.814771004,27.1999999999971 +24454,18814,180005.930181231,371855.527845241,27.1999999999971 +24455,18813,180005.960951906,371855.240919471,27.1999999999971 +24456,12662,180006.015735798,371854.730078936,27.1999999999971 +24457,18815,180005.988160372,371854.049355108,24.524900000004 +24458,18818,180006.121025313,371852.810444012,24.5170999999973 +24459,18820,180006.175919253,371853.236424495,27.1999999999971 +24460,12659,180006.125584248,371853.70578073,27.1999999999971 +24461,18817,180006.098122139,371853.961855281,27.1999999999971 +24462,18816,180006.070660025,371854.21792984,27.1999999999971 +24463,18821,180006.207309861,371852.943718117,27.1999999999971 +24464,12657,180006.226254255,371852.767068259,27.1999999999971 +24465,18819,180006.271477681,371852.345375698,27.1999999999971 +24466,12655,180006.331200454,371851.788481805,27.1999999999971 +24467,18823,180006.352421574,371851.590602312,27.1999999999971 +24468,12663,180006.033346646,371855.199278485,27.555600000007 +24469,12665,180005.982423324,371855.662389241,27.5561000000016 +24470,758,180005.931499999,371856.125500005,27.5565000000061 +24471,761,180005.830000002,371856.462000001,27.1999999999971 +24472,12666,180005.849445365,371856.280678812,27.1999999999971 +24473,18788,180005.301501881,371861.725840513,27.557799999995 +24474,18785,180005.144123469,371862.470501207,27.1999999999971 +24475,25024,180005.122431803,371862.660527244,27.1999999999971 +24476,12673,180005.100740135,371862.850553282,27.1999999999971 +24477,12678,180004.803125817,371865.457751401,27.1999999999971 +24478,18776,180004.86698401,371864.898332924,27.1999999999971 +24479,18773,180004.775448974,371865.700209562,27.1999999999971 +24480,12676,180004.747772127,371865.942667719,27.1999999999971 +24481,18774,180004.719032865,371866.194433022,27.1999999999971 +24482,12674,180004.690293595,371866.446198318,27.1999999999971 +24483,18768,180004.588868167,371867.334718004,27.1999999999971 +24484,18771,180004.563511811,371867.556847923,27.1999999999971 +24485,18769,180004.538155455,371867.778977841,27.1999999999971 +24486,12681,180004.487442747,371868.223237682,27.1999999999971 +24487,25016,180004.440589793,371868.633684799,27.1999999999971 +24488,18766,180004.393736836,371869.044131927,27.1999999999971 +24489,18756,180003.860636853,371873.714260943,27.1999999999971 +24490,12693,180003.819569554,371874.074023727,27.1999999999971 +24491,12695,180003.711356144,371875.022008423,27.1999999999971 +24492,12694,180003.862154931,371874.52085169,27.5605999999971 +24493,12696,180003.818977464,371874.904675849,27.5607000000018 +24494,12689,180003.948509857,371873.753203385,27.5605000000069 +24495,18757,180003.99168732,371873.36937923,27.5604000000021 +24496,18859,180007.727382846,371837.831801396,24.4231 +24497,12634,180007.751417752,371838.545454416,27.1999999999971 +24498,18860,180007.817325298,371837.93088977,27.1999999999971 +24499,18863,180007.84271178,371837.694169711,27.1999999999971 +24500,18861,180007.868098263,371837.457449652,27.1999999999971 +24501,12633,180007.895929977,371838.260419339,27.5399999999936 +24502,12635,180007.832409162,371838.838098809,27.5405000000028 +24503,18857,180007.707233831,371838.95745397,27.1999999999971 +24504,18858,180007.685141873,371839.163453747,27.1999999999971 +24505,12631,180007.768888347,371839.415778272,27.5409999999974 +24506,12632,180007.66304991,371839.36945352,27.1999999999971 +24507,18869,180008.347610168,371832.98616958,27.1999999999971 +24508,18881,180008.40152362,371832.483445596,27.1999999999971 +24509,18914,180010.224213701,371815.008205075,24.4342999999935 +24510,18917,180010.349738069,371813.891139172,24.4453000000067 +24511,18925,180010.606594518,371811.605323445,24.4677999999985 +24512,18915,180010.405852824,371814.287243005,27.1999999999971 +24513,12601,180010.334093031,371814.925847463,27.1999999999971 +24514,18916,180010.299852304,371815.230562374,27.1999999999971 +24515,18918,180010.441732723,371813.967940774,27.1999999999971 +24516,18926,180010.779602934,371810.96116779,27.1999999999971 +24517,18930,180010.837216198,371810.448456086,27.1999999999971 +24518,12595,180010.894829459,371809.935744386,27.1999999999971 +24519,12596,180011.018834077,371809.962185655,27.5338999999949 +24520,18936,180011.071168169,371809.489608541,27.5341000000044 +24521,18935,180011.123502262,371809.017031416,27.5342999999993 +24522,18937,180010.982999887,371809.151098534,27.1999999999971 +24523,18934,180010.953609742,371809.41264715,27.1999999999971 +24524,18927,180010.711738713,371811.565104701,27.1999999999971 +24525,25071,180012.799360979,371793.884019151,27.5415999999968 +24526,18976,180012.862146903,371793.317061994,27.5418000000063 +24527,18972,180012.582305104,371794.918568779,27.1999999999971 +24528,18968,180012.552881636,371795.180414014,27.1999999999971 +24529,19133,180020.204781957,371725.619302377,27.1999999999971 +24530,515,180005.922000002,371616.975699998,28.6300000000047 +24531,437,180007.896000002,371598.147100002,28.6399999999994 +24532,467,180009.870000005,371579.318399999,28.6499999999942 +24533,435,180010.503100004,371596.833000004,24.5632999999943 +24534,20262,180009.870200112,371602.517619878,24.5820999999996 +24535,424,180012.500399999,371597.500100002,24.4199999999983 +24536,430,180012.500600003,371602.500799999,24.320000000007 +24537,425,180017.500500001,371597.500399999,24.4100000000035 +24538,423,180017.5009,371592.500599999,24.4799999999959 +24539,427,180022.500700001,371597.500700004,24.320000000007 +24540,428,180022.500400003,371602.500399999,24.2799999999988 +24541,429,180027.500900004,371602.500500001,24.2299999999959 +24542,471,180027.500599999,371607.500300001,24.2299999999959 +24543,472,180022.500700001,371607.500700001,24.2599999999948 +24544,474,180027.500599999,371612.500500005,24.2899999999936 +24545,476,180022.500800002,371612.500800002,24.2400000000052 +24546,512,180027.500400003,371617.500300005,24.2400000000052 +24547,19324,180032.237533882,371615.788868651,24.559699999998 +24548,19328,180032.390013516,371614.39334818,24.5636999999988 +24549,504,180032.439100005,371613.944100004,24.5650000000023 +24550,19329,180032.578384902,371612.669403095,24.5687000000034 +24551,19333,180032.720835835,371611.365731489,24.5724000000046 +24552,19340,180032.894353479,371609.777745958,24.5770000000048 +24553,14679,180032.854639206,371611.061781265,27.1999999999971 +24554,19334,180032.809569545,371611.474246442,27.1999999999971 +24555,19332,180032.758783937,371611.939022236,27.1999999999971 +24556,19330,180032.678102147,371612.677399751,27.1999999999971 +24557,14683,180032.641910944,371613.00861159,27.1999999999971 +24558,14682,180032.763009913,371612.926991984,27.528999999995 +24559,14681,180032.617534801,371613.231695317,27.1999999999971 +24560,496,180032.683800001,371613.649300002,27.528999999995 +24561,6613,180032.595469125,371614.454731982,27.528999999995 +24562,499,180032.5385,371613.955000002,27.1999999999971 +24563,14684,180032.554992005,371613.804069728,27.1999999999971 +24564,14685,180032.485876922,371614.436618645,27.1999999999971 +24565,19325,180032.403897852,371615.186910052,27.1999999999971 +24566,19327,180032.362908322,371615.562055755,27.1999999999971 +24567,19321,180032.321918789,371615.937201459,27.1999999999971 +24568,19320,180032.087967817,371617.157723695,24.5556999999972 +24569,19315,180031.801995702,371619.774990924,24.5482000000047 +24570,480,180027.500400003,371622.500399999,24.4600000000064 +24571,19313,180031.648811523,371621.176959511,24.5442000000039 +24572,14690,180031.859471247,371620.169628635,27.1999999999971 +24573,19780,180031.88427534,371619.942615777,27.1999999999971 +24574,19316,180031.909079436,371619.715602923,27.1999999999971 +24575,19779,180031.98893946,371619.985282626,27.5289000000048 +24576,14689,180031.902292356,371620.775361285,27.5289000000048 +24577,19314,180031.783435736,371620.865523256,27.1999999999971 +24578,19782,180031.75134711,371621.159205768,27.1999999999971 +24579,14688,180031.719258483,371621.452888284,27.1999999999971 +24580,19310,180031.639163364,371622.185937397,27.1999999999971 +24581,19306,180031.506550092,371622.478961181,24.540399999998 +24582,14686,180031.60143999,371622.531190515,27.1999999999971 +24583,19309,180031.560248628,371622.908183411,27.1999999999971 +24584,19311,180031.453094393,371622.968197215,24.5390000000043 +24585,19305,180031.320507344,371624.181657217,24.5354999999981 +24586,19790,180031.168683473,371625.571176119,24.5314999999973 +24587,484,180027.500900004,371627.500300001,24.4799999999959 +24588,19303,180031.016859591,371626.960695028,24.5274999999965 +24589,14697,180031.127621617,371626.867686063,27.1999999999971 +24590,19791,180031.265936036,371625.601800442,27.1999999999971 +24591,19788,180031.294296272,371625.342240982,27.1999999999971 +24592,19789,180031.37501679,371624.603468116,27.1999999999971 +24593,14695,180031.436674532,371624.039162096,27.1999999999971 +24594,19307,180031.519057266,371623.285176303,27.1999999999971 +24595,19304,180031.103933506,371627.08448517,27.1999999999971 +24596,19797,180031.053314902,371627.547758408,27.1999999999971 +24597,19796,180030.901763145,371628.014077973,24.5244999999995 +24598,19795,180031.002696287,371628.011031643,27.1999999999971 +24599,19801,180030.977386985,371628.24266826,27.1999999999971 +24600,71,180022.500900008,371627.5009,24.2700000000041 +24601,481,180022.500400003,371622.500600003,24.2599999999948 +24602,483,180017.500300005,371622.5009,24.4700000000012 +24603,478,180017.500600003,371617.500500001,24.4700000000012 +24604,479,180012.500500001,371617.500700008,24.3899999999994 +24605,482,180012.500100002,371622.5009,24.3800000000047 +24606,20263,180008.051401291,371618.854148183,24.6361000000034 +24607,508,180008.705700003,371612.977000006,24.6166999999987 +24608,520,180012.5009,371612.500400003,24.1499999999942 +24609,511,180012.500500001,371607.500500005,24.320000000007 +24610,473,180017.500200003,371607.500800002,24.4600000000064 +24611,431,180017.500399999,371602.5009,24.4400000000023 +24612,475,180017.500799999,371612.500700001,24.4700000000012 +24613,477,180022.500599999,371617.500399999,24.2599999999948 +24614,19312,180031.539652944,371623.096679859,27.1999999999971 +24615,19335,180032.945625547,371609.308518119,24.5783999999985 +24616,19339,180033.037851963,371609.385068785,27.1999999999971 +24617,19336,180033.064142063,371609.144469038,27.1999999999971 +24618,25164,180033.045352675,371608.395843014,24.5810000000056 +24619,25163,180033.147917651,371608.377778001,27.1999999999971 +24620,25165,180033.189805452,371607.994432475,27.1999999999971 +24621,19346,180033.145079799,371607.483167909,24.5835999999981 +24622,19341,180033.176740397,371607.193418916,24.5844999999972 +24623,19348,180033.332076695,371605.771824021,24.588499999998 +24624,19344,180033.347451955,371606.551695194,27.1999999999971 +24625,19342,180033.421258993,371605.876233585,27.1999999999971 +24626,19773,180033.458162509,371605.538502783,27.1999999999971 +24627,19349,180033.495066028,371605.20077198,27.1999999999971 +24628,19350,180033.500105694,371604.234069049,24.5929999999935 +24629,19354,180033.653909776,371602.826496553,24.5969999999943 +24630,19356,180033.822370984,371601.284786135,24.6015000000043 +24631,14673,180033.811602645,371602.303916283,27.1999999999971 +24632,19359,180033.877810564,371601.697999761,27.1999999999971 +24633,19357,180033.919770271,371601.313996069,27.1999999999971 +24634,19355,180033.758271854,371602.791984994,27.1999999999971 +24635,19767,180033.72425485,371603.10329916,27.1999999999971 +24636,19351,180033.690237857,371603.414613321,27.1999999999971 +24637,19353,180033.629555456,371603.969961848,27.1999999999971 +24638,14676,180033.568873063,371604.525310371,27.1999999999971 +24639,19771,180033.31054844,371606.889425997,27.1999999999971 +24640,14678,180033.27364492,371607.227156799,27.1999999999971 +24641,19347,180033.252669081,371607.419121884,27.1999999999971 +24642,19345,180033.231693242,371607.611086961,27.1999999999971 +24643,454,180017.500799999,371587.500700001,24.3999999999942 +24644,465,180012.3004,371580.689000007,24.5099999999948 +24645,450,180017.500500001,371582.500400007,24.3699999999953 +24646,70,180022.500500005,371582.500400007,24.3999999999942 +24647,446,180017.500300005,371577.500300001,24.4199999999983 +24648,447,180022.500999998,371577.500599999,24.3999999999942 +24649,445,180022.500400003,371572.500800006,24.3999999999942 +24650,444,180017.500799999,371572.500800006,24.4600000000064 +24651,20261,180012.618025005,371577.779375002,24.553700000004 +24652,462,180013.570900001,371569.050500002,24.6849999999977 +24653,441,180017.500100002,371567.500700001,24.3899999999994 +24654,20260,180014.232161578,371562.992917202,24.7761000000028 +24655,400,180017.500500001,371562.500599999,24.5500000000029 +24656,410,180014.841400005,371557.411900003,24.8600000000006 +24657,417,180017.500799999,371557.500300001,24.6699999999983 +24658,20259,180016.13893266,371545.612079959,24.8908999999985 +24659,394,180022.500300001,371552.500599999,24.4900000000052 +24660,396,180022.500599999,371557.500100005,24.4799999999959 +24661,395,180027.500800002,371552.500599999,24.2799999999988 +24662,391,180027.500500005,371547.500400003,24.3099999999977 +24663,392,180032.500600003,371547.500400003,24.1399999999994 +24664,390,180037.500799999,371547.500300005,24.4799999999959 +24665,414,180037.500100002,371542.5002,24.4499999999971 +24666,19449,180039.929611117,371545.710939314,24.6704999999929 +24667,19447,180040.078117408,371544.364060067,24.6708999999973 +24668,23372,180040.152060043,371543.693436604,24.6711000000068 +24669,19445,180040.202587817,371544.147602465,27.1999999999971 +24670,23373,180040.23806297,371543.825862113,27.1999999999971 +24671,23371,180040.263886321,371543.591658428,27.1999999999971 +24672,19450,180040.226002682,371543.022813145,24.6713000000018 +24673,19724,180040.325184822,371543.035714395,27.1999999999971 +24674,23367,180040.38201673,371542.520279884,27.1999999999971 +24675,23368,180040.300046407,371542.351272915,24.6714999999967 +24676,23369,180040.414899278,371542.222053107,27.1999999999971 +24677,19446,180040.447781824,371541.923826315,27.1999999999971 +24678,19444,180040.374090128,371541.679732684,24.6717000000062 +24679,19451,180040.497120008,371540.563911986,24.6720000000059 +24680,14625,180040.549675632,371540.999704931,27.1999999999971 +24681,385,180037.500600003,371537.500500005,24.4600000000064 +24682,19453,180040.669197943,371539.003249574,24.6725000000006 +24683,23363,180040.778431971,371538.012550496,24.6728000000003 +24684,19457,180040.887666006,371537.021851424,24.6729999999952 +24685,19720,180040.990736898,371536.087048929,24.6732999999949 +24686,19721,180041.070700634,371536.274291791,27.1999999999971 +24687,19456,180040.995202016,371536.959023092,27.1999999999971 +24688,23362,180040.967358161,371537.211551722,27.1999999999971 +24689,23359,180041.108449936,371535.931926128,27.1999999999971 +24690,19719,180041.146199241,371535.589560471,27.1999999999971 +24691,19455,180041.093807802,371535.152246438,24.6735999999946 +24692,23357,180041.193539981,371535.160205781,27.1999999999971 +24693,19454,180041.234401345,371534.789615404,27.1999999999971 +24694,19458,180041.245580249,371533.775744785,24.6739999999991 +24695,387,180032.500600003,371537.500600003,24.1199999999953 +24696,19461,180041.373889148,371532.612045985,24.6744000000035 +24697,421,180032.500700008,371542.500399999,24.1000000000058 +24698,384,180027.500599999,371537.500500005,24.3500000000058 +24699,388,180027.500100005,371542.500500001,24.3300000000017 +24700,386,180022.500700001,371537.500600003,24.5099999999948 +24701,69,180022.500800002,371542.500599999,24.2700000000041 +24702,389,180022.500100005,371547.500300005,24.5399999999936 +24703,416,180016.940400004,371538.3235,24.9100000000035 +24704,415,180013.818000004,371541.661200009,28.679999999993 +24705,420,180011.844000004,371560.489800006,28.6699999999983 +24706,418,180015.791999999,371522.832600005,28.6999999999971 +24707,65,180027.134199999,371410.115400001,28.9900000000052 +24708,226,180025.4388,371427.945599999,28.929999999993 +24709,218,180029.236000005,371418.502000004,26.75 +24710,217,180028.624000005,371425.568,26.75 +24711,222,180029.335500002,371418.511700008,25.1199999999953 +24712,20220,180029.494453348,371417.035272188,25.1257999999943 +24713,207,180032.500700008,371417.500599999,24.9799999999959 +24714,211,180032.500200003,371422.500900008,24.9100000000035 +24715,223,180028.7236,371425.576499999,25.2100000000064 +24716,214,180032.500900004,371427.5009,24.8000000000029 +24717,210,180037.500500001,371422.500700001,24.2100000000064 +24718,213,180037.500799999,371427.500599999,24.1900000000023 +24719,212,180042.500700004,371427.500500001,23.9799999999959 +24720,230,180042.500799999,371422.500500001,23.9600000000064 +24721,241,180047.500500005,371427.500599999,24.1000000000058 +24722,240,180047.500599999,371422.500399999,24.2100000000064 +24723,19627,180053.307240989,371425.439609621,24.4841000000015 +24724,19622,180053.110211316,371427.128815081,24.4738999999972 +24725,19619,180052.95076764,371428.495782398,24.4655999999959 +24726,19615,180052.792740926,371429.850601651,24.4573999999993 +24727,242,180047.500300001,371432.500300001,24.179999999993 +24728,19609,180052.607417118,371431.439448588,24.4477999999945 +24729,19610,180052.744501978,371431.126923852,27.1999999999971 +24730,14599,180052.857603159,371430.157278161,27.1999999999971 +24731,19618,180052.890244827,371429.877432741,27.1999999999971 +24732,19616,180052.922886483,371429.597587306,27.1999999999971 +24733,14865,180052.988169812,371429.037896447,27.1999999999971 +24734,14864,180053.130187646,371429.029109318,27.5638000000035 +24735,19620,180053.053166669,371428.480661605,27.1999999999971 +24736,19621,180053.198018365,371428.444127839,27.5675000000047 +24737,14863,180053.26584908,371427.859146345,27.5712000000058 +24738,19625,180053.377081279,371426.899864551,27.5773000000045 +24739,19624,180053.184019797,371427.358823884,27.1999999999971 +24740,14862,180053.118736472,371427.91851474,27.1999999999971 +24741,19626,180053.216661464,371427.078978449,27.1999999999971 +24742,19623,180053.249303132,371426.799133018,27.1999999999971 +24743,14861,180053.488313477,371425.94058276,27.5834000000032 +24744,14597,180053.379869781,371425.679751303,27.1999999999971 +24745,19628,180053.426463857,371425.280288242,27.1999999999971 +24746,14858,180053.568605248,371425.248135462,27.5877999999939 +24747,14860,180053.712746952,371424.005037516,27.5956000000006 +24748,19632,180053.825873476,371423.029418759,27.601800000004 +24749,254,180053.938999999,371422.053800002,27.6079999999929 +24750,19634,180053.753535222,371422.476220839,27.1999999999971 +24751,19630,180053.698717449,371422.946187831,27.1999999999971 +24752,19631,180053.645576172,371423.401781745,27.1999999999971 +24753,19629,180053.515475955,371423.654337168,24.4949000000051 +24754,14859,180053.592434891,371423.857375652,27.1999999999971 +24755,19633,180053.660993993,371422.406759292,24.5025000000023 +24756,257,180053.7095,371421.990899999,24.5050000000047 +24757,19635,180053.907737806,371420.291321017,24.5152999999991 +24758,239,180047.500500005,371417.500400003,24.2400000000052 +24759,19637,180054.082901001,371418.789570633,24.5243999999948 +24760,19641,180054.255131871,371417.312960386,24.5332999999955 +24761,19646,180054.472474359,371415.449588578,24.5445999999938 +24762,237,180052.500599999,371412.500500001,24.5399999999936 +24763,238,180047.500300001,371412.5009,24.2400000000052 +24764,206,180042.5009,371412.5009,23.9799999999959 +24765,209,180042.500300001,371417.500799999,23.9600000000064 +24766,205,180037.500600003,371412.500599999,24.3800000000047 +24767,204,180042.500400003,371407.500500005,23.9900000000052 +24768,203,180037.500300005,371407.500100009,24.4600000000064 +24769,224,180032.500900004,371412.500399999,25.1499999999942 +24770,20208,180030.406390026,371408.56480778,25.1588999999949 +24771,20213,180030.15074956,371410.939307623,25.1496000000043 +24772,6641,180030.040700797,371411.027445029,26.75 +24773,20209,180030.318544034,371408.446666539,26.75 +24774,20210,180030.472695459,371407.948934063,25.161300000007 +24775,20211,180030.488120247,371406.871538538,26.75 +24776,20212,180030.619848303,371406.582114503,25.1667000000016 +24777,20215,180029.816033028,371413.11429723,26.75 +24778,20217,180029.597630754,371415.142951589,26.75 +24779,20219,180029.416815381,371416.822475795,26.75 +24780,20218,180029.617777329,371415.889785413,25.1303000000044 +24781,20216,180029.747102782,371414.688554395,25.1349999999948 +24782,208,180037.500100002,371417.500799999,24.2799999999988 +24783,20214,180029.935755368,371412.936267145,25.1417999999976 +24784,202,180042.500500008,371402.500599999,23.9799999999959 +24785,236,180047.500300001,371407.500700001,24.2400000000052 +24786,233,180047.500300001,371402.500500001,24.2299999999959 +24787,232,180047.500700001,371397.500700004,24.2200000000012 +24788,234,180052.500599999,371402.500700001,24.4100000000035 +24789,231,180052.500800002,371397.500500008,24.5899999999965 +24790,19688,180057.267863818,371400.787760541,24.5813000000053 +24791,19693,180057.040499952,371401.737616364,24.6086000000068 +24792,19692,180057.241543334,371401.327245891,27.1288999999961 +24793,14828,180057.3871,371400.719149999,27.1180000000022 +24794,19689,180057.655365843,371399.598408815,27.0978999999934 +24795,19695,180057.624039065,371399.299770664,24.5385999999999 +24796,19696,180057.794757925,371399.016066916,27.087400000004 +24797,14831,180057.934149999,371398.433724999,27.0770000000048 +24798,19697,180057.939407781,371397.982257858,24.5007999999943 +24799,19699,180058.002531249,371398.148046874,27.0718999999954 +24800,19698,180058.070912499,371397.862368748,27.0666999999958 +24801,19694,180057.162036564,371401.659403376,27.1349000000046 +24802,19690,180057.095986661,371401.935341772,27.1398000000045 +24803,19682,180056.695399273,371403.179340146,24.6499999999942 +24804,14829,180056.804873321,371403.151533533,27.1616000000067 +24805,19683,180056.696688328,371403.60350078,27.1696999999986 +24806,19686,180056.486539982,371404.051889557,24.6750999999931 +24807,260,180056.195300002,371405.268599998,24.7100000000064 +24808,19685,180056.494844165,371404.446750388,27.1848999999929 +24809,19687,180056.59032419,371404.04786101,27.1777000000002 +24810,245,180056.293000005,371405.290000007,27.1999999999971 +24811,251,180056.399999999,371405.572800003,27.7314999999944 +24812,14589,180056.218519595,371405.664265595,27.1999999999971 +24813,14835,180056.34184847,371405.866516039,27.7225999999937 +24814,19679,180056.107727263,371406.220999379,27.1999999999971 +24815,19648,180054.613946319,371414.236687873,24.5519000000058 +24816,19652,180054.7229423,371413.302217796,24.5576000000001 +24817,19656,180054.828800347,371412.394650657,24.5630999999994 +24818,19658,180054.935722515,371411.477960404,24.5685999999987 +24819,14592,180054.988463882,371411.88885814,27.1999999999971 +24820,19659,180055.02432932,371411.581374452,27.1999999999971 +24821,253,180055.157000002,371411.5495,27.6744999999937 +24822,247,180055.053999998,371411.327,27.1999999999971 +24823,246,180055.094000004,371411.315000001,27.1999999999971 +24824,259,180055.007700004,371411.236499999,24.570000000007 +24825,258,180054.962300003,371411.250100005,24.570000000007 +24826,252,180055.256000001,371411.351000004,27.5559999999969 +24827,14844,180055.089451533,371412.132052869,27.6708000000071 +24828,19655,180055.016186293,371412.76390845,27.6668000000063 +24829,19657,180054.944603335,371412.264885928,27.1999999999971 +24830,19653,180054.900742792,371412.640913721,27.1999999999971 +24831,19654,180054.851210631,371413.065565731,27.1999999999971 +24832,14847,180054.94292105,371413.395764016,27.6628000000055 +24833,19650,180054.878869176,371413.948161475,27.6592999999993 +24834,14850,180054.814817298,371414.50055892,27.6557999999932 +24835,19649,180054.717798986,371414.209338296,27.1999999999971 +24836,14849,180054.679337017,371414.539082643,27.1999999999971 +24837,19647,180054.578328848,371415.40505182,27.1999999999971 +24838,14848,180054.7011384,371415.480950743,27.6496000000043 +24839,14851,180054.621522259,371416.167577896,27.6453000000038 +24840,14594,180054.545652341,371415.685195975,27.1999999999971 +24841,19642,180054.405341126,371416.888120279,27.1999999999971 +24842,19644,180054.509845864,371417.130699698,27.6392000000051 +24843,19645,180054.370263327,371417.188851345,27.1999999999971 +24844,19643,180054.33518552,371417.489582419,27.1999999999971 +24845,14853,180054.398169469,371418.093821499,27.6331000000064 +24846,19639,180054.328006107,371418.698925726,27.6291999999958 +24847,14856,180054.257842753,371419.304029956,27.6254000000044 +24848,14854,180054.210124321,371419.715564206,27.6227999999974 +24849,14857,180054.088166159,371420.767358221,27.6160999999993 +24850,19636,180054.046240706,371419.966781065,27.1999999999971 +24851,14595,180053.973310966,371420.592026573,27.1999999999971 +24852,14596,180053.847077746,371421.674256641,27.1999999999971 +24853,248,180053.805000007,371422.035,27.1999999999971 +24854,14855,180054.119170442,371419.341535568,27.1999999999971 +24855,19638,180054.182939645,371418.794825692,27.1999999999971 +24856,19640,180054.223984782,371418.442935124,27.1999999999971 +24857,14852,180054.265029918,371418.091044568,27.1999999999971 +24858,19651,180054.765410338,371413.801153801,27.1999999999971 +24859,14845,180054.813021701,371413.39296931,27.1999999999971 +24860,19617,180053.055103928,371429.676641647,27.559699999998 +24861,14866,180052.98002021,371430.324173976,27.555600000007 +24862,19612,180052.885036897,371431.143323205,27.5504999999976 +24863,19614,180052.716226682,371431.369335275,27.1999999999971 +24864,19613,180052.837545238,371431.55289783,27.547900000005 +24865,19611,180052.687951382,371431.611746699,27.1999999999971 +24866,14867,180052.790053576,371431.962472435,27.545299999998 +24867,255,180052.721000001,371432.557999998,27.5415000000066 +24868,19607,180052.620736357,371433.451761279,27.5411000000022 +24869,19608,180052.507771529,371433.167839665,27.1999999999971 +24870,19606,180052.471741889,371433.485221025,27.1999999999971 +24871,14873,180052.387483779,371434.227442034,27.1999999999971 +24872,19605,180052.378919393,371433.416770462,24.4486999999936 +24873,19600,180052.227599494,371434.749749519,24.4655000000057 +24874,19601,180052.330502141,371434.729387365,27.1999999999971 +24875,19604,180052.302618492,371434.975011539,27.1999999999971 +24876,19602,180052.274734844,371435.220635708,27.1999999999971 +24877,14869,180052.218967553,371435.711884063,27.1999999999971 +24878,14875,180052.369583357,371435.690566946,27.5399999999936 +24879,19603,180052.43356552,371435.120222852,27.5402000000031 +24880,14872,180052.497547679,371434.549878761,27.5405000000028 +24881,14874,180052.520472702,371434.345522553,27.540599999993 +24882,19598,180052.283898558,371436.454370685,27.5396000000037 +24883,14876,180052.198213767,371437.218174424,27.5391999999993 +24884,19596,180052.134709436,371436.454105079,27.1999999999971 +24885,14870,180052.050451327,371437.196326096,27.1999999999971 +24886,14868,180052.148002792,371437.665760636,27.5390000000043 +24887,14877,180052.02212226,371438.787873629,27.5384000000049 +24888,14602,180051.881935094,371438.680768125,27.1999999999971 +24889,19594,180051.997805327,371437.660079259,27.1999999999971 +24890,19593,180051.904354762,371437.597216815,24.5013999999937 +24891,19595,180052.060528409,371436.22148104,24.4841000000015 +24892,267,180047.500700001,371437.5002,24.1900000000023 +24893,19590,180051.742976952,371439.01879615,24.5194000000047 +24894,19582,180051.599510986,371440.282589812,24.5353000000032 +24895,268,180047.5002,371442.500600006,24.3699999999953 +24896,320,180042.500300001,371437.500799999,24.0099999999948 +24897,215,180042.500500008,371432.500300001,24.0200000000041 +24898,286,180037.500700004,371437.500500001,24.1900000000023 +24899,287,180037.500300005,371442.500100002,24.1999999999971 +24900,285,180032.500700008,371437.5002,24.5800000000017 +24901,288,180032.500200003,371442.500600006,24.5500000000029 +24902,290,180032.500799999,371447.500399999,24.5399999999936 +24903,292,180037.500600003,371447.500599999,24.1499999999942 +24904,289,180042.5002,371442.500800006,24.0599999999977 +24905,291,180042.500400003,371447.500500001,24.0599999999977 +24906,293,180037.500500001,371452.5002,24.1699999999983 +24907,294,180042.500500008,371452.500900004,24.0899999999965 +24908,318,180042.500700004,371457.5002,24.1300000000047 +24909,271,180047.500700001,371457.500100002,24.6499999999942 +24910,19535,180049.213638343,371461.298983607,24.8006000000023 +24911,19537,180049.381791949,371459.817802861,24.7819000000018 +24912,19541,180049.496357627,371458.808651265,24.7691999999952 +24913,19543,180049.598393906,371457.909864936,24.7578999999969 +24914,19547,180049.707318779,371456.950400371,24.7456999999995 +24915,19549,180049.855711572,371455.643282767,24.7292000000016 +24916,19548,180049.822534196,371456.821817916,27.1999999999971 +24917,14610,180049.942829311,371455.762150634,27.1999999999971 +24918,19551,180049.975619223,371455.473307706,27.1999999999971 +24919,19550,180050.040525399,371454.901555907,27.1999999999971 +24920,19553,180049.991636053,371454.445992168,24.7140999999974 +24921,270,180047.500700001,371452.5002,24.570000000007 +24922,19555,180050.109201107,371453.410420615,24.7011000000057 +24923,19557,180050.237819094,371452.277489282,24.6867999999959 +24924,19563,180050.365617678,371451.151775733,24.6725000000006 +24925,19559,180050.388465561,371450.950520188,24.6699999999983 +24926,269,180047.500500005,371447.500399999,24.5200000000041 +24927,19572,180051.027507737,371445.321374305,24.5988999999972 +24928,19576,180051.168523222,371444.079166953,24.5832999999984 +24929,14603,180051.22350936,371444.480772391,27.1999999999971 +24930,19577,180051.305091243,371443.762126066,27.1999999999971 +24931,14885,180051.358168975,371444.706426777,27.5354999999981 +24932,14884,180051.501425005,371443.429426651,27.5362000000023 +24933,14605,180051.386673115,371443.043479729,27.1999999999971 +24934,19578,180051.312493708,371442.810928978,24.567200000005 +24935,19579,180051.434589889,371442.621385865,27.1999999999971 +24936,14883,180051.487239297,371442.157602672,27.1999999999971 +24937,19580,180051.440564457,371441.682752013,24.5529999999999 +24938,19581,180051.537522379,371441.714664143,27.1999999999971 +24939,14879,180051.587805472,371441.271725614,27.1999999999971 +24940,19583,180051.689873133,371440.372622129,27.1999999999971 +24941,19588,180051.713880878,371440.161140379,27.1999999999971 +24942,19587,180051.737888627,371439.949658629,27.1999999999971 +24943,19584,180051.785904117,371439.526695132,27.1999999999971 +24944,19585,180051.918282077,371439.713516511,27.5380000000005 +24945,19592,180051.970202167,371439.250695061,27.5381999999954 +24946,19589,180051.895225864,371439.919042177,27.5378999999957 +24947,19591,180051.839675061,371439.05303238,27.1999999999971 +24948,19586,180051.843305778,371440.381863613,27.5377000000008 +24949,14880,180051.768329464,371441.050210722,27.5372999999963 +24950,14882,180051.660355352,371442.012703896,27.5369000000064 +24951,14878,180051.597037695,371442.577124525,27.5366000000067 +24952,19574,180051.301273171,371445.213602241,27.5353000000032 +24953,19570,180051.244377371,371445.720777705,27.5350000000035 +24954,19571,180051.244189847,371445.722449306,27.5350000000035 +24955,14886,180051.130210731,371446.738471843,27.5344999999943 +24956,19568,180050.9782244,371446.641462293,27.1999999999971 +24957,14606,180050.94150234,371446.964943107,27.1999999999971 +24958,14887,180051.043577522,371447.510729801,27.5341999999946 +24959,278,180051.006000005,371447.845699999,27.5339999999997 +24960,14889,180050.869281594,371449.064431012,27.5334000000003 +24961,14607,180050.717736989,371448.936069008,27.1999999999971 +24962,19566,180050.68801548,371449.19788266,27.1999999999971 +24963,14892,180050.68190496,371450.734737992,27.5326000000059 +24964,14608,180051.435429655,371451.301961955,27.6972999999998 +24965,19562,180050.610121705,371451.374626126,27.5323000000062 +24966,14890,180050.538338441,371452.014514249,27.5320000000065 +24967,14893,180050.351759758,371453.677708164,27.5310999999929 +24968,14609,180050.321693163,371452.424778119,27.1999999999971 +24969,19558,180050.366542809,371452.029702205,27.1999999999971 +24970,19560,180050.440368593,371451.37937849,27.1999999999971 +24971,19564,180050.458825044,371451.21679756,27.1999999999971 +24972,19561,180050.477281488,371451.054216631,27.1999999999971 +24973,19556,180050.205003679,371453.452683721,27.1999999999971 +24974,14894,180050.138221484,371454.040961187,27.1999999999971 +24975,14895,180050.25291352,371454.558840223,27.530700000003 +24976,19554,180050.089373447,371454.471258547,27.1999999999971 +24977,19552,180050.187480621,371455.142120149,27.5304000000033 +24978,12911,180050.986359309,371454.991423909,27.6806999999972 +24979,14896,180050.122047726,371455.725400072,27.5301000000036 +24980,14897,180050.811010908,371456.432047274,27.6741000000038 +24981,14898,180049.993276015,371456.873292882,27.5295999999944 +24982,14611,180050.635662515,371457.872670643,27.6676000000007 +24983,14900,180049.903495643,371457.67361033,27.5292000000045 +24984,19545,180049.853285473,371458.121192247,27.528999999995 +24985,14902,180049.80307531,371458.568774149,27.5286999999953 +24986,19540,180049.713274516,371459.369273592,27.5283000000054 +24987,14905,180049.623473726,371460.169773016,27.5280000000057 +24988,14903,180049.521810364,371461.076017424,27.5274999999965 +24989,14904,180049.448502958,371460.116620414,27.1999999999971 +24990,19536,180049.330260813,371461.158203296,27.1999999999971 +24991,14613,180049.262801182,371461.75244816,27.1999999999971 +24992,14907,180049.200900596,371462.297724079,27.1999999999971 +24993,276,180049.138999999,371462.842999998,27.1999999999971 +24994,19539,180049.494928405,371459.707663469,27.1999999999971 +24995,19538,180049.541353848,371459.298706528,27.1999999999971 +24996,19542,180049.590577036,371458.865104545,27.1999999999971 +24997,14612,180049.634204738,371458.480792649,27.1999999999971 +24998,19544,180049.672782805,371458.1409624,27.1999999999971 +24999,19546,180049.692071844,371457.971047271,27.1999999999971 +25000,14901,180049.711360879,371457.801132146,27.1999999999971 +25001,14899,180049.788517028,371457.12147164,27.1999999999971 +25002,14891,180050.514194384,371450.729054775,27.1999999999971 +25003,19565,180050.5998195,371449.088809367,24.6465000000026 +25004,283,180050.748199999,371447.781800009,24.6300000000047 +25005,19567,180050.873115249,371446.681419898,24.6160999999993 +25006,14888,180050.894501172,371447.378971551,27.1999999999971 +25007,275,180050.8475,371447.793000001,27.1999999999971 +25008,19569,180051.10086688,371445.561117344,27.1999999999971 +25009,19575,180051.131527502,371445.291031107,27.1999999999971 +25010,19573,180051.16218812,371445.020944875,27.1999999999971 +25011,317,180032.500300005,371452.500100002,24.4199999999983 +25012,20245,180026.148980442,371454.286768045,24.8160000000062 +25013,20243,180026.016688697,371455.581092037,24.8099999999977 +25014,20246,180025.865099665,371457.064218074,24.8029999999999 +25015,6638,180025.81893586,371456.532542154,26.75 +25016,20247,180025.501104485,371459.642249815,26.75 +25017,20252,180025.34379378,371461.181400318,26.75 +25018,20250,180025.186483074,371462.720550831,26.75 +25019,20244,180026.048583549,371454.285636254,26.75 +25020,321,180023.7434,371445.775800008,28.8800000000047 +25021,20242,180026.278231241,371452.038730364,26.75 +25022,6639,180026.712233968,371447.792385537,26.75 +25023,20239,180026.861116987,371446.335692778,26.75 +25024,20240,180026.93929645,371446.554426271,24.8521999999939 +25025,313,180027.1096,371444.8882,24.8600000000006 +25026,312,180027.010000009,371444.879000001,26.75 +25027,20233,180027.262383964,371443.06012192,24.8931000000011 +25028,20235,180027.325612947,371442.303579669,24.906799999997 +25029,20237,180027.48902224,371440.348368216,24.9422999999952 +25030,20236,180027.369264394,371440.580515061,26.75 +25031,20227,180027.665026955,371437.041809488,26.75 +25032,20232,180027.769182879,371436.996213235,25.002999999997 +25033,20230,180027.863972809,371434.661485229,26.75 +25034,20228,180028.062918659,371432.281160977,26.75 +25035,6640,180028.197422374,371430.67186651,26.75 +25036,20222,180028.308371391,371429.344396606,26.75 +25037,20221,180028.335951317,371430.21476211,25.1258999999991 +25038,20223,180028.433431223,371429.048403621,25.147100000002 +25039,20225,180028.525783572,371427.943396825,25.167100000006 +25040,20224,180028.41620082,371428.054251585,26.75 +25041,228,180032.500399999,371432.500700008,24.6199999999953 +25042,20226,180028.226347663,371431.526182692,25.1021999999939 +25043,20229,180028.126481947,371432.721087839,25.0804999999964 +25044,20231,180027.96144658,371434.695755377,25.0446999999986 +25045,216,180037.500200003,371432.500599999,24.1999999999971 +25046,20234,180027.183020547,371442.808863908,26.75 +25047,20238,180026.824824147,371447.674407318,24.8469999999943 +25048,20241,180026.393741842,371451.892056581,24.8271999999997 +25049,19599,180052.155773964,371436.268549826,27.1999999999971 +25050,19597,180052.176838491,371436.082994577,27.1999999999971 +25051,256,180052.456700001,371432.731600001,24.4400000000023 +25052,249,180052.556000005,371432.743000008,27.1999999999971 +25053,14601,180052.574850202,371432.581392385,27.1999999999971 +25054,14600,180052.631400794,371432.096569549,27.1999999999971 +25055,20258,180018.384993318,371525.186303698,24.944399999993 +25056,382,180022.500500005,371532.500500001,24.6300000000047 +25057,23375,180040.16183687,371544.517191373,27.1999999999971 +25058,19723,180040.115815867,371544.934576847,27.1999999999971 +25059,23377,180040.072429888,371545.328064039,27.1999999999971 +25060,19448,180040.029043909,371545.721551232,27.1999999999971 +25061,23379,180039.948457208,371546.452428754,27.1999999999971 +25062,23380,180039.842855558,371546.497769665,24.6701999999932 +25063,405,180039.855500001,371547.295500007,27.1999999999971 +25064,406,180039.756099999,371547.284600001,24.6699999999983 +25065,23383,180039.649434354,371548.252051421,24.6696999999986 +25066,397,180027.500500005,371557.500300001,24.25 +25067,399,180022.500500005,371562.500300001,24.4600000000064 +25068,401,180027.500900004,371562.500700008,24.2299999999959 +25069,439,180027.500900004,371567.500599999,24.1900000000023 +25070,442,180022.500599999,371567.500799999,24.3899999999994 +25071,463,180027.500800002,371572.500700008,24.1699999999983 +25072,443,180032.500799999,371572.500700008,24.3899999999994 +25073,19418,180037.348852161,371569.117964122,24.6634999999951 +25074,448,180032.500799999,371577.500700001,24.429999999993 +25075,468,180027.500100005,371577.500700001,24.1600000000035 +25076,449,180027.500599999,371582.5002,24.1699999999983 +25077,19401,180036.188294038,371579.643657051,24.6603999999934 +25078,19398,180036.222755756,371579.331106178,24.6604999999981 +25079,19403,180036.384816956,371577.861290585,24.6609000000026 +25080,19405,180036.573905706,371576.146348376,24.6613999999972 +25081,19404,180036.495248541,371577.772158571,27.1999999999971 +25082,19746,180036.670775265,371575.26778898,24.6616999999969 +25083,469,180036.041600004,371580.974100009,24.6600000000035 +25084,14649,180036.176158138,371580.666134808,27.1999999999971 +25085,459,180036.140999999,371580.984999999,27.1999999999971 +25086,14650,180036.097031083,371581.387413751,27.1999999999971 +25087,19397,180036.054910816,371581.772908177,27.1999999999971 +25088,19396,180035.958070837,371581.738578327,24.6578000000009 +25089,19395,180036.012790557,371582.158402603,27.1999999999971 +25090,19392,180035.842096001,371582.800006907,24.6546999999991 +25091,19388,180035.727069877,371583.8527526,24.6517000000022 +25092,19407,180036.767644823,371574.389229588,24.6619999999966 +25093,19409,180036.90339436,371573.158047855,24.6622999999963 +25094,14641,180036.957024235,371573.584104389,27.1999999999971 +25095,19408,180036.904621564,371574.059368066,27.1999999999971 +25096,14638,180036.8522189,371574.534631748,27.1999999999971 +25097,19747,180036.815602481,371574.866722744,27.1999999999971 +25098,19745,180036.778986055,371575.198813744,27.1999999999971 +25099,19750,180037.003601156,371573.161677092,27.1999999999971 +25100,19410,180037.047080204,371572.767345831,27.1999999999971 +25101,25152,180030.473141093,371632.857509363,27.1999999999971 +25102,19299,180030.524485145,371632.3876228,27.1999999999971 +25103,19297,180030.553151675,371632.12527464,27.1999999999971 +25104,19298,180030.64674535,371632.223880067,27.5288 +25105,25147,180030.594773717,371631.744361181,27.1999999999971 +25106,25144,180030.716849443,371631.584646311,27.5288 +25107,14670,180034.35249497,371597.353812728,27.1999999999971 +25108,19420,180037.449250009,371569.11988458,27.1999999999971 +25109,19419,180037.52309883,371568.450115956,27.1999999999971 +25110,19741,180037.566526864,371568.056247339,27.1999999999971 +25111,19423,180037.596947655,371567.780347329,27.1999999999971 +25112,14632,180038.07328172,371563.460215967,27.1999999999971 +25113,19433,180038.160330985,371562.670679349,27.1999999999971 +25114,14630,180038.247380249,371561.881142739,27.1999999999971 +25115,19435,180038.301927552,371561.38639877,27.1999999999971 +25116,14627,180038.622737586,371558.476652451,27.1999999999971 +25117,23401,180038.677466262,371557.980263487,27.1999999999971 +25118,23402,180038.744638041,371557.371015619,27.1999999999971 +25119,19462,180041.575019877,371531.700390723,27.1999999999971 +25120,23352,180041.609464906,371531.387993041,27.1999999999971 +25121,23340,180042.006406605,371527.78778876,27.1999999999971 +25122,23335,180042.422572546,371524.013164561,27.1999999999971 +25123,14623,180042.517766651,371523.149754245,27.1999999999971 +25124,411,180042.730300006,371522.521900006,27.5399999999936 +25125,19473,180042.585774209,371522.532925807,27.1999999999971 +25126,23331,180042.774626814,371522.121125598,27.5399999999936 +25127,23329,180042.90760725,371520.918802395,27.5399999999936 +25128,68,180021.138400003,371500.146699999,25.0099999999948 +25129,352,180018.394000001,371501.215999998,28.6699999999983 +25130,19529,180048.508606769,371467.71665265,24.7507000000041 +25131,19530,180048.639531486,371467.437621467,27.1999999999971 +25132,14909,180048.788616307,371466.066187028,27.1999999999971 +25133,19532,180048.864971757,371465.363791633,27.1999999999971 +25134,14912,180048.828959793,371467.323715109,27.5293999999994 +25135,14914,180048.651542351,371468.932703309,27.5304999999935 +25136,14915,180048.503476247,371470.27550599,27.5314999999973 +25137,14615,180048.367365934,371469.941278137,27.1999999999971 +25138,19526,180048.324741602,371470.333380308,27.1999999999971 +25139,19524,180048.179294888,371470.746021107,24.707699999999 +25140,19525,180048.282117266,371470.725482482,27.1999999999971 +25141,14616,180048.144604709,371471.990463357,27.1999999999971 +25142,280,180048.467100002,371470.605400007,27.5317000000068 +25143,22738,180048.29346174,371472.180186916,27.5310000000027 +25144,22739,180048.099505961,371472.405327693,27.1999999999971 +25145,19521,180048.00055914,371472.390226718,24.6843999999983 +25146,19522,180047.978517782,371473.518300582,27.1999999999971 +25147,19523,180047.858108539,371473.700642135,24.6658000000025 +25148,22745,180047.770356402,371474.5078816,24.6543999999994 +25149,22743,180047.682604268,371475.315121066,24.6429000000062 +25150,22744,180047.853351198,371474.669710621,27.1999999999971 +25151,22746,180047.894493062,371474.291245721,27.1999999999971 +25152,22740,180048.095227074,371473.978047393,27.5322000000015 +25153,22741,180047.93563493,371473.912780825,27.1999999999971 +25154,22742,180047.771067467,371475.42664041,27.1999999999971 +25155,22750,180047.722392268,371475.874404583,27.1999999999971 +25156,22748,180047.67371707,371476.322168764,27.1999999999971 +25157,277,180047.606500003,371476.940499999,27.1999999999971 +25158,281,180047.507100001,371476.9296,24.6199999999953 +25159,22749,180047.594852138,371476.122360535,24.6315000000031 +25160,19527,180048.336517252,371469.29971901,24.7281999999977 +25161,19528,180048.459209833,371469.096404169,27.1999999999971 +25162,14913,180048.577991121,371468.003732584,27.1999999999971 +25163,939,179972.501000002,371997.500999998,24.25 +25164,942,179977.501000002,372002.500900004,24.320000000007 +25165,937,179977.5009,371997.500500005,24.3500000000058 +25166,83,179982.500599999,372002.500400003,24.1699999999983 +25167,936,179982.500300001,371997.5002,24.179999999993 +25168,938,179987.500800002,371997.500800002,24.1000000000058 +25169,18467,179991.181479041,372000.487863787,24.2878999999957 +25170,18469,179991.333582941,371999.107982963,24.2880000000005 +25171,18473,179991.459638484,371997.964411803,24.2880000000005 +25172,18475,179991.598288748,371996.706581853,24.2881000000052 +25173,12112,179991.668308441,371996.984077312,27.1999999999971 +25174,18477,179991.701316725,371996.684625816,27.1999999999971 +25175,18474,179991.564100232,371997.929455172,27.1999999999971 +25176,18476,179991.803550009,371995.757164445,27.1999999999971 +25177,18481,179991.837360404,371995.450436234,27.1999999999971 +25178,18483,179991.854265597,371995.29707212,27.1999999999971 +25179,18480,179991.871170793,371995.143708017,27.1999999999971 +25180,18472,179991.508932065,371998.429941412,27.1999999999971 +25181,18470,179991.428546909,371999.15919625,27.1999999999971 +25182,18465,179991.046712607,372001.710459769,24.2878000000055 +25183,18463,179990.926396471,372002.801963281,24.2877000000008 +25184,12115,179991.078994166,372002.330342252,27.1999999999971 +25185,946,179977.5009,372007.5009,24.3099999999977 +25186,979,179997.532499999,371988.028999999,28.5800000000017 +25187,12248,179993.883093558,371991.25002262,27.7722999999969 +25188,10749,179994.858375002,371983.040374998,27.7893999999942 +25189,12108,179995.702687502,371975.933187503,27.8041999999987 +25190,12227,179996.12484375,371972.379593756,27.8116000000009 +25191,18522,179994.330505718,371974.241408262,27.5329000000056 +25192,12234,179994.243175831,371975.029129237,27.5332000000053 +25193,12232,179994.213503126,371975.296778891,27.5332000000053 +25194,18518,179994.153682854,371975.836361438,27.5334000000003 +25195,12235,179994.093862582,371976.375943989,27.5335999999952 +25196,12238,179993.830982368,371978.747139715,27.5344000000041 +25197,18513,179993.706379112,371979.87106875,27.5347000000038 +25198,18512,179993.581964269,371979.623332798,27.1999999999971 +25199,18514,179993.537171382,371980.029696435,27.1999999999971 +25200,18511,179993.492378496,371980.436060078,27.1999999999971 +25201,12236,179993.581775855,371980.994997781,27.5350999999937 +25202,12239,179993.452852726,371982.15789235,27.5354999999981 +25203,12241,179993.323172007,371983.327620432,27.5359000000026 +25204,18504,179993.197499212,371984.461196795,27.5362000000023 +25205,18505,179993.028063044,371984.648356549,27.1999999999971 +25206,18500,179992.932439875,371985.515855446,27.1999999999971 +25207,12110,179992.905184858,371985.763114553,27.1999999999971 +25208,18506,179992.980759233,371984.164861776,24.2888999999996 +25209,18507,179993.075874627,371984.214607097,27.1999999999971 +25210,18503,179993.123686213,371983.780857649,27.1999999999971 +25211,18501,179993.079295639,371983.270943183,24.2890000000043 +25212,18508,179993.232771814,371981.878613096,24.2890999999945 +25213,18510,179993.405384772,371980.312674858,24.2891999999993 +25214,12107,179993.389039412,371981.373558193,27.1999999999971 +25215,18509,179993.331114095,371981.899059966,27.1999999999971 +25216,18502,179993.284894899,371982.318363182,27.1999999999971 +25217,18515,179993.565277264,371978.862136222,24.289300000004 +25218,18516,179993.848263204,371976.294898383,24.2893999999942 +25219,18520,179994.020393513,371974.733338717,24.2896000000037 +25220,18517,179994.026815075,371975.587620724,27.1999999999971 +25221,12233,179994.099569477,371974.927588601,27.1999999999971 +25222,18521,179994.153994594,371974.433840808,27.1999999999971 +25223,12230,179994.245078277,371973.607524361,27.1999999999971 +25224,18523,179994.191562343,371973.180501539,24.2896999999939 +25225,18528,179994.355390735,371971.694256537,24.2897999999986 +25226,18530,179994.529406331,371970.115593627,24.2899000000034 +25227,12225,179994.536095887,371970.967395876,27.1999999999971 +25228,18531,179994.623535078,371970.174142506,27.1999999999971 +25229,12226,179994.670580152,371969.747346874,27.1999999999971 +25230,913,179994.745499998,371968.155200005,24.2899999999936 +25231,12106,179994.805064421,371968.527297866,27.1999999999971 +25232,910,179994.845000003,371968.165000003,27.1999999999971 +25233,912,179994.976500001,371968.414500006,27.5310000000027 +25234,12228,179994.823745538,371969.792354703,27.5314999999973 +25235,12224,179994.782718349,371970.162422433,27.5316000000021 +25236,12229,179994.650503073,371971.35501238,27.5320000000065 +25237,18526,179994.534169339,371972.404349841,27.5323000000062 +25238,12231,179994.417835601,371973.453687299,27.5326000000059 +25239,18527,179994.340567868,371972.741237327,27.1999999999971 +25240,18525,179994.290548652,371973.195014544,27.1999999999971 +25241,18524,179994.39058708,371972.287460122,27.1999999999971 +25242,18529,179994.463341486,371971.627427999,27.1999999999971 +25243,12109,179993.95406067,371976.247652847,27.1999999999971 +25244,18519,179993.923359822,371976.526172671,27.1999999999971 +25245,12237,179993.671550043,371978.810605519,27.1999999999971 +25246,12240,179993.180750389,371983.26316816,27.1999999999971 +25247,18488,179992.276008997,371992.773067269,27.5390000000043 +25248,12251,179992.35946938,371992.020253442,27.5387000000046 +25249,12250,179992.199490447,371992.165188882,27.1999999999971 +25250,18487,179992.134315729,371992.756454557,27.1999999999971 +25251,18489,179992.101728372,371993.052087396,27.1999999999971 +25252,12253,179992.069141015,371993.347720232,27.1999999999971 +25253,18492,179992.253520958,371991.675023571,27.1999999999971 +25254,18493,179992.465814956,371991.061014835,27.5384000000049 +25255,18494,179992.291680418,371991.328840557,27.1999999999971 +25256,18491,179992.329839878,371990.982657533,27.1999999999971 +25257,18496,179992.406535141,371990.286877349,27.1999999999971 +25258,12249,179992.572160531,371990.10177622,27.5381000000052 +25259,9837,180003.485272337,371877.87101309,27.561400000006 +25260,18746,180003.36940809,371878.900935438,27.5616000000009 +25261,18747,180003.311475959,371879.415896613,27.5617000000057 +25262,12701,180003.253543839,371879.930857789,27.5617999999959 +25263,18741,180003.184939448,371880.540685177,27.5620000000054 +25264,12618,180008.823601864,371829.823862173,27.5320999999967 +25265,25042,180008.752858456,371830.467226334,27.5326999999961 +25266,12620,180008.691330642,371829.781096943,27.1999999999971 +25267,18886,180008.716427427,371829.547078222,27.1999999999971 +25268,12623,180008.89589642,371829.16639144,27.5314999999973 +25269,18885,180008.741524216,371829.313059505,27.1999999999971 +25270,12622,180008.791717786,371828.84502206,27.1999999999971 +25271,18887,180008.757739216,371828.224090245,24.3628000000026 +25272,18888,180008.852001261,371828.282899827,27.1999999999971 +25273,18891,180008.888163377,371827.945700828,27.1999999999971 +25274,18889,180008.924325485,371827.608501837,27.1999999999971 +25275,18892,180008.915473986,371826.753268935,24.3534999999974 +25276,12616,180008.996649712,371826.934103843,27.1999999999971 +25277,25049,180009.061641961,371826.32807396,27.1999999999971 +25278,25052,180009.115292493,371825.827801589,27.1999999999971 +25279,25048,180009.217566021,371826.241020914,27.5288 +25280,25054,180009.269958999,371825.764541745,27.5283000000054 +25281,9819,180009.112780076,371827.193979237,27.5295999999944 +25282,18890,180009.04048552,371827.851449966,27.5302999999985 +25283,12621,180008.968190964,371828.508920699,27.5308999999979 +25284,25056,180009.12132486,371825.771551926,27.1999999999971 +25285,25055,180009.128705129,371825.702733487,27.1999999999971 +25286,25053,180009.142117761,371825.577665392,27.1999999999971 +25287,19496,180044.69263671,371502.581150137,24.5531000000046 +25288,363,180044.822000004,371502.322000001,27.1999999999971 +25289,22757,180047.25421926,371480.181138035,27.1999999999971 +25290,22760,180047.30178573,371479.743573088,27.1999999999971 +25291,22762,180047.087625422,371483.116344091,27.5381999999954 +25292,22764,180046.902709853,371484.793408915,27.539300000004 +25293,369,180046.783000004,371485.879100002,27.5399999999936 +25294,23259,180046.637645915,371487.19336262,27.5399999999936 +25295,23262,180046.450513616,371488.885375522,27.5399999999936 +25296,366,180048.653000005,371491.638999999,27.8160000000062 +25297,23268,180046.30249263,371490.223751716,27.5399999999936 +25298,23264,180046.22225444,371490.949249391,27.5399999999936 +25299,23278,180046.061937653,371492.39880177,27.5399999999936 +25300,362,180046.074000001,371491.037999999,27.1999999999971 +25301,23273,180045.933671791,371492.302747216,27.1999999999971 +25302,23279,180045.899129864,371492.614065986,27.1999999999971 +25303,23274,180045.863507692,371492.935120821,27.1999999999971 +25304,23277,180045.828425642,371493.251307625,27.1999999999971 +25305,23265,180046.11917663,371490.622419227,27.1999999999971 +25306,23269,180046.164751858,371490.203171778,27.1999999999971 +25307,23267,180046.204271547,371489.839629322,27.1999999999971 +25308,23263,180046.289366458,371489.056839421,27.1999999999971 +25309,19510,180046.31983893,371488.776522513,27.1999999999971 +25310,19511,180046.442758393,371487.645783771,27.1999999999971 +25311,23261,180046.473488256,371487.363099094,27.1999999999971 +25312,23260,180046.50421812,371487.0804144,27.1999999999971 +25313,14618,180046.565677855,371486.515045028,27.1999999999971 +25314,19515,180046.65178293,371485.722962592,27.1999999999971 +25315,14617,180046.73312806,371484.974667009,27.1999999999971 +25316,22765,180046.806903571,371484.296004515,27.1999999999971 +25317,19517,180046.880679086,371483.617342014,27.1999999999971 +25318,22763,180046.946551133,371483.01138366,27.1999999999971 +25319,23282,180045.596807811,371496.604412928,27.5399999999936 +25320,23283,180045.470864113,371497.743170708,27.5399999999936 +25321,19504,180045.362598456,371497.449705329,27.1999999999971 +25322,23284,180045.325076278,371497.787884451,27.1999999999971 +25323,19704,180045.287554096,371498.126063563,27.1999999999971 +25324,14619,180045.21250974,371498.802421793,27.1999999999971 +25325,23287,180045.188102882,371499.022395432,27.1999999999971 +25326,19705,180045.437642813,371496.773347098,27.1999999999971 +25327,23570,179681.985300198,374998.045190822,26.5262999999977 +25328,23569,179681.986940581,374998.047447033,26.5268999999971 +25329,23567,179681.918958861,374998.717921868,26.5273000000016 +25330,23691,179682.991986834,374988.473644532,26.5338000000047 +25331,23653,179680.589704912,374989.24537107,26.608699999997 +25332,23690,179682.988264624,374988.475613993,26.5326000000059 +25333,23689,179682.978259616,374988.480907772,26.5344000000041 +25334,23688,179682.919948753,374988.511760749,26.5378000000055 +25335,23687,179682.902473159,374988.521007296,26.5427999999956 +25336,23686,179682.859097842,374988.543957695,26.5488000000041 +25337,23685,179682.856640521,374988.545257896,26.5469000000012 +25338,23684,179682.854221668,374988.546537742,26.5467000000062 +25339,23683,179682.848119918,374988.549766254,26.5439000000042 +25340,23654,179680.832663603,374989.213389456,26.601999999999 +25341,23682,179682.716431085,374988.619444408,26.5366999999969 +25342,23681,179682.709641226,374988.623037003,26.537599999996 +25343,23680,179682.70262114,374988.626751415,26.5383000000002 +25344,23679,179682.647341378,374988.656000603,26.5411000000022 +25345,23678,179682.633085296,374988.663543668,26.5396999999939 +25346,23655,179681.03169417,374989.187190283,26.5963999999949 +25347,23677,179682.462244682,374988.753937498,26.5299999999988 +25348,23676,179682.391458824,374988.791391153,26.5282000000007 +25349,23656,179681.197722517,374989.165335316,26.5917999999947 +25350,23675,179682.366103396,374988.804807018,26.5293999999994 +25351,23674,179682.339143313,374988.819071922,26.5304000000033 +25352,23657,179681.338328592,374989.146826793,26.5878999999986 +25353,23673,179682.310421269,374988.834269106,26.531799999997 +25354,23672,179682.279758696,374988.850493044,26.5334000000003 +25355,23671,179682.220045269,374988.882088143,26.5359000000026 +25356,23578,179681.919,374997.954000004,26.5322000000015 +25357,23658,179681.458936147,374989.130950745,26.5844999999972 +25358,23670,179682.191269886,374988.897313539,26.5369000000064 +25359,23580,179681.855764933,374997.914462738,26.5290999999997 +25360,23669,179682.16041502,374988.913639225,26.5378999999957 +25361,23659,179681.545702446,374989.119529355,26.5776000000042 +25362,23668,179682.127252344,374988.931185991,26.5390999999945 +25363,23667,179682.091512546,374988.950096358,26.5402999999933 +25364,23666,179681.949978929,374989.024983503,26.5541999999987 +25365,23660,179681.682297494,374989.10154881,26.5700999999972 +25366,23586,179681.684393276,374997.807313856,26.5247999999992 +25367,23588,179681.656009894,374997.789567359,26.5261000000028 +25368,23589,179681.640306011,374997.779748615,26.5270000000019 +25369,23590,179681.609571707,374997.760532212,26.5283999999956 +25370,23665,179681.903886676,374989.049371466,26.5574000000051 +25371,23661,179681.73769135,374989.094257101,26.5687999999936 +25372,23591,179681.594688941,374997.751226872,26.528999999995 +25373,23592,179681.578678157,374997.741216246,26.5295999999944 +25374,23593,179681.561408959,374997.730418805,26.5302999999985 +25375,23664,179681.853294995,374989.076140136,26.5610000000015 +25376,23662,179681.798448846,374989.086259346,26.5644000000029 +25377,23594,179681.542726733,374997.718737882,26.5310000000027 +25378,23595,179681.468010988,374997.67202241,26.5390000000043 +25379,23596,179681.443423383,374997.656649183,26.5409000000072 +25380,23597,179681.416289166,374997.639683712,26.5430000000051 +25381,23598,179681.38619145,374997.620865334,26.5449999999983 +25382,23599,179681.352616336,374997.599872738,26.5475000000006 +25383,23600,179681.321873553,374997.580651037,26.5482999999949 +25384,23601,179681.245523561,374997.532913763,26.5528000000049 +25385,23602,179681.196620923,374997.502337743,26.5568999999959 +25386,23603,179681.128116157,374997.459505633,26.5590999999986 +25387,23604,179681.047465626,374997.409079481,26.5616000000009 +25388,23605,179680.951125003,374997.348843209,26.5645999999979 +25389,23606,179680.834022295,374997.275625594,26.5681999999942 +25390,23608,179680.491528928,374997.06148411,26.5730999999942 +25391,23609,179680.374000005,374996.988000002,26.5737999999983 +25392,23663,179681.846000005,374989.080000002,26.5614999999962 +25393,23610,179680.237240501,374996.91853486,26.5745000000024 +25394,23611,179678.462894168,374996.017279577,26.5381999999954 +25395,23652,179680.267435182,374989.287792705,26.6083000000071 +25396,23651,179679.862045888,374989.341155685,26.6092999999964 +25397,23650,179679.453000005,374989.395000003,26.5994999999966 +25398,23612,179678.404370021,374995.987553023,26.5387000000046 +25399,23613,179678.312661801,374995.940971073,26.5366000000067 +25400,23614,179678.296619434,374995.93282257,26.5354999999981 +25401,23615,179678.120888252,374995.843562283,26.5311999999976 +25402,23616,179677.903991304,374995.733392406,26.5295000000042 +25403,23618,179677.350000001,374995.452,26.5233000000007 +25404,24314,179817.695342872,373606.95416525,28.120299999995 +25405,24310,179817.617154177,373607.26614061,28.1533000000054 +25406,24300,179816.537999999,373611.572000004,28.1045000000013 +25407,3357,179814.181000005,373610.614999998,27.8999999999942 +25408,24299,179814.722218093,373612.246407624,27.9872000000032 +25409,24297,179814.02025,373612.110125002,27.9026000000013 +25410,24298,179813.02692036,373611.508335199,27.9391999999934 +25411,24294,179813.859500002,373613.605250005,27.9052999999985 +25412,24289,179812.668063458,373614.807804294,27.9373000000051 +25413,24295,179813.69875,373615.100375,27.9079000000056 +25414,24286,179813.538000003,373616.595500004,27.9104999999981 +25415,24293,179814.380013928,373614.180949304,27.9747999999963 +25416,24287,179813.151400201,373620.19123891,27.9168000000063 +25417,24291,179812.234508958,373618.794072077,27.9349999999977 +25418,23114,179812.017731708,373620.787205964,27.9339000000036 +25419,12800,179810.032363586,373619.269980509,25.0200000000041 +25420,12802,179809.799114894,373620.39797172,25.0200000000041 +25421,12801,179809.683024738,373620.465412512,22.6380999999965 +25422,3360,179809.497000001,373621.859000001,25.0200000000041 +25423,12799,179809.968049478,373619.087025009,22.5862000000052 +25424,12797,179810.209320392,373617.920232192,22.542300000001 +25425,8850,179810.431290548,373616.846778415,22.5019000000029 +25426,12796,179810.438878071,373617.304075584,25.0200000000041 +25427,24292,179810.603330407,373616.508783706,25.0200000000041 +25428,23110,179810.767782748,373615.713491824,25.0200000000041 +25429,24290,179810.932235088,373614.918199945,25.0200000000041 +25430,12803,179811.096687429,373614.122908063,25.0200000000041 +25431,24288,179812.451286208,373616.800938182,27.9361999999965 +25432,12798,179810.2426048,373618.253253549,25.0200000000041 +25433,24296,179814.515999999,373612.322999999,27.9679000000033 +25434,21050,179783.96827919,373630.791879144,25 +25435,21053,179784.077347849,373629.954845738,25 +25436,21055,179784.262785658,373628.531727217,25 +25437,3319,179787.601,373602.411000006,25 +25438,21033,179787.727180049,373601.404942468,25 +25439,21031,179787.826821331,373600.610483538,25 +25440,21025,179787.946979858,373599.652436797,25 +25441,21027,179788.097011592,373598.456205193,25 diff --git a/tests/test_data/cases/case_20_only_elevation/model/CrossSectionLocations.ini b/tests/test_data/cases/case_20_only_elevation/model/CrossSectionLocations.ini new file mode 100644 index 00000000..3c74cc08 --- /dev/null +++ b/tests/test_data/cases/case_20_only_elevation/model/CrossSectionLocations.ini @@ -0,0 +1,17 @@ +name,x,y,length,branch,offset +channel1_0.000, 639756.0142, 6680260.9375, 238.63, Channel1, 0.00 +channel1_477.253, 639706.0960, 6680734.5670, 477.25, Channel1, 477.25 +channel1_954.507, 639656.0720, 6681209.1920, 477.25, Channel1, 954.51 +channel1_1431.760, 639606.0490, 6681683.8160, 477.25, Channel1, 1431.76 +channel1_1909.014, 639556.0250, 6682158.4410, 477.25, Channel1, 1909.01 +channel1_2386.267, 639506.0020, 6682633.0650, 477.25, Channel1, 2386.27 +channel1_2863.521, 639455.9780, 6683107.6900, 477.25, Channel1, 2863.52 +channel1_3340.774, 639405.9550, 6683582.3150, 477.25, Channel1, 3340.77 +channel1_3818.028, 639355.9320, 6684056.9390, 477.25, Channel1, 3818.03 +channel1_4295.281, 639306.1790, 6684531.5920, 477.25, Channel1, 4295.28 +channel1_4772.534, 639256.4260, 6685006.2450, 477.25, Channel1, 4772.53 +channel1_5249.788, 639207.0030, 6685480.9330, 477.25, Channel1, 5249.79 +channel1_5727.041, 639158.3230, 6685955.6970, 477.25, Channel1, 5727.04 +channel1_6204.295, 639109.1390, 6686430.4090, 477.25, Channel1, 6204.30 +channel1_6681.548, 639059.3120, 6686905.0540, 477.25, Channel1, 6681.55 +channel1_7158.802, 639009.5894, 6687378.7045, 238.63, Channel1, 7158.80 diff --git a/tests/test_data/cases/case_20_only_elevation/model/NetworkDefinition.ini b/tests/test_data/cases/case_20_only_elevation/model/NetworkDefinition.ini new file mode 100644 index 00000000..69232d46 --- /dev/null +++ b/tests/test_data/cases/case_20_only_elevation/model/NetworkDefinition.ini @@ -0,0 +1,27 @@ +[General] + majorVersion = 1 + minorVersion = 0 + fileType = network + +[Node] + id = Node001 + x = 639756.119 + y = 6680259.943 + +[Node] + id = Node002 + x = 639009.485 + y = 6687379.699 + +[Branch] + id = Channel1 + fromNode = Node001 + toNode = Node002 + order = -1 + geometry = LINESTRING (639756.11914614157 6680259.94250664 0, 639356.076236621 6684055.5640708581 0, 639222.01826319087 6685334.4967078893 0, 639131.015405315 6686222.0192035176 0, 639009.48497252143 6687379.6992606334 0) + gridPointsCount = 16 + gridPointX = 639756.119 639706.096 639656.072 639606.049 639556.025 639506.002 639455.978 639405.955 639355.932 639306.179 639256.426 639207.003 639158.323 639109.139 639059.312 639009.485 + gridPointY = 6680259.943 6680734.567 6681209.192 6681683.816 6682158.441 6682633.065 6683107.690 6683582.315 6684056.939 6684531.592 6685006.245 6685480.933 6685955.697 6686430.409 6686905.054 6687379.699 + gridPointOffsets = 0.000 477.253 954.507 1431.760 1909.014 2386.267 2863.521 3340.774 3818.028 4295.281 4772.534 5249.788 5727.041 6204.295 6681.548 7158.802 + gridPointIds = Channel1_0.000;Channel1_477.253;Channel1_954.507;Channel1_1431.760;Channel1_1909.014;Channel1_2386.267;Channel1_2863.521;Channel1_3340.774;Channel1_3818.028;Channel1_4295.281;Channel1_4772.534;Channel1_5249.788;Channel1_5727.041;Channel1_6204.295;Channel1_6681.548;Channel1_7158.802 + diff --git a/tests/test_data_import.py b/tests/test_data_import.py index 14e58a33..a2853e31 100644 --- a/tests/test_data_import.py +++ b/tests/test_data_import.py @@ -3,7 +3,8 @@ import numpy as np import pytest -from fm2prof.data_import import FMDataImporter, FmModelData +from fm2prof.imports import ImporterFactory, ModelData +from fm2prof.imports.dflowfm import DFlowFMImporter from tests.TestUtils import TestUtils, skipwhenexternalsmissing @@ -15,7 +16,8 @@ def test_when_map_file_without_czu_no_exception(self): assert test_map.is_file() # 2. Set initial expectations - return_value = FMDataImporter().import_dflow2d(test_map) + importer = DFlowFMImporter(test_map) + return_value = importer.import_data() # 3. Verify final expectations assert return_value is not None @@ -23,7 +25,7 @@ def test_when_map_file_without_czu_no_exception(self): def test_initialisation_with_map_file(self): test_file = TestUtils.get_local_test_file("cases/case_02_compound/Data/2DModelOutput/FlowFM_map.nc") - fmdata = FMDataImporter(test_file) + fmdata = DFlowFMImporter(test_file) assert fmdata is not None assert fmdata.file_path == test_file @@ -31,7 +33,7 @@ def test_initialisation_with_map_file(self): def test_get_variable(self): test_file = TestUtils.get_local_test_file("cases/case_02_compound/Data/2DModelOutput/FlowFM_map.nc") - fmdata = FMDataImporter(test_file) + fmdata = DFlowFMImporter(test_file) var_data = fmdata.get_variable("mesh2d_face_x") @@ -52,7 +54,7 @@ def test_when_given_expected_arguments_then_object_is_created(self): return_fm_model_data = None # 2. Run test - return_fm_model_data = FmModelData( + return_fm_model_data = ModelData( time_dependent_data=time_dependent_data, time_independent_data=time_independent_data, edge_data=edge_data, @@ -86,7 +88,7 @@ def test_when_given_data_dictionary_then_css_data_list_is_set(self): expected_css_data_list = [{dummy_key: 0}, {dummy_key: 1}] # 3. Run test - return_fm_model_data = FmModelData( + return_fm_model_data = ModelData( time_dependent_data=time_dependent_data, time_independent_data=time_independent_data, edge_data=edge_data, @@ -114,7 +116,7 @@ def test_when_given_dictionary_then_returns_list(self): expected_list = [{dummy_key: 0}, {dummy_key: 1}] # 3. Run test - return_list = FmModelData.get_ordered_css_list(test_dict) + return_list = ModelData.get_ordered_css_list(test_dict) # 4. Verify final expectations assert return_list is not None @@ -131,7 +133,7 @@ def test_when_given_unexpected_value_then_returns_empty_list(self, test_dict): expected_list = [] # 3. Run test - return_list = FmModelData.get_ordered_css_list(test_dict) + return_list = ModelData.get_ordered_css_list(test_dict) # 4. Verify final expectations assert return_list is not None