diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000..bcb2786 --- /dev/null +++ b/.flake8 @@ -0,0 +1,4 @@ +[flake8] +ignore = F403, F405, W503, W504 +max-line-length = 120 +per-file-ignores = __init__.py:F401 \ No newline at end of file diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 28e7260..b0ef7b4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,10 +2,11 @@ name: Tests # Controls when the workflow will run on: - push: - branches: [ "**" ] pull_request: - branches: [ "main" ] + branches: [ "**" ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: jobs: test: diff --git a/.gitignore b/.gitignore index d9abbbb..119213a 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,5 @@ pytest_cache/* build/* random_fields.egg-info/* .coverage -.tox/* \ No newline at end of file +.tox/* +docs/build/* \ No newline at end of file diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..a195abe --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,21 @@ +repos: + - repo: local + hooks: + - id: yapf + name: yapf + language: python + entry: yapf + args: [-i] + types: [python] + - id: mypy + name: mypy + language: python + entry: mypy + files: "^random_fields/" + args: [ --config-file, "pyproject.toml" ] + types: [python] + - id: flake8 + name: flake8 + language: python + entry: flake8 + files: "^random_fields/" \ No newline at end of file diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..51e80ed --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,28 @@ +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the OS, Python version, and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.11" + jobs: + pre_build: + - sphinx-apidoc -o docs ./random_fields + - pip install . + +# Build documentation in the "docs/" directory with Sphinx +sphinx: + configuration: docs/conf.py + +# Optionally, but recommended, +# declare the Python requirements required to build your documentation +# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html +python: + install: + - requirements: docs/requirements.txt + + diff --git a/.style.yapf b/.style.yapf new file mode 100644 index 0000000..a5d75df --- /dev/null +++ b/.style.yapf @@ -0,0 +1,12 @@ +[style] +based_on_style = pep8 +SPLIT_ALL_TOP_LEVEL_COMMA_SEPARATED_VALUES = False +dedent_closing_brackets = False +EACH_DICT_ENTRY_ON_SEPARATE_LINE = True +FORCE_MULTILINE_DICT = False +coalesce_brackets = True +column_limit = 120 +split_arguments_when_comma_terminated = True +SPLIT_BEFORE_FIRST_ARGUMENT = False +#SPLIT_PENALTY_FOR_ADDED_LINE_SPLIT = 1 +ALLOW_SPLIT_BEFORE_DICT_VALUE = False \ No newline at end of file diff --git a/README.md b/README.md index 0309bbf..485f0bb 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ plot2D([np.array([x.ravel(), y.ravel()]).T], [rf.random_field], title="Random Fi The result is the following random field: -![Random field 2D](./docs/static/random_field.png) +![Random field 2D](./docs/_static/random_field.png) ## Example in 3D @@ -127,4 +127,4 @@ plot3D([np.array([x.ravel(), y.ravel(), z.ravel()]).T], [rf.random_field], title ``` The result is the following random field: -![Random field 3D](./docs/static/random_field_3D.png) +![Random field 3D](./docs/_static/random_field_3D.png) diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..d4bb2cb --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,20 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SOURCEDIR = . +BUILDDIR = _build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/docs/_static/2D_cpt_conditioned_field.png b/docs/_static/2D_cpt_conditioned_field.png new file mode 100644 index 0000000..99cb64c Binary files /dev/null and b/docs/_static/2D_cpt_conditioned_field.png differ diff --git a/docs/_static/conditioned_random_field_3D.png b/docs/_static/conditioned_random_field_3D.png new file mode 100644 index 0000000..c650efe Binary files /dev/null and b/docs/_static/conditioned_random_field_3D.png differ diff --git a/docs/_static/coordinates_1.png b/docs/_static/coordinates_1.png new file mode 100644 index 0000000..434466a Binary files /dev/null and b/docs/_static/coordinates_1.png differ diff --git a/docs/_static/coordinates_2.png b/docs/_static/coordinates_2.png new file mode 100644 index 0000000..74b4504 Binary files /dev/null and b/docs/_static/coordinates_2.png differ diff --git a/docs/_static/kriging_mean_2D.png b/docs/_static/kriging_mean_2D.png new file mode 100644 index 0000000..2cbf845 Binary files /dev/null and b/docs/_static/kriging_mean_2D.png differ diff --git a/docs/_static/kriging_mean_3D.png b/docs/_static/kriging_mean_3D.png new file mode 100644 index 0000000..8662ef4 Binary files /dev/null and b/docs/_static/kriging_mean_3D.png differ diff --git a/docs/_static/kriging_std_2D.png b/docs/_static/kriging_std_2D.png new file mode 100644 index 0000000..5f0b76c Binary files /dev/null and b/docs/_static/kriging_std_2D.png differ diff --git a/docs/_static/kriging_std_3D.png b/docs/_static/kriging_std_3D.png new file mode 100644 index 0000000..41f33ce Binary files /dev/null and b/docs/_static/kriging_std_3D.png differ diff --git a/docs/_static/marginal_distribution.png b/docs/_static/marginal_distribution.png new file mode 100644 index 0000000..ae91aaa Binary files /dev/null and b/docs/_static/marginal_distribution.png differ diff --git a/docs/static/random_field.png b/docs/_static/random_field.png similarity index 100% rename from docs/static/random_field.png rename to docs/_static/random_field.png diff --git a/docs/_static/random_field_1.png b/docs/_static/random_field_1.png new file mode 100644 index 0000000..0538fc6 Binary files /dev/null and b/docs/_static/random_field_1.png differ diff --git a/docs/_static/random_field_2.png b/docs/_static/random_field_2.png new file mode 100644 index 0000000..7a83098 Binary files /dev/null and b/docs/_static/random_field_2.png differ diff --git a/docs/_static/random_field_3.png b/docs/_static/random_field_3.png new file mode 100644 index 0000000..be071ea Binary files /dev/null and b/docs/_static/random_field_3.png differ diff --git a/docs/static/random_field_3D.png b/docs/_static/random_field_3D.png similarity index 100% rename from docs/static/random_field_3D.png rename to docs/_static/random_field_3D.png diff --git a/docs/_static/random_field_3d_young.png b/docs/_static/random_field_3d_young.png new file mode 100644 index 0000000..47bf40e Binary files /dev/null and b/docs/_static/random_field_3d_young.png differ diff --git a/docs/_static/random_field_4.png b/docs/_static/random_field_4.png new file mode 100644 index 0000000..10f3982 Binary files /dev/null and b/docs/_static/random_field_4.png differ diff --git a/docs/_static/random_field_5.png b/docs/_static/random_field_5.png new file mode 100644 index 0000000..55f35b3 Binary files /dev/null and b/docs/_static/random_field_5.png differ diff --git a/docs/authors.rst b/docs/authors.rst new file mode 100644 index 0000000..8985daf --- /dev/null +++ b/docs/authors.rst @@ -0,0 +1,14 @@ +.. _authors: + +Random Fields team +================== + +Maintainers +----------- +- Bruno Zuada Coelho `@brunozc `_ +- Aron Noordam `@aronnoordam `_ + +Developers +---------- +- Bram van den Eijnden `@bramvandeneijnden `_ +- Davide Moretti `@morettid `_ diff --git a/docs/conf.py b/docs/conf.py new file mode 100644 index 0000000..95a8e60 --- /dev/null +++ b/docs/conf.py @@ -0,0 +1,60 @@ +# Configuration file for the Sphinx documentation builder. +# +# For the full list of built-in configuration values, see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +# -- Project information ----------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information + +import random_fields + +project = 'RandomFields' +copyright = '2024, STEM team' +author = 'STEM team' +version = random_fields.__version__ + +# -- General configuration --------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration + +extensions = ['sphinx.ext.autodoc', 'sphinx_rtd_theme', 'sphinx.ext.intersphinx'] + +templates_path = ['_templates'] +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] + +# to add __init__ documentation to the build +autoclass_content = 'both' + +# -- Options for HTML output ------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output + +html_theme = 'sphinx_rtd_theme' +html_static_path = ['_static'] + +# # Configure the RTD theme options +html_theme_options = { + 'logo_only': False, + 'display_version': True, + 'prev_next_buttons_location': 'bottom', + 'style_external_links': True, # Toc options + 'collapse_navigation': False, + 'sticky_navigation': True, + 'navigation_depth': 2, + 'includehidden': True, + 'titles_only': True, +} + +# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. +html_show_sphinx = False +# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. +html_show_copyright = True +# If true shows the source link to the rst code +html_show_sourcelink = False + +# Link to the github +html_context = { + "display_github": True, + "github_user": "StemVibrations", + "github_repo": "RandomFields", + "github_version": "main", + "conf_py_path": "/docs/", +} diff --git a/docs/contributions.rst b/docs/contributions.rst new file mode 100644 index 0000000..72bab45 --- /dev/null +++ b/docs/contributions.rst @@ -0,0 +1,111 @@ +Code contribution +================= + +Steps for submitting your code +------------------------------ + +When contributing code follow this checklist: + + #. Fork the repository on GitHub. + #. Create an issue with the desired feature or bug fix. + #. Make your modifications or additions in a feature branch. + #. Make changes and commit your changes using a descriptive commit message. + #. Provide tests for your changes, and ensure they all pass. + #. Provide documentation for your changes, in accordance with the style of the rest of the project (see :ref:`style_guide`). + #. Create a pull request to RandomFields main branch. The STEM team will review and discuss your Pull Request with you. + +For any questions, please get in contact with one of the members of :doc:`authors`. + + +.. _style_guide: + +Code style guide +---------------- +The additional features should follow the style of the RandomFields project. + +We follow the PEP 8 style guide for Python code, with our custom modifications as defined in the +`Yapf file <../../.style.yapf>`_ and the `flake8 file <../../.flake8>`_. These files can be ran manually by using the +following command from the root directory of the project: + +.. code-block:: + + pre-commit run --all-files + + +The class or function name should be clear and descriptive of the functionality it provides. + +There should be a docstring at the beginning of the class or function describing its purpose and usage. +The docstring should be in the form of a triple-quoted string. + +The class or function must have a type annotation. +The class should specify the attributes and inheritance. +The function should specify the arguments, exceptions and returns (in this order). +The return type annotation should be in the form of a comment after the closing parenthesis of the arguments. + +Please, avoid inheritance, and favour composition when writing your code. + +An example of a class: + +.. code-block:: + + class ClassName(object): + """ + Work in progress: docstring style to be specified + + Inheritance: + -:class:`object` + + Attributes: + - (): ,shape (n,m) + - (): ,shape (m,) + + + """ + def __init__(self,,...): + """ + Constructor of the RandomFields class + + Args: + - : () , shape (n,m,), default + """ + self.attribute_name_1: = + self.attribute_name_2: = + + +An example of a function: + +.. code-block:: + + def generate(self, nodes: npt.NDArray[np.float64]) -> None: + """ + Generate random field + + Args: + - nodes (ndarray): The nodes of the random field. shape (:,`self.n_dim`) + + Raises: + - ValueError: if dimensions of `nodes` do not match dimensions of the model + + Returns: + + """ + + # check dimensions of nodes agrees with dimensions of model + if nodes.shape[1] != self.n_dim: + raise ValueError(f'Dimensions of nodes: {nodes.shape[1]} do not match dimensions of model: {self.n_dim}') + + # scale of fluctuation + scale_fluctuation = np.ones(self.n_dim) * self.vertical_scale_fluctuation + + # apply the anisotropy to the other dimensions + mask = np.arange(len(scale_fluctuation)) != self.v_dim + scale_fluctuation[mask] = scale_fluctuation[mask] * self.anisotropy + + model = self.random_field_model(dim = self.n_dim, + var = self.variance, + len_scale = scale_fluctuation, + angles = self.angle) + self.random_field = gs.SRF(model, + mean = self.mean, + seed = self.seed) + self.random_field(nodes.T) diff --git a/docs/index.rst b/docs/index.rst new file mode 100644 index 0000000..2f1197a --- /dev/null +++ b/docs/index.rst @@ -0,0 +1,60 @@ +RandomFields +==== +Python package to generate random fields in 2D or 3D on unstructured grids. + + +User guide +========== + +Background information +...................... +The random fields are generated using `gstools `_. + +Currently, the following covariance models are available: + +* Gaussian +* Exponential +* Matern +* Linear (not for conditioned random fields) + +Additional functionalities are used to generate conditioned random fields. + + +Tutorials +......... + +* :ref:`tutorial1` + 1D unconditioned and conditioned random field generation. + +* :ref:`tutorial2` + 2D unconditioned and conditioned random field simulation. + +* :ref:`tutorial3` + 3D unconditioned and conditioned random field simulation. + +* :ref:`tutorial4` + Non-normal Gaussian fields and conditioning based on CPT data. + + +How to contribute +================= +If you want to contribute to RandomFields please follow the steps defined in :doc:`contributions`. + + +Random Fields team +================== +The Random Field package is part of the STEM is a research programme that results from a +collaboration between the following partners: + +* `ProRail `_ +* `Deltares `_ +* `TNO `_ +* `TU Delft `_ + +The :doc:`authors`. + + +Package documentation +===================== + +The :doc:`random_fields` documentation. diff --git a/docs/installation.rst b/docs/installation.rst new file mode 100644 index 0000000..c9dcb89 --- /dev/null +++ b/docs/installation.rst @@ -0,0 +1,10 @@ +RandomFields installation +================= + +.. _python_random_fields: + +RandomFields Python package +------------------- + + +To be copied from STEM \ No newline at end of file diff --git a/docs/make.bat b/docs/make.bat new file mode 100644 index 0000000..32bb245 --- /dev/null +++ b/docs/make.bat @@ -0,0 +1,35 @@ +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set SOURCEDIR=. +set BUILDDIR=_build + +%SPHINXBUILD% >NUL 2>NUL +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.https://www.sphinx-doc.org/ + exit /b 1 +) + +if "%1" == "" goto help + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% + +:end +popd diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100644 index 0000000..2540854 --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1,2 @@ +Sphinx==6.2.1 +sphinx-rtd-theme==1.2.2 diff --git a/docs/tutorial_1.rst b/docs/tutorial_1.rst new file mode 100644 index 0000000..493d7de --- /dev/null +++ b/docs/tutorial_1.rst @@ -0,0 +1,116 @@ +RandomFields tutorials +====================== + +.. _tutorial1: + +1D Random Field +--------------- +This tutorial shows step by step guide on how to set up the random field generator and visualise the resulting +random fields. + +First the necessary packages are imported. + +.. code-block:: python + + import numpy as np + from random_fields.generate_field import RandomFields, ModelName + from random_fields.utils import plot1D + +Then, you need to define the 1D grid: + +.. code-block:: python + + x = np.linspace(0, 100, 501).reshape(-1, 1) + +In this example, we create a random field over a line of length 100, divided into steps of 0.2. + +Then we define the random field properties: + +.. code-block:: python + + nb_dimensions = 1 + mean = 10 + variance = 2 + vertical_scale_fluctuation = 10 + anisotropy = [] + angle = [] + model_rf = ModelName.Gaussian + +In this example, we use a a Gaussian covariance model. + +Then we create the random field, in which the index of the 'vertical' dimension needs to be set to `0`: + +.. code-block:: python + + rf = RandomFields(model_rf, nb_dimensions, mean, variance, + vertical_scale_fluctuation, anisotropy, angle, seed=1) + rf.v_dim = 0 + rf.generate(x) + +To visualise the results: + +.. code-block:: python + + plot1D([x],[rf.random_field], + title = 'Random Field', + output_folder="./", + output_name="random_field_1.png", + show=True) + +.. image:: _static/random_field_1.png + + +Conditioning data can be added to the random field. +The noise level represents the uncertainty in the individual conditioning points and is formulated as +the normalised variance: the variance of the uncertainty in a single data point divided by the variance of the +random field. ``noise_level`` can be a scalar, or an array of the same dimensions as ``conditioning _values``. + +.. code-block:: python + + conditioning_points = np.array([[30, 50, 70]]).T + conditioning_values = np.array([-2.5, 0, 2.5]) + + rf.set_conditioning_points(conditioning_points, conditioning_values, noise_level=0.04) + +Ten conditional random fields can be sampled and visualised as follows: + +.. code-block:: python + + nb_random_fields = 10 + + rf_conditioned = np.empty((nb_random_fields, x.shape[0])) + + for i in range(nb_random_fields): + rf.seed = i + rf.generate_conditioned(x) + rf_conditioned[i] = rf.conditioned_random_field + + plot1D([x] * nb_random_fields, rf_conditioned, + title = 'Conditioned Random Field', + output_folder="./", + output_name="random_field_2.png", + show=True) + + +.. image:: _static/random_field_2.png + + +As a by-product of the conditioned random field generator, the kriging mean and variance are provided. +These can be visualised as follows: + +.. code-block:: python + + mean = rf.kriging_mean + std = rf.kriging_std + + plot1D([x] * nb_random_fields, rf_conditioned, + title = 'Conditioned Random Field', + output_folder="./", + output_name="random_field_3.png", + conditional_points=[conditioning_points, conditioning_values, rf.kriging_mean, rf.kriging_std], + show=True) + +.. image:: _static/random_field_3.png + + +Note that only simple kriging is applied for conditioning the random fields. diff --git a/docs/tutorial_2.rst b/docs/tutorial_2.rst new file mode 100644 index 0000000..0cf5a97 --- /dev/null +++ b/docs/tutorial_2.rst @@ -0,0 +1,92 @@ +RandomFields tutorials +====================== + +.. _tutorial2: + +2D Random Field +--------------- + +This tutorial shows step by step guide on how to set up the random field generator in 2D +and visualise the resulting random fields. + +First the necessary packages are imported, the 2D grid is defined and the random field properties are set: + +.. code-block:: python + + import numpy as np + from random_fields.generate_field import RandomFields, ModelName + from random_fields.utils import plot2D + + + x = np.linspace(0, 100, 51) + y = np.linspace(0, 50, 51) + x, y = np.meshgrid(x, y) + + nb_dimensions = 2 + mean = 10 + variance = 2 + vertical_scale_fluctuation = 10 + anisotropy = [1] + angle = [0] + model_rf = ModelName.Gaussian + +An unconditioned random field is constructed as: + +.. code-block:: python + + rf = RandomFields(model_rf, nb_dimensions, mean, variance, vertical_scale_fluctuation, anisotropy, angle, seed=14) + rf.generate(np.array([x.ravel(), y.ravel()]).T) + + plot2D([np.array([x.ravel(), y.ravel()]).T], [rf.random_field], + title="Random Field", + output_folder="./", + output_name="random_field_4.png", + show=True) + +.. image:: _static/random_field_4.png + +Conditioning is similar to :ref:`tutorial1`. +First we define the conditioning points and values, and then we generate the conditioned random field. +In this case we define a conditional random field where we know the points that are located at x=50 and all y values. +(with a value of 15). + +.. code-block:: python + + xc = np.array([50.] * 51) + yc = np.linspace(0, 50, 51) + + vc = np.array([15] * 51) + + rf.set_conditioning_points(np.array([xc,yc]).T, vc, noise_level=0.0001) + rf.generate_conditioned(np.array([x.ravel(), y.ravel()]).T) + +The 2D conditioned random field can be visualised as: + +.. code-block:: python + + plot2D([np.array([x.ravel(), y.ravel()]).T], [rf.conditioned_random_field], + title="Conditioned Random Field", + output_folder="./", + output_name="random_field_5.png", + show=True) + +.. image:: _static/random_field_5.png + +The kriging mean and variance can be visualised as: + +.. code-block:: python + + plot2D([np.array([x.ravel(), y.ravel()]).T], [rf.kriging_mean], + title="kriging mean", + output_folder="./", + output_name="kriging_mean_2D.png", + show=True) + + plot2D([np.array([x.ravel(), y.ravel()]).T], [rf.kriging_std], + title="kriging std", + output_folder="./", + output_name="kriging_std_2D.png", + show=True) + +.. image:: _static/kriging_mean_2D.png +.. image:: _static/kriging_std_2D.png diff --git a/docs/tutorial_3.rst b/docs/tutorial_3.rst new file mode 100644 index 0000000..39a472a --- /dev/null +++ b/docs/tutorial_3.rst @@ -0,0 +1,86 @@ +RandomFields tutorials +====================== + +.. _tutorial3: + +3D Random Field +--------------- + +This tutorial shows step by step guide on how to set up the random field generator in 3D +and visualise the resulting random fields. + +First the necessary packages are imported, the 3D grid is defined and the random field properties are set: + +.. code-block:: python + + import numpy as np + from random_fields.generate_field import RandomFields, ModelName + from random_fields.utils import plot3D + + # mesh coordinates + x = np.linspace(0, 100, 51) + y = np.linspace(0, 50, 51) + z = np.linspace(0, 25, 51) + x, y, z = [i.ravel() for i in np.meshgrid(x, y, z)] + + # random field properties + nb_dimensions = 3 + mean = 10 + variance = 2 + vertical_scale_fluctuation = 10 + anisotropy = [2.5, 2.5] + angle = [0, 0] + model_rf = ModelName.Gaussian + + # generate and plot random field + rf = RandomFields(model_rf, nb_dimensions, mean, variance, vertical_scale_fluctuation, + anisotropy, angle, seed=14) + rf.generate(np.array([x, y, z]).T) + plot3D([np.array([x, y, z]).T], [rf.random_field], + title="Random Field", + output_folder="./", + output_name="random_field_3D.png", + show=True) + +.. image:: _static/random_field_3D.png + +Conditioning is similar to :ref:`tutorial1`. +First we define the conditioning points and values, and then we generate the conditioned random field. +In this case we define a conditional random field where we know the points that are located at x=50 and z=25 +and all y values (with a value of 15). + +.. code-block:: python + + # declare conditioning points + xc = np.array([50.] * 51) + yc = np.linspace(0, 50, 51) + zc = np.array([25] * 51) + vc = np.array([15] * 51) + rf.set_conditioning_points(np.array([xc, yc, zc]).T, vc, noise_level=0.0001) + + # generate conditioned random field model + rf.generate_conditioned(np.array([x, y, z]).T) + +To visualise the results we can plot the conditioned random field, kriging mean and kriging standard deviation: + +.. code-block:: python + + plot3D([np.array([x, y, z]).T], [rf.conditioned_random_field], + title="Conditioned Random Field", + output_folder="./", + output_name="conditioned_random_field_3D.png") + + plot3D([np.array([x, y, z]).T], [rf.kriging_mean], + title="Kriging mean 3D", + output_folder="./", + output_name="kriging_mean_3D.png") + + plot3D([np.array([x, y, z]).T], [rf.kriging_std], + title="Kriging std 3D", + output_folder="./", + output_name="kriging_std_3D.png") + + +.. image:: _static/conditioned_random_field_3D.png +.. image:: _static/kriging_mean_3D.png +.. image:: _static/kriging_std_3D.png diff --git a/docs/tutorial_4.rst b/docs/tutorial_4.rst new file mode 100644 index 0000000..8355e84 --- /dev/null +++ b/docs/tutorial_4.rst @@ -0,0 +1,239 @@ +RandomFields tutorials +====================== + +.. _tutorial4: + +2D and 3D conditioned Random Field on CPT data +---------------------------------------------- +This tutorial shows how a subsurface model can be created directly from CPT data. +First, the concept of the CPT-based random field generation for subsurface models is presented. +Second, the implementation of the CPT-based random field generation is described. + + +Theory +...... + +The processing of the CPT data is based on the following steps: +* CPT data is read and interpreted into a set of point with coordinates :math:`(x, y, z)` and corresponding interpreted + properties :math:`z_{data}` (e.g. shear wave velocity :math:`v_{s}` based on tip resistance and sleeve friction). + The the distribution of the dataset :math:`x_{data}` is considered to be representative for the distribution + of the site. +* A transformation model is created based on the CPT data. + This transformation model :math:`X=T(Z)` characterises the distribution of the physical stochastic parameter :math:`X` + as a function of the standard-normal stochastic variable :math:`Z \sim N(0,1)`. + This model is used to create the standard-normal equivalent data :math:`z_{data} = T^{-1}(x_{data})` +* The standard-normal data is used to calibrate a Gaussian regression model. + Sampling from this model provides the conditioned. + Internally, the sampoling is performed in the traditional Kriging formulation, + in which an unconditioned random field is conditioned to the conditioning data. + This takes place in the standard-normal space, resultin gin standar-normal fields :math:`u_{field}`. +* The generated conditioned random fields are transformed to the parameter space using the + transformation model: :math:`v_{field} = T(u_{field})` + + +Example +....... +In this example a 2D cross section is created with Random Fields conditioned on CPT data. + +First the necessary packages are imported, and the seed number is fixed for reproducibility.: + +.. code-block:: python + + from pathlib import Path + import matplotlib.pyplot as plt + import numpy as np + from random_fields.geostatistical_cpt_interpretation import CPT_data, MarginalTransformation, GeostatisticalModel + from random_fields.generate_field import RandomFields, ModelName + from random_fields.utils import plot2D + + seed = 14 + np.random.seed(seed) + +The CPT data is read and interpreted. The interpretation of the CPT data is based on +`Geolib-Plus `_ +The CPT data is read from a folder containing the CPT files. The CPT data can be in 'gef' or 'xml' format. +The CPTs used on this example are in 'gef' format, and can be found +`here `_. + +.. code-block:: python + + path_cpts = "./cpt_data" + cpt_folder = Path(path_cpts) + cpt_data = CPT_data(cpt_directory=cpt_folder) + cpt_data.read_cpt_data() + cpt_data.interpret_cpt_data() + +The location of the CPTs can be visualised and its coordinated can be changed/rotated using the following code: + +.. code-block:: python + + # visualise + plt.title('Original coordinates') + cpt_data.plot_coordinates(show=True) + + # transform the data to a modelling domain + cpt_data.data_coordinate_change(orientation_x_axis=73, based_on_midpoint=True) + + plt.title('Model coordinates') + cpt_data.plot_coordinates(show=True) + +.. image:: _static/coordinates_1.png + :scale: 50% +.. image:: _static/coordinates_2.png + :scale: 50% + +To create the transformation model, the marginal transformation is created. +The marginal transformation model can be generated and visualised as follows: + +.. code-block:: python + + marginal_transformator = MarginalTransformation(cpt_data.vs, min_value=50) + marginal_transformator.plot(x_label='$u$ : standard-normal variable', y_label='$v$ : shear wave velocity [m/s]', + show=True) + + +.. image:: _static/marginal_distribution.png + +Next, the data for the calibration of the geostatistical model can be selected. +To allow a faster calibration of the geostatistical model, only a selection of the data is used. +This selection of 2000 pooints is made randomly. +The data is transformed to standard-normal data using the transformator and only the `z` (horizontal) +and `y` (vertical) coordinates are selected. +Calibration is based on likelihood maximisation. + +.. code-block:: python + + index_selection = np.random.choice(len(cpt_data.vs), size=2000, replace=False) + coords = cpt_data.data_coords[index_selection] + z_data = marginal_transformator.x_to_z(x=cpt_data.vs[index_selection]) + + geo_model = GeostatisticalModel(nb_dimensions=2, v_dim=1) + geo_model.calibrate(coords=coords[:, [2, 1]], values=z_data) + + +Next, the random field properties are transferred to the random field generator. +This generator needs to be initiated with the same spatial correlation model as used for the calibration +(default=Gaussian). In addition, conditioning points are required to generate meaningful conditioned random fields. +These points can, but don't need to be, the same points as used for the calibration. +Also, conditional simulation can account for the noise in the calibration and conditioning data. +This noise is not included in the field itself, but instead allows for a small deviation of the generated random fields +from the conditioning points: + +.. code-block:: python + + random_field_generator = RandomFields(model_name=ModelName.Gaussian, + n_dim=2, + mean=0, + variance=1, + v_scale_fluctuation=geo_model.vertical_scale_fluctuation, + anisotropy=geo_model.anisotropy, + angle=[0], + seed=seed) + + I = np.random.choice(len(cpt_data.vs), size=500, replace=False) + + coords = cpt_data.data_coords[I] + values = cpt_data.vs[I] + random_field_generator.set_conditioning_points(points=coords[:, [2, 1]], + values=marginal_transformator.x_to_z(x=values), + noise_level=geo_model.noise_level) + +To generate the Random Field a coordinate grid needs to be specified. + +.. code-block:: python + + # create grid of points on the domnain (-220, 220) by (-24, -1) + x = np.linspace(-220, 220, 250) + z = np.linspace(-24, -1, 250) + X,Z = np.meshgrid(x, z) + + # generate a conditioned random field + sample_coords = np.array([X.ravel(), Z.ravel()]).T + random_field_generator.generate_conditioned(nodes=sample_coords) + +The conditioned random field that is generated contains values at the prediction points (the regular grid) as well +as on the conditioning point coordinates. In the generated array, the values generated at the conditioning point +coordinates are at the end. They are generally not needed as part of the generated random field and can be left out. +The generated standard-normal field needs to be transformed to the marginal distribution of the physical variable +(in this case the shear wave velocity) by the marginal transformation. + +.. code-block:: python + + # Transform the generated standard-normal field to the distribution of the shear wave velocity + z_map = random_field_generator.conditioned_random_field + vs_map = marginal_transformator.z_to_x(z_map[:250 * 250].reshape([250, 250])) + + plot2D([np.array([X.ravel(), Z.ravel()]).T], [vs_map], + title="Vs Random Field", + output_folder="./", + output_name="vs.png", + conditional_points=[cpt_data.data_coords[:, [2, 1]], cpt_data.vs], + figsize=(10, 5), + show=True) + +This results in a 2D cross section of the generated random field, on the shear wave velocity, +conditioned on the CPT data. + +.. image:: _static/2D_cpt_conditioned_field.png + + +3D conditioned Random Field on CPT data with helper function +------------------------------------------------------------ +In Randomn Fields it is possible to create the conditional random field in 3D, by making use of a helper function. +The helper function creates random fields with the Gaussian model, and for two properties: Young modulus and +Solid density of the soil. + +The helper function is called `ElasticityFieldsFromCpt` and is part of +the `random_fields.geostatistical_cpt_interpretation` class. + +First we import all the necessary packages: + +.. code-block:: python + import numpy as np + from random_fields.geostatistical_cpt_interpretation import ElasticityFieldsFromCpt, RandomFieldProperties + from random_fields.utils import plot3D + +Then we create the ElasticityFieldsFromCpt object. The `orientation_x_axis` is the angle of the x-axis in the model, +the `porosity` is the porosity of the soil, and the `water_density` is the density of the water. +The `return_property` is a list of the properties that we want to generate. In this case we want to generate the +random field for the Young modulus. + +.. code-block:: python + + elastic_field_generator_cpt = ElasticityFieldsFromCpt(cpt_file_folder=cpt_folder, + based_on_midpoint = True, + max_conditioning_points = 1000, + orientation_x_axis = 72, + porosity = 0.3, + water_density = 1000, + return_property = [RandomFieldProperties.YOUNG_MODULUS], + ) + + elastic_field_generator_cpt.calibrate_geostat_model() + +Now we create a list of the points where we want to generate the random field. In this case we generate a 3D grid. +This grid is typically the mesh of a finite element calculation. + +.. code-block:: python + + x = np.linspace(-5, 5, 21) + y = np.linspace(-25, 0, 26) + z = np.linspace(0, 30, 31) + X, Y, Z = np.meshgrid(x, y, z) + + elastic_field_generator_cpt.generate(np.array([X.ravel(), Y.ravel(), Z.ravel()]).T) + +To visualise the results we can make use of the `plot3D` function. + +.. code=block:: python + + plot3D([np.array([X.ravel(), Y.ravel(), Z.ravel()]).T], [elastic_field_generator_cpt.generated_field[0]], + title="Random Field", + output_folder="./", + output_name="random_field_3D.png", + figsize=(10, 10), + conditional_points=[elastic_field_generator_cpt.coordinates_sampled_conditioning, + elastic_field_generator_cpt.conditioning_sampled_data[0]], + show=True) + +.. image:: _static/random_field_3d_young.png diff --git a/pyproject.toml b/pyproject.toml index 8fe2f47..141469b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,20 @@ [build-system] requires = ["setuptools>=42", "wheel"] build-backend = "setuptools.build_meta" + +[tool.mypy] +check_untyped_defs = true +disallow_any_generics = true +ignore_missing_imports = true +no_implicit_optional = true +show_error_codes = true +strict_equality = true +warn_redundant_casts = true +warn_return_any = true +warn_unreachable = true +warn_unused_configs = true +no_implicit_reexport = true + +[[tool.mypy.overrides]] +module = ["gstools.*", "sklearn.*"] +follow_untyped_imports = true diff --git a/random_fields/generate_field.py b/random_fields/generate_field.py index 3ec494e..1cd7419 100644 --- a/random_fields/generate_field.py +++ b/random_fields/generate_field.py @@ -1,8 +1,12 @@ from enum import Enum -from typing import List +from typing import List, Union import numpy as np +import numpy.typing as npt import gstools as gs +from sklearn.gaussian_process import GaussianProcessRegressor as GPR +from sklearn.gaussian_process.kernels import RBF, WhiteKernel, Matern + class ModelName(Enum): """ @@ -16,70 +20,107 @@ class ModelName(Enum): class RandomFields: """ - Generate random fields + Generates (conditioned) random fields + + Attributes: + - max_conditioning_points (int): maximum number of + - random_field_model_name (str): + - random_field_model (int): + - n_dim (int): number of physical dimensions (1,2 or 3) + - seed (int): seed for the random number generator + - mean (float): unconditioned mean of the random field + - variance (float): unconditioned variance of the random field + - vertical_scale_fluctuation (float): vertical scale of fluctuation of the random field + - anisotropy (list): ratio between horizontal scales and vertical scale of fluctuation + - angle (list): rotation angles of the principal directions of the scales of fluctuation relative to the + vertical + - v_dim (int): dimension number corresponding to the vertical scale of fluctuation + - random_field (:class:gstools.SRF): random field generator + - z_kriged_field (array): standard-normal kriged random field + - gaussian_process (:class:sklearn.gaussian_process.GaussianProcessRegressor): Gaussian process regressor + - conditioning_points (array): coordinates of the conditioning points + - conditioning_values (array): values of the conditioning points + - kriging_mean (array): mean of the conditioned random field + - kriging_std = (array): standard deviation of the conditioned random field + - conditioned_random_field (array): conditioned random field """ - def __init__(self, model_name: ModelName, n_dim: int, - mean: float, variance: float, - v_scale_fluctuation: float, anisotropy: List[float], angle: List[float], - seed: int = 14, v_dim: int = 1) -> None: + def __init__(self, + model_name: ModelName, + n_dim: int, + mean: float, + variance: float, + v_scale_fluctuation: float, + anisotropy: List[float], + angle: List[float], + seed: int = 14, + v_dim: int = 1, + max_conditioning_points: int = 2000) -> None: """ Initialise generation of random fields - Parameters: - ----------- - model_name: str - Name of the model to be used. Options are: "Gaussian", "Exponential", "Matern", "Linear" - n_dim: int - The dimension of the random field - mean: float - The mean of the random field - variance: float - The variance of the random field - v_scale_fluctuation: float - The vertical scale of fluctuation of the random field - anisotropy: list - The anisotropy of the random field (per dimension) - angle: list - The angle of the random field (per dimension) - seed: int - The seed number for the random number generator - v_dim: int - The dimension of the vertical scale of fluctuation + Args: + - model_name (ModelName): Name of the model to be used. Options are: + "Gaussian", "Exponential", "Matern", "Linear" + - n_dim (int): The dimension of the random field + - mean (float): The mean of the random field + - variance (float): The variance of the random field + - v_scale_fluctuation (float): The vertical scale of fluctuation of the random field + - anisotropy (list): The anisotropy of the random field (per dimension) + - angle (list): The angle of the random field (per dimension) + - seed (int): The seed number for the random number generator + - v_dim (int): The dimension of the vertical scale of fluctuation + - max_conditioning_points (int): Maximum number of points to be used as conditioning points: increase leads + to longer computation times and high memory use due to factorisation of dense matrices + + Raises: + - ValueError: if model name is not a member of class ModelName + - ValueError: if the number of dimensions is nt consistent with the number of random field properties """ # initialise model if model_name.name not in ModelName.__members__: raise ValueError(f'Model name: {model_name} is not supported') - if n_dim not in [1, 2, 3]: - raise ValueError('Only 1, 2, 3 dimensions are supported') - aux_keys = [anisotropy, angle] for key in aux_keys: if len(key) != n_dim - 1: - raise ValueError(f'Number of dimensions: {n_dim} does not match number of\ - random field properties: {len(variance)}. It should be {n_dim - 1}.') + raise ValueError(f'Number of dimensions: {n_dim} does not match number of ' + + f'random field properties: {len(key)}. It should be {n_dim - 1}.') + self.max_conditioning_points = max_conditioning_points + self.random_field_model_name = model_name.name self.random_field_model = model_name.value self.n_dim = n_dim self.seed = seed + np.random.seed(seed) self.mean = mean self.variance = variance self.vertical_scale_fluctuation = v_scale_fluctuation self.anisotropy = anisotropy self.angle = angle self.v_dim = v_dim - self.random_field = None + self.random_field: gs.SRF = gs.SRF(model_name.value(), mean=0, seed=seed) + self.z_kriged_field = None + self.gaussian_process = GPR() + self.conditioning_points: npt.NDArray[np.float64] = np.empty((0, n_dim)) + self.conditioning_values: npt.NDArray[np.float64] = np.empty((0, n_dim)) + self.kriging_mean = None + self.kriging_std = None + self.conditioned_random_field = None + # fix seed for numpy random number generator + np.random.seed(self.seed) - def generate(self, nodes: np.ndarray) -> None: + def generate(self, nodes: npt.NDArray[np.float64]) -> None: """ Generate random field - Parameters: - ------------ - nodes: list - The nodes of the random field + Args: + - nodes (ndarray): The nodes of the random field + + Raises: + - ValueError: if dimensions of `nodes` do not match dimensions of the model """ + # check dimensions of nodes agrees with dimensions of model if nodes.shape[1] != self.n_dim: raise ValueError(f'Dimensions of nodes: {nodes.shape[1]} do not match dimensions of model: {self.n_dim}') @@ -91,6 +132,121 @@ def generate(self, nodes: np.ndarray) -> None: mask = np.arange(len(scale_fluctuation)) != self.v_dim scale_fluctuation[mask] = scale_fluctuation[mask] * self.anisotropy - model = self.random_field_model(dim=self.n_dim, var=self.variance, len_scale=scale_fluctuation, angles=self.angle) + model = self.random_field_model(dim=self.n_dim, + var=self.variance, + len_scale=scale_fluctuation, + angles=self.angle) + self.random_field = gs.SRF(model, mean=self.mean, seed=self.seed) self.random_field(nodes.T) + + def set_conditioning_points(self, + points: npt.NDArray[np.float64], + values: npt.NDArray[np.float64], + noise_level: Union[float, npt.NDArray[np.float64]] = 0.0001) -> None: + """ + Initiates the conditioning points and inverts the covariance matrix + + Args: + - points (npt.NDArray[np.float64]): The contitioning point coordinates. + - values: (npt.NDArray[np.float64]): The conditioning point values. + - kernel: (:class: sklearn.gaussian_process.kernels.Kernel): The (calibrated) correlation + kernel from sklearn (default=None). + - noise_level (Union[float, npt.NDArray[np.float64]]): normalised variance of the observed data, + as a single float or as an array of the same dimensions as `values` (default=0.0001). + + Raises: + - Exception: if more than `max_conditioning_points` conditioning points are specified, + to prevent excessive computation and memory usage. + - ValueError: if dimensions of `points` do not match dimensions of the model + """ + + self.noise_level = noise_level + self.conditioning_points = points + self.conditioning_values = values + + # check the maximum number of conditioning points to keep the computation and memory cost reasonable + if points.shape[0] > self.max_conditioning_points: + raise Exception(f'Too many conditioning points!\n' + 'There are {points.shape[0]} points, while the maximum allowed amount' + f'is {self.max_conditioning_points}.\n' + 'Consider increasing `max_conditioning_points` or use fewer conditioning points.') + + # check dimensions of conditioning points agrees with dimensions of model + if points.shape[1] != self.n_dim: + raise ValueError( + f'Dimensions of conditioning points: {points.shape[1]} do not match dimensions of model: {self.n_dim}') + + # scale of fluctuation + scale_fluctuation = np.ones(self.n_dim) * self.vertical_scale_fluctuation + + # apply the anisotropy to the other dimensions + mask = np.arange(len(scale_fluctuation)) != self.v_dim + scale_fluctuation[mask] = scale_fluctuation[mask] * self.anisotropy + + # correct the length scales between libraries + if self.random_field_model_name == 'Gaussian': + ls_sklearn = scale_fluctuation * 2 / np.pi + self.kriging_kernel = WhiteKernel(noise_level) + RBF(length_scale=ls_sklearn) + elif self.random_field_model_name == 'Exponential': + ls_sklearn = scale_fluctuation / np.sqrt(1 / 2) + self.kriging_kernel = WhiteKernel(noise_level) + Matern(length_scale=ls_sklearn, nu=0.5) + elif self.random_field_model_name == 'Matern': + ls_sklearn = scale_fluctuation / np.sqrt(1 / 2) + self.kriging_kernel = WhiteKernel(noise_level) + Matern(length_scale=ls_sklearn) + + # fit a GP against conditioning points standardised by simulation field statistics: + # NOT by conditioning point statistics + self.gaussian_process = GPR(kernel=self.kriging_kernel) + self.gaussian_process.optimizer = None + self.gaussian_process.fit(points, (values - self.mean) / np.sqrt(self.variance)) + + def generate_conditioned(self, nodes: npt.NDArray[np.float64]) -> None: + """ + Generate conditioned random field + + Args: + - nodes (npt.NDArray[np.float64]): The nodes of the random field + + Raises: + - ValueError: if dimensions of nodes do not match the dimensions of the model + """ + + # check dimensions of nodes agrees with dimensions of model + if nodes.shape[1] != self.n_dim: + raise ValueError(f'Dimensions of nodes: {nodes.shape[1]} do not match dimensions of model: {self.n_dim}') + + # create kriged mean field + z_kriged_field, std_kriged_field = self.gaussian_process.predict(nodes, return_std=True) + + std_kriged_field = np.sqrt(std_kriged_field**2 - self.noise_level) + + std_kriged_field *= np.sqrt(self.variance) + self.kriging_mean = self.mean + np.sqrt(self.variance) * z_kriged_field + + # create single random field at nodes and conditioning points + self.generate(np.vstack([nodes, self.conditioning_points])) + + # Split the generated field into the nodal coordinates and the conditioning points + # Standardize the distribution to marginal ~N(0,1) + z_cond_rf_nodes = (self.random_field.field[:nodes.shape[0]] - self.mean) / np.sqrt( # type: ignore + self.variance) # type: ignore + z_rf_cond_points = (self.random_field.field[nodes.shape[0]:] - self.mean) / np.sqrt( # type: ignore + self.variance) # type: ignore + + # add the noise to the conditioning points + z_rf_cond_points += np.sqrt(self.noise_level) * np.random.normal(size=z_rf_cond_points.shape) + + # create kriged mean field of random field + gp_rf = GPR(kernel=self.gaussian_process.kernel_) + gp_rf.optimizer = None + gp_rf.fit(self.conditioning_points, z_rf_cond_points) + gp_rf.L_ = self.gaussian_process.L_ + + # replace kriged mean field (the kriged parts) to create conditioned random field + z_cond_rf_nodes -= gp_rf.predict(nodes) + z_cond_rf_nodes += z_kriged_field + + # scale conditioned random field + self.kriging_std = np.sqrt(self.variance) * std_kriged_field + self.conditioned_random_field = self.mean + np.sqrt(self.variance) * z_cond_rf_nodes diff --git a/random_fields/geostatistical_cpt_interpretation.py b/random_fields/geostatistical_cpt_interpretation.py new file mode 100644 index 0000000..cdc844e --- /dev/null +++ b/random_fields/geostatistical_cpt_interpretation.py @@ -0,0 +1,696 @@ +import os +from enum import Enum +from typing import Optional, List, Tuple +from pathlib import Path +import numpy as np +import numpy.typing as npt +import matplotlib.pyplot as plt +import scipy.stats as st +from sklearn.gaussian_process import GaussianProcessRegressor as GPR +from sklearn.gaussian_process.kernels import RBF, WhiteKernel +from geolib_plus.gef_cpt import GefCpt +from geolib_plus.bro_xml_cpt import BroXmlCpt +from geolib_plus.robertson_cpt_interpretation import RobertsonCptInterpretation +from geolib_plus.robertson_cpt_interpretation import UnitWeightMethod +from geolib_plus.robertson_cpt_interpretation import OCRMethod +from geolib_plus.robertson_cpt_interpretation import ShearWaveVelocityMethod +from random_fields.generate_field import RandomFields, ModelName + + +class RandomFieldProperties(Enum): + """ + Enum class for the properties of the random field supported in STEM + """ + YOUNG_MODULUS = 0 + DENSITY_SOLID = 1 + + +class MarginalTransformation(): + """ + Class for the transformation model between the distributions of the physical values and the standard-normal + distribution. + + Attributes: + - data (npt.NDArray[np.float64]): sampling data to construct transformation + - n (int): number of samples: length of `data` + - lognormal (bool): If True, treats the data as lognormally distributed. Defaults to False + - _interp_z (npt.NDArray[np.float64]): internal interpolation data for transformation + - _interp_data (npt.NDArray[np.float64]): internal interpolation data for transformation + - _interp_log_data (npt.NDArray[np.float64]): internal interpolation data for transformation + """ + + def __init__(self, + data: npt.NDArray[np.float64], + min_value: Optional[float] = None, + max_value: Optional[float] = None, + lognormal: bool = False): + """ + Initiate class + + Args: + - data (npt.NDArray[np.float64]): sample data to construct transformation + - min_value (Optional[np.float64]): minimum value of the population. Defaults to None. + - max_value (Optional[np.float64]): maximum value of the population. Defaults to None. + - lognormal (bool): If True, treats the data as lognormally distributed. Defaults to False. + """ + + self.data = np.sort(data) + self.n = len(data) + self.lognormal = lognormal + + # if `max_value` and `min_value` are not given: add a 1% margin on the data + if not min_value: + min_value = self.data.min() - (self.data.max() - self.data.min()) / 100 + min_ln = np.log(self.data.min()) - (np.log(self.data.max()) - np.log(self.data.min())) / 100 + else: + min_ln = np.log(min_value) + if not max_value: + max_value = self.data.max() + (self.data.max() - self.data.min()) / 100 + max_ln = np.log(self.data.max()) + (np.log(self.data.max()) - np.log(self.data.min())) / 100 + else: + max_ln = np.log(max_value) + + self.z = st.norm.ppf(np.linspace(.5 / self.n, 1 - .5 / self.n, self.n)) + + # adds minimum and maximum to data-set + x_points = np.hstack([np.float64(min_value), self.data, np.float64(max_value)]) + x_points_ln = np.hstack([min_ln, np.log(self.data), max_ln]) + z_points = np.hstack([-8., self.z, 8.]) + + # initiates internal points for interpolation + self._interp_z = np.linspace(-8, 8, 101) + self._interp_data = np.interp(self._interp_z, z_points, x_points) + self._interp_log_data = np.interp(self._interp_z, z_points, x_points_ln) + + def plot(self, + title: str = "Marginal distribution transformation", + output_folder: Path = Path("./"), + output_name: str = "marginal_distribution.png", + x_label: str = r'$Z\sim N(0, 1)$', + y_label: str = r'$X$', + figsize: Tuple[float, float] = (6, 5), + show: bool = False) -> None: + r"""Plots the transformation model for the marginal distribution. + + Args: + - title (str): plot title. Defaults to "Marginal distribution transformation ". + - output_folder (Path): output folder. Defaults to Path("./"). + - output_name (str): output file name. Defaults to "marginal_distribution.png". + - x_label (str): horizontal axis label. Defaults to '\sim N(0,1)$'. + - y_label (str): vertical axis label. Defaults to '$X$'. + - figsize (Tuple): figure size. Defaults to (6, 5). + - show (bool): If True, shows the plot. Defaults to False. + """ + plt.figure(figsize=figsize) + plt.plot(self.z, self.data, '.', color='gray', alpha=0.5, label='data') + plt.plot(self._interp_z, self._interp_data, '-', color='r', label='transformation model') + plt.xlabel(x_label) + plt.ylabel(y_label) + plt.legend() + plt.title(title) + plt.grid() + plt.savefig(os.path.join(output_folder, output_name)) + if show: + plt.show() + plt.close() + + def x_to_z(self, x: npt.NDArray[np.float64]): + r""" + Transforms data from the distribution of $$X$$ to the standard normal + equivalent distribution $$Z\sim N(0, 1)$$ + + Args: + - x (npt.NDArray[np.float64]): values $$x \in X$$ + + Returns: + - z (npt.NDArray[np.float64]): standard-normal equivalent to `x` + """ + if self.lognormal: + z = np.interp(np.log(x), self._interp_log_data, self._interp_z) + else: + z = np.interp(x, self._interp_data, self._interp_z) + return z + + def z_to_x(self, z: npt.NDArray[np.float64]): + r""" + Transforms from a standard-normal values `z` to the corresponding values in `x`. + + Args: + - z (npt.NDArray[np.float64]): standard normal values $z \in Z\sim N(0,1)$ + + Returns: + - x (npt.NDArray[np.float64]): standard-normal equivalent to `x` + """ + if self.lognormal: + x = np.exp(np.interp(z, self._interp_z, self._interp_log_data)) + else: + x = np.interp(z, self._interp_z, self._interp_data) + return x + + +class CPT_data: + """ + CPT class for the handling the parsing and interpretation of CPT files in .GEF & xml file formats. + + Attributes: + - gravity (float): gravity in meters per second squared + - cpt_list (List[class:`GefCPT`]): list of cpt instances + - cpt_directory (str): path from which the .gef files must be read + - cpt_filepaths (List[str]): list of interpreted cpt filepaths + - interpreter (class:`RobertsonCptInterpretation`): instance of D-GeoLib+ CPT interpretation class + - data_coords (npt.NDArray(np.float64)): XYZ coordinates of the data + - cpt_locations (npt.NDArray(np.float64)): XZ coordinates of the data + - rho (npt.NDArray(np.float64)): interpreted density at CPT coordinates in `data_coord` + - vs (npt.NDArray(np.float64)): interpreted shear wave velocity at CPT coordinates in `data_coord` + - G0 (npt.NDArray(np.float64)): interpreted dynamic shear modulus G0 at CPT coordinates in `data_coord` + - young_modulus (npt.NDArray(np.float64)): interpreted Young modulus at CPT coordinates in `data_coord` + - poisson (float): interpreted Poisson ratio at CPT coordinates in `data_coord` + """ + + def __init__(self, cpt_directory: Path) -> None: + """ + Initiator of instances of the class. + + Args: + - cpt_directory (Path): Path to the folder containing the cpt files to be interpreted + """ + self.gravity = 9.81 + self.cpt_list: List[GefCpt] = [] + self.cpt_directory = Path(cpt_directory) + self.cpt_filepaths: List[Path] = [] + + self.interpreter = RobertsonCptInterpretation() + self.interpreter.unitweightmethod = UnitWeightMethod.LENGKEEK + self.interpreter.shearwavevelocitymethod = ShearWaveVelocityMethod.ZANG + self.interpreter.ocrmethod = OCRMethod.MAYNE + + self.data_coords = np.empty((0, 3), dtype=np.float64) + self.cpt_locations = np.empty((0, 2), dtype=np.float64) + self.rho = np.empty(0) + self.vs = np.empty(0) + self.G0 = np.empty(0) + self.young_modulus = np.empty(0) + self.poisson = 0.495 # ToDo: add Poisson ratio see #6 + + def read_cpt_data(self, addition: bool = False) -> None: + """read_cpt_data Reads in and pre-processes the CPT data + + Args: + - addition (bool): If True, reads in the CPT data in addition to the existing data. + Defaults to False. + """ + + if not addition: + self.cpt_list = [] + self.cpt_filepaths = [] + + list_of_files = sorted(os.listdir(self.cpt_directory)) + + files_type = {'.gef': GefCpt, '.xml': BroXmlCpt} + + for file_ext, cpt_class in files_type.items(): + # collect gef files + gef_files = [f for f in list_of_files if f.endswith(file_ext)] + + for gef_name in gef_files: + cpt = cpt_class() + cpt.read(self.cpt_directory / gef_name) + cpt.pre_process_data() + + self.cpt_list.append(cpt) + self.cpt_filepaths.append(self.cpt_directory / gef_name) + + # remove duplicates for the case that both the GEF and XML files are present + unique_idx = self.__find_duplicates() + self.cpt_list = [self.cpt_list[i] for i in unique_idx] + self.cpt_filepaths = [self.cpt_filepaths[i] for i in unique_idx] + + def __find_duplicates(self) -> List[int]: + """ + Finds the duplicates from the CPT data for the case that XML and GEF files are present. + + Returns: + - unique_idx (List[int]): list of unique indices + """ + unique_idx = [] + seen = set() + for i, value in enumerate(self.cpt_list): + if value.name not in seen: + unique_idx.append(i) + seen.add(value.name) + return unique_idx + + def interpret_cpt_data(self, interpreter: Optional[RobertsonCptInterpretation] = None, v_dim: int = 1) -> None: + """ + Interpret_cpt_data interprets the CPT data based on the provided interpreter settings + + Args: + - interpreter (:class:`geolib_plus.robertson_cpt_interpretation.RobertsonCptInterpretation`): + Interpretation methods. Defaults to :class:`RobertsonCptInterpretation`. + - v_dim (int): index corresponding to vertical. Defaults to 1. + """ + + if interpreter: + self.interpreter = interpreter + + for cpt in self.cpt_list: + cpt.interpret_cpt(self.interpreter) + + n_readings = len(cpt.depth_to_reference) + coords = np.array([[cpt.coordinates[0], 0, cpt.coordinates[1]]] * n_readings) + coords[:, v_dim] = cpt.depth_to_reference + + self.cpt_locations = np.vstack([self.cpt_locations, cpt.coordinates]) + self.data_coords = np.vstack([self.data_coords, coords]) + self.rho = np.hstack([self.rho, cpt.rho]) + self.vs = np.hstack([self.vs, cpt.vs]) + + self.G0 = self.rho * self.vs**2 + self.young_modulus = 2. * self.G0 * (1. + self.poisson) + + # def save_conditioning_points_to_vtk(self, filename='conditioning_data.vtk', variable_names=['vs']): + # """Saves the conditioning data to a .vtk file for visualisation. + # + # Args: + # - filename (str, optional): . Defaults to 'conditioning_data.vtk'. + # - variable_names (list[str]): list of variables to save. variables should be attributes. + # + # Raises: + # ValueError: if type and dimensions of `coordinates` not correct + # ValueError: if variables in `variable_names` are not an attribute + # ValueError: if variable dimensions are not correct. + # """ + # coordinates = self.data_coords + # + # # ToDo: replace this with vtk writer + # + # if not isinstance(coordinates, np.ndarray) or coordinates.shape[1] != 3: + # raise ValueError("Coordinates should be a numpy array with shape (N, 3).") + # + # n_points = len(coordinates) + # n_values = len(variable_names) + # + # scalars = [] + # for varname in variable_names: + # if hasattr(self, varname): + # scalar = self.__getattribute__(varname) + # if len(scalar) == n_points and isinstance(scalar, np.ndarray): + # scalars.append(scalar) + # else: + # raise ValueError(f"`{varname}` should be a numpy array of length {n_points}.") + # else: + # raise ValueError(f"{varname} is not an attribute of `conditioning_data`") + # + # if not isinstance(scalars, list) or len(scalars) != len(variable_names) or len( + # scalars[0]) != coordinates.shape[0]: + # raise ValueError("Scalars should be a numpy array with shape (N, 3), matching the number of coordinates.") + # + # with open(filename, 'w') as file: + # file.write('# vtk DataFile Version 5.1\n') + # file.write('vtk output\n') + # file.write('ASCII\n') + # file.write('DATASET POLYDATA\n') + # file.write(f'POINTS {n_points} float\n') + # for point in coordinates: + # file.write('%10.2f %10.2f %10.2f\n' % (point[0], point[1], point[2])) + # file.write(f'POINT_DATA {n_points}\n') + # file.write(f'FIELD FieldData {n_values}\n') + # + # for z, name in zip(scalars, variable_names): + # file.write(f'{name} 1 {n_points} float\n') + # for x in z: + # file.write('%.3g \n' % (x)) + # file.write('\n') + # + # print(f"File saved as {filename}") + + def data_coordinate_change(self, + x_ref: float = 0., + y_ref: float = 0., + orientation_x_axis: float = 0., + based_on_midpoint: bool = False) -> None: + """ + Coordinate system transformation, relative to a reference point (x_ref, y_ref) + + Args: + - x_ref (float): Defaults to 0.. + - y_ref (float): Defaults to 0.. + - orientation_x_axis (float): orienation of the model in degrees, clock-wise from North: + r_ref=0 results in a 90 degrees clock-wise rotation in the x-y plane. Defaults to 0. + - based_on_midpoint (bool): If True, translates the domain relative to the midpoint of the + CPT locations. Defaults to False. + """ + + # translate coordinates + if based_on_midpoint: + x_ref = (self.cpt_locations[:, 0].min() + self.cpt_locations[:, 0].max()) / 2 + y_ref = (self.cpt_locations[:, 1].min() + self.cpt_locations[:, 1].max()) / 2 + + self.data_coords[:, 0] -= x_ref + self.data_coords[:, 2] -= y_ref + self.cpt_locations[:, 0] -= x_ref + self.cpt_locations[:, 1] -= y_ref + + # rotate counterclock-wise back to N000 minus 90 degrees: + theta_rad = orientation_x_axis / 180 * np.pi - np.pi / 2 + rotation = np.array([[np.cos(theta_rad), 0, -np.sin(theta_rad)], [0., 1., 0.], + [np.sin(theta_rad), 0, np.cos(theta_rad)]]) + + self.data_coords = self.data_coords @ rotation.T + self.cpt_locations = self.cpt_locations @ rotation[::2, ::2].T + + def plot_coordinates(self, + output_folder: Path = Path("./"), + output_name: str = "coordinates.png", + original_coordinates: bool = False, + show: bool = False) -> None: + """ + Plots the coordinates of the CPTs + + Args: + - output_folder (Path): output folder. Defaults to Path("./"). + - output_name (str): output file name. Defaults to "coordinates.png". + - original_coordinates (bool): If True, plots in original coordinates. Defaults to False. + - show (bool): If True, shows the plot. Defaults to False. + """ + + if original_coordinates: + locations = np.array([cpt.coordinates for cpt in self.cpt_list]) + else: + locations = self.cpt_locations + + plt.plot(locations[:, 0], locations[:, 1], 'dk', label='CPT locations') + plt.xlabel('x-coordinate [m]') + plt.ylabel('y_coordinate [m]') + plt.axis('equal') + plt.savefig(os.path.join(output_folder, output_name)) + if show: + plt.show() + plt.close() + + +class GeostatisticalModel(): + """ + Class for the characterisation of spatial variability by means of a geostatistical model + + Attributes: + - nb_dimensions (int): number of physical dimensions (1, 2 or 3) + - v_dim (int): index corresponding to vertical + - gpr (:class:`sklearn.gaussian_process.GaussianProcessRegressor`). Gaussian process regressor. + - data_coords (npt.NDArray[np.float64]): coordinates of the data used for the calibtration of the + geostatistical model. + - data_values (npt.NDArray[np.float64]): values of the data used for the calibtration of the + geostatistical model. + - noise_level (Optional[float]): noise level b + - vertical_scale_fluctuation (Optional[float]): vertical scale of fluctuation + - anisotropy (Optional[List[np.float64]]): anisotropy in the scale of fluctuation, relative to the vertical + scale of fluctuation. + """ + + def __init__(self, + nb_dimensions: int, + v_dim: int, + length_scale: float = 100., + length_scale_bounds: List[float] = [1.0, 1000.], + lenght_scale_bounds_vertical: List[float] = [0.01, 10.], + custom_kernel=None) -> None: + """ + Initiates instance and sets kernel to WhiteKernel() + RBF() if kernel is not provided + + Args: + - nb_dimensions (int): number of physical dimensions. + - v_dim (int): Dimension index of the vertical scale of fluctuation + - lenght_scale (float): length scale of the kernel. Defaults to 100 + - length_scale_bounds (List[float]): bounds of the length scale. Defaults to [1.0, 1000.] + - lenght_scale_bounds_vertical (List[float]): bounds of the vertical length scale. Defaults to [0.01, 10.] + - custom_kernel (:class:`sklearn.gaussian_process.kernels.Kernel`): Custom spatial correlation kernel. + Defaults to None. + + Raises: + TypeError: if `kernel` is not a class from module `sklearn.gaussian_process.kernels` + """ + self.nb_dimensions = nb_dimensions + self.v_dim = v_dim + + self.data_coords = np.empty(0) + self.data_values = np.empty(0) + self.noise_level = np.empty(0) + self.vertical_scale_fluctuation = np.empty(0) + self.anisotropy = np.empty(0) + + # check if `kernel` has the correct parent class + if custom_kernel: + if custom_kernel.__module__ != 'sklearn.gaussian_process.kernels': + raise TypeError("`kernel` should an instance of a class from module `sklearn.gaussian_process.kernels`") + + # if kernel does not exist, create a default + if not custom_kernel: + length_scale_kernel = length_scale * np.ones(nb_dimensions) + length_scale_bounds_kernel = [length_scale_bounds] * nb_dimensions + length_scale_kernel[v_dim] = self.v_dim + length_scale_bounds_kernel[v_dim] = lenght_scale_bounds_vertical + + kernel = WhiteKernel(0.01) + RBF(length_scale=length_scale_kernel, + length_scale_bounds=length_scale_bounds_kernel) + self.gpr = GPR(kernel=kernel) + + def calibrate(self, coords: npt.NDArray[np.float64], values: npt.NDArray[np.float64]) -> None: + """ + Calibrates the geostatistical model + + Args: + - coords (npt.NDArray[np.float64]): data spatial coordinates + - values (npt.NDArray[np.float64]): data values + + Raises: + - Warning: if `coords` is transposed to match dimensions (n_points,n_dims) + - Exception: if shape of argument 'coords' incompattible with dimensionality + + """ + + if coords.shape[0] == self.nb_dimensions and coords.shape[1] != self.nb_dimensions: + self.data_coords = coords.T + raise Warning('`coords` is transposed to match dimensions (n_points,n_dims)') + elif coords.shape[1] == self.nb_dimensions: + self.data_coords = coords + else: + raise Exception("Shape of argument 'coords' incompattible with dimensionality:", coords.shape) + + self.data_values = values + + # calibrate + self.gpr.fit(self.data_coords, self.data_values) + + # extract noise level + if "k1__noise_level" in self.gpr.kernel_.get_params(): + self.noise_level = self.gpr.kernel_.get_params()['k1__noise_level'] + + # extracts length scales and transforms to scales of fluctuation + if "k2__length_scale" in self.gpr.kernel_.get_params(): + gpr_length_scales = self.gpr.kernel_.get_params()['k2__length_scale'] + if 'RBF' in str(self.gpr.kernel): + self.vertical_scale_fluctuation = gpr_length_scales[self.v_dim] * np.pi / 2. + elif 'Matern' in str(self.gpr.kernel): + self.vertical_scale_fluctuation = gpr_length_scales[self.v_dim] * np.sqrt(1 / 2) + mask = np.arange(len(gpr_length_scales)) != self.v_dim + self.anisotropy = gpr_length_scales[mask] / gpr_length_scales[self.v_dim] + + +class ElasticityFieldsFromCpt: + """Class for the automatic generation of fields of elastic parameters (vs, rho, G0 and E) + + Attributes: + - poisson_ratio (float): poisson ratio. + - cpt_file_folder (str): path of the folder containing the CPT files (.gef) + - x_ref (float): physical x-coordinate of the origin of the model + - y_ref (float): physical y-coordinate of the origin of the model + - orientation_x_axis (float): orientation of the x-axis of the model (azimuth, clockwise g=from the North) + - based_on_midpoint (str): If True, ignores x_ref and y_ref and places origin of the model in + the center of the set of CPT locations. + - max_conditioning_points (int): Maximum number of data points to use in the calibration of the + geostatistical model. + - porosity (float): porosity of the soil + - water_density (float): density of the water + - return_property (str): property to return through attribute `ElasticityFieldsFromCpt.generated_field`. + Options are `young_modulus`, `rho`, `vs`, `G0` + - seed (int): Seed for the `:class:RandomFields` + - coordinates_sampled_conditioning (npt.NDArray[np.numpy64]): coordinates of the thinned data used for the + calibration of the geostatistical model. + - conditioning_data (class:`CPT_data`): instance of the `class:CPT_data` class. + - conditional_sample_index (npt.NDArray[int]): Indices of the sample from the conditioning data, selected + for the calibration. + - trans_model_rho (class:`MarginalTransformation`): Transformation model of the marginal distribution + of rho. + - trans_model_vs (class:`MarginalTransformation`): Transformation model of the marginal distribution of + shear wave velocity vs. + - geostat_model (class:`GeostatisticalModel`): Geostatistical model + - young_modulus (npt.NDArray[np.float64]): generated conditioned random field of elastic modulus + `young_modulus = 2 * G0 * (1. + poisson_ratio)` + - solid_density (npt.NDArray[np.float64]): generated conditioned random field of solid density + - generated_field (list): list of randopm field values corresponding to parameter `return_property` + - _random_fields_vs (class:`RandomFields`): Random field generator for shear wave velocity `vs` + - _random_fields_rho (class:`RandomFields`): Random field generator for shear wave velocity `rho` + """ + + def __init__(self, + cpt_file_folder: str = './', + x_ref: float = 0., + y_ref: float = 0., + orientation_x_axis: float = 0., + based_on_midpoint: bool = False, + max_conditioning_points: int = 2000, + seed: int = 14, + porosity: float = 0.3, + water_density: float = 1000., + return_property: List[RandomFieldProperties] = [RandomFieldProperties.YOUNG_MODULUS]) -> None: + """ + Initiation of the class + + Args: + - cpt_file_folder (str): path to tyhe folder containing the CPT files (.gef). Defaults to './'. + - x_ref (float): physical x-coordinate of the origin of the model. Defaults to 0. + - y_ref (float): physical y-coordinate of the origin of the model. Defaults to 0. + - orientation_x_axis (float): orientation of the x-axis of the model + (azimuth, clockwise g=from the North). Defaults to 0. + - based_on_midpoint (bool): If True, ignores x_ref and y_ref and places origin of the model + in the center of the set of CPT locations. Defaults to False. + - max_conditioning_points (int): Maximum number of data points to use in the calibration + of the geostatistical model. Defaults to 2000. + - seed (int): Seed for the `:class:RandomFields`. Defaults to 14. + - porosity (float): porosity of the soil. Defaults to 0.3. + - water_density (float): density of the water. Defaults to 1000. + - return_property (List[RandomFieldProperties]): property to return + """ + self.poisson_ratio = 0.495 + self.cpt_file_folder = cpt_file_folder + self.x_ref = x_ref + self.y_ref = y_ref + self.orientation_x_axis = orientation_x_axis + self.based_on_midpoint = based_on_midpoint + self.max_conditioning_points = max_conditioning_points + self.porosity = porosity + self.water_density = water_density + self.return_property = return_property + + self.seed = seed + np.random.seed(seed) + + self.coordinates_sampled_conditioning = np.empty(0) + self.conditioning_data = CPT_data(cpt_directory=Path(self.cpt_file_folder)) + self.conditioning_data.read_cpt_data() + self.conditioning_data.interpret_cpt_data() + self.conditioning_data.data_coordinate_change(orientation_x_axis=self.orientation_x_axis, + based_on_midpoint=self.based_on_midpoint) + + self.conditional_sample_index = np.random.choice(self.conditioning_data.data_coords.shape[0], + size=self.max_conditioning_points, + replace=False) + + self.trans_model_rho = MarginalTransformation(self.conditioning_data.rho) + self.trans_model_vs = MarginalTransformation(self.conditioning_data.vs) + self.geostat_model: Optional[GeostatisticalModel] = None + self._random_fields_vs: Optional[RandomFields] = None + self._random_fields_rho: Optional[RandomFields] = None + self.solid_density = np.empty(0) + self.young_modulus = np.empty(0) + self.generated_field: List[npt.NDArray[np.float64]] = [] + self.conditioning_sampled_data: List[npt.NDArray[np.float64]] = [] + + def calibrate_geostat_model(self, + v_dim: int = 1, + calibration_indices: Tuple[bool, bool, bool] = (True, True, True)) -> None: + """calibrates the geostatistical model + + Args: + - v_dim (int): vertical dimension. Defaults to 1. + - calibration_indices (Tuple[bool, bool, bool]): Calibration indices. Default (True, True, True). + + Raises: + - ValueError: if calibration indices are not a tuple of three boolean values + - ValueError: if at least two calibration indices are not provided + """ + + np.random.seed(self.seed) + + # Check that calibration indices are a tuple of three boolean values + if len(calibration_indices) != 3: + raise ValueError("Calibration indices should be a tuple of three boolean values") + + # Check that at least two calibration indices are provided + if sum(calibration_indices) < 2: + raise ValueError("At least two calibration indices are required") + + ndim_calibrate = len(calibration_indices) + self.coordinates_sampled_conditioning = np.zeros([self.max_conditioning_points, 3]) + for i in calibration_indices: + self.coordinates_sampled_conditioning[:, + i] = self.conditioning_data.data_coords[self.conditional_sample_index, + i] + + # calibrate geostatistical model based on standard-normal equivalent values of the shear wave velocity data + self.geostat_model = GeostatisticalModel(nb_dimensions=ndim_calibrate, v_dim=v_dim) + self.geostat_model.calibrate( + self.coordinates_sampled_conditioning[:, calibration_indices], + self.trans_model_vs.x_to_z(self.conditioning_data.vs[self.conditional_sample_index])) + + # initiate two independent random field generators for shear wave velocity `vs` and density `rho` + self._random_fields_vs = RandomFields(model_name=ModelName.Gaussian, + n_dim=3, + mean=0, + variance=1, + v_scale_fluctuation=float(self.geostat_model.vertical_scale_fluctuation), + anisotropy=([float(self.geostat_model.anisotropy)] * 2)[:2], + angle=[0.] * 2, + seed=self.seed, + max_conditioning_points=self.max_conditioning_points) + self._random_fields_vs.set_conditioning_points(points=self.coordinates_sampled_conditioning, + values=self.trans_model_vs.x_to_z( + self.conditioning_data.vs[self.conditional_sample_index]), + noise_level=self.geostat_model.noise_level) + self._random_fields_rho = RandomFields(model_name=ModelName.Gaussian, + n_dim=3, + mean=0, + variance=1, + v_scale_fluctuation=float(self.geostat_model.vertical_scale_fluctuation), + anisotropy=([float(self.geostat_model.anisotropy)] * 2)[:2], + angle=[0] * 2, + seed=self.seed + 1, + max_conditioning_points=self.max_conditioning_points) + self._random_fields_rho.set_conditioning_points(points=self.coordinates_sampled_conditioning, + values=self.trans_model_rho.x_to_z( + self.conditioning_data.rho[self.conditional_sample_index]), + noise_level=self.geostat_model.noise_level) + + def generate(self, coordinates: npt.NDArray[np.float64]) -> None: + """ + Generate random fields for `rho`, `vs` and derive fields `young_modulus` and `solid density`. + + Args: + - coordinates (npt.NDArray[np.float64]): 3D coordinated of points to generate random field values for + """ + + # generate conditioned standard-normal equivalent + assert self._random_fields_vs is not None, "RandomFields instance not initialized" + self._random_fields_vs.generate_conditioned(nodes=coordinates) + assert self._random_fields_rho is not None, "RandomFields instance not initialized" + self._random_fields_rho.generate_conditioned(nodes=coordinates) + + # transform standard-normal fields to physical (marginal) distributions: + vs = self.trans_model_vs.z_to_x(np.array(self._random_fields_vs.conditioned_random_field)) + rho = self.trans_model_rho.z_to_x(np.array(self._random_fields_rho.conditioned_random_field)) + + # derive dependent fields + GO = rho * vs**2 + self.young_modulus = 2 * GO * (1. + self.poisson_ratio) + self.solid_density = rho * (1. - self.porosity) + self.porosity * self.water_density + + for value in self.return_property: + if value.name == "YOUNG_MODULUS": + self.conditioning_sampled_data.append( + self.conditioning_data.young_modulus[self.conditional_sample_index]) + self.generated_field.append(self.young_modulus) + elif value.name == "DENSITY_SOLID": + rho_solid = self.conditioning_data.rho[self.conditional_sample_index] * ( + 1. - self.porosity) + self.porosity * self.water_density + self.conditioning_sampled_data.append(rho_solid) + self.generated_field.append(self.solid_density) diff --git a/random_fields/utils.py b/random_fields/utils.py index 3e804ae..0007ed8 100644 --- a/random_fields/utils.py +++ b/random_fields/utils.py @@ -1,74 +1,108 @@ import os +from typing import List, Tuple, Optional import numpy as np +import numpy.typing as npt import matplotlib.pylab as plt import matplotlib as mpl +from mpl_toolkits.mplot3d import Axes3D +import gstools as gs -def plot3D(coordinates: list, random_field: list, title: str = "Random Field", - output_folder = "./", output_name: str = "random_field.png"): + +def plot3D(coordinates: List[npt.NDArray[np.float64]], + random_field: List[gs.field.srf.SRF], + title: str = "Random Field", + output_folder="./", + output_name: str = "random_field.png", + figsize: Tuple[float, float] = (10, 10), + conditional_points: List[npt.NDArray[np.float64]] = [], + show: bool = False): """ - Plot 3D random field - - Parameters - ---------- - coordinates : list - List of coordinates of the random field - random_field : list - List of random field values - title : str - Title of the plot - output_folder : str - Output folder - output_name : str - Output fine name + Plots and saves 3D random field + + Args: + - coordinates (List[npt.NDArray[np.float64]]): List of coordinates of the random field + - random_field (List[gs.field.srf.SRF]): List of random field values + - title (str): Title of the plot + - output_folder (str): Output folder + - output_name (str): Output fine name + - figsize: Tuple[float, float] = (10, 10), + - conditional_points (List[npt.NDArray[np.float64]]): List of coordinates if the conditioning points + (optional, default = []) + - show (bool): Show the plot (optional, default = False) """ # create output folder if not os.path.exists(output_folder): os.makedirs(output_folder) # make plot - fig = plt.figure(1, figsize=(6, 5)) - ax = fig.add_subplot(projection='3d') + fig = plt.figure(1, figsize=figsize) + ax: Axes3D = fig.add_subplot(projection='3d') ax.set_position([0.1, 0.1, 0.8, 0.8]) # rotate the axes so that y is vertical ax.view_init(125, -90, 0) - vmin = np.min([np.min(aux) for aux in random_field]) - vmax = np.max([np.max(aux) for aux in random_field]) + rfield = np.array(random_field) + vmax = np.max(rfield) + vmin = np.min(rfield) for i, coord in enumerate(coordinates): x, y, z = coord[:, 0], coord[:, 1], coord[:, 2] - ax.scatter(x, y, z, c=random_field[i], vmin=vmin, vmax=vmax, cmap="viridis", edgecolors=None, marker="s") + ax.scatter(x, y, z, c=rfield[i], vmin=vmin, vmax=vmax, cmap="viridis", edgecolors=None, marker="s", s=20) ax.set_xlabel('x coordinate') ax.set_ylabel('y coordinate') ax.set_zlabel('z coordinate') - cax = ax.inset_axes([1.1, 0., 0.05, 1]) + if conditional_points: + ax.scatter(conditional_points[0][:, 0], + conditional_points[0][:, 1], + conditional_points[0][:, 2], + c=conditional_points[1], + vmin=vmin, + vmax=vmax, + cmap="viridis") + + cax = ax.inset_axes((1.1, 0., 0.05, 1)) norm = mpl.colors.Normalize(vmin=vmin, vmax=vmax) fig.colorbar(mpl.cm.ScalarMappable(norm=norm, cmap="viridis"), ax=ax, cax=cax) fig.suptitle(title) plt.savefig(os.path.join(output_folder, output_name)) + + if show: + plt.show() plt.close() -def plot2D(coordinates: list, random_field: list, title: str = "Random Field", - output_folder = "./", output_name: str = "random_field.png"): +def plot2D(coordinates: List[npt.NDArray[np.float64]], + random_field: List['gs.field.srf.SRF'], + title: str = "Random Field", + output_folder="./", + output_name: str = "random_field.png", + colorbar_label: str = '', + conditioning_coordinates: List[npt.NDArray[np.float64]] = [], + conditioning_values: List[npt.NDArray[np.float64]] = [], + figsize: Tuple[float, float] = (6, 5), + conditional_points: Optional[List[npt.NDArray[np.float64]]] = None, + show: bool = False): """ - Plot 2D random field - - Parameters - ---------- - coordinates : list - List of coordinates of the random field - random_field : list - List of random field values - title : str - Title of the plot - output_folder : str - Output folder - output_name : str - Output fine name + Plots and saves 2D random field + + Args: + - coordinates (List[npt.NDArray[np.float64]]): List of coordinates of the random field + - random_field (List[gs.field.srf.SRF]): List of random field values + - title (str): Title of the plot + - output_folder (str): Output folder + - output_name (str): Output fine name + - colorbar_label (str): Label for the colorbar (optional, deafult = '') + - conditioning_coordinates (List[npt.NDArray[np.float64]]): List of coordinates if the conditioning points + (optional, default = []) + - conditioning_values (List[npt.NDArray[np.float64]]): List of the values at the conditioning points + (optional, default = []) + - figsize (Tuple[float, float]): Figure size (optional, default = (6, 5)) + - conditional_points (List[npt.NDArray[np.float64]]): List of the values at the conditioning points + (optional, default = None) + - show (bool): Show the plot (optional, default = False) """ # create output folder @@ -76,22 +110,110 @@ def plot2D(coordinates: list, random_field: list, title: str = "Random Field", os.makedirs(output_folder) # make plot - fig, ax = plt.subplots(figsize=(6, 5)) - ax.set_position([0.1, 0.1, 0.7, 0.8]) + fig, ax = plt.subplots(figsize=figsize) + ax.set_position((0.1, 0.1, 0.7, 0.8)) - vmin = np.min([np.min(aux) for aux in random_field]) - vmax = np.max([np.max(aux) for aux in random_field]) + rfield = np.array(random_field) + vmax = np.max(rfield) + vmin = np.min(rfield) for i, coord in enumerate(coordinates): x, y = coord[:, 0], coord[:, 1] - ax.scatter(x, y, c=random_field[i], vmin=vmin, vmax=vmax, cmap="viridis", edgecolors=None, marker="s") + ax.scatter(x, y, c=rfield[i], vmin=vmin, vmax=vmax, cmap="viridis", edgecolors=None, marker="s") + ax.set_aspect('auto') ax.set_xlabel('x coordinate') ax.set_ylabel('y coordinate') - cax = ax.inset_axes([1.1, 0., 0.05, 1]) + for i, coord in enumerate(conditioning_coordinates): + x, y = coord[:, 0], coord[:, 1] + ax.scatter(x, + y, + c=conditioning_values[i], + vmin=vmin, + vmax=vmax, + cmap="viridis", + edgecolors='red', + linewidth=0.25) + + if conditional_points: + ax.scatter( + conditional_points[0][:, 0], + conditional_points[0][:, 1], + c=conditional_points[1], + vmin=vmin, + vmax=vmax, + cmap="viridis", + ) + + cax = ax.inset_axes((1.1, 0., 0.05, 1)) norm = mpl.colors.Normalize(vmin=vmin, vmax=vmax) - fig.colorbar(mpl.cm.ScalarMappable(norm=norm, cmap="viridis"), ax=ax, cax=cax) + fig.colorbar(mpl.cm.ScalarMappable(norm=norm, cmap="viridis"), ax=ax, cax=cax, label=colorbar_label) + fig.suptitle(title) + plt.savefig(os.path.join(output_folder, output_name)) + + if show: + plt.show() + plt.close() + + +def plot1D(coordinates: List[npt.NDArray[np.float64]], + random_field: List[gs.field.srf.SRF], + title: str = "Random Field", + output_folder="./", + output_name: str = "random_field.png", + conditional_points: Optional[List[npt.NDArray[np.float64]]] = None, + show: bool = False): + """ + Plots and saves 1D random field + + Args: + - coordinates (List[npt.NDArray[np.float64]]): List of coordinates of the random field + - random_field (List[gs.field.srf.SRF]): List of random field values + - title (str): Title of the plot + - output_folder (str): Output folder + - output_name (str): Output fine name + - conditional_points (List[npt.NDArray[np.float64]]): List of the values at the conditioning points, and + kriging mean and standard deviation (optional, default = None) + - show (bool): Show the plot (optional, default = False) + """ + + # create output folder + if not os.path.exists(output_folder): + os.makedirs(output_folder) + + # make plot + fig, ax = plt.subplots(figsize=(8, 4)) + ax.set_position((0.1, 0.1, 0.7, 0.8)) + + color = 'black' + if len(coordinates) > 1: + color = 'gray' + + for i, coord in enumerate(coordinates): + x = coord[:, 0] + y = np.array(random_field[i]).ravel() + ax.plot(x, y, color=color) + + if conditional_points: + plt.plot(x, conditional_points[2], label='kriged field', color='k') + plt.fill_between(x.ravel(), + conditional_points[2] - 1.65 * conditional_points[3], + conditional_points[2] + 1.65 * conditional_points[3], + label='90% uncertainty bound', + color='gray', + alpha=0.5) + plt.scatter(conditional_points[0], conditional_points[1], label='conditioning points', color='k') + plt.legend() + + ax.set_xlabel('x coordinate') + ax.set_ylabel('random field value') + + plt.tight_layout() + fig.suptitle(title) plt.savefig(os.path.join(output_folder, output_name)) - plt.close() \ No newline at end of file + + if show: + plt.show() + plt.close() diff --git a/requirements.txt b/requirements.txt index e25ab02..9f8cff9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,6 @@ numpy==2.0.2 +matplotlib==3.9.3 +scipy==1.13.1 gstools==1.6.0 -matplotlib==3.9.3 \ No newline at end of file +scikit-learn==1.6.0 +d-geolib-plus==0.4.1 diff --git a/requirements_dev.txt b/requirements_dev.txt index c23d034..bf98b9a 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -1,5 +1,13 @@ numpy==2.0.2 -gstools==1.6.0 matplotlib==3.9.3 +scipy==1.13.1 +gstools==1.6.0 +scikit-learn==1.6.0 +mypy==1.13.0 pytest==8.3.4 pytest-cov==6.0.0 +yapf==0.43.0 +tox==4.23.2 +flake8==7.0.0 +pre-commit==3.6.2 +d-geolib-plus==0.4.1 diff --git a/setup.cfg b/setup.cfg index 6bbc837..e00c48b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,15 +16,21 @@ packages = random_fields include_package_data = True install_requires = numpy>=2.0.2 + scipy>=1.13.1 matplotlib>=3.9.3 gstools>=1.6.0 -python_requires = >=3.8 + scikit-learn>=1.6.0 + d-geolib-plus==0.4.1 [options.extras_require] testing = pytest>=7.4.2 pytest-cov>=4.1.0 tox>=4.4 + mypy>=1.13 + pre-commit==3.6.2 + yapf==0.43.0 + flake8==7.0.0 docs = Sphinx==6.2.1 - sphinx-rtd-theme==1.2.2 + sphinx-rtd-theme==1.2.2 \ No newline at end of file diff --git a/tests/cpts/gef/CPT000000217393_IMBRO.gef b/tests/cpts/gef/CPT000000217393_IMBRO.gef new file mode 100644 index 0000000..5239f4b --- /dev/null +++ b/tests/cpts/gef/CPT000000217393_IMBRO.gef @@ -0,0 +1,1362 @@ +#GEFID= 1, 1, 0 +#COLUMN= 13 +#COLUMNINFO= 1, m (meter), sondeertrajectlengte, 1 +#COLUMNINFO= 2, MPa (megaPascal), conusweerstand, 2 +#COLUMNINFO= 3, m (meter), diepte, 11 +#COLUMNINFO= 4, s (seconde), verlopen tijd, 12 +#COLUMNINFO= 5, MPa (megaPascal), gecorrigeerde conusweerstand, 13 +#COLUMNINFO= 6, MPa (megaPascal), netto conusweerstand, 14 +#COLUMNINFO= 7, ° (graden), helling x, 21 +#COLUMNINFO= 8, ° (graden), helling y, 22 +#COLUMNINFO= 9, ° (graden), hellingresultante, 8 +#COLUMNINFO= 10, MPa (megaPascal), plaatselijke wrijving, 3 +#COLUMNINFO= 11, geen, porienratio, 15 +#COLUMNINFO= 12, MPa (megaPascal), waterspanning u2, 6 +#COLUMNINFO= 13, % (procent; MPa/MPa), wrijvingsgetal, 4 +#COLUMNSEPARATOR= ; +#COLUMNTEXT= 1, aan +#COLUMNVOID= 1, 999.999 +#COLUMNVOID= 2, 999.999 +#COLUMNVOID= 3, 999.999 +#COLUMNVOID= 4, 99999.9 +#COLUMNVOID= 5, 999.999 +#COLUMNVOID= 6, 999.999 +#COLUMNVOID= 7, 99 +#COLUMNVOID= 8, 99 +#COLUMNVOID= 9, 99 +#COLUMNVOID= 10, 9.999 +#COLUMNVOID= 11, 99.999 +#COLUMNVOID= 12, 99.999 +#COLUMNVOID= 13, 999.9 +#COMPANYID= uitvoerder onderzoek, wordt niet uitgeleverd, - +#FILEDATE= 2024, 12, 04 +#FILEOWNER= Basisregistratie Ondergrond +#LASTSCAN= 1261 +#MEASUREMENTTEXT= 4, CP15-CF75PB1SN2-P1E1M4-V12-S1/1701-3420, conustype +#MEASUREMENTTEXT= 5, Fugro Cone Penetrometer MkII, omschrijving sondeerapparaat +#MEASUREMENTTEXT= 6, NEN-EN-ISO 22476-1 / klasse 2, sondeernorm en kwaliteitsklasse +#MEASUREMENTTEXT= 9, maaiveld, lokaal verticaal referentiepunt +#MEASUREMENTTEXT= 20, nee, signaalbewerking uitgevoerd +#MEASUREMENTTEXT= 21, ja, bewerking onderbrekingen uitgevoerd +#MEASUREMENTTEXT= 42, MRG2, methode verticale positiebepaling +#MEASUREMENTTEXT= 43, LRG3, methode locatiebepaling +#MEASUREMENTTEXT= 101, bronhouder, 30124359, - +#MEASUREMENTTEXT= 102, opdracht publieke taakuitvoering, kader aanlevering +#MEASUREMENTTEXT= 103, infrastructuur land, kader inwinning +#MEASUREMENTTEXT= 104, uitvoerder locatiebepaling, wordt niet uitgeleverd, - +#MEASUREMENTTEXT= 105, 2022, 12, 12 +#MEASUREMENTTEXT= 106, uitvoerder verticale positiebepaling, wordt niet uitgeleverd, - +#MEASUREMENTTEXT= 107, 2022, 12, 12 +#MEASUREMENTTEXT= 109, nee, dissipatietest uitgevoerd +#MEASUREMENTTEXT= 110, ja, expertcorrectie uitgevoerd +#MEASUREMENTTEXT= 111, nee, aanvullend onderzoek uitgevoerd +#MEASUREMENTTEXT= 112, 2023, 04, 17 +#MEASUREMENTTEXT= 113, 2022, 12, 21 +#MEASUREMENTTEXT= 115, IMBRO, kwaliteitsregime +#MEASUREMENTTEXT= 116, 2023, 06, 01, 13, 45, 22 +#MEASUREMENTTEXT= 117, voltooid, registratiestatus +#MEASUREMENTTEXT= 118, 2023, 06, 01, 13, 45, 22 +#MEASUREMENTTEXT= 119, nee, gecorrigeerd +#MEASUREMENTTEXT= 121, nee, in onderzoek +#MEASUREMENTTEXT= 123, nee, uit registratie genomen +#MEASUREMENTTEXT= 125, nee, weer in registratie genomen +#MEASUREMENTTEXT= 127, 4258, 51.961881, 4.380341 +#MEASUREMENTTEXT= 128, RDNAPTRANS2018, toegepaste transformatie +#MEASUREMENTVAR= 1, 1510, mm2 (vierkante millimeter), oppervlakte conuspunt +#MEASUREMENTVAR= 2, 19895, mm2 (vierkante millimeter), oppervlakte kleefmantel +#MEASUREMENTVAR= 3, 0.58, geen, oppervlaktequoti�nt conuspunt +#MEASUREMENTVAR= 4, 1.0, geen, oppervlaktequoti�nt kleefmantel +#MEASUREMENTVAR= 5, 88, mm (millimeter), afstand conus tot midden kleefmantel +#MEASUREMENTVAR= 12, 4, -, sondeermethode +#MEASUREMENTVAR= 13, 0.00, m (meter), voorgeboord tot +#MEASUREMENTVAR= 16, 25.057, m (meter), einddiepte +#MEASUREMENTVAR= 17, 0, -, stopcriterium +#MEASUREMENTVAR= 20, -0.090, MPa (megaPascal), conusweerstand vooraf +#MEASUREMENTVAR= 21, -0.114, MPa (megaPascal), conusweerstand achteraf +#MEASUREMENTVAR= 22, 0.008, MPa (megaPascal), plaatselijke wrijving vooraf +#MEASUREMENTVAR= 23, 0.009, MPa (megaPascal), plaatselijke wrijving achteraf +#MEASUREMENTVAR= 24, -, MPa (megaPascal), waterspanning u1 vooraf +#MEASUREMENTVAR= 25, -, MPa (megaPascal), waterspanning u1 achteraf +#MEASUREMENTVAR= 26, -0.003, MPa (megaPascal), waterspanning u2 vooraf +#MEASUREMENTVAR= 27, -0.004, MPa (megaPascal), waterspanning u2 achteraf +#MEASUREMENTVAR= 28, -, MPa (megaPascal), waterspanning u3 vooraf +#MEASUREMENTVAR= 29, -, MPa (megaPascal), waterspanning u3 achteraf +#MEASUREMENTVAR= 30, 0, ° (graden), hellingresultante vooraf +#MEASUREMENTVAR= 31, 1, ° (graden), hellingresultante achteraf +#MEASUREMENTVAR= 32, -, ° (graden), helling noord-zuid vooraf +#MEASUREMENTVAR= 33, -, ° (graden), helling noord-zuid achteraf +#MEASUREMENTVAR= 34, -, ° (graden), helling oost-west vooraf +#MEASUREMENTVAR= 35, -, ° (graden), helling oost-west achteraf +#MEASUREMENTVAR= 36, -, S/m (Siemens/meter), elektrische geleidbaarheid vooraf +#MEASUREMENTVAR= 37, -, S/m (Siemens/meter), elektrische geleidbaarheid achteraf +#MEASUREMENTVAR= 130, 44, mm (millimeter), conusdiameter +#PROJECTID= BRO +#RECORDSEPARATOR= ! +#REPORTCODE= GEF-CPT-Report, 1, 1, 2 +#STARTDATE= 2022, 12, 11 +#STARTTIME= 10, 55, 42 +#TESTID= CPT000000217393 +#XYID= 28992, 85799.579, 441974.047 +#ZID= 31000, -0.824 +#EOH= +0.000;0.557;0.000;242.0;0.557;0.557;0;1;1;9.999;0.000;99.999;999.9;! +0.020;9.030;0.020;245.3;9.030;9.030;-1;0;1;9.999;0.000;0.000;999.9;! +0.040;8.478;0.040;247.8;8.478;8.478;-4;-1;4;9.999;0.000;0.000;999.9;! +0.060;1.166;0.060;250.6;1.166;1.166;-1;2;2;9.999;0.000;0.000;999.9;! +0.080;1.943;0.080;253.5;1.943;1.943;0;3;3;9.999;0.000;0.000;999.9;! +0.100;0.482;0.100;256.3;0.482;0.482;-1;1;2;9.999;0.000;0.000;999.9;! +0.120;4.016;0.120;259.0;4.016;4.016;-1;1;2;0.016;0.000;0.000;0.7;! +0.140;2.418;0.140;261.6;2.418;2.418;-1;1;1;0.015;0.000;0.000;0.7;! +0.160;3.513;0.160;264.2;3.513;3.513;-1;1;1;0.015;0.000;0.000;0.5;! +0.180;4.794;0.180;266.7;4.794;4.794;-1;1;1;0.015;0.000;0.000;0.4;! +0.200;6.076;0.200;269.2;6.075;6.076;0;1;1;0.015;0.000;0.000;0.3;! +0.220;6.607;0.220;271.7;6.607;6.607;-1;2;2;0.008;0.000;0.000;0.1;! +0.240;7.768;0.240;274.1;7.768;7.768;-1;2;2;0.033;0.000;0.000;0.3;! +0.260;8.929;0.260;276.5;8.929;8.929;-1;2;2;0.027;0.000;0.000;0.3;! +0.280;10.090;0.280;279.0;10.090;10.090;-1;2;2;0.021;0.000;0.000;0.2;! +0.300;12.362;0.300;281.3;12.362;12.362;-1;2;2;0.016;0.000;0.000;0.1;! +0.320;11.654;0.320;283.6;11.654;11.654;0;2;2;0.054;0.000;0.000;0.4;! +0.340;10.260;0.340;312.4;10.260;10.260;-1;2;2;0.041;0.000;0.000;0.3;! +0.360;8.092;0.360;345.8;8.092;8.092;-1;2;2;0.106;0.000;0.000;0.7;! +0.380;5.924;0.380;379.1;5.924;5.924;-1;2;2;0.125;0.000;0.000;0.7;! +0.400;10.091;0.400;398.4;10.091;10.091;-2;2;3;0.186;0.000;0.000;0.9;! +0.420;26.416;0.420;400.5;26.416;26.416;-3;3;4;0.107;0.000;0.000;0.5;! +0.440;20.217;0.440;402.2;20.216;20.217;-2;2;3;0.196;0.000;-0.001;1.0;! +0.460;21.227;0.460;403.9;21.226;21.227;-1;1;2;0.109;0.000;0.000;0.5;! +0.480;21.182;0.480;405.7;21.182;21.182;-6;1;6;0.131;0.000;0.000;0.6;! +0.500;19.495;0.500;407.4;19.495;19.495;-7;3;7;0.177;0.000;0.000;0.8;! +0.520;20.001;0.520;409.2;20.001;20.001;-2;3;4;0.092;0.000;0.000;0.4;! +0.540;21.340;0.540;410.9;21.340;21.340;-2;3;3;0.069;0.000;0.000;0.3;! +0.560;14.713;0.560;412.5;14.712;14.713;-2;3;4;0.071;0.000;0.000;0.3;! +0.580;18.077;0.580;414.3;18.077;18.077;-3;3;4;0.086;0.000;0.000;0.4;! +0.600;20.451;0.600;416.0;20.451;20.451;-1;4;4;0.140;0.000;0.000;0.6;! +0.620;21.772;0.620;417.8;21.772;21.772;-2;3;4;0.105;0.000;0.000;0.4;! +0.640;28.058;0.640;419.6;28.058;28.058;-1;3;4;0.128;0.000;0.000;0.4;! +0.660;34.974;0.660;421.4;34.974;34.974;-1;4;4;0.173;0.000;0.000;0.6;! +0.680;34.488;0.680;423.2;34.488;34.488;-2;4;4;0.176;0.000;0.000;0.5;! +0.700;32.946;0.700;424.8;32.946;32.946;-2;5;5;0.211;0.000;0.000;0.6;! +0.720;31.707;0.720;426.5;31.706;31.707;-2;5;5;0.171;0.000;0.000;0.5;! +0.740;30.400;0.740;428.2;30.400;30.400;-4;5;6;0.137;0.000;0.000;0.4;! +0.760;29.030;0.760;429.8;29.030;29.030;-3;5;6;0.125;0.000;-0.001;0.3;! +0.780;29.445;0.780;431.4;29.445;29.445;-2;5;5;0.079;0.000;-0.001;0.2;! +0.800;31.089;0.800;432.7;31.089;31.089;-2;5;5;0.068;0.000;0.000;0.1;! +0.820;34.270;0.820;434.0;34.270;34.270;-2;5;5;0.094;0.000;-0.001;0.2;! +0.840;39.363;0.840;435.4;39.363;39.363;-2;5;5;0.115;0.000;0.000;0.2;! +0.860;44.608;0.860;438.0;44.608;44.608;-2;5;5;0.114;0.000;0.000;0.2;! +0.880;45.086;0.880;441.0;45.086;45.086;-2;5;5;0.085;0.000;0.000;0.2;! +0.900;43.410;0.900;443.0;43.410;43.410;-2;5;5;0.104;0.000;-0.001;0.2;! +0.920;40.019;0.920;444.8;40.018;40.019;-2;5;5;0.140;0.000;-0.001;0.3;! +0.940;39.301;0.940;446.6;39.300;39.301;-2;4;5;0.175;0.000;-0.001;0.4;! +0.960;38.096;0.960;448.3;38.096;38.096;-2;4;5;0.151;0.000;0.000;0.4;! +0.980;36.353;0.980;450.0;36.352;36.353;-1;5;5;0.144;0.000;-0.001;0.4;! +1.000;30.685;1.000;451.6;30.685;30.685;-2;5;5;0.137;0.000;-0.001;0.3;! +1.020;27.967;1.020;453.3;27.966;27.967;-1;5;5;0.127;0.000;-0.002;0.3;! +1.040;27.427;1.040;456.3;27.427;27.427;-2;5;5;0.131;0.000;-0.001;0.4;! +1.060;27.128;1.060;465.5;27.127;27.128;-1;5;5;0.121;0.000;-0.001;0.4;! +1.080;26.890;1.080;471.8;26.890;26.890;-1;5;5;0.105;0.000;-0.001;0.3;! +1.100;25.624;1.100;473.8;25.624;25.624;-2;5;5;0.075;0.000;-0.001;0.2;! +1.120;26.106;1.120;475.8;26.106;26.106;-2;5;5;0.055;0.000;-0.001;0.2;! +1.140;27.480;1.140;477.7;27.480;27.480;-2;5;5;0.083;0.000;-0.001;0.3;! +1.160;27.907;1.160;479.5;27.907;27.907;-2;5;5;0.074;0.000;-0.001;0.2;! +1.180;27.673;1.180;487.1;27.672;27.673;-2;5;5;0.103;0.000;-0.001;0.3;! +1.200;27.709;1.200;496.6;27.708;27.709;-2;5;5;0.117;0.000;-0.001;0.4;! +1.220;29.292;1.220;499.8;29.291;29.292;-2;5;5;0.129;0.000;-0.001;0.4;! +1.240;28.553;1.240;501.8;28.552;28.553;-2;5;5;0.131;0.000;-0.001;0.4;! +1.260;27.963;1.260;503.7;27.962;27.963;-2;5;5;0.137;0.000;-0.001;0.4;! +1.280;28.016;1.280;505.5;28.015;28.016;-2;5;5;0.142;0.000;-0.001;0.5;! +1.300;27.724;1.300;507.1;27.723;27.724;-2;5;5;0.141;0.000;-0.001;0.5;! +1.320;27.648;1.320;508.7;27.648;27.648;-2;5;5;0.147;0.000;-0.001;0.5;! +1.340;27.667;1.340;510.2;27.667;27.667;-2;5;5;0.134;0.000;-0.001;0.4;! +1.360;27.617;1.360;511.6;27.616;27.617;-2;5;5;0.143;0.000;-0.001;0.5;! +1.380;27.144;1.380;513.0;27.143;27.144;-2;5;5;0.146;0.000;-0.001;0.5;! +1.400;26.846;1.400;514.3;26.845;26.846;-2;5;5;0.157;0.000;-0.001;0.5;! +1.420;26.289;1.420;515.6;26.288;26.289;-2;5;5;0.173;0.000;-0.001;0.6;! +1.440;26.220;1.440;516.9;26.220;26.220;-2;5;5;0.168;0.000;-0.001;0.6;! +1.460;25.405;1.460;518.1;25.405;25.405;-2;5;5;0.162;0.000;-0.001;0.6;! +1.480;24.652;1.480;519.4;24.652;24.652;-2;5;5;0.146;0.000;-0.001;0.5;! +1.500;24.188;1.500;520.6;24.188;24.188;-2;5;5;0.147;0.000;-0.001;0.6;! +1.520;23.359;1.520;521.8;23.358;23.359;-2;5;5;0.154;0.000;-0.001;0.6;! +1.540;22.434;1.540;523.0;22.434;22.434;-2;5;5;0.148;0.000;0.000;0.6;! +1.560;21.633;1.560;524.2;21.633;21.633;-2;5;5;0.152;0.000;-0.001;0.6;! +1.580;21.045;1.580;525.4;21.045;21.045;-2;5;5;0.139;0.000;-0.001;0.6;! +1.600;20.583;1.600;526.6;20.583;20.583;-2;5;5;0.144;0.000;-0.001;0.7;! +1.620;19.775;1.620;527.7;19.775;19.775;-2;5;5;0.140;0.000;-0.001;0.7;! +1.640;19.017;1.640;528.8;19.017;19.017;-2;5;5;0.134;0.000;-0.001;0.6;! +1.660;18.236;1.660;530.0;18.236;18.236;-2;5;5;0.127;0.000;0.000;0.6;! +1.680;17.401;1.680;531.2;17.401;17.401;-2;5;5;0.120;0.000;0.000;0.6;! +1.700;16.548;1.700;532.3;16.548;16.548;-2;5;5;0.115;0.000;-0.001;0.6;! +1.720;15.804;1.710;533.6;15.803;15.804;-2;5;5;0.109;0.000;-0.001;0.6;! +1.740;15.226;1.730;535.2;15.226;15.226;-2;5;5;0.104;-0.001;-0.001;0.6;! +1.760;14.648;1.750;536.9;14.648;14.648;-2;5;5;0.102;-0.001;-0.001;0.6;! +1.780;14.054;1.770;538.2;14.054;14.054;-2;5;5;0.101;-0.001;-0.001;0.7;! +1.800;13.385;1.790;539.0;13.385;13.385;-2;5;5;0.102;-0.001;-0.001;0.7;! +1.820;12.706;1.810;539.8;12.706;12.706;-2;5;5;0.109;-0.001;-0.001;0.8;! +1.840;12.055;1.830;540.5;12.055;12.055;-2;5;5;0.117;-0.001;-0.001;0.9;! +1.860;11.314;1.850;541.3;11.314;11.314;-2;5;5;0.118;-0.001;-0.001;1.0;! +1.880;10.472;1.870;542.0;10.472;10.472;-2;5;5;0.118;-0.001;-0.001;1.0;! +1.900;9.559;1.890;542.8;9.559;9.559;-2;5;5;0.119;-0.001;-0.001;1.1;! +1.920;8.908;1.910;543.6;8.908;8.908;-2;5;5;0.118;-0.001;0.000;1.2;! +1.940;8.744;1.930;544.3;8.744;8.744;-2;5;5;0.111;-0.001;0.000;1.1;! +1.960;8.867;1.950;545.2;8.867;8.867;-2;5;5;0.105;-0.001;0.000;1.1;! +1.980;8.773;1.970;545.9;8.773;8.773;-2;5;5;0.098;-0.001;-0.001;1.1;! +2.000;8.341;1.990;546.7;8.339;8.341;-2;5;5;0.089;-0.002;-0.004;1.0;! +2.020;7.842;2.010;547.4;7.842;7.842;-2;5;5;0.083;-0.001;0.001;1.0;! +2.040;7.607;2.030;548.2;7.608;7.607;-2;5;5;0.077;-0.001;0.003;0.9;! +2.060;7.619;2.050;549.0;7.620;7.619;-2;5;5;0.070;-0.001;0.002;0.8;! +2.080;7.517;2.070;549.7;7.516;7.517;-2;5;5;0.063;-0.002;-0.002;0.8;! +2.100;7.314;2.090;550.5;7.313;7.314;-2;5;5;0.057;-0.002;-0.004;0.7;! +2.120;7.141;2.110;551.3;7.139;7.141;-2;5;5;0.052;-0.002;-0.003;0.7;! +2.140;7.038;2.130;552.2;7.037;7.038;-2;5;5;0.054;-0.002;-0.001;0.7;! +2.160;6.859;2.150;555.7;6.859;6.859;-2;5;5;0.056;-0.002;-0.001;0.7;! +2.180;6.681;2.170;559.1;6.681;6.681;-2;5;5;0.058;-0.002;-0.001;0.8;! +2.200;6.503;2.190;562.6;6.503;6.503;-2;5;5;0.059;-0.002;-0.001;0.9;! +2.220;6.378;2.210;564.1;6.378;6.378;-2;5;6;0.060;-0.002;0.000;0.9;! +2.240;6.183;2.230;564.8;6.183;6.183;-2;5;5;0.061;-0.002;0.000;1.0;! +2.260;5.939;2.250;565.6;5.939;5.939;-2;5;6;0.064;-0.002;0.001;1.0;! +2.280;5.711;2.270;566.4;5.711;5.711;-2;5;6;0.065;-0.002;0.001;1.1;! +2.300;5.410;2.290;567.2;5.411;5.410;-2;5;6;0.066;-0.002;0.001;1.2;! +2.320;5.017;2.310;567.9;5.017;5.017;-2;5;6;0.066;-0.002;0.001;1.3;! +2.340;4.518;2.330;568.7;4.519;4.518;-2;5;6;0.065;-0.003;0.001;1.3;! +2.360;3.976;2.350;569.5;3.976;3.976;-2;5;6;0.063;-0.003;0.001;1.5;! +2.380;3.429;2.370;570.2;3.430;3.429;-2;5;6;0.061;-0.004;0.001;1.6;! +2.400;2.876;2.390;571.0;2.876;2.876;-2;5;6;0.061;-0.005;0.001;1.9;! +2.420;2.344;2.410;571.8;2.344;2.344;-2;5;6;0.061;-0.006;0.001;2.2;! +2.440;1.853;2.430;572.5;1.853;1.853;-2;5;6;0.062;-0.007;0.001;2.7;! +2.460;1.468;2.450;573.3;1.468;1.468;-2;5;6;0.062;-0.009;0.001;3.3;! +2.480;1.230;2.470;574.1;1.230;1.230;-2;5;6;0.060;-0.011;0.002;3.8;! +2.500;1.058;2.490;574.8;1.059;1.058;-2;5;6;0.056;-0.012;0.003;4.3;! +2.520;0.927;2.510;575.6;0.929;0.927;-2;5;6;0.049;-0.013;0.004;4.4;! +2.540;0.836;2.530;576.4;0.839;0.836;-2;5;6;0.043;-0.011;0.006;4.4;! +2.560;0.769;2.550;577.2;0.773;0.769;-2;5;6;0.038;-0.011;0.007;4.3;! +2.580;0.731;2.570;577.9;0.735;0.731;-2;5;6;0.036;-0.011;0.008;4.3;! +2.600;0.739;2.590;578.7;0.743;0.739;-2;5;6;0.035;-0.010;0.009;4.4;! +2.620;0.778;2.610;579.5;0.782;0.778;-2;5;6;0.037;-0.010;0.009;4.8;! +2.640;0.784;2.630;580.2;0.787;0.784;-2;5;6;0.039;-0.012;0.008;5.2;! +2.660;0.755;2.650;581.0;0.759;0.755;-2;5;6;0.042;-0.011;0.008;5.8;! +2.680;0.715;2.670;581.8;0.717;0.715;-2;5;6;0.046;-0.016;0.006;6.5;! +2.700;0.665;2.690;582.5;0.667;0.665;-2;5;6;0.048;-0.021;0.003;7.0;! +2.720;0.613;2.710;583.3;0.615;0.613;-2;5;6;0.049;-0.024;0.003;7.5;! +2.740;0.576;2.730;584.1;0.578;0.576;-2;5;6;0.048;-0.025;0.004;7.6;! +2.760;0.553;2.750;584.8;0.554;0.553;-2;5;6;0.046;-0.026;0.004;7.8;! +2.780;0.546;2.770;585.6;0.547;0.546;-2;5;6;0.046;-0.028;0.003;8.1;! +2.800;0.541;2.790;586.4;0.543;0.541;-2;5;6;0.044;-0.030;0.003;8.1;! +2.820;0.526;2.810;587.2;0.528;0.526;-2;5;6;0.044;-0.031;0.003;8.2;! +2.840;0.511;2.830;587.9;0.512;0.511;-2;5;6;0.042;-0.033;0.003;8.1;! +2.860;0.489;2.850;588.7;0.490;0.489;-2;5;6;0.039;-0.035;0.003;7.8;! +2.880;0.475;2.870;589.5;0.477;0.475;-2;5;6;0.036;-0.037;0.003;7.3;! +2.900;0.459;2.890;590.2;0.459;0.459;-2;5;6;0.033;-0.040;0.002;6.8;! +2.920;0.457;2.910;591.0;0.458;0.457;-2;5;6;0.031;-0.041;0.002;6.4;! +2.940;0.478;2.930;591.8;0.479;0.478;-2;5;6;0.029;-0.039;0.002;6.0;! +2.960;0.480;2.950;592.5;0.481;0.480;-2;5;6;0.027;-0.039;0.003;5.8;! +2.980;0.475;2.970;593.3;0.476;0.475;-2;5;5;0.029;-0.039;0.003;6.0;! +3.000;0.474;2.990;594.1;0.475;0.474;-2;5;5;0.031;-0.039;0.003;6.6;! +3.020;0.467;3.010;594.9;0.468;0.467;-2;5;5;0.033;-0.040;0.003;6.9;! +3.040;0.469;3.030;595.6;0.470;0.469;-2;5;5;0.036;-0.041;0.003;7.2;! +3.060;0.487;3.050;596.4;0.488;0.487;-2;5;5;0.038;-0.041;0.002;7.5;! +3.080;0.526;3.070;597.2;0.527;0.526;-2;5;5;0.040;-0.038;0.002;7.9;! +3.100;0.560;3.090;597.9;0.561;0.560;-2;5;5;0.043;-0.035;0.003;8.2;! +3.120;0.567;3.110;598.7;0.568;0.567;-2;5;5;0.044;-0.035;0.003;8.3;! +3.140;0.566;3.130;601.1;0.568;0.566;-2;5;5;0.047;-0.036;0.003;8.5;! +3.160;0.572;3.150;604.6;0.573;0.572;-2;5;5;0.050;-0.036;0.002;8.8;! +3.180;0.577;3.170;608.1;0.578;0.577;-2;5;5;0.053;-0.037;0.002;9.3;! +3.200;0.579;3.190;610.7;0.580;0.579;-2;5;5;0.054;-0.037;0.002;9.5;! +3.220;0.585;3.210;611.5;0.586;0.585;-2;5;5;0.053;-0.037;0.002;9.5;! +3.240;0.566;3.230;612.3;0.567;0.566;-2;5;5;0.052;-0.038;0.002;9.4;! +3.260;0.529;3.250;613.0;0.530;0.529;-2;5;5;0.051;-0.041;0.003;9.3;! +3.280;0.507;3.270;613.8;0.509;0.507;-2;5;5;0.051;-0.042;0.003;9.2;! +3.300;0.527;3.290;614.6;0.529;0.527;-2;5;5;0.051;-0.041;0.003;9.3;! +3.320;0.553;3.310;615.4;0.555;0.553;-2;5;5;0.050;-0.040;0.003;9.3;! +3.340;0.560;3.330;616.1;0.562;0.560;-2;5;5;0.050;-0.040;0.003;9.5;! +3.360;0.539;3.350;616.9;0.540;0.539;-2;5;5;0.050;-0.042;0.003;9.9;! +3.380;0.492;3.370;617.7;0.493;0.492;-2;5;5;0.050;-0.046;0.003;10.2;! +3.400;0.433;3.390;618.5;0.434;0.433;-1;5;5;0.046;-0.056;0.002;10.1;! +3.420;0.390;3.410;619.2;0.391;0.390;-1;5;5;0.042;-0.064;0.002;9.9;! +3.440;0.356;3.430;620.0;0.357;0.356;-1;5;5;0.039;-0.073;0.002;9.8;! +3.460;0.325;3.450;620.7;0.325;0.325;-1;5;5;0.036;-0.083;0.002;9.7;! +3.480;0.305;3.470;621.5;0.305;0.305;-1;5;5;0.033;-0.090;0.002;9.5;! +3.500;0.319;3.490;622.3;0.320;0.319;-1;5;5;0.031;-0.085;0.002;9.5;! +3.520;0.326;3.510;623.1;0.327;0.326;-2;5;5;0.030;-0.083;0.002;9.5;! +3.540;0.316;3.530;623.8;0.317;0.316;-1;5;5;0.030;-0.087;0.002;9.6;! +3.560;0.309;3.550;624.6;0.309;0.309;-1;5;5;0.030;-0.090;0.002;9.7;! +3.580;0.305;3.570;625.4;0.306;0.305;-1;5;5;0.030;-0.092;0.002;9.5;! +3.600;0.300;3.590;626.2;0.301;0.300;-2;5;5;0.029;-0.096;0.002;9.3;! +3.620;0.292;3.610;626.9;0.292;0.292;-2;5;5;0.030;-0.100;0.002;9.2;! +3.640;0.309;3.630;627.7;0.310;0.309;-2;5;5;0.032;-0.094;0.002;8.9;! +3.660;0.353;3.650;628.5;0.354;0.353;-2;5;5;0.035;-0.081;0.002;8.1;! +3.680;0.438;3.670;629.3;0.439;0.438;-2;5;5;0.036;-0.063;0.002;6.5;! +3.700;0.587;3.690;630.0;0.588;0.587;-2;5;5;0.037;-0.046;0.002;5.1;! +3.720;0.862;3.710;630.8;0.864;0.862;-2;5;5;0.042;-0.030;0.003;4.6;! +3.740;1.347;3.730;631.6;1.349;1.347;-2;5;5;0.051;-0.018;0.003;4.8;! +3.760;1.581;3.750;632.3;1.582;1.581;-2;5;5;0.061;-0.016;0.003;5.2;! +3.780;1.712;3.770;633.1;1.713;1.712;-2;5;5;0.065;-0.015;0.003;5.3;! +3.800;1.501;3.790;633.9;1.503;1.501;-2;5;5;0.062;-0.017;0.004;5.2;! +3.820;1.172;3.810;634.7;1.173;1.172;-2;5;5;0.061;-0.023;0.003;5.2;! +3.840;0.735;3.830;635.4;0.736;0.735;-2;5;5;0.061;-0.036;0.004;5.6;! +3.860;0.580;3.850;636.2;0.582;0.580;-2;5;5;0.060;-0.043;0.006;6.2;! +3.880;0.633;3.870;637.0;0.636;0.633;-2;5;5;0.056;-0.037;0.007;6.6;! +3.900;0.705;3.890;637.7;0.709;0.705;-2;5;5;0.052;-0.032;0.008;6.9;! +3.920;0.750;3.910;638.5;0.753;0.750;-2;5;5;0.051;-0.029;0.009;7.3;! +3.940;0.762;3.930;639.3;0.766;0.762;-2;5;5;0.056;-0.028;0.009;7.9;! +3.960;0.756;3.940;640.0;0.760;0.756;-2;5;5;0.062;-0.028;0.009;8.8;! +3.980;0.734;3.960;640.8;0.738;0.734;-2;5;5;0.067;-0.030;0.009;9.7;! +4.000;0.677;3.980;641.6;0.680;0.677;-2;5;5;0.071;-0.035;0.008;10.8;! +4.020;0.601;4.000;642.4;0.604;0.601;-2;5;5;0.072;-0.042;0.007;11.6;! +4.040;0.524;4.020;643.2;0.527;0.524;-2;5;5;0.068;-0.051;0.006;11.7;! +4.060;0.464;4.040;643.9;0.466;0.464;-2;5;5;0.063;-0.062;0.005;11.4;! +4.080;0.424;4.060;644.7;0.426;0.424;-2;5;5;0.057;-0.070;0.005;11.1;! +4.100;0.393;4.080;645.4;0.395;0.393;-2;5;5;0.051;-0.078;0.005;10.9;! +4.120;0.376;4.100;646.9;0.378;0.376;-2;5;5;0.049;-0.082;0.005;11.3;! +4.140;0.382;4.120;650.4;0.384;0.382;-2;5;5;0.046;-0.080;0.005;11.3;! +4.160;0.387;4.140;653.8;0.389;0.387;-2;5;5;0.042;-0.078;0.006;11.0;! +4.180;0.392;4.160;657.3;0.395;0.392;-2;5;5;0.040;-0.076;0.006;10.6;! +4.200;0.371;4.180;658.3;0.374;0.371;-2;5;5;0.038;-0.081;0.006;10.3;! +4.220;0.358;4.200;659.0;0.361;0.358;-2;5;5;0.037;-0.085;0.006;10.2;! +4.240;0.355;4.220;659.8;0.358;0.355;-2;5;5;0.036;-0.086;0.007;10.1;! +4.260;0.352;4.240;660.5;0.355;0.352;-2;5;5;0.036;-0.087;0.007;10.0;! +4.280;0.345;4.260;661.3;0.348;0.345;-2;5;5;0.036;-0.089;0.007;10.2;! +4.300;0.346;4.280;662.1;0.349;0.346;-2;5;5;0.036;-0.089;0.007;10.3;! +4.320;0.348;4.300;662.9;0.351;0.348;-2;5;5;0.037;-0.088;0.007;10.6;! +4.340;0.350;4.320;663.6;0.353;0.350;-2;5;5;0.037;-0.088;0.007;10.7;! +4.360;0.347;4.340;664.4;0.351;0.347;-2;5;5;0.038;-0.089;0.008;11.0;! +4.380;0.342;4.360;665.2;0.346;0.342;-2;5;5;0.039;-0.091;0.008;11.3;! +4.400;0.338;4.380;666.0;0.341;0.338;-2;5;5;0.040;-0.093;0.008;11.5;! +4.420;0.340;4.400;666.7;0.343;0.340;-2;5;5;0.040;-0.093;0.008;11.8;! +4.440;0.342;4.420;667.5;0.345;0.342;-2;5;5;0.041;-0.093;0.008;12.1;! +4.460;0.340;4.440;668.3;0.343;0.340;-2;5;5;0.042;-0.094;0.008;12.5;! +4.480;0.338;4.460;669.0;0.342;0.338;-2;5;5;0.043;-0.096;0.008;12.8;! +4.500;0.332;4.480;669.8;0.336;0.332;-2;5;5;0.043;-0.098;0.008;13.0;! +4.520;0.323;4.500;670.6;0.326;0.323;-2;5;5;0.044;-0.103;0.008;13.2;! +4.540;0.321;4.520;671.3;0.325;0.321;-2;5;5;0.044;-0.104;0.008;13.1;! +4.560;0.325;4.540;672.2;0.329;0.325;-2;5;5;0.044;-0.104;0.008;13.1;! +4.580;0.336;4.560;672.9;0.339;0.336;-2;5;5;0.045;-0.101;0.008;13.2;! +4.600;0.349;4.580;673.7;0.353;0.349;-2;5;5;0.046;-0.097;0.008;13.1;! +4.620;0.363;4.600;674.5;0.366;0.363;-2;5;5;0.046;-0.094;0.008;12.9;! +4.640;0.378;4.620;675.2;0.382;0.378;-2;5;5;0.046;-0.090;0.008;12.6;! +4.660;0.376;4.640;676.0;0.379;0.376;-2;5;5;0.045;-0.091;0.008;12.2;! +4.680;0.374;4.660;676.8;0.377;0.374;-2;5;5;0.044;-0.093;0.008;11.9;! +4.700;0.374;4.680;677.5;0.377;0.374;-2;5;5;0.043;-0.094;0.008;11.7;! +4.720;0.367;4.700;678.3;0.370;0.367;-2;5;5;0.043;-0.096;0.008;11.7;! +4.740;0.364;4.720;679.1;0.367;0.364;-2;5;5;0.042;-0.098;0.008;11.7;! +4.760;0.350;4.740;679.8;0.354;0.350;-2;5;5;0.040;-0.103;0.008;11.5;! +4.780;0.333;4.760;680.6;0.336;0.333;-2;5;5;0.038;-0.110;0.008;11.3;! +4.800;0.307;4.780;681.4;0.311;0.307;-2;5;5;0.036;-0.122;0.008;11.1;! +4.820;0.289;4.800;682.2;0.293;0.289;-2;5;5;0.034;-0.132;0.008;10.9;! +4.840;0.283;4.820;682.9;0.287;0.283;-2;5;5;0.034;-0.136;0.008;11.0;! +4.860;0.287;4.840;683.7;0.290;0.287;-2;5;5;0.036;-0.134;0.009;11.3;! +4.880;0.300;4.860;684.5;0.303;0.300;-2;5;5;0.037;-0.127;0.009;11.2;! +4.900;0.341;4.880;685.3;0.344;0.341;-2;5;5;0.037;-0.109;0.009;11.0;! +4.920;0.381;4.900;686.0;0.385;0.381;-2;5;5;0.039;-0.095;0.009;10.9;! +4.940;0.404;4.920;686.8;0.408;0.404;-2;5;5;0.040;-0.089;0.009;10.7;! +4.960;0.417;4.940;687.6;0.421;0.417;-2;5;5;0.042;-0.086;0.009;10.6;! +4.980;0.432;4.960;688.3;0.436;0.432;-2;5;5;0.043;-0.083;0.009;10.4;! +5.000;0.433;4.980;689.1;0.437;0.433;-2;5;5;0.043;-0.083;0.009;10.3;! +5.020;0.425;5.000;689.9;0.429;0.425;-2;5;5;0.043;-0.084;0.010;10.2;! +5.040;0.414;5.020;690.7;0.418;0.414;-2;5;5;0.043;-0.086;0.010;10.3;! +5.060;0.407;5.040;691.4;0.412;0.407;-2;5;5;0.043;-0.088;0.010;10.6;! +5.080;0.396;5.060;692.2;0.401;0.396;-2;5;5;0.044;-0.091;0.011;10.8;! +5.100;0.381;5.080;693.0;0.385;0.381;-2;5;5;0.044;-0.095;0.011;10.9;! +5.120;0.369;5.100;694.6;0.374;0.369;-2;5;5;0.044;-0.098;0.011;11.1;! +5.140;0.379;5.120;698.1;0.385;0.379;-2;5;5;0.045;-0.093;0.012;11.3;! +5.160;0.390;5.140;701.6;0.395;0.390;-2;5;5;0.046;-0.088;0.013;11.2;! +5.180;0.401;5.160;705.0;0.406;0.401;-2;5;5;0.047;-0.085;0.013;11.0;! +5.200;0.426;5.180;705.8;0.432;0.426;-2;5;5;0.047;-0.079;0.014;10.7;! +5.220;0.459;5.200;706.6;0.465;0.459;-2;5;5;0.046;-0.072;0.014;10.4;! +5.240;0.479;5.220;707.3;0.485;0.479;-2;5;5;0.042;-0.068;0.014;9.8;! +5.260;0.471;5.240;708.1;0.478;0.471;-2;5;5;0.039;-0.068;0.015;9.1;! +5.280;0.432;5.260;708.9;0.439;0.432;-2;5;5;0.035;-0.073;0.016;8.5;! +5.300;0.380;5.280;709.7;0.387;0.380;-2;5;5;0.032;-0.083;0.017;8.2;! +5.320;0.329;5.300;710.4;0.337;0.329;-2;5;5;0.030;-0.097;0.017;8.2;! +5.340;0.291;5.320;711.2;0.299;0.291;-2;5;5;0.028;-0.113;0.018;8.3;! +5.360;0.270;5.340;712.0;0.278;0.270;-2;5;5;0.025;-0.125;0.018;8.2;! +5.380;0.259;5.360;712.7;0.267;0.259;-2;5;5;0.023;-0.133;0.018;8.1;! +5.400;0.249;5.380;713.5;0.256;0.249;-2;5;5;0.022;-0.140;0.018;8.1;! +5.420;0.235;5.400;714.3;0.243;0.235;-2;5;5;0.020;-0.149;0.019;7.8;! +5.440;0.237;5.420;715.0;0.245;0.237;-2;5;5;0.019;-0.145;0.020;7.3;! +5.460;0.257;5.440;715.8;0.266;0.257;-2;5;5;0.017;-0.128;0.020;6.5;! +5.480;0.283;5.460;716.6;0.291;0.283;-2;5;5;0.018;-0.111;0.021;6.4;! +5.500;0.301;5.480;717.4;0.310;0.301;-2;5;5;0.020;-0.100;0.021;6.9;! +5.520;0.314;5.500;718.1;0.324;0.314;-2;5;5;0.022;-0.094;0.022;7.4;! +5.540;0.329;5.520;718.9;0.338;0.329;-2;5;5;0.023;-0.095;0.020;7.6;! +5.560;0.329;5.540;719.7;0.338;0.329;-2;5;5;0.024;-0.097;0.020;7.7;! +5.580;0.318;5.560;720.5;0.326;0.318;-2;5;5;0.023;-0.102;0.020;7.7;! +5.600;0.295;5.580;721.2;0.303;0.295;-2;5;5;0.023;-0.115;0.020;7.8;! +5.620;0.269;5.600;722.0;0.277;0.269;-2;5;5;0.022;-0.133;0.019;7.9;! +5.640;0.245;5.620;722.8;0.253;0.245;-2;5;5;0.020;-0.153;0.019;7.5;! +5.660;0.235;5.640;723.5;0.244;0.235;-2;5;5;0.018;-0.165;0.019;7.3;! +5.680;0.225;5.660;724.3;0.233;0.225;-2;5;5;0.016;-0.178;0.019;6.9;! +5.700;0.210;5.680;725.1;0.218;0.210;-2;5;5;0.015;-0.200;0.019;6.6;! +5.720;0.206;5.700;725.9;0.214;0.206;-2;5;5;0.015;-0.209;0.019;6.5;! +5.740;0.207;5.720;726.7;0.214;0.207;-2;5;5;0.014;-0.210;0.019;6.2;! +5.760;0.216;5.740;727.4;0.224;0.216;-2;5;5;0.014;-0.198;0.019;5.8;! +5.780;0.240;5.760;728.2;0.248;0.240;-2;5;5;0.015;-0.172;0.019;5.8;! +5.800;0.273;5.780;729.0;0.281;0.273;-2;5;5;0.015;-0.146;0.019;5.5;! +5.820;0.308;5.800;729.7;0.316;0.308;-2;5;5;0.015;-0.126;0.018;5.1;! +5.840;0.350;5.820;730.5;0.357;0.350;-2;5;5;0.016;-0.109;0.018;4.7;! +5.860;0.382;5.840;731.3;0.390;0.382;-2;5;5;0.016;-0.099;0.018;4.4;! +5.880;0.420;5.860;732.0;0.427;0.420;-2;5;5;0.016;-0.089;0.018;4.0;! +5.900;0.444;5.880;732.8;0.452;0.444;-2;5;5;0.015;-0.084;0.018;3.7;! +5.920;0.456;5.900;733.6;0.463;0.456;-2;5;5;0.014;-0.083;0.017;3.2;! +5.940;0.444;5.920;734.3;0.451;0.444;-2;5;5;0.013;-0.086;0.017;3.1;! +5.960;0.427;5.940;735.2;0.435;0.427;-2;5;5;0.013;-0.091;0.017;2.9;! +5.980;0.433;5.960;735.9;0.440;0.433;-2;5;5;0.014;-0.090;0.018;3.0;! +6.000;0.434;5.980;736.7;0.442;0.434;-2;5;5;0.015;-0.090;0.018;3.1;! +6.020;0.461;6.000;737.5;0.468;0.461;-2;5;5;0.015;-0.084;0.018;3.0;! +6.040;0.508;6.020;738.2;0.516;0.508;-2;5;5;0.014;-0.075;0.018;2.8;! +6.060;0.563;6.040;739.0;0.570;0.563;-2;5;5;0.014;-0.067;0.018;2.7;! +6.080;0.597;6.060;739.8;0.604;0.597;-2;5;5;0.013;-0.063;0.018;2.5;! +6.100;0.557;6.080;740.7;0.565;0.557;-2;5;5;0.012;-0.068;0.018;2.2;! +6.120;0.501;6.100;744.2;0.508;0.501;-2;5;5;0.011;-0.077;0.019;2.2;! +6.140;0.444;6.120;747.8;0.452;0.444;-2;5;5;0.011;-0.088;0.019;2.2;! +6.160;0.387;6.140;751.3;0.396;0.387;-2;5;5;0.011;-0.103;0.019;2.0;! +6.180;0.372;6.160;752.6;0.380;0.372;-2;5;5;0.011;-0.107;0.020;1.9;! +6.200;0.460;6.180;753.4;0.469;0.460;-2;5;5;0.012;-0.081;0.021;1.8;! +6.220;0.670;6.200;754.2;0.679;0.670;-2;5;5;0.012;-0.052;0.021;1.7;! +6.240;0.923;6.220;755.0;0.932;0.923;-2;5;5;0.013;-0.037;0.021;1.7;! +6.260;1.016;6.240;755.7;1.025;1.016;-2;5;5;0.014;-0.034;0.020;1.7;! +6.280;1.050;6.260;756.5;1.059;1.050;-2;5;5;0.016;-0.033;0.020;1.7;! +6.300;1.064;6.280;757.3;1.072;1.064;-2;5;5;0.019;-0.033;0.020;2.0;! +6.320;1.010;6.290;758.0;1.019;1.010;-2;5;5;0.022;-0.036;0.020;2.4;! +6.340;0.865;6.310;758.8;0.873;0.865;-2;5;5;0.023;-0.043;0.019;2.6;! +6.360;0.689;6.330;759.6;0.698;0.689;-2;5;5;0.021;-0.055;0.020;2.6;! +6.380;0.571;6.350;760.3;0.579;0.571;-2;5;5;0.019;-0.068;0.020;2.4;! +6.400;0.536;6.370;761.1;0.545;0.536;-2;5;5;0.017;-0.072;0.021;2.1;! +6.420;0.690;6.390;761.9;0.698;0.690;-2;5;5;0.015;-0.055;0.021;1.7;! +6.440;0.968;6.410;762.7;0.977;0.968;-2;5;5;0.014;-0.037;0.021;1.5;! +6.460;1.184;6.430;763.5;1.193;1.184;-2;5;5;0.013;-0.031;0.021;1.3;! +6.480;1.247;6.450;764.2;1.256;1.247;-2;5;5;0.013;-0.029;0.020;1.1;! +6.500;1.253;6.470;765.0;1.262;1.253;-2;5;5;0.013;-0.029;0.020;1.1;! +6.520;1.281;6.490;765.8;1.289;1.281;-2;5;5;0.014;-0.029;0.021;1.1;! +6.540;1.346;6.510;766.5;1.354;1.346;-2;5;5;0.017;-0.027;0.021;1.4;! +6.560;1.188;6.530;767.3;1.196;1.188;-2;5;5;0.021;-0.031;0.021;1.9;! +6.580;0.868;6.550;768.1;0.876;0.868;-2;5;5;0.022;-0.045;0.020;2.3;! +6.600;0.630;6.570;768.8;0.639;0.630;-2;5;5;0.020;-0.065;0.020;2.5;! +6.620;0.477;6.590;769.6;0.486;0.477;-2;5;5;0.019;-0.088;0.021;2.8;! +6.640;0.364;6.610;770.4;0.373;0.364;-2;5;5;0.017;-0.121;0.022;3.2;! +6.660;0.303;6.630;771.2;0.312;0.303;-2;5;5;0.016;-0.152;0.023;3.7;! +6.680;0.283;6.650;771.9;0.293;0.283;-2;5;5;0.014;-0.163;0.024;3.8;! +6.700;0.289;6.670;772.7;0.300;0.289;-2;5;5;0.011;-0.155;0.025;3.5;! +6.720;0.277;6.690;773.5;0.288;0.277;-2;5;5;0.010;-0.163;0.025;3.2;! +6.740;0.268;6.710;774.3;0.279;0.268;-2;5;5;0.009;-0.170;0.026;3.0;! +6.760;0.278;6.730;775.0;0.289;0.278;-2;5;5;0.008;-0.160;0.026;2.8;! +6.780;0.298;6.750;775.8;0.310;0.298;-2;5;5;0.009;-0.144;0.027;2.9;! +6.800;0.320;6.770;776.5;0.332;0.320;-2;5;5;0.009;-0.131;0.027;2.8;! +6.820;0.368;6.790;777.3;0.380;0.368;-2;5;5;0.010;-0.109;0.027;2.7;! +6.840;0.411;6.810;778.1;0.423;0.411;-2;5;5;0.009;-0.096;0.027;2.5;! +6.860;0.440;6.830;778.8;0.451;0.440;-2;5;5;0.009;-0.089;0.027;2.3;! +6.880;0.425;6.850;779.6;0.436;0.425;-2;5;5;0.009;-0.094;0.027;2.2;! +6.900;0.382;6.870;780.4;0.393;0.382;-2;5;5;0.009;-0.108;0.027;2.3;! +6.920;0.353;6.890;781.2;0.364;0.353;-2;5;5;0.009;-0.120;0.027;2.3;! +6.940;0.344;6.910;782.0;0.355;0.344;-2;5;5;0.009;-0.124;0.027;2.4;! +6.960;0.337;6.930;782.7;0.348;0.337;-2;5;5;0.009;-0.127;0.027;2.6;! +6.980;0.333;6.950;783.5;0.344;0.333;-2;5;5;0.009;-0.129;0.028;2.6;! +7.000;0.344;6.970;784.3;0.356;0.344;-2;5;5;0.009;-0.123;0.028;2.6;! +7.020;0.354;6.990;785.0;0.365;0.354;-2;5;5;0.009;-0.119;0.028;2.6;! +7.040;0.349;7.010;785.8;0.361;0.349;-2;5;5;0.009;-0.121;0.028;2.5;! +7.060;0.323;7.030;786.6;0.335;0.323;-2;5;5;0.008;-0.134;0.029;2.5;! +7.080;0.298;7.050;787.3;0.310;0.298;-2;5;5;0.009;-0.148;0.029;2.5;! +7.100;0.315;7.070;788.6;0.328;0.315;-2;5;5;0.010;-0.136;0.030;2.6;! +7.120;0.405;7.090;792.9;0.417;0.405;-2;5;5;0.010;-0.097;0.030;2.6;! +7.140;0.494;7.110;797.1;0.507;0.494;-2;5;5;0.010;-0.075;0.031;2.3;! +7.160;0.538;7.130;799.4;0.551;0.538;-2;5;5;0.010;-0.068;0.031;2.2;! +7.180;0.508;7.150;800.2;0.520;0.508;-2;5;5;0.009;-0.074;0.030;2.0;! +7.200;0.454;7.170;801.0;0.466;0.454;-2;5;5;0.009;-0.085;0.031;2.1;! +7.220;0.435;7.190;801.8;0.448;0.435;-2;5;5;0.010;-0.089;0.031;2.1;! +7.240;0.421;7.210;802.5;0.434;0.421;-2;5;5;0.009;-0.093;0.031;2.1;! +7.260;0.396;7.230;803.3;0.409;0.396;-2;5;5;0.009;-0.100;0.032;2.1;! +7.280;0.386;7.250;804.0;0.399;0.386;-2;5;5;0.008;-0.103;0.032;2.1;! +7.300;0.370;7.270;804.8;0.384;0.370;-2;5;5;0.008;-0.108;0.032;2.1;! +7.320;0.347;7.290;805.6;0.361;0.347;-2;5;5;0.008;-0.116;0.033;2.1;! +7.340;0.323;7.310;806.4;0.337;0.323;-2;5;5;0.008;-0.127;0.033;2.3;! +7.360;0.308;7.330;807.2;0.322;0.308;-2;5;5;0.008;-0.134;0.034;2.3;! +7.380;0.297;7.350;807.9;0.311;0.297;-2;5;5;0.008;-0.139;0.034;2.3;! +7.400;0.296;7.370;808.7;0.311;0.296;-2;5;5;0.007;-0.139;0.035;2.3;! +7.420;0.295;7.390;809.5;0.310;0.295;-2;5;5;0.008;-0.139;0.035;2.4;! +7.440;0.308;7.410;810.3;0.323;0.308;-2;5;5;0.008;-0.131;0.035;2.4;! +7.460;0.318;7.430;811.0;0.333;0.318;-2;5;5;0.009;-0.125;0.036;2.5;! +7.480;0.359;7.450;811.8;0.375;0.359;-2;5;5;0.009;-0.106;0.036;2.2;! +7.500;0.476;7.470;812.6;0.491;0.476;-2;5;5;0.009;-0.074;0.036;2.0;! +7.520;0.565;7.490;813.3;0.580;0.565;-2;5;5;0.008;-0.061;0.036;1.8;! +7.540;0.564;7.510;814.1;0.578;0.564;-2;5;5;0.009;-0.062;0.036;1.8;! +7.560;0.511;7.530;814.9;0.526;0.511;-2;5;5;0.009;-0.070;0.036;1.7;! +7.580;0.483;7.550;815.6;0.498;0.483;-2;5;5;0.009;-0.075;0.036;1.6;! +7.600;0.497;7.570;816.4;0.512;0.497;-2;5;5;0.010;-0.073;0.036;1.8;! +7.620;0.556;7.590;817.2;0.572;0.556;-2;5;5;0.010;-0.063;0.036;1.8;! +7.640;0.573;7.610;818.0;0.588;0.573;-2;5;5;0.009;-0.062;0.036;1.8;! +7.660;0.515;7.630;818.7;0.530;0.515;-2;5;5;0.009;-0.071;0.036;1.9;! +7.680;0.433;7.650;819.5;0.448;0.433;-2;5;5;0.009;-0.089;0.036;1.8;! +7.700;0.390;7.670;820.3;0.405;0.390;-2;5;5;0.009;-0.101;0.037;1.9;! +7.720;0.367;7.690;821.0;0.383;0.367;-2;5;5;0.009;-0.110;0.037;2.0;! +7.740;0.358;7.710;821.8;0.374;0.358;-2;5;5;0.008;-0.113;0.037;2.1;! +7.760;0.356;7.730;822.6;0.371;0.356;-2;5;6;0.008;-0.113;0.037;2.0;! +7.780;0.348;7.750;823.4;0.364;0.348;-2;5;5;0.007;-0.116;0.038;2.0;! +7.800;0.330;7.770;824.1;0.347;0.330;-2;5;6;0.007;-0.123;0.039;2.1;! +7.820;0.327;7.790;824.9;0.343;0.327;-2;5;6;0.007;-0.123;0.039;2.0;! +7.840;0.333;7.810;825.7;0.349;0.333;-2;5;5;0.007;-0.119;0.039;2.0;! +7.860;0.340;7.830;826.5;0.356;0.340;-2;5;5;0.007;-0.115;0.040;2.1;! +7.880;0.342;7.850;827.2;0.359;0.342;-2;5;6;0.007;-0.113;0.040;2.1;! +7.900;0.345;7.870;828.0;0.362;0.345;-2;5;6;0.008;-0.111;0.041;2.1;! +7.920;0.351;7.890;828.8;0.369;0.351;-2;5;6;0.007;-0.108;0.041;2.1;! +7.940;0.353;7.910;829.5;0.370;0.353;-2;5;6;0.008;-0.106;0.041;2.1;! +7.960;0.352;7.930;830.3;0.369;0.352;-2;5;6;0.008;-0.106;0.042;2.2;! +7.980;0.351;7.950;831.1;0.369;0.351;-2;5;6;0.008;-0.105;0.042;2.3;! +8.000;0.358;7.970;831.8;0.376;0.358;-2;5;5;0.008;-0.101;0.043;2.3;! +8.020;0.365;7.990;832.6;0.383;0.365;-2;5;6;0.009;-0.098;0.043;2.4;! +8.040;0.369;8.010;833.4;0.387;0.369;-2;5;6;0.009;-0.096;0.044;2.5;! +8.060;0.374;8.030;834.2;0.393;0.374;-2;5;6;0.010;-0.093;0.044;2.6;! +8.080;0.380;8.050;835.0;0.399;0.380;-2;5;6;0.010;-0.090;0.045;2.6;! +8.100;0.389;8.070;838.3;0.408;0.389;-2;5;6;0.010;-0.085;0.045;2.5;! +8.120;0.399;8.090;841.8;0.418;0.399;-2;5;6;0.010;-0.080;0.046;2.5;! +8.140;0.408;8.110;845.3;0.428;0.408;-2;5;6;0.010;-0.076;0.047;2.4;! +8.160;0.417;8.130;847.0;0.437;0.417;-2;5;6;0.011;-0.073;0.048;2.5;! +8.180;0.428;8.150;847.8;0.449;0.428;-2;5;6;0.011;-0.070;0.048;2.5;! +8.200;0.443;8.170;848.6;0.463;0.443;-2;5;6;0.011;-0.066;0.049;2.5;! +8.220;0.460;8.190;849.3;0.481;0.460;-2;5;6;0.012;-0.062;0.049;2.6;! +8.240;0.473;8.210;850.1;0.494;0.473;-2;5;6;0.013;-0.059;0.050;2.7;! +8.260;0.491;8.230;850.9;0.512;0.491;-2;5;6;0.014;-0.055;0.050;2.8;! +8.280;0.518;8.250;851.7;0.539;0.518;-2;5;6;0.015;-0.051;0.051;2.9;! +8.300;0.538;8.270;852.4;0.560;0.538;-2;5;6;0.016;-0.047;0.052;2.9;! +8.320;0.566;8.290;853.2;0.588;0.566;-2;5;6;0.018;-0.043;0.052;3.1;! +8.340;0.595;8.310;854.0;0.618;0.595;-2;5;6;0.020;-0.040;0.053;3.3;! +8.360;0.623;8.330;854.7;0.646;0.623;-2;5;6;0.021;-0.036;0.054;3.5;! +8.380;0.648;8.350;855.5;0.671;0.648;-2;5;6;0.024;-0.034;0.055;3.7;! +8.400;0.671;8.370;856.3;0.695;0.671;-2;5;6;0.025;-0.031;0.056;3.8;! +8.420;0.690;8.390;857.0;0.714;0.690;-2;5;6;0.028;-0.029;0.056;4.2;! +8.440;0.696;8.410;857.8;0.720;0.696;-2;5;6;0.031;-0.028;0.057;4.6;! +8.460;0.682;8.430;858.6;0.706;0.682;-2;5;6;0.032;-0.029;0.057;4.8;! +8.480;0.684;8.450;859.4;0.708;0.684;-2;5;6;0.032;-0.030;0.057;4.7;! +8.500;0.666;8.470;860.2;0.690;0.666;-2;5;6;0.031;-0.030;0.057;4.7;! +8.520;0.626;8.480;861.0;0.651;0.626;-2;5;6;0.028;-0.029;0.059;4.4;! +8.540;0.594;8.500;861.7;0.619;0.594;-2;5;6;0.027;-0.031;0.060;4.3;! +8.560;0.569;8.520;862.5;0.594;0.569;-2;5;6;0.024;-0.033;0.060;4.1;! +8.580;0.531;8.540;863.3;0.556;0.531;-2;5;6;0.021;-0.036;0.060;3.8;! +8.600;0.513;8.560;864.0;0.538;0.513;-2;5;6;0.019;-0.039;0.059;3.5;! +8.620;0.501;8.580;864.8;0.525;0.501;-2;5;6;0.017;-0.042;0.059;3.3;! +8.640;0.478;8.600;865.6;0.503;0.478;-2;5;6;0.016;-0.045;0.059;3.1;! +8.660;0.461;8.620;866.4;0.486;0.461;-2;5;6;0.015;-0.048;0.059;3.0;! +8.680;0.457;8.640;867.1;0.482;0.457;-2;5;6;0.014;-0.049;0.059;2.9;! +8.700;0.449;8.660;867.9;0.473;0.449;-2;5;6;0.013;-0.050;0.059;2.8;! +8.720;0.440;8.680;868.7;0.464;0.440;-2;5;6;0.012;-0.051;0.059;2.6;! +8.740;0.444;8.700;869.5;0.469;0.444;-2;5;6;0.011;-0.051;0.059;2.4;! +8.760;0.447;8.720;870.2;0.472;0.447;-2;5;6;0.010;-0.051;0.059;2.3;! +8.780;0.446;8.740;871.0;0.471;0.446;-2;5;6;0.010;-0.051;0.060;2.2;! +8.800;0.440;8.760;871.8;0.465;0.440;-2;5;6;0.009;-0.052;0.060;2.1;! +8.820;0.435;8.780;872.5;0.460;0.435;-2;5;6;0.009;-0.053;0.060;2.0;! +8.840;0.436;8.800;873.3;0.461;0.436;-2;5;6;0.009;-0.053;0.060;2.0;! +8.860;0.438;8.820;874.1;0.463;0.438;-2;5;6;0.009;-0.053;0.060;2.0;! +8.880;0.433;8.840;874.8;0.458;0.433;-2;5;6;0.009;-0.054;0.060;2.0;! +8.900;0.429;8.860;875.6;0.454;0.429;-2;5;6;0.009;-0.055;0.060;2.0;! +8.920;0.420;8.880;876.4;0.445;0.420;-2;5;6;0.009;-0.057;0.061;2.0;! +8.940;0.413;8.900;877.2;0.438;0.413;-2;5;6;0.009;-0.059;0.061;2.0;! +8.960;0.409;8.920;877.9;0.435;0.409;-2;5;6;0.009;-0.059;0.061;2.1;! +8.980;0.410;8.940;878.7;0.436;0.410;-2;5;6;0.009;-0.059;0.061;2.0;! +9.000;0.422;8.960;879.5;0.448;0.422;-2;5;6;0.009;-0.057;0.061;2.0;! +9.020;0.435;8.980;880.3;0.461;0.435;-2;5;6;0.009;-0.054;0.062;2.1;! +9.040;0.438;9.000;881.0;0.464;0.438;-2;5;6;0.010;-0.053;0.062;2.2;! +9.060;0.451;9.020;881.8;0.477;0.451;-2;5;6;0.010;-0.051;0.062;2.2;! +9.080;0.461;9.040;882.9;0.487;0.461;-2;5;6;0.009;-0.049;0.063;2.1;! +9.100;0.464;9.060;886.4;0.491;0.464;-2;5;6;0.009;-0.048;0.063;1.9;! +9.120;0.467;9.080;889.9;0.494;0.467;-2;5;6;0.009;-0.046;0.064;1.8;! +9.140;0.470;9.100;893.5;0.497;0.470;-2;5;6;0.008;-0.044;0.065;1.7;! +9.160;0.479;9.120;894.7;0.506;0.479;-2;5;6;0.008;-0.043;0.065;1.7;! +9.180;0.489;9.140;895.4;0.517;0.489;-2;5;6;0.008;-0.041;0.065;1.7;! +9.200;0.492;9.160;896.2;0.519;0.492;-2;5;6;0.007;-0.041;0.065;1.5;! +9.220;0.473;9.180;897.0;0.501;0.473;-2;5;6;0.007;-0.044;0.065;1.4;! +9.240;0.458;9.200;897.7;0.485;0.458;-2;5;6;0.008;-0.046;0.066;1.5;! +9.260;0.462;9.220;898.5;0.489;0.462;-2;5;6;0.009;-0.046;0.066;1.7;! +9.280;0.503;9.240;899.3;0.530;0.503;-2;5;6;0.010;-0.042;0.065;1.9;! +9.300;0.567;9.260;900.0;0.594;0.567;-2;5;6;0.011;-0.038;0.065;2.0;! +9.320;0.612;9.280;900.8;0.639;0.612;-2;5;6;0.011;-0.035;0.065;1.9;! +9.340;0.629;9.300;901.6;0.657;0.629;-2;5;6;0.012;-0.034;0.065;1.9;! +9.360;0.641;9.320;902.4;0.669;0.641;-2;5;6;0.013;-0.033;0.065;2.0;! +9.380;0.671;9.340;903.2;0.698;0.671;-2;5;6;0.013;-0.032;0.065;1.9;! +9.400;0.732;9.360;903.9;0.759;0.732;-2;5;6;0.014;-0.029;0.065;1.8;! +9.420;0.817;9.380;904.7;0.845;0.817;-2;5;6;0.013;-0.026;0.065;1.6;! +9.440;0.920;9.400;905.5;0.947;0.920;-2;5;6;0.013;-0.025;0.064;1.6;! +9.460;0.939;9.420;906.3;0.965;0.939;-2;5;6;0.012;-0.025;0.063;1.4;! +9.480;0.888;9.440;907.0;0.915;0.888;-2;5;6;0.011;-0.028;0.063;1.3;! +9.500;0.802;9.460;907.8;0.828;0.802;-2;5;6;0.011;-0.031;0.063;1.2;! +9.520;0.781;9.480;908.6;0.807;0.781;-2;5;6;0.011;-0.034;0.062;1.2;! +9.540;0.843;9.500;909.3;0.869;0.843;-2;5;6;0.010;-0.033;0.061;1.1;! +9.560;0.937;9.520;910.1;0.963;0.937;-2;5;6;0.010;-0.030;0.060;1.2;! +9.580;0.906;9.540;910.9;0.931;0.906;-2;5;6;0.009;-0.033;0.059;1.1;! +9.600;0.754;9.560;911.7;0.779;0.754;-2;5;6;0.010;-0.041;0.059;1.1;! +9.620;0.686;9.580;912.5;0.710;0.686;-2;5;6;0.011;-0.046;0.059;1.3;! +9.640;0.855;9.600;913.2;0.880;0.855;-2;5;6;0.011;-0.036;0.059;1.2;! +9.660;1.016;9.620;914.0;1.041;1.016;-2;5;6;0.011;-0.030;0.059;1.3;! +9.680;0.987;9.640;914.8;1.012;0.987;-2;5;6;0.011;-0.032;0.058;1.2;! +9.700;0.859;9.660;915.5;0.884;0.859;-2;5;6;0.010;-0.037;0.059;1.1;! +9.720;0.842;9.680;916.3;0.867;0.842;-2;5;6;0.010;-0.038;0.059;1.0;! +9.740;0.871;9.700;917.1;0.896;0.871;-2;5;6;0.011;-0.037;0.059;1.1;! +9.760;0.893;9.720;917.8;0.918;0.893;-2;5;6;0.012;-0.035;0.059;1.2;! +9.780;0.957;9.740;918.6;0.982;0.957;-2;5;6;0.012;-0.033;0.059;1.3;! +9.800;0.959;9.760;919.4;0.984;0.959;-2;5;6;0.011;-0.033;0.059;1.2;! +9.820;0.865;9.780;920.2;0.890;0.865;-2;5;6;0.011;-0.038;0.059;1.3;! +9.840;0.781;9.800;920.9;0.806;0.781;-2;5;6;0.011;-0.042;0.060;1.3;! +9.860;0.767;9.820;921.7;0.792;0.767;-2;5;6;0.012;-0.043;0.060;1.3;! +9.880;0.749;9.840;922.5;0.775;0.749;-2;5;6;0.012;-0.044;0.060;1.4;! +9.900;0.787;9.860;923.3;0.813;0.787;-2;5;6;0.012;-0.042;0.060;1.5;! +9.920;0.851;9.880;924.0;0.877;0.851;-2;5;6;0.011;-0.038;0.061;1.3;! +9.940;0.845;9.900;924.8;0.871;0.845;-2;5;6;0.009;-0.040;0.060;1.1;! +9.960;0.862;9.920;925.6;0.887;0.862;-2;5;6;0.010;-0.039;0.060;1.1;! +9.980;0.908;9.940;926.3;0.933;0.908;-2;5;6;0.011;-0.036;0.061;1.2;! +10.000;0.883;9.960;927.1;0.909;0.883;-2;5;6;0.012;-0.037;0.061;1.4;! +10.020;0.795;9.980;927.9;0.821;0.795;-2;5;6;0.013;-0.042;0.061;1.5;! +10.040;0.717;10.000;928.7;0.743;0.717;-2;5;6;0.014;-0.047;0.062;1.6;! +10.060;0.735;10.020;929.4;0.761;0.735;-2;5;6;0.013;-0.046;0.062;1.5;! +10.080;0.742;10.040;932.6;0.769;0.742;-2;5;6;0.012;-0.044;0.063;1.5;! +10.100;0.747;10.060;936.1;0.774;0.747;-2;5;6;0.012;-0.043;0.063;1.4;! +10.120;0.752;10.080;939.6;0.779;0.752;-2;5;6;0.011;-0.042;0.064;1.4;! +10.140;0.791;10.100;941.5;0.818;0.791;-2;5;6;0.010;-0.039;0.064;1.2;! +10.160;0.821;10.120;942.3;0.848;0.821;-2;5;6;0.009;-0.039;0.064;1.2;! +10.180;0.786;10.140;943.0;0.813;0.786;-2;5;6;0.008;-0.040;0.064;1.1;! +10.200;0.700;10.160;943.8;0.727;0.700;-2;5;6;0.008;-0.046;0.065;1.0;! +10.220;0.596;10.180;944.6;0.624;0.596;-2;5;6;0.008;-0.056;0.065;1.0;! +10.240;0.583;10.200;945.3;0.611;0.583;-2;5;6;0.009;-0.055;0.066;1.2;! +10.260;0.652;10.220;946.1;0.680;0.652;-2;5;6;0.010;-0.048;0.067;1.4;! +10.280;0.769;10.240;946.9;0.797;0.769;-2;5;6;0.010;-0.040;0.067;1.3;! +10.300;0.810;10.260;947.7;0.838;0.810;-2;5;6;0.009;-0.038;0.066;1.2;! +10.320;0.814;10.280;948.4;0.842;0.814;-2;5;6;0.009;-0.037;0.067;1.0;! +10.340;0.896;10.300;949.2;0.924;0.896;-2;5;6;0.010;-0.034;0.067;1.2;! +10.360;0.933;10.320;950.0;0.961;0.933;-2;5;6;0.012;-0.033;0.067;1.3;! +10.380;0.882;10.340;950.7;0.910;0.882;-2;5;6;0.012;-0.035;0.067;1.4;! +10.400;0.809;10.360;951.5;0.837;0.809;-2;5;6;0.013;-0.038;0.067;1.5;! +10.420;0.790;10.380;952.3;0.818;0.790;-2;5;6;0.012;-0.039;0.067;1.5;! +10.440;0.748;10.400;953.0;0.777;0.748;-2;5;6;0.012;-0.042;0.067;1.4;! +10.460;0.719;10.420;953.8;0.748;0.719;-2;5;6;0.011;-0.043;0.068;1.4;! +10.480;0.755;10.440;954.6;0.784;0.755;-2;5;6;0.011;-0.041;0.068;1.4;! +10.500;0.788;10.460;955.3;0.817;0.788;-2;5;6;0.011;-0.038;0.069;1.3;! +10.520;0.800;10.480;956.1;0.829;0.800;-2;5;6;0.011;-0.038;0.069;1.3;! +10.540;0.909;10.500;956.9;0.938;0.909;-2;5;6;0.010;-0.033;0.069;1.1;! +10.560;0.958;10.520;957.7;0.986;0.958;-2;5;6;0.008;-0.032;0.068;0.8;! +10.580;0.897;10.540;958.4;0.926;0.897;-2;5;6;0.008;-0.034;0.069;0.7;! +10.600;1.072;10.550;959.2;1.101;1.072;-2;5;6;0.008;-0.027;0.070;0.6;! +10.620;1.673;10.570;960.0;1.702;1.673;-2;5;6;0.009;-0.017;0.070;0.6;! +10.640;2.032;10.590;960.8;2.060;2.032;-2;5;6;0.013;-0.015;0.067;0.8;! +10.660;1.993;10.610;961.5;2.021;1.993;-2;5;6;0.017;-0.016;0.066;1.1;! +10.680;1.722;10.630;962.3;1.749;1.722;-2;5;6;0.023;-0.020;0.065;1.5;! +10.700;1.424;10.650;963.1;1.451;1.424;-2;5;6;0.025;-0.024;0.065;1.6;! +10.720;1.168;10.670;963.8;1.195;1.168;-2;5;6;0.026;-0.030;0.066;1.9;! +10.740;0.947;10.690;964.6;0.975;0.947;-2;5;6;0.026;-0.036;0.067;2.2;! +10.760;0.768;10.710;965.4;0.796;0.768;-2;5;6;0.022;-0.045;0.068;2.3;! +10.780;0.628;10.730;966.2;0.657;0.628;-2;5;6;0.018;-0.056;0.069;2.1;! +10.800;0.551;10.750;966.9;0.580;0.551;-2;5;6;0.015;-0.064;0.070;1.8;! +10.820;0.586;10.770;967.7;0.616;0.586;-2;5;6;0.012;-0.056;0.072;1.4;! +10.840;0.787;10.790;968.5;0.817;0.787;-2;5;6;0.009;-0.039;0.072;1.0;! +10.860;1.167;10.810;969.2;1.197;1.167;-2;5;6;0.010;-0.026;0.071;1.0;! +10.880;1.344;10.830;970.0;1.374;1.344;-2;5;6;0.012;-0.023;0.070;1.1;! +10.900;1.238;10.850;970.8;1.267;1.238;-2;5;6;0.013;-0.025;0.070;1.1;! +10.920;1.140;10.870;971.5;1.169;1.140;-2;5;6;0.016;-0.027;0.071;1.4;! +10.940;1.103;10.890;972.3;1.133;1.103;-2;5;6;0.019;-0.028;0.071;1.7;! +10.960;1.073;10.910;973.1;1.104;1.073;-2;5;6;0.019;-0.029;0.072;1.8;! +10.980;0.948;10.930;973.9;0.978;0.948;-2;5;6;0.019;-0.035;0.071;1.8;! +11.000;0.852;10.950;974.6;0.882;0.852;-2;5;6;0.019;-0.038;0.071;1.9;! +11.020;0.841;10.970;975.4;0.872;0.841;-2;5;6;0.019;-0.039;0.072;2.0;! +11.040;0.827;10.990;976.2;0.857;0.827;-2;5;6;0.019;-0.040;0.072;2.0;! +11.060;0.779;11.010;978.3;0.810;0.779;-2;5;6;0.017;-0.041;0.073;1.9;! +11.080;0.749;11.030;981.4;0.780;0.749;-2;5;6;0.014;-0.042;0.074;1.8;! +11.100;0.719;11.050;984.5;0.750;0.719;-2;5;6;0.013;-0.042;0.075;1.5;! +11.120;0.688;11.070;987.6;0.721;0.688;-2;5;6;0.013;-0.043;0.077;1.5;! +11.140;0.757;11.090;989.0;0.789;0.757;-2;5;6;0.011;-0.039;0.076;1.3;! +11.160;0.868;11.110;989.8;0.901;0.868;-2;5;6;0.010;-0.032;0.077;1.2;! +11.180;0.881;11.130;990.6;0.913;0.881;-2;5;6;0.010;-0.033;0.076;1.2;! +11.200;0.825;11.150;991.3;0.857;0.825;-2;5;6;0.012;-0.036;0.076;1.5;! +11.220;0.822;11.170;992.1;0.855;0.822;-2;5;6;0.013;-0.035;0.077;1.5;! +11.240;0.846;11.190;992.9;0.879;0.846;-2;5;6;0.014;-0.034;0.077;1.6;! +11.260;0.863;11.210;993.7;0.895;0.863;-2;5;6;0.016;-0.035;0.077;1.8;! +11.280;0.875;11.230;994.4;0.907;0.875;-2;5;6;0.015;-0.034;0.077;1.7;! +11.300;0.887;11.250;995.2;0.920;0.887;-2;5;6;0.014;-0.033;0.077;1.6;! +11.320;0.914;11.270;996.0;0.947;0.914;-2;5;6;0.013;-0.032;0.078;1.4;! +11.340;0.969;11.290;996.8;1.001;0.969;-2;5;6;0.013;-0.030;0.078;1.5;! +11.360;0.904;11.310;997.5;0.936;0.904;-2;5;6;0.013;-0.032;0.078;1.5;! +11.380;0.813;11.330;998.3;0.846;0.813;-2;5;6;0.013;-0.036;0.079;1.5;! +11.400;0.737;11.350;999.1;0.770;0.737;-2;5;6;0.012;-0.039;0.080;1.4;! +11.420;0.725;11.370;999.8;0.758;0.725;-2;5;6;0.011;-0.041;0.079;1.4;! +11.440;0.690;11.390;1000.6;0.724;0.690;-2;5;6;0.011;-0.043;0.080;1.5;! +11.460;0.649;11.410;1001.4;0.683;0.649;-2;5;6;0.011;-0.046;0.080;1.5;! +11.480;0.640;11.430;1002.2;0.674;0.640;-2;5;6;0.011;-0.045;0.081;1.5;! +11.500;0.683;11.450;1002.9;0.717;0.683;-2;5;6;0.011;-0.041;0.082;1.4;! +11.520;0.843;11.470;1003.7;0.877;0.843;-2;5;6;0.011;-0.033;0.081;1.3;! +11.540;1.013;11.490;1004.5;1.047;1.013;-2;5;6;0.011;-0.027;0.081;1.3;! +11.560;1.026;11.510;1005.2;1.060;1.026;-2;5;6;0.012;-0.028;0.080;1.3;! +11.580;0.931;11.530;1006.0;0.965;0.931;-2;5;6;0.014;-0.031;0.081;1.5;! +11.600;0.856;11.550;1006.8;0.891;0.856;-2;5;6;0.015;-0.032;0.082;1.7;! +11.620;0.855;11.570;1007.5;0.890;0.855;-2;5;6;0.017;-0.032;0.082;1.8;! +11.640;0.865;11.590;1008.3;0.899;0.865;-2;5;6;0.016;-0.034;0.081;1.9;! +11.660;0.805;11.610;1009.1;0.839;0.805;-2;5;6;0.015;-0.036;0.082;1.8;! +11.680;0.727;11.630;1009.9;0.762;0.727;-2;5;6;0.014;-0.040;0.082;1.7;! +11.700;0.695;11.650;1010.6;0.730;0.695;-2;5;6;0.014;-0.041;0.083;1.7;! +11.720;0.711;11.670;1011.4;0.746;0.711;-2;5;6;0.012;-0.038;0.084;1.6;! +11.740;0.754;11.690;1012.2;0.789;0.754;-2;5;6;0.011;-0.034;0.086;1.4;! +11.760;0.740;11.710;1012.9;0.776;0.740;-2;5;6;0.009;-0.037;0.085;1.3;! +11.780;0.690;11.730;1013.7;0.725;0.690;-2;5;6;0.009;-0.040;0.085;1.2;! +11.800;0.639;11.750;1014.5;0.675;0.639;-2;5;6;0.010;-0.042;0.086;1.3;! +11.820;0.615;11.770;1015.3;0.652;0.615;-2;5;6;0.012;-0.044;0.086;1.7;! +11.840;0.650;11.790;1016.0;0.686;0.650;-2;5;6;0.012;-0.042;0.086;1.7;! +11.860;0.743;11.810;1016.8;0.779;0.743;-2;5;6;0.011;-0.036;0.086;1.5;! +11.880;0.812;11.830;1017.5;0.848;0.812;-2;5;6;0.011;-0.033;0.086;1.4;! +11.900;0.811;11.850;1018.3;0.847;0.811;-2;5;6;0.011;-0.033;0.086;1.4;! +11.920;0.793;11.870;1019.1;0.829;0.793;-2;5;6;0.010;-0.034;0.086;1.2;! +11.940;0.785;11.890;1019.9;0.821;0.785;-2;5;6;0.011;-0.034;0.087;1.4;! +11.960;0.729;11.910;1020.6;0.765;0.729;-2;5;6;0.011;-0.037;0.087;1.4;! +11.980;0.673;11.930;1021.4;0.710;0.673;-2;5;6;0.011;-0.039;0.088;1.5;! +12.000;0.615;11.950;1022.2;0.652;0.615;-2;5;6;0.011;-0.043;0.089;1.6;! +12.020;0.601;11.970;1023.0;0.639;0.601;-2;5;6;0.011;-0.044;0.089;1.6;! +12.040;0.606;11.990;1023.7;0.643;0.606;-2;5;6;0.010;-0.042;0.090;1.5;! +12.060;0.623;12.010;1026.2;0.662;0.623;-2;5;6;0.009;-0.038;0.092;1.4;! +12.080;0.650;12.030;1029.7;0.690;0.650;-2;5;6;0.009;-0.033;0.093;1.4;! +12.100;0.677;12.050;1033.1;0.717;0.677;-2;5;6;0.011;-0.028;0.095;1.6;! +12.120;0.717;12.070;1035.8;0.757;0.717;-2;5;6;0.011;-0.026;0.095;1.6;! +12.140;0.740;12.090;1036.5;0.780;0.740;-2;5;6;0.011;-0.025;0.095;1.5;! +12.160;0.689;12.110;1037.3;0.729;0.689;-2;5;6;0.011;-0.028;0.096;1.6;! +12.180;0.632;12.130;1038.1;0.672;0.632;-2;5;6;0.011;-0.030;0.096;1.7;! +12.200;0.598;12.150;1038.8;0.639;0.598;-2;5;6;0.012;-0.031;0.097;1.7;! +12.220;0.610;12.170;1039.6;0.651;0.610;-2;5;6;0.012;-0.029;0.098;1.7;! +12.240;0.649;12.190;1040.4;0.690;0.649;-2;5;6;0.011;-0.027;0.098;1.6;! +12.260;0.709;12.210;1041.1;0.750;0.709;-2;5;6;0.011;-0.023;0.099;1.5;! +12.280;0.756;12.230;1041.9;0.797;0.756;-2;5;6;0.010;-0.022;0.098;1.5;! +12.300;0.741;12.250;1042.7;0.783;0.741;-2;5;6;0.011;-0.023;0.098;1.6;! +12.320;0.697;12.270;1043.5;0.739;0.697;-2;5;6;0.013;-0.023;0.100;1.7;! +12.340;0.692;12.290;1044.2;0.735;0.692;-2;5;6;0.014;-0.022;0.101;1.8;! +12.360;0.741;12.310;1045.0;0.783;0.741;-2;5;6;0.014;-0.020;0.101;1.9;! +12.380;0.771;12.330;1045.8;0.814;0.771;-2;5;6;0.015;-0.019;0.101;1.8;! +12.400;0.818;12.350;1046.5;0.861;0.818;-2;5;6;0.015;-0.018;0.101;1.8;! +12.420;0.894;12.370;1047.3;0.937;0.894;-2;5;6;0.015;-0.016;0.102;1.8;! +12.440;0.943;12.390;1048.1;0.986;0.943;-2;5;6;0.016;-0.015;0.102;1.8;! +12.460;0.929;12.410;1048.9;0.972;0.929;-2;5;6;0.014;-0.015;0.102;1.5;! +12.480;0.847;12.430;1049.7;0.891;0.847;-2;5;6;0.014;-0.013;0.105;1.3;! +12.500;0.966;12.450;1050.4;1.011;0.966;-2;5;6;0.024;-0.009;0.107;2.1;! +12.520;1.285;12.470;1051.2;1.330;1.285;-2;5;6;0.027;-0.006;0.108;2.0;! +12.540;1.389;12.490;1052.0;1.432;1.389;-2;5;6;0.024;-0.010;0.103;1.5;! +12.560;1.939;12.510;1052.7;1.982;1.939;-2;5;6;0.026;-0.007;0.102;1.3;! +12.580;2.582;12.530;1053.5;2.627;2.582;-2;5;6;0.027;-0.003;0.108;1.0;! +12.600;2.853;12.550;1054.3;2.898;2.853;-2;5;6;0.029;-0.003;0.106;0.9;! +12.620;4.208;12.560;1055.1;4.250;4.208;-2;5;6;0.031;-0.003;0.102;0.8;! +12.640;5.189;12.580;1055.9;5.233;5.189;-2;5;6;0.030;-0.002;0.104;0.7;! +12.660;5.335;12.600;1056.7;5.375;5.335;-2;5;6;0.031;-0.004;0.096;0.6;! +12.680;5.263;12.620;1057.4;5.304;5.263;-2;5;6;0.032;-0.004;0.096;0.6;! +12.700;5.080;12.640;1058.2;5.121;5.080;-2;5;6;0.033;-0.004;0.096;0.6;! +12.720;4.864;12.660;1059.0;4.905;4.864;-2;6;6;0.032;-0.004;0.095;0.6;! +12.740;4.760;12.680;1059.7;4.800;4.760;-2;6;6;0.035;-0.005;0.095;0.7;! +12.760;4.589;12.700;1060.5;4.629;4.589;-2;5;6;0.039;-0.005;0.096;0.8;! +12.780;4.292;12.720;1061.3;4.333;4.292;-2;5;6;0.041;-0.004;0.099;0.9;! +12.800;3.920;12.740;1062.0;3.960;3.920;-2;5;6;0.039;-0.006;0.095;0.9;! +12.820;3.777;12.760;1062.8;3.817;3.777;-2;5;6;0.038;-0.006;0.097;0.8;! +12.840;4.003;12.780;1063.6;4.045;4.003;-2;5;6;0.035;-0.005;0.100;0.8;! +12.860;4.357;12.800;1064.3;4.400;4.357;-2;5;6;0.033;-0.004;0.103;0.8;! +12.880;4.373;12.820;1065.1;4.410;4.373;-2;6;6;0.033;-0.007;0.088;0.8;! +12.900;4.153;12.840;1065.9;4.190;4.153;-2;6;6;0.033;-0.008;0.087;0.8;! +12.920;3.955;12.860;1066.7;3.993;3.955;-2;6;6;0.033;-0.007;0.090;0.8;! +12.940;3.750;12.880;1067.4;3.788;3.750;-2;6;6;0.033;-0.008;0.091;0.8;! +12.960;3.507;12.900;1068.2;3.546;3.507;-2;6;6;0.033;-0.008;0.092;0.8;! +12.980;3.437;12.920;1069.0;3.477;3.437;-2;6;6;0.033;-0.007;0.095;0.9;! +13.000;3.399;12.940;1069.7;3.440;3.399;-2;6;6;0.033;-0.007;0.097;0.9;! +13.020;3.213;12.960;1070.5;3.254;3.213;-2;6;6;0.034;-0.007;0.099;0.9;! +13.040;3.003;12.980;1072.2;3.045;3.003;-2;6;6;0.033;-0.007;0.100;1.0;! +13.060;2.967;13.000;1075.8;3.010;2.967;-2;6;6;0.033;-0.006;0.103;1.0;! +13.080;2.931;13.020;1079.3;2.976;2.931;-2;6;6;0.033;-0.005;0.106;1.0;! +13.100;2.904;13.040;1082.6;2.949;2.904;-2;6;6;0.029;-0.005;0.107;0.9;! +13.120;2.903;13.060;1083.4;2.947;2.903;-2;6;6;0.029;-0.006;0.105;0.8;! +13.140;3.158;13.080;1084.1;3.203;3.158;-2;6;6;0.031;-0.004;0.109;0.8;! +13.160;3.766;13.100;1084.9;3.813;3.766;-2;6;6;0.030;-0.003;0.112;0.8;! +13.180;4.014;13.120;1085.7;4.061;4.014;-2;6;6;0.029;-0.003;0.110;0.7;! +13.200;4.024;13.140;1086.5;4.064;4.024;-2;6;6;0.030;-0.006;0.097;0.7;! +13.220;4.049;13.160;1087.2;4.090;4.049;-2;6;6;0.033;-0.006;0.098;0.8;! +13.240;4.232;13.180;1088.0;4.275;4.232;-2;6;6;0.031;-0.005;0.100;0.7;! +13.260;4.496;13.200;1088.8;4.539;4.496;-2;6;6;0.031;-0.005;0.102;0.6;! +13.280;4.872;13.220;1089.5;4.915;4.872;-2;6;6;0.032;-0.004;0.103;0.6;! +13.300;5.301;13.240;1090.3;5.344;5.301;-2;6;6;0.033;-0.004;0.104;0.6;! +13.320;5.548;13.260;1091.1;5.592;5.548;-2;6;6;0.035;-0.003;0.104;0.6;! +13.340;5.549;13.280;1091.9;5.592;5.549;-2;6;6;0.038;-0.004;0.103;0.7;! +13.360;5.344;13.300;1092.7;5.388;5.344;-2;6;6;0.041;-0.004;0.104;0.8;! +13.380;4.873;13.320;1093.4;4.916;4.873;-2;6;6;0.044;-0.004;0.103;0.9;! +13.400;4.169;13.340;1094.2;4.212;4.169;-2;6;6;0.043;-0.005;0.103;0.9;! +13.420;3.517;13.360;1095.0;3.561;3.517;-2;6;6;0.042;-0.006;0.104;0.9;! +13.440;3.618;13.380;1095.7;3.663;3.618;-2;6;6;0.043;-0.005;0.106;1.0;! +13.460;4.029;13.400;1096.5;4.076;4.029;-2;6;6;0.045;-0.004;0.110;1.1;! +13.480;4.027;13.420;1097.3;4.072;4.027;-2;6;6;0.046;-0.004;0.108;1.2;! +13.500;3.599;13.440;1098.0;3.642;3.599;-2;6;6;0.046;-0.006;0.103;1.3;! +13.520;3.104;13.460;1098.8;3.148;3.104;-2;6;6;0.043;-0.007;0.104;1.3;! +13.540;2.732;13.480;1099.6;2.777;2.732;-2;6;6;0.039;-0.007;0.106;1.2;! +13.560;2.603;13.500;1100.3;2.649;2.603;-2;6;6;0.039;-0.006;0.110;1.3;! +13.580;2.617;13.520;1101.1;2.665;2.617;-2;6;6;0.041;-0.005;0.114;1.5;! +13.600;2.446;13.540;1101.9;2.490;2.446;-2;6;6;0.042;-0.008;0.106;1.7;! +13.620;2.184;13.560;1102.7;2.228;2.184;-2;6;6;0.037;-0.010;0.105;1.5;! +13.640;1.926;13.580;1103.4;1.973;1.926;-2;6;6;0.032;-0.009;0.111;1.3;! +13.660;1.906;13.600;1104.2;1.956;1.906;-2;6;6;0.028;-0.005;0.118;1.0;! +13.680;2.243;13.620;1105.0;2.294;2.243;-2;6;6;0.024;-0.003;0.120;0.8;! +13.700;3.092;13.640;1105.7;3.141;3.092;-2;6;6;0.021;-0.003;0.116;0.6;! +13.720;3.993;13.660;1106.5;4.023;3.993;-2;6;6;0.019;-0.014;0.073;0.5;! +13.740;4.363;13.680;1107.3;4.387;4.363;-2;6;6;0.019;-0.017;0.057;0.5;! +13.760;4.368;13.700;1108.0;4.391;4.368;-2;6;6;0.020;-0.017;0.055;0.5;! +13.780;4.259;13.720;1108.8;4.284;4.259;-2;6;6;0.022;-0.017;0.058;0.5;! +13.800;4.129;13.740;1109.6;4.159;4.129;-2;6;6;0.024;-0.014;0.073;0.6;! +13.820;3.917;13.760;1110.4;3.949;3.917;-2;6;6;0.027;-0.014;0.076;0.7;! +13.840;3.667;13.780;1111.1;3.699;3.667;-2;6;6;0.031;-0.014;0.077;0.8;! +13.860;3.352;13.800;1111.9;3.384;3.352;-2;6;6;0.033;-0.016;0.078;0.9;! +13.880;3.083;13.820;1112.7;3.116;3.083;-2;6;6;0.034;-0.017;0.079;0.9;! +13.900;2.965;13.840;1113.5;2.999;2.965;-2;6;6;0.032;-0.017;0.081;0.9;! +13.920;3.130;13.860;1114.2;3.165;3.130;-2;6;6;0.029;-0.015;0.083;0.8;! +13.940;3.552;13.880;1115.0;3.589;3.552;-2;6;6;0.027;-0.012;0.087;0.7;! +13.960;3.965;13.900;1115.8;4.001;3.965;-2;6;6;0.026;-0.011;0.086;0.7;! +13.980;4.196;13.920;1116.5;4.223;4.196;-2;6;6;0.025;-0.016;0.063;0.6;! +14.000;4.258;13.940;1117.3;4.285;4.258;-2;6;6;0.025;-0.016;0.063;0.6;! +14.020;4.209;13.960;1118.1;4.236;4.209;-2;6;6;0.025;-0.016;0.066;0.6;! +14.040;4.307;13.980;1120.1;4.338;4.307;-2;6;6;0.027;-0.014;0.073;0.6;! +14.060;4.500;14.000;1123.7;4.533;4.500;-2;6;6;0.028;-0.011;0.080;0.6;! +14.080;4.692;14.020;1127.3;4.729;4.692;-2;6;6;0.029;-0.009;0.087;0.6;! +14.100;4.849;14.040;1130.2;4.887;4.849;-2;6;6;0.030;-0.008;0.091;0.6;! +14.120;4.782;14.060;1131.0;4.819;4.782;-2;6;6;0.031;-0.009;0.089;0.6;! +14.140;4.513;14.080;1131.7;4.549;4.513;-2;6;6;0.032;-0.010;0.087;0.7;! +14.160;4.237;14.100;1132.5;4.275;4.237;-2;6;6;0.033;-0.010;0.089;0.7;! +14.180;4.046;14.120;1133.3;4.084;4.046;-2;6;6;0.033;-0.011;0.090;0.7;! +14.200;3.928;14.140;1134.0;3.966;3.928;-2;6;6;0.032;-0.011;0.091;0.7;! +14.220;3.800;14.160;1134.8;3.839;3.800;-2;6;6;0.031;-0.011;0.093;0.8;! +14.240;3.607;14.180;1135.6;3.646;3.607;-2;6;6;0.030;-0.011;0.093;0.8;! +14.260;3.413;14.200;1136.3;3.450;3.413;-2;6;6;0.029;-0.013;0.089;0.8;! +14.280;3.363;14.220;1137.1;3.400;3.363;-2;6;6;0.027;-0.014;0.089;0.7;! +14.300;3.372;14.240;1137.9;3.410;3.372;-2;6;6;0.026;-0.013;0.091;0.7;! +14.320;3.405;14.260;1138.7;3.443;3.405;-2;6;6;0.026;-0.013;0.092;0.7;! +14.340;3.381;14.280;1139.4;3.419;3.381;-2;6;6;0.029;-0.014;0.089;0.8;! +14.360;3.236;14.300;1140.2;3.271;3.236;-2;6;6;0.031;-0.016;0.083;0.9;! +14.380;3.110;14.320;1141.0;3.146;3.110;-2;6;6;0.030;-0.016;0.085;0.8;! +14.400;3.137;14.340;1141.7;3.167;3.137;-2;6;6;0.029;-0.021;0.071;0.7;! +14.420;3.599;14.360;1142.5;3.632;3.599;-2;6;6;0.027;-0.016;0.079;0.6;! +14.440;4.450;14.370;1143.3;4.484;4.450;-2;6;6;0.026;-0.012;0.081;0.6;! +14.460;5.222;14.390;1144.1;5.247;5.222;-2;6;6;0.026;-0.015;0.060;0.5;! +14.480;5.555;14.410;1144.8;5.578;5.555;-2;6;6;0.027;-0.015;0.056;0.5;! +14.500;5.613;14.430;1145.6;5.638;5.613;-2;6;6;0.027;-0.014;0.060;0.5;! +14.520;5.464;14.450;1146.4;5.491;5.464;-2;6;6;0.027;-0.014;0.062;0.5;! +14.540;5.222;14.470;1147.2;5.248;5.222;-2;6;6;0.030;-0.014;0.063;0.5;! +14.560;5.069;14.490;1147.9;5.096;5.069;-2;6;6;0.032;-0.015;0.064;0.6;! +14.580;4.996;14.510;1148.7;5.023;4.996;-2;6;6;0.034;-0.014;0.065;0.6;! +14.600;4.870;14.530;1149.5;4.898;4.870;-2;6;6;0.035;-0.015;0.067;0.7;! +14.620;4.589;14.550;1150.2;4.617;4.589;-2;6;6;0.036;-0.015;0.069;0.8;! +14.640;4.202;14.570;1151.0;4.232;4.202;-2;6;6;0.038;-0.016;0.070;0.8;! +14.660;3.742;14.590;1151.8;3.772;3.742;-2;6;6;0.039;-0.018;0.071;0.9;! +14.680;3.295;14.610;1152.5;3.325;3.295;-2;6;6;0.040;-0.020;0.072;1.1;! +14.700;2.923;14.630;1153.3;2.954;2.923;-2;6;6;0.041;-0.023;0.073;1.2;! +14.720;2.660;14.650;1154.0;2.691;2.660;-2;6;6;0.043;-0.025;0.074;1.4;! +14.740;2.538;14.670;1154.8;2.571;2.538;-2;6;6;0.042;-0.025;0.077;1.4;! +14.760;2.550;14.690;1155.6;2.583;2.550;-2;6;6;0.040;-0.024;0.080;1.4;! +14.780;2.624;14.710;1156.4;2.659;2.624;-2;6;6;0.037;-0.022;0.083;1.3;! +14.800;2.739;14.730;1157.2;2.770;2.739;-2;6;6;0.032;-0.024;0.075;1.1;! +14.820;3.016;14.750;1157.9;3.040;3.016;-2;6;6;0.028;-0.029;0.055;0.9;! +14.840;3.381;14.770;1158.7;3.402;3.381;-2;6;6;0.025;-0.028;0.049;0.7;! +14.860;3.597;14.790;1159.5;3.619;3.597;-2;6;6;0.024;-0.025;0.054;0.7;! +14.880;3.679;14.810;1160.3;3.699;3.679;-2;6;6;0.023;-0.026;0.047;0.6;! +14.900;3.731;14.830;1161.0;3.753;3.731;-2;6;6;0.025;-0.024;0.053;0.7;! +14.920;3.767;14.850;1161.8;3.790;3.767;-2;6;6;0.027;-0.023;0.056;0.7;! +14.940;3.653;14.870;1162.6;3.678;3.653;-2;6;6;0.029;-0.023;0.058;0.8;! +14.960;3.369;14.890;1163.3;3.394;3.369;-2;6;6;0.032;-0.025;0.059;0.9;! +14.980;2.952;14.910;1164.1;2.977;2.952;-2;6;6;0.034;-0.028;0.060;1.0;! +15.000;2.581;14.930;1164.9;2.607;2.581;-2;6;6;0.039;-0.032;0.062;1.2;! +15.020;2.255;14.950;1166.2;2.285;2.255;-2;6;6;0.045;-0.034;0.070;1.6;! +15.040;2.057;14.970;1169.8;2.091;2.057;-2;6;6;0.051;-0.031;0.081;2.0;! +15.060;1.858;14.990;1173.4;1.897;1.858;-2;6;6;0.056;-0.028;0.092;2.5;! +15.080;1.659;15.010;1177.0;1.706;1.659;-2;6;6;0.061;-0.019;0.112;2.9;! +15.100;1.789;15.030;1177.8;1.845;1.789;-2;6;6;0.064;-0.005;0.133;3.1;! +15.120;2.064;15.050;1178.6;2.123;2.064;-2;6;6;0.069;0.001;0.142;3.3;! +15.140;2.191;15.070;1179.3;2.266;2.191;-2;6;6;0.068;0.018;0.178;3.2;! +15.160;2.238;15.090;1180.1;2.362;2.238;-2;6;6;0.070;0.071;0.294;3.3;! +15.180;2.296;15.110;1180.9;2.423;2.296;-2;6;6;0.070;0.073;0.303;3.4;! +15.200;2.206;15.130;1181.6;2.316;2.206;-2;6;6;0.069;0.057;0.262;3.4;! +15.220;1.895;15.150;1182.4;1.998;1.895;-2;6;6;0.068;0.058;0.245;3.5;! +15.240;1.668;15.170;1183.2;1.759;1.668;-2;6;6;0.064;0.048;0.215;3.5;! +15.260;1.436;15.190;1183.9;1.517;1.436;-2;6;6;0.058;0.039;0.193;3.4;! +15.280;1.397;15.210;1184.7;1.488;1.397;-2;6;6;0.052;0.059;0.217;3.2;! +15.300;1.299;15.230;1185.5;1.383;1.299;-2;6;6;0.047;0.048;0.199;3.0;! +15.320;1.391;15.250;1186.2;1.456;1.391;-2;6;6;0.041;0.011;0.157;2.7;! +15.340;1.522;15.270;1187.0;1.584;1.522;-2;6;6;0.036;0.004;0.148;2.3;! +15.360;1.649;15.290;1187.8;1.708;1.649;-2;6;6;0.030;-0.001;0.141;1.9;! +15.380;1.711;15.310;1188.5;1.764;1.711;-2;6;6;0.026;-0.010;0.127;1.6;! +15.400;1.781;15.330;1189.3;1.833;1.781;-2;6;6;0.025;-0.011;0.126;1.4;! +15.420;1.816;15.350;1190.1;1.870;1.816;-2;6;6;0.025;-0.010;0.127;1.3;! +15.440;1.851;15.370;1190.9;1.906;1.851;-2;6;6;0.024;-0.008;0.131;1.2;! +15.460;1.909;15.390;1191.6;1.963;1.909;-2;6;6;0.024;-0.008;0.130;1.2;! +15.480;1.994;15.410;1192.4;2.047;1.994;-2;6;6;0.024;-0.009;0.128;1.2;! +15.500;2.045;15.430;1193.2;2.099;2.045;-2;6;6;0.027;-0.008;0.129;1.2;! +15.520;2.024;15.450;1194.0;2.080;2.024;-2;6;6;0.027;-0.007;0.132;1.1;! +15.540;2.189;15.470;1194.7;2.245;2.189;-2;6;6;0.026;-0.006;0.133;0.9;! +15.560;2.867;15.490;1195.5;2.923;2.867;-2;6;6;0.026;-0.004;0.133;0.8;! +15.580;3.981;15.510;1196.3;4.030;3.981;-2;6;6;0.028;-0.008;0.115;0.7;! +15.600;4.953;15.530;1197.1;4.975;4.953;-2;6;6;0.029;-0.019;0.054;0.6;! +15.620;5.640;15.550;1197.9;5.669;5.640;-2;6;6;0.031;-0.014;0.068;0.6;! +15.640;6.163;15.570;1198.6;6.196;6.163;-2;6;6;0.032;-0.011;0.078;0.5;! +15.660;6.576;15.590;1199.4;6.611;6.576;-2;6;6;0.033;-0.010;0.084;0.5;! +15.680;6.974;15.610;1200.2;7.012;6.974;-2;6;6;0.035;-0.008;0.089;0.5;! +15.700;7.461;15.630;1201.0;7.502;7.461;-2;6;6;0.038;-0.007;0.097;0.5;! +15.720;8.032;15.650;1201.8;8.075;8.032;-2;6;6;0.041;-0.005;0.103;0.5;! +15.740;8.551;15.670;1202.5;8.596;8.551;-2;6;6;0.045;-0.005;0.108;0.5;! +15.760;8.846;15.690;1203.3;8.894;8.846;-2;6;6;0.050;-0.004;0.113;0.5;! +15.780;9.026;15.710;1204.1;9.076;9.026;-2;6;6;0.055;-0.003;0.118;0.6;! +15.800;9.261;15.730;1204.9;9.313;9.261;-2;6;6;0.061;-0.003;0.123;0.6;! +15.820;9.624;15.750;1205.7;9.677;9.624;-2;6;6;0.067;-0.002;0.126;0.7;! +15.840;10.077;15.770;1206.4;10.130;10.077;-2;6;6;0.071;-0.002;0.127;0.7;! +15.860;10.192;15.790;1207.2;10.246;10.192;-2;6;6;0.075;-0.002;0.128;0.8;! +15.880;9.499;15.810;1208.0;9.553;9.499;-2;6;6;0.078;-0.002;0.128;0.9;! +15.900;8.072;15.830;1208.7;8.126;8.072;-2;6;6;0.084;-0.003;0.128;1.0;! +15.920;6.487;15.850;1209.5;6.541;6.487;-2;6;6;0.093;-0.003;0.129;1.3;! +15.940;4.845;15.870;1210.2;4.899;4.845;-2;6;6;0.103;-0.004;0.130;1.7;! +15.960;3.601;15.890;1211.0;3.656;3.601;-2;6;6;0.114;-0.005;0.131;2.1;! +15.980;2.860;15.910;1211.8;2.916;2.860;-2;6;6;0.123;-0.005;0.135;2.6;! +16.000;2.433;15.930;1212.6;2.491;2.433;-2;6;6;0.126;-0.005;0.137;3.3;! +16.020;2.173;15.950;1214.4;2.231;2.173;-2;6;6;0.122;-0.006;0.138;4.2;! +16.040;1.913;15.970;1216.3;1.972;1.913;-2;6;6;0.110;-0.006;0.139;4.9;! +16.060;1.653;15.990;1218.1;1.714;1.653;-2;6;6;0.101;-0.004;0.143;5.3;! +16.080;1.500;16.010;1219.1;1.584;1.500;-2;6;6;0.094;0.037;0.201;5.3;! +16.100;1.377;16.030;1219.9;1.494;1.377;-2;6;6;0.088;0.101;0.279;5.3;! +16.120;1.280;16.040;1220.7;1.412;1.280;-2;6;6;0.081;0.137;0.313;5.3;! +16.140;1.220;16.060;1221.4;1.356;1.220;-2;6;6;0.072;0.154;0.325;5.0;! +16.160;1.172;16.080;1224.6;1.325;1.172;-2;6;6;0.064;0.194;0.364;5.0;! +16.180;1.124;16.100;1228.1;1.293;1.124;-2;6;6;0.058;0.236;0.403;4.8;! +16.200;1.076;16.120;1231.6;1.262;1.076;-2;6;6;0.050;0.280;0.442;4.4;! +16.220;1.053;16.140;1233.5;1.250;1.053;-2;6;6;0.043;0.310;0.469;3.8;! +16.240;1.068;16.160;1234.3;1.272;1.068;-2;6;6;0.037;0.318;0.484;3.3;! +16.260;1.083;16.180;1235.0;1.286;1.083;-2;6;6;0.034;0.311;0.481;3.0;! +16.280;1.106;16.200;1235.8;1.309;1.106;-2;6;6;0.033;0.306;0.484;2.9;! +16.300;1.131;16.220;1236.5;1.335;1.131;-2;6;6;0.033;0.300;0.485;2.9;! +16.320;1.159;16.240;1237.3;1.361;1.159;-2;6;6;0.035;0.291;0.482;2.9;! +16.340;1.202;16.260;1238.1;1.408;1.202;-2;6;6;0.037;0.286;0.490;3.0;! +16.360;1.246;16.280;1238.9;1.456;1.246;-2;6;6;0.039;0.283;0.500;3.2;! +16.380;1.292;16.300;1239.6;1.508;1.292;-2;6;6;0.042;0.282;0.513;3.3;! +16.400;1.331;16.320;1240.4;1.548;1.331;-2;6;6;0.044;0.276;0.518;3.4;! +16.420;1.353;16.340;1241.2;1.571;1.353;-2;6;6;0.049;0.273;0.520;3.7;! +16.440;1.369;16.360;1241.9;1.583;1.369;-2;6;7;0.058;0.263;0.510;4.3;! +16.460;1.367;16.380;1242.7;1.560;1.367;-2;6;6;0.066;0.231;0.461;4.9;! +16.480;1.363;16.400;1243.5;1.532;1.363;-2;6;6;0.069;0.191;0.403;5.2;! +16.500;1.330;16.420;1244.3;1.474;1.330;-2;6;6;0.070;0.151;0.342;5.4;! +16.520;1.256;16.440;1245.1;1.396;1.256;-2;6;6;0.066;0.154;0.333;5.2;! +16.540;1.175;16.460;1245.8;1.322;1.175;-2;6;6;0.059;0.179;0.351;4.9;! +16.560;1.112;16.480;1246.6;1.266;1.112;-2;6;6;0.052;0.206;0.369;4.5;! +16.580;1.020;16.500;1247.4;1.190;1.020;-2;6;6;0.044;0.260;0.404;4.0;! +16.600;0.963;16.520;1248.2;1.138;0.963;-2;6;6;0.036;0.289;0.417;3.4;! +16.620;0.924;16.540;1248.9;1.096;0.924;-2;6;6;0.029;0.294;0.410;3.0;! +16.640;0.881;16.560;1249.7;1.043;0.881;-2;6;6;0.026;0.283;0.386;2.8;! +16.660;0.835;16.580;1250.5;0.996;0.835;-2;6;6;0.024;0.298;0.383;2.8;! +16.680;0.784;16.600;1251.2;0.940;0.784;-2;6;6;0.023;0.305;0.372;2.8;! +16.700;0.755;16.620;1252.0;0.904;0.755;-2;6;6;0.023;0.294;0.353;2.9;! +16.720;0.718;16.640;1252.8;0.867;0.718;-2;6;6;0.022;0.311;0.353;2.9;! +16.740;0.700;16.660;1253.5;0.848;0.700;-2;6;6;0.021;0.317;0.352;2.9;! +16.760;0.706;16.680;1254.3;0.852;0.706;-2;6;6;0.021;0.309;0.348;2.9;! +16.780;0.709;16.700;1255.1;0.856;0.709;-2;6;6;0.021;0.309;0.349;2.9;! +16.800;0.697;16.720;1255.9;0.847;0.697;-2;6;6;0.021;0.324;0.356;2.9;! +16.820;0.683;16.740;1256.6;0.834;0.683;-2;6;6;0.022;0.337;0.359;3.1;! +16.840;0.683;16.760;1257.4;0.833;0.683;-2;6;6;0.023;0.332;0.356;3.2;! +16.860;0.686;16.780;1258.2;0.832;0.686;-2;6;6;0.023;0.321;0.350;3.3;! +16.880;0.692;16.800;1258.9;0.833;0.692;-2;6;6;0.024;0.300;0.337;3.4;! +16.900;0.698;16.820;1259.7;0.836;0.698;-2;6;6;0.025;0.285;0.330;3.5;! +16.920;0.696;16.840;1260.5;0.833;0.696;-2;6;6;0.026;0.279;0.325;3.7;! +16.940;0.702;16.860;1261.2;0.837;0.702;-2;6;6;0.027;0.272;0.322;3.8;! +16.960;0.711;16.880;1262.0;0.845;0.711;-2;6;6;0.028;0.262;0.318;3.9;! +16.980;0.721;16.900;1262.8;0.851;0.721;-2;6;6;0.028;0.243;0.308;3.9;! +17.000;0.720;16.920;1263.6;0.848;0.720;-2;6;6;0.028;0.236;0.303;3.9;! +17.020;0.715;16.940;1264.3;0.839;0.715;-2;6;6;0.028;0.226;0.295;3.9;! +17.040;0.704;16.960;1265.1;0.827;0.704;-2;6;6;0.028;0.227;0.294;3.9;! +17.060;0.697;16.980;1265.9;0.821;0.697;-2;6;6;0.028;0.232;0.295;3.9;! +17.080;0.700;17.000;1266.7;0.824;0.700;-2;6;6;0.028;0.229;0.294;4.0;! +17.100;0.702;17.020;1267.4;0.824;0.702;-2;6;6;0.028;0.224;0.292;4.0;! +17.120;0.703;17.040;1268.2;0.825;0.703;-2;6;6;0.027;0.219;0.289;3.8;! +17.140;0.689;17.060;1270.7;0.809;0.689;-2;6;6;0.026;0.220;0.286;3.7;! +17.160;0.665;17.080;1274.3;0.784;0.665;-2;6;6;0.025;0.226;0.284;3.6;! +17.180;0.640;17.100;1277.8;0.758;0.640;-2;6;6;0.025;0.231;0.281;3.7;! +17.200;0.626;17.120;1280.3;0.745;0.626;-2;6;6;0.026;0.240;0.283;3.6;! +17.220;0.642;17.140;1281.1;0.761;0.642;-2;6;6;0.026;0.235;0.284;3.4;! +17.240;0.730;17.160;1281.8;0.850;0.730;-2;6;6;0.024;0.204;0.286;3.1;! +17.260;0.867;17.180;1282.6;0.986;0.867;-2;6;6;0.021;0.164;0.284;2.7;! +17.280;0.967;17.200;1283.4;1.071;0.967;-2;6;6;0.019;0.104;0.248;2.4;! +17.300;0.938;17.220;1284.2;1.039;0.938;-2;6;6;0.017;0.098;0.240;2.1;! +17.320;0.839;17.240;1284.9;0.945;0.839;-2;6;6;0.016;0.128;0.252;1.9;! +17.340;0.748;17.260;1285.7;0.859;0.748;-2;6;6;0.016;0.163;0.263;1.9;! +17.360;0.696;17.280;1286.5;0.811;0.696;-2;6;6;0.016;0.195;0.274;2.1;! +17.380;0.686;17.300;1287.2;0.805;0.686;-2;6;6;0.017;0.212;0.283;2.2;! +17.400;0.687;17.320;1288.0;0.808;0.687;-2;6;6;0.017;0.221;0.288;2.4;! +17.420;0.691;17.340;1288.8;0.814;0.691;-2;6;6;0.017;0.226;0.292;2.4;! +17.440;0.694;17.360;1289.5;0.820;0.694;-2;6;6;0.017;0.237;0.300;2.4;! +17.460;0.691;17.380;1290.3;0.819;0.691;-2;6;6;0.017;0.245;0.305;2.4;! +17.480;0.702;17.400;1291.1;0.832;0.702;-2;6;6;0.017;0.250;0.311;2.4;! +17.500;0.721;17.420;1291.9;0.855;0.721;-2;6;6;0.018;0.253;0.319;2.5;! +17.520;0.732;17.440;1292.6;0.868;0.732;-2;6;6;0.019;0.253;0.322;2.6;! +17.540;0.738;17.460;1293.4;0.875;0.738;-2;6;6;0.020;0.256;0.326;2.4;! +17.560;0.741;17.480;1294.2;0.880;0.741;-2;6;6;0.019;0.262;0.331;1.8;! +17.580;0.808;17.500;1295.0;0.950;0.808;-2;6;6;0.020;0.245;0.338;1.5;! +17.600;1.296;17.520;1295.7;1.441;1.296;-2;6;6;0.021;0.151;0.345;1.2;! +17.620;2.208;17.540;1296.5;2.334;2.208;-2;6;6;0.022;0.064;0.299;1.0;! +17.640;3.139;17.560;1297.3;3.218;3.139;-2;6;6;0.025;0.008;0.189;0.9;! +17.660;3.710;17.580;1298.0;3.786;3.710;-2;6;6;0.028;0.004;0.180;0.9;! +17.680;3.946;17.600;1298.8;4.024;3.946;-2;6;6;0.032;0.005;0.185;0.9;! +17.700;3.948;17.620;1299.6;4.029;3.948;-2;6;6;0.037;0.007;0.193;1.0;! +17.720;3.816;17.630;1300.4;3.901;3.816;-2;6;6;0.041;0.010;0.202;1.1;! +17.740;3.688;17.650;1301.2;3.777;3.688;-2;6;6;0.045;0.013;0.211;1.1;! +17.760;3.681;17.670;1301.9;3.773;3.681;-2;6;6;0.045;0.015;0.219;1.1;! +17.780;3.776;17.690;1302.7;3.869;3.776;-2;6;6;0.047;0.015;0.221;1.2;! +17.800;3.707;17.710;1303.5;3.797;3.707;-2;6;6;0.051;0.013;0.215;1.3;! +17.820;3.635;17.730;1304.3;3.717;3.635;-2;6;6;0.051;0.008;0.196;1.2;! +17.840;3.822;17.750;1305.0;3.899;3.822;-2;6;6;0.042;0.005;0.185;0.9;! +17.860;4.583;17.770;1305.8;4.647;4.583;-2;6;6;0.037;-0.003;0.153;0.7;! +17.880;5.894;17.790;1306.6;5.934;5.894;-2;6;6;0.037;-0.013;0.095;0.6;! +17.900;7.293;17.810;1307.4;7.319;7.293;-2;6;6;0.040;-0.015;0.062;0.5;! +17.920;8.904;17.830;1308.2;8.932;8.904;-2;6;6;0.045;-0.012;0.067;0.5;! +17.940;10.268;17.850;1309.0;10.303;10.268;-2;6;6;0.054;-0.009;0.083;0.5;! +17.960;11.151;17.870;1309.8;11.190;11.151;-2;6;6;0.064;-0.007;0.092;0.6;! +17.980;11.757;17.890;1310.5;11.796;11.757;-2;6;6;0.070;-0.006;0.094;0.6;! +18.000;12.261;17.910;1311.3;12.304;12.261;-2;6;6;0.079;-0.006;0.102;0.6;! +18.020;12.715;17.930;1312.1;12.760;12.715;-2;6;6;0.086;-0.005;0.107;0.6;! +18.040;13.234;17.950;1312.9;13.282;13.234;-2;6;6;0.088;-0.004;0.113;0.6;! +18.060;13.767;17.970;1313.7;13.818;13.767;-2;6;6;0.085;-0.004;0.122;0.6;! +18.080;14.257;17.990;1314.5;14.312;14.257;-2;6;6;0.082;-0.003;0.131;0.5;! +18.100;14.666;18.010;1315.3;14.723;14.666;-2;6;6;0.083;-0.002;0.137;0.5;! +18.120;15.182;18.030;1316.2;15.242;15.182;-2;6;6;0.089;-0.002;0.143;0.6;! +18.140;15.911;18.050;1320.0;15.974;15.911;-2;6;6;0.092;-0.001;0.149;0.5;! +18.160;16.640;18.070;1323.9;16.705;16.640;-2;6;6;0.096;-0.001;0.155;0.5;! +18.180;17.395;18.090;1327.5;17.462;17.395;-2;6;6;0.099;-0.001;0.158;0.5;! +18.200;18.636;18.110;1328.3;18.701;18.636;-2;6;6;0.102;-0.001;0.154;0.5;! +18.220;19.831;18.130;1329.1;19.896;19.831;-2;6;6;0.107;-0.001;0.154;0.5;! +18.240;20.983;18.150;1329.9;21.049;20.983;-2;6;6;0.116;-0.001;0.158;0.5;! +18.260;22.112;18.170;1330.7;22.178;22.112;-2;6;6;0.125;-0.001;0.158;0.5;! +18.280;23.099;18.190;1331.5;23.165;23.099;-2;6;6;0.134;-0.001;0.158;0.6;! +18.300;23.744;18.210;1332.3;23.810;23.744;-2;6;6;0.140;-0.001;0.159;0.6;! +18.320;24.104;18.230;1333.1;24.171;24.104;-2;6;6;0.146;-0.001;0.159;0.6;! +18.340;24.286;18.250;1333.9;24.353;24.286;-2;6;6;0.154;-0.001;0.159;0.6;! +18.360;24.362;18.270;1334.7;24.429;24.362;-2;6;6;0.158;-0.001;0.160;0.6;! +18.380;24.417;18.290;1335.5;24.485;24.417;-2;6;6;0.160;0.000;0.161;0.6;! +18.400;24.474;18.310;1336.3;24.542;24.474;-2;6;6;0.162;0.000;0.161;0.6;! +18.420;24.704;18.330;1337.1;24.772;24.704;-2;6;6;0.166;0.000;0.162;0.6;! +18.440;25.082;18.350;1337.9;25.149;25.082;-2;6;6;0.168;-0.001;0.161;0.6;! +18.460;25.413;18.370;1338.7;25.481;25.413;-2;6;6;0.169;0.000;0.162;0.6;! +18.480;25.664;18.390;1339.5;25.732;25.664;-2;6;6;0.171;0.000;0.162;0.6;! +18.500;25.802;18.410;1340.4;25.871;25.802;-2;6;6;0.173;0.000;0.162;0.6;! +18.520;25.969;18.430;1341.2;26.037;25.969;-2;6;6;0.177;0.000;0.162;0.6;! +18.540;26.341;18.450;1342.0;26.409;26.341;-2;6;6;0.182;0.000;0.163;0.7;! +18.560;26.532;18.470;1342.9;26.600;26.532;-2;6;6;0.183;0.000;0.163;0.7;! +18.580;26.332;18.490;1343.8;26.401;26.332;-2;6;6;0.182;0.000;0.164;0.7;! +18.600;25.846;18.510;1344.5;25.914;25.846;-2;6;6;0.183;0.000;0.164;0.7;! +18.620;25.281;18.530;1345.4;25.350;25.281;-2;6;6;0.185;0.000;0.164;0.7;! +18.640;25.034;18.550;1346.2;25.103;25.034;-2;6;6;0.184;0.000;0.164;0.7;! +18.660;25.028;18.570;1347.0;25.097;25.028;-2;6;6;0.181;0.000;0.165;0.7;! +18.680;25.145;18.590;1347.9;25.215;25.145;-2;6;6;0.177;0.000;0.165;0.7;! +18.700;25.210;18.610;1348.7;25.279;25.210;-2;6;6;0.175;0.000;0.165;0.6;! +18.720;25.109;18.630;1349.5;25.178;25.109;-2;6;6;0.173;0.000;0.165;0.6;! +18.740;24.996;18.650;1350.4;25.066;24.996;-2;6;6;0.174;0.000;0.165;0.6;! +18.760;24.989;18.670;1351.3;25.059;24.989;-2;6;6;0.174;0.000;0.165;0.6;! +18.780;25.079;18.690;1352.0;25.149;25.079;-2;6;6;0.175;0.000;0.165;0.6;! +18.800;25.261;18.710;1352.9;25.331;25.261;-2;6;6;0.177;0.000;0.165;0.6;! +18.820;25.393;18.730;1353.7;25.462;25.393;-2;6;6;0.177;0.000;0.166;0.6;! +18.840;25.666;18.750;1354.6;25.735;25.666;-2;6;6;0.177;0.000;0.166;0.6;! +18.860;26.157;18.770;1355.4;26.227;26.157;-2;6;6;0.177;0.000;0.166;0.6;! +18.880;26.691;18.790;1356.3;26.760;26.691;-2;6;6;0.176;0.000;0.165;0.6;! +18.900;27.162;18.810;1357.1;27.232;27.162;-2;6;6;0.175;0.000;0.166;0.6;! +18.920;27.569;18.830;1358.0;27.638;27.569;-2;6;6;0.174;0.000;0.166;0.6;! +18.940;27.963;18.850;1358.9;28.033;27.963;-2;6;6;0.173;0.000;0.166;0.6;! +18.960;28.499;18.870;1359.8;28.569;28.499;-2;6;6;0.175;0.000;0.167;0.6;! +18.980;29.239;18.890;1360.8;29.309;29.239;-2;6;6;0.179;0.000;0.167;0.6;! +19.000;29.895;18.910;1361.7;29.965;29.895;-2;6;6;0.183;0.000;0.168;0.6;! +19.020;30.450;18.930;1362.7;30.520;30.450;-2;6;6;0.184;0.000;0.168;0.6;! +19.040;30.716;18.950;1363.6;30.787;30.716;-2;6;6;0.176;0.000;0.169;0.5;! +19.060;30.704;18.970;1364.6;30.775;30.704;-2;6;6;0.167;0.000;0.168;0.5;! +19.080;30.685;18.990;1365.5;30.756;30.685;-2;6;6;0.158;0.000;0.169;0.5;! +19.100;31.059;19.010;1366.5;31.130;31.059;-2;6;6;0.153;0.000;0.169;0.4;! +19.120;31.398;19.030;1368.7;31.469;31.398;-2;6;6;0.162;0.000;0.169;0.5;! +19.140;31.527;19.050;1372.1;31.598;31.527;-2;6;6;0.167;0.000;0.170;0.5;! +19.160;31.655;19.070;1375.4;31.727;31.655;-2;6;6;0.171;0.000;0.170;0.5;! +19.180;31.784;19.090;1378.8;31.856;31.784;-2;6;6;0.174;0.000;0.170;0.5;! +19.200;31.819;19.110;1380.3;31.889;31.819;-1;6;6;0.177;0.000;0.168;0.5;! +19.220;31.421;19.130;1381.2;31.493;31.421;-1;6;6;0.181;0.000;0.172;0.5;! +19.240;31.074;19.150;1382.1;31.145;31.074;-2;6;6;0.180;0.000;0.170;0.5;! +19.260;30.932;19.170;1383.1;31.003;30.932;-1;6;6;0.177;0.000;0.169;0.5;! +19.280;30.296;19.190;1384.0;30.367;30.296;-1;6;6;0.178;0.000;0.169;0.5;! +19.300;29.194;19.200;1384.9;29.264;29.194;-1;6;6;0.178;0.000;0.168;0.6;! +19.320;28.509;19.220;1385.8;28.581;28.509;-1;6;6;0.176;0.000;0.171;0.6;! +19.340;28.087;19.240;1386.6;28.158;28.087;-1;6;6;0.175;0.000;0.171;0.6;! +19.360;27.846;19.260;1387.5;27.917;27.846;-1;6;6;0.175;0.000;0.170;0.6;! +19.380;27.579;19.280;1388.4;27.651;27.579;-1;6;6;0.178;0.000;0.171;0.6;! +19.400;27.349;19.300;1389.3;27.421;27.349;-1;6;6;0.174;0.000;0.171;0.6;! +19.420;27.124;19.320;1390.1;27.197;27.124;-1;6;6;0.173;0.000;0.172;0.6;! +19.440;26.850;19.340;1391.0;26.922;26.850;-1;6;6;0.175;0.000;0.171;0.6;! +19.460;26.538;19.360;1391.8;26.610;26.538;-1;6;6;0.174;0.000;0.171;0.6;! +19.480;26.168;19.380;1392.7;26.240;26.168;-1;6;6;0.174;0.000;0.171;0.6;! +19.500;25.822;19.400;1393.5;25.893;25.822;-1;6;6;0.173;-0.001;0.170;0.6;! +19.520;25.425;19.420;1394.4;25.497;25.425;-1;6;6;0.173;-0.001;0.171;0.6;! +19.540;25.223;19.440;1395.2;25.295;25.223;-1;6;6;0.172;-0.001;0.171;0.6;! +19.560;24.891;19.460;1396.0;24.963;24.891;-1;6;6;0.172;-0.001;0.171;0.6;! +19.580;24.577;19.480;1396.8;24.650;24.577;-1;6;6;0.172;-0.001;0.172;0.6;! +19.600;24.227;19.500;1397.7;24.299;24.227;-1;6;6;0.170;-0.001;0.172;0.6;! +19.620;23.991;19.520;1398.5;24.063;23.991;-1;6;6;0.165;-0.001;0.172;0.6;! +19.640;23.901;19.540;1399.3;23.973;23.901;-1;6;7;0.161;-0.001;0.172;0.6;! +19.660;23.840;19.560;1400.1;23.913;23.840;-1;6;7;0.159;-0.001;0.173;0.6;! +19.680;23.786;19.580;1400.9;23.858;23.786;-1;6;7;0.157;-0.001;0.172;0.6;! +19.700;23.782;19.600;1401.7;23.855;23.782;-1;6;7;0.156;-0.001;0.173;0.6;! +19.720;23.842;19.620;1402.5;23.914;23.842;-1;6;7;0.154;-0.001;0.172;0.6;! +19.740;24.037;19.640;1403.4;24.109;24.037;-1;6;7;0.153;-0.001;0.173;0.6;! +19.760;24.245;19.660;1404.2;24.318;24.245;-1;6;7;0.153;-0.001;0.174;0.6;! +19.780;24.276;19.680;1405.0;24.349;24.276;-1;6;6;0.156;-0.001;0.174;0.6;! +19.800;24.173;19.700;1405.8;24.246;24.173;-1;6;7;0.158;-0.001;0.174;0.6;! +19.820;24.113;19.720;1406.7;24.186;24.113;-1;6;6;0.161;-0.001;0.175;0.6;! +19.840;24.127;19.740;1407.5;24.201;24.127;-1;6;6;0.162;-0.001;0.175;0.6;! +19.860;24.115;19.760;1408.3;24.188;24.115;-1;6;7;0.164;-0.001;0.175;0.6;! +19.880;24.064;19.780;1409.1;24.138;24.064;-1;6;7;0.164;-0.001;0.175;0.6;! +19.900;24.015;19.800;1409.9;24.089;24.015;-1;6;7;0.165;-0.001;0.175;0.6;! +19.920;23.967;19.820;1410.7;24.040;23.967;-1;6;6;0.164;-0.001;0.175;0.6;! +19.940;23.960;19.840;1411.5;24.033;23.960;-1;6;6;0.163;-0.001;0.176;0.6;! +19.960;24.040;19.860;1412.3;24.113;24.040;-1;6;6;0.164;-0.001;0.176;0.6;! +19.980;24.189;19.880;1413.2;24.263;24.189;-1;6;7;0.164;-0.001;0.176;0.6;! +20.000;24.342;19.900;1414.0;24.416;24.342;-1;6;6;0.164;-0.001;0.176;0.6;! +20.020;24.555;19.920;1414.8;24.629;24.555;-1;6;6;0.158;-0.001;0.176;0.6;! +20.040;24.592;19.940;1415.6;24.666;24.592;-1;6;6;0.145;-0.001;0.176;0.5;! +20.060;24.403;19.960;1416.4;24.477;24.403;-1;6;6;0.131;-0.001;0.176;0.5;! +20.080;24.248;19.980;1417.3;24.322;24.248;-1;6;6;0.128;-0.001;0.176;0.5;! +20.100;24.213;20.000;1418.2;24.286;24.213;-1;6;7;0.132;-0.001;0.176;0.5;! +20.120;23.963;20.020;1422.2;24.037;23.963;-1;6;7;0.134;-0.001;0.177;0.5;! +20.140;23.714;20.040;1426.1;23.788;23.714;-1;6;7;0.133;-0.001;0.178;0.5;! +20.160;23.541;20.060;1429.6;23.616;23.541;-1;6;7;0.131;-0.001;0.179;0.5;! +20.180;23.609;20.080;1430.4;23.683;23.609;-1;6;6;0.128;-0.001;0.177;0.5;! +20.200;23.369;20.100;1431.2;23.443;23.369;-1;6;6;0.125;-0.001;0.177;0.5;! +20.220;22.948;20.120;1432.0;23.022;22.948;-1;6;6;0.122;-0.001;0.177;0.5;! +20.240;22.483;20.140;1432.7;22.557;22.483;-1;6;7;0.117;-0.001;0.176;0.5;! +20.260;22.164;20.160;1433.5;22.238;22.164;-1;6;7;0.113;-0.001;0.177;0.4;! +20.280;22.156;20.180;1434.3;22.230;22.156;-1;6;6;0.109;-0.001;0.177;0.4;! +20.300;22.192;20.200;1435.0;22.267;22.192;-1;6;7;0.108;-0.001;0.178;0.4;! +20.320;22.029;20.220;1435.8;22.103;22.029;-1;6;7;0.107;-0.001;0.177;0.4;! +20.340;21.621;20.240;1436.6;21.696;21.621;-1;6;6;0.107;-0.001;0.179;0.5;! +20.360;21.010;20.260;1437.3;21.085;21.010;-1;6;6;0.109;-0.001;0.177;0.5;! +20.380;20.408;20.280;1438.1;20.483;20.408;-1;6;6;0.110;-0.001;0.177;0.5;! +20.400;19.837;20.300;1438.9;19.912;19.837;-1;6;6;0.111;-0.001;0.178;0.5;! +20.420;19.163;20.320;1439.6;19.238;19.163;-1;6;6;0.111;-0.001;0.179;0.5;! +20.440;18.400;20.340;1440.4;18.475;18.400;-1;6;6;0.112;-0.001;0.179;0.5;! +20.460;17.853;20.360;1441.2;17.927;17.853;-1;6;6;0.115;-0.001;0.177;0.6;! +20.480;17.449;20.380;1442.0;17.523;17.449;-1;6;6;0.114;-0.001;0.176;0.6;! +20.500;17.248;20.400;1442.7;17.323;17.248;-1;6;6;0.113;-0.001;0.177;0.6;! +20.520;17.284;20.420;1443.5;17.359;17.284;-1;6;6;0.113;-0.001;0.178;0.6;! +20.540;17.557;20.440;1444.3;17.633;17.557;-1;6;6;0.112;-0.001;0.179;0.6;! +20.560;18.076;20.460;1445.0;18.152;18.076;-1;6;6;0.111;-0.001;0.181;0.6;! +20.580;18.663;20.480;1445.8;18.739;18.663;-1;6;6;0.113;-0.001;0.180;0.6;! +20.600;19.046;20.500;1446.6;19.122;19.046;-1;6;6;0.111;-0.001;0.180;0.5;! +20.620;19.435;20.520;1447.4;19.511;19.435;-1;6;6;0.112;-0.001;0.181;0.5;! +20.640;20.011;20.540;1448.2;20.087;20.011;-1;6;6;0.113;-0.001;0.182;0.5;! +20.660;20.628;20.560;1449.0;20.704;20.628;-1;6;7;0.117;-0.001;0.182;0.5;! +20.680;21.021;20.580;1449.8;21.097;21.021;-1;6;6;0.117;-0.001;0.182;0.5;! +20.700;21.448;20.600;1450.6;21.525;21.448;-1;6;7;0.119;-0.001;0.183;0.5;! +20.720;21.804;20.620;1451.3;21.881;21.804;-1;6;6;0.120;-0.001;0.183;0.5;! +20.740;21.963;20.640;1452.1;22.040;21.963;-1;6;7;0.119;-0.001;0.182;0.5;! +20.760;21.744;20.660;1453.0;21.820;21.744;-1;6;7;0.119;-0.001;0.182;0.5;! +20.780;21.392;20.680;1453.7;21.468;21.392;-1;6;7;0.120;-0.001;0.181;0.5;! +20.800;20.965;20.700;1454.5;21.042;20.965;-1;6;6;0.118;-0.001;0.182;0.5;! +20.820;20.171;20.720;1455.3;20.247;20.171;-1;6;7;0.117;-0.001;0.182;0.5;! +20.840;19.370;20.740;1456.0;19.447;19.370;-1;6;7;0.118;-0.001;0.182;0.6;! +20.860;18.477;20.750;1456.8;18.553;18.477;-1;6;6;0.116;-0.001;0.182;0.6;! +20.880;17.572;20.770;1457.6;17.648;17.572;-1;6;6;0.115;-0.001;0.183;0.6;! +20.900;16.752;20.790;1458.4;16.828;16.752;-1;6;6;0.112;-0.001;0.182;0.6;! +20.920;16.154;20.810;1459.1;16.231;16.154;-1;6;6;0.110;-0.001;0.182;0.6;! +20.940;15.798;20.830;1459.9;15.874;15.798;-1;6;6;0.113;-0.001;0.182;0.6;! +20.960;15.744;20.850;1460.7;15.821;15.744;-1;6;6;0.115;-0.001;0.183;0.7;! +20.980;15.555;20.870;1461.4;15.632;15.555;-1;6;6;0.106;-0.001;0.183;0.6;! +21.000;15.597;20.890;1462.2;15.674;15.597;-1;6;6;0.102;-0.001;0.183;0.6;! +21.020;15.333;20.910;1463.0;15.410;15.333;-1;6;6;0.096;-0.001;0.183;0.6;! +21.040;14.821;20.930;1463.7;14.897;14.821;-1;6;6;0.089;-0.001;0.181;0.5;! +21.060;14.197;20.950;1464.5;14.274;14.197;-1;6;6;0.082;-0.001;0.183;0.5;! +21.080;13.730;20.970;1465.2;13.807;13.730;-1;6;6;0.079;-0.001;0.182;0.5;! +21.100;13.407;20.990;1467.9;13.484;13.407;-1;6;6;0.073;-0.001;0.183;0.5;! +21.120;13.155;21.010;1471.5;13.232;13.155;-1;6;6;0.074;-0.001;0.184;0.5;! +21.140;12.903;21.030;1475.2;12.981;12.903;-1;6;6;0.071;-0.001;0.186;0.5;! +21.160;12.811;21.050;1477.4;12.890;12.811;-1;6;6;0.073;-0.001;0.187;0.5;! +21.180;12.962;21.070;1478.2;13.041;12.962;-1;6;6;0.076;-0.001;0.188;0.5;! +21.200;13.209;21.090;1479.0;13.287;13.209;-1;6;6;0.080;-0.001;0.187;0.5;! +21.220;13.750;21.110;1479.7;13.828;13.750;-1;6;7;0.082;-0.001;0.187;0.5;! +21.240;14.490;21.130;1480.5;14.569;14.490;-1;6;6;0.086;-0.001;0.188;0.5;! +21.260;15.839;21.150;1481.3;15.918;15.839;-1;6;7;0.090;-0.001;0.188;0.5;! +21.280;17.757;21.170;1482.1;17.836;17.757;-1;6;7;0.094;-0.001;0.188;0.5;! +21.300;19.795;21.190;1482.9;19.874;19.795;-1;6;7;0.103;-0.001;0.189;0.5;! +21.320;21.608;21.210;1483.7;21.687;21.608;-1;6;6;0.109;-0.001;0.189;0.5;! +21.340;23.069;21.230;1484.5;23.148;23.069;-1;6;6;0.117;-0.001;0.189;0.5;! +21.360;23.902;21.250;1485.3;23.981;23.902;-1;6;6;0.125;-0.001;0.189;0.5;! +21.380;23.957;21.270;1486.0;24.036;23.957;-1;6;6;0.131;-0.001;0.190;0.5;! +21.400;23.714;21.290;1486.8;23.794;23.714;-1;6;6;0.135;-0.001;0.190;0.5;! +21.420;23.662;21.310;1487.7;23.742;23.662;-1;6;6;0.141;-0.001;0.190;0.5;! +21.440;23.810;21.330;1488.5;23.889;23.810;-1;6;6;0.144;-0.001;0.190;0.6;! +21.460;24.045;21.350;1489.3;24.125;24.045;-1;6;6;0.142;-0.001;0.190;0.5;! +21.480;24.106;21.370;1490.0;24.186;24.106;-1;6;6;0.139;-0.001;0.190;0.5;! +21.500;23.868;21.390;1490.8;23.947;23.868;-1;6;6;0.137;-0.001;0.190;0.5;! +21.520;23.720;21.410;1491.7;23.801;23.720;-1;6;6;0.133;-0.001;0.191;0.5;! +21.540;23.685;21.430;1492.4;23.764;23.685;-1;6;6;0.128;-0.001;0.189;0.5;! +21.560;23.752;21.450;1493.2;23.832;23.752;-1;6;6;0.128;-0.001;0.190;0.5;! +21.580;23.911;21.470;1494.0;23.991;23.911;-1;6;6;0.128;-0.001;0.191;0.5;! +21.600;24.053;21.490;1494.8;24.134;24.053;-1;6;6;0.131;-0.001;0.191;0.5;! +21.620;24.227;21.510;1495.7;24.307;24.227;-1;6;6;0.129;-0.001;0.192;0.5;! +21.640;24.288;21.530;1496.5;24.368;24.288;-1;6;6;0.129;-0.001;0.191;0.5;! +21.660;24.005;21.550;1497.3;24.085;24.005;-1;6;6;0.132;-0.001;0.191;0.5;! +21.680;23.642;21.570;1498.1;23.722;23.642;-1;6;6;0.131;-0.001;0.191;0.5;! +21.700;23.341;21.590;1498.9;23.421;23.341;-1;6;6;0.131;-0.001;0.192;0.5;! +21.720;23.199;21.610;1499.7;23.279;23.199;-1;6;6;0.131;-0.001;0.192;0.5;! +21.740;22.974;21.630;1500.5;23.054;22.974;-1;6;6;0.127;-0.001;0.191;0.5;! +21.760;22.472;21.650;1501.3;22.552;22.472;-1;6;6;0.127;-0.001;0.192;0.5;! +21.780;21.898;21.670;1502.0;21.979;21.898;-1;6;6;0.126;-0.001;0.193;0.5;! +21.800;21.408;21.690;1502.8;21.489;21.408;-1;6;6;0.122;-0.001;0.193;0.5;! +21.820;21.150;21.710;1503.6;21.230;21.150;-1;6;6;0.119;-0.001;0.191;0.5;! +21.840;21.061;21.730;1504.4;21.141;21.061;-1;6;6;0.121;-0.001;0.191;0.5;! +21.860;20.952;21.750;1505.2;21.032;20.952;-1;6;6;0.117;-0.001;0.190;0.5;! +21.880;21.083;21.770;1506.0;21.161;21.083;-1;6;6;0.113;-0.001;0.187;0.5;! +21.900;20.812;21.790;1506.7;20.890;20.812;-1;6;6;0.112;-0.001;0.185;0.5;! +21.920;20.411;21.810;1507.5;20.492;20.411;-1;6;6;0.111;-0.001;0.192;0.5;! +21.940;19.957;21.830;1508.3;20.037;19.957;-1;6;6;0.112;-0.001;0.190;0.5;! +21.960;19.628;21.850;1509.0;19.708;19.628;-1;6;6;0.114;-0.001;0.191;0.5;! +21.980;19.258;21.870;1509.8;19.339;19.258;-1;6;6;0.105;-0.001;0.192;0.5;! +22.000;18.791;21.890;1510.6;18.872;18.791;-1;6;6;0.104;-0.001;0.193;0.5;! +22.020;18.435;21.910;1511.3;18.517;18.435;-1;6;6;0.100;-0.001;0.195;0.5;! +22.040;17.860;21.930;1512.1;17.942;17.860;-1;6;6;0.097;-0.001;0.195;0.5;! +22.060;17.300;21.950;1512.9;17.382;17.300;-1;6;6;0.095;-0.001;0.196;0.5;! +22.080;16.840;21.970;1514.2;16.922;16.840;-1;6;6;0.096;-0.001;0.196;0.5;! +22.100;16.546;21.990;1517.9;16.629;16.546;-1;6;6;0.099;-0.001;0.196;0.5;! +22.120;16.252;22.010;1521.5;16.335;16.252;-1;6;6;0.100;-0.001;0.196;0.6;! +22.140;15.971;22.030;1525.0;16.053;15.971;-1;6;6;0.102;-0.001;0.196;0.6;! +22.160;15.930;22.050;1525.8;16.012;15.930;-1;6;6;0.101;-0.001;0.197;0.6;! +22.180;15.949;22.070;1526.6;16.031;15.949;-1;6;6;0.102;-0.001;0.196;0.6;! +22.200;16.028;22.090;1527.3;16.111;16.028;-1;6;6;0.103;-0.001;0.197;0.6;! +22.220;16.245;22.110;1528.1;16.327;16.245;-1;6;6;0.102;-0.001;0.197;0.6;! +22.240;16.413;22.130;1528.9;16.496;16.413;-1;6;6;0.102;-0.001;0.197;0.6;! +22.260;16.522;22.150;1529.7;16.605;16.522;-1;6;6;0.103;-0.001;0.197;0.6;! +22.280;16.538;22.170;1530.5;16.620;16.538;-1;6;6;0.100;-0.001;0.196;0.6;! +22.300;16.477;22.190;1531.2;16.560;16.477;-1;6;6;0.099;-0.001;0.197;0.6;! +22.320;16.351;22.210;1532.0;16.433;16.351;-1;6;6;0.099;-0.001;0.197;0.6;! +22.340;16.326;22.230;1532.8;16.409;16.326;-1;6;6;0.099;-0.001;0.197;0.6;! +22.360;16.339;22.250;1533.6;16.422;16.339;-1;6;6;0.100;-0.001;0.198;0.6;! +22.380;16.393;22.270;1534.3;16.477;16.393;-1;6;6;0.100;-0.001;0.198;0.6;! +22.400;16.523;22.290;1535.1;16.606;16.523;-1;6;6;0.100;-0.001;0.199;0.6;! +22.420;16.697;22.310;1535.9;16.780;16.697;-1;6;6;0.101;-0.001;0.199;0.6;! +22.440;16.892;22.330;1536.7;16.975;16.892;-1;6;6;0.101;-0.001;0.199;0.6;! +22.460;17.090;22.350;1537.5;17.173;17.090;-1;6;6;0.104;-0.001;0.199;0.6;! +22.480;17.303;22.370;1538.3;17.387;17.303;-1;6;6;0.105;-0.001;0.199;0.6;! +22.500;17.498;22.380;1539.0;17.582;17.498;-1;6;6;0.105;-0.001;0.199;0.6;! +22.520;17.579;22.400;1539.8;17.663;17.579;-1;6;6;0.106;-0.001;0.199;0.6;! +22.540;17.437;22.420;1540.6;17.521;17.437;-1;6;6;0.107;-0.001;0.201;0.6;! +22.560;17.237;22.440;1541.3;17.321;17.237;-1;6;6;0.107;-0.001;0.200;0.6;! +22.580;16.973;22.460;1542.1;17.057;16.973;-1;6;6;0.107;-0.001;0.200;0.6;! +22.600;16.700;22.480;1542.9;16.784;16.700;-1;6;6;0.107;-0.001;0.200;0.6;! +22.620;16.464;22.500;1543.7;16.548;16.464;-1;6;6;0.101;-0.001;0.200;0.6;! +22.640;16.272;22.520;1544.4;16.356;16.272;-1;6;6;0.099;-0.001;0.200;0.6;! +22.660;16.043;22.540;1545.2;16.127;16.043;-1;6;6;0.096;-0.001;0.199;0.6;! +22.680;15.714;22.560;1546.0;15.798;15.714;-1;6;6;0.094;-0.001;0.200;0.6;! +22.700;15.188;22.580;1546.7;15.272;15.188;-1;6;6;0.093;-0.001;0.201;0.6;! +22.720;14.518;22.600;1547.5;14.602;14.518;-1;6;6;0.091;-0.001;0.200;0.6;! +22.740;13.957;22.620;1548.3;14.041;13.957;-1;6;6;0.087;-0.001;0.201;0.6;! +22.760;13.438;22.640;1549.0;13.522;13.438;-1;6;6;0.088;-0.001;0.200;0.6;! +22.780;12.958;22.660;1549.8;13.042;12.958;-1;6;6;0.085;-0.001;0.200;0.6;! +22.800;12.534;22.680;1550.5;12.617;12.534;-1;6;6;0.084;-0.001;0.199;0.6;! +22.820;12.130;22.700;1551.3;12.214;12.130;-1;6;6;0.082;-0.001;0.202;0.6;! +22.840;11.704;22.720;1552.1;11.788;11.704;-1;6;6;0.079;-0.001;0.200;0.6;! +22.860;11.378;22.740;1552.8;11.462;11.378;-1;6;6;0.075;-0.001;0.201;0.6;! +22.880;10.970;22.760;1553.6;11.054;10.970;-1;6;6;0.073;-0.002;0.201;0.6;! +22.900;10.657;22.780;1554.4;10.741;10.657;-1;6;6;0.067;-0.002;0.201;0.6;! +22.920;10.378;22.800;1555.2;10.462;10.378;-1;6;6;0.066;-0.002;0.200;0.6;! +22.940;10.260;22.820;1555.9;10.345;10.260;-1;6;6;0.063;-0.002;0.201;0.6;! +22.960;10.149;22.840;1556.7;10.234;10.149;-1;6;6;0.062;-0.002;0.202;0.6;! +22.980;10.076;22.860;1557.4;10.161;10.076;-1;6;6;0.062;-0.002;0.203;0.6;! +23.000;10.000;22.880;1558.2;10.085;10.000;-1;6;6;0.061;-0.002;0.203;0.6;! +23.020;9.959;22.900;1559.0;10.045;9.959;-1;6;6;0.060;-0.002;0.203;0.6;! +23.040;9.830;22.920;1559.8;9.915;9.830;-1;6;6;0.060;-0.002;0.203;0.6;! +23.060;9.660;22.940;1560.7;9.745;9.660;-1;6;6;0.059;-0.002;0.204;0.6;! +23.080;9.468;22.960;1564.2;9.553;9.468;-1;6;6;0.059;-0.002;0.204;0.6;! +23.100;9.275;22.980;1567.6;9.361;9.275;-1;6;6;0.057;-0.002;0.204;0.6;! +23.120;9.083;23.000;1571.1;9.169;9.083;-1;6;6;0.055;-0.002;0.205;0.6;! +23.140;8.868;23.020;1572.6;8.954;8.868;-1;6;6;0.053;-0.002;0.205;0.6;! +23.160;8.721;23.040;1573.3;8.807;8.721;-1;6;6;0.052;-0.002;0.204;0.5;! +23.180;8.624;23.060;1574.1;8.710;8.624;-1;6;6;0.051;-0.002;0.204;0.5;! +23.200;8.485;23.080;1574.9;8.570;8.485;-1;6;6;0.049;-0.002;0.203;0.5;! +23.220;8.429;23.100;1575.7;8.515;8.429;-1;6;6;0.049;-0.002;0.203;0.5;! +23.240;8.368;23.120;1576.4;8.454;8.368;-1;6;6;0.049;-0.002;0.206;0.5;! +23.260;8.247;23.140;1577.2;8.333;8.247;-1;6;6;0.050;-0.002;0.205;0.6;! +23.280;8.284;23.160;1578.0;8.370;8.284;-1;6;6;0.051;-0.002;0.207;0.6;! +23.300;7.889;23.180;1578.7;7.976;7.889;-1;6;6;0.052;-0.002;0.206;0.6;! +23.320;7.668;23.200;1579.5;7.755;7.668;-1;6;6;0.053;-0.002;0.207;0.6;! +23.340;7.515;23.220;1580.3;7.602;7.515;-1;6;6;0.055;-0.002;0.208;0.7;! +23.360;7.373;23.240;1581.0;7.460;7.373;-1;6;6;0.052;-0.002;0.207;0.6;! +23.380;7.263;23.260;1581.8;7.350;7.263;-1;6;6;0.053;-0.002;0.207;0.7;! +23.400;7.148;23.280;1582.6;7.235;7.148;-1;6;6;0.054;-0.002;0.207;0.7;! +23.420;6.965;23.300;1583.3;7.053;6.965;-1;6;6;0.054;-0.002;0.208;0.7;! +23.440;6.803;23.320;1584.1;6.891;6.803;-1;6;6;0.053;-0.002;0.208;0.7;! +23.460;6.650;23.340;1584.9;6.737;6.650;-1;6;6;0.053;-0.002;0.208;0.7;! +23.480;6.491;23.360;1585.7;6.579;6.491;-1;6;6;0.051;-0.002;0.208;0.7;! +23.500;6.351;23.380;1586.4;6.438;6.351;-1;6;6;0.050;-0.003;0.208;0.7;! +23.520;6.244;23.400;1587.2;6.331;6.244;-1;6;6;0.050;-0.003;0.209;0.7;! +23.540;6.141;23.420;1588.0;6.229;6.141;-1;6;6;0.048;-0.003;0.208;0.7;! +23.560;6.084;23.440;1588.7;6.171;6.084;-1;6;6;0.047;-0.003;0.209;0.7;! +23.580;6.028;23.460;1589.5;6.116;6.028;-1;6;6;0.046;-0.003;0.209;0.7;! +23.600;5.923;23.480;1590.3;6.010;5.923;-1;6;6;0.045;-0.003;0.209;0.7;! +23.620;5.788;23.500;1591.0;5.876;5.788;-1;6;6;0.045;-0.003;0.209;0.7;! +23.640;5.661;23.520;1591.8;5.748;5.661;-1;6;6;0.045;-0.003;0.209;0.7;! +23.660;5.560;23.540;1592.6;5.648;5.560;-1;6;6;0.044;-0.003;0.209;0.7;! +23.680;5.468;23.560;1593.3;5.556;5.468;-1;6;6;0.043;-0.003;0.209;0.7;! +23.700;5.376;23.580;1594.1;5.464;5.376;-1;6;6;0.043;-0.003;0.210;0.7;! +23.720;5.364;23.600;1594.9;5.453;5.364;-1;6;6;0.042;-0.003;0.210;0.7;! +23.740;5.333;23.620;1595.7;5.421;5.333;-1;6;6;0.042;-0.003;0.210;0.7;! +23.760;5.320;23.640;1596.4;5.408;5.320;-1;6;6;0.041;-0.003;0.210;0.7;! +23.780;5.277;23.660;1597.2;5.365;5.277;-1;6;6;0.041;-0.003;0.211;0.7;! +23.800;5.243;23.680;1598.0;5.332;5.243;-1;6;6;0.041;-0.003;0.211;0.7;! +23.820;5.196;23.700;1598.7;5.285;5.196;-1;6;6;0.040;-0.003;0.211;0.7;! +23.840;5.169;23.720;1599.5;5.258;5.169;-1;6;6;0.041;-0.003;0.211;0.7;! +23.860;5.171;23.740;1600.3;5.260;5.171;-1;6;6;0.041;-0.003;0.212;0.7;! +23.880;5.173;23.760;1601.0;5.262;5.173;-1;6;6;0.041;-0.003;0.212;0.7;! +23.900;5.205;23.780;1601.8;5.294;5.205;-1;6;6;0.041;-0.003;0.212;0.7;! +23.920;5.258;23.800;1602.6;5.348;5.258;-1;6;6;0.042;-0.003;0.212;0.8;! +23.940;5.306;23.820;1603.3;5.395;5.306;-1;6;6;0.042;-0.003;0.213;0.8;! +23.960;5.310;23.840;1604.1;5.400;5.310;-1;6;6;0.042;-0.003;0.213;0.7;! +23.980;5.272;23.860;1604.9;5.361;5.272;-1;6;6;0.041;-0.003;0.213;0.7;! +24.000;5.247;23.880;1605.7;5.337;5.247;-1;6;6;0.041;-0.003;0.214;0.7;! +24.020;5.233;23.900;1606.4;5.322;5.233;-1;6;6;0.040;-0.003;0.214;0.7;! +24.040;5.204;23.920;1607.2;5.294;5.204;-1;6;6;0.040;-0.003;0.214;0.7;! +24.060;5.200;23.940;1609.6;5.290;5.200;-1;6;6;0.040;-0.003;0.214;0.7;! +24.080;5.204;23.960;1613.2;5.294;5.204;-1;6;6;0.040;-0.003;0.215;0.7;! +24.100;5.209;23.980;1616.7;5.299;5.209;-1;6;6;0.040;-0.003;0.215;0.7;! +24.120;5.221;24.000;1619.3;5.311;5.221;-1;6;6;0.040;-0.003;0.215;0.7;! +24.140;5.176;24.020;1620.0;5.267;5.176;-1;6;6;0.040;-0.003;0.215;0.7;! +24.160;5.092;24.040;1620.8;5.182;5.092;-1;6;6;0.041;-0.003;0.215;0.7;! +24.180;5.049;24.060;1621.6;5.139;5.049;-1;6;6;0.041;-0.003;0.216;0.7;! +24.200;5.003;24.080;1622.4;5.093;5.003;-1;6;6;0.040;-0.003;0.216;0.7;! +24.220;4.968;24.100;1623.1;5.059;4.968;-1;6;6;0.040;-0.003;0.216;0.7;! +24.240;4.960;24.120;1623.9;5.051;4.960;-1;6;6;0.039;-0.003;0.216;0.7;! +24.260;4.949;24.140;1624.7;5.040;4.949;-1;6;6;0.039;-0.003;0.216;0.7;! +24.280;4.969;24.160;1625.5;5.060;4.969;-1;6;6;0.038;-0.003;0.216;0.7;! +24.300;4.922;24.180;1626.2;5.012;4.922;-1;6;6;0.037;-0.003;0.216;0.7;! +24.320;4.887;24.190;1627.0;4.978;4.887;-1;6;6;0.036;-0.003;0.216;0.7;! +24.340;4.842;24.210;1627.7;4.933;4.842;-1;6;6;0.039;-0.003;0.217;0.8;! +24.360;4.831;24.230;1628.5;4.922;4.831;-1;6;6;0.037;-0.003;0.216;0.7;! +24.380;4.916;24.250;1629.3;5.007;4.916;-1;6;6;0.037;-0.003;0.217;0.7;! +24.400;4.880;24.270;1630.0;4.972;4.880;-1;6;6;0.036;-0.003;0.217;0.7;! +24.420;4.665;24.290;1630.8;4.757;4.665;-1;6;6;0.036;-0.004;0.217;0.7;! +24.440;4.605;24.310;1631.6;4.696;4.605;-1;6;6;0.036;-0.004;0.218;0.7;! +24.460;4.587;24.330;1632.4;4.679;4.587;-1;6;6;0.036;-0.004;0.218;0.7;! +24.480;4.624;24.350;1633.2;4.716;4.624;-1;6;6;0.032;-0.003;0.218;0.6;! +24.500;4.681;24.370;1633.9;4.773;4.681;-1;6;6;0.032;-0.003;0.219;0.6;! +24.520;4.737;24.390;1634.7;4.829;4.737;-1;6;6;0.032;-0.003;0.219;0.6;! +24.540;4.790;24.410;1635.5;4.882;4.790;-1;6;6;0.032;-0.003;0.219;0.6;! +24.560;4.796;24.430;1636.2;4.888;4.796;-1;6;6;0.032;-0.003;0.219;0.6;! +24.580;4.794;24.450;1637.0;4.887;4.794;-1;6;6;0.033;-0.003;0.220;0.6;! +24.600;4.840;24.470;1637.8;4.933;4.840;-1;6;6;0.033;-0.003;0.220;0.6;! +24.620;4.879;24.490;1638.5;4.971;4.879;-1;6;6;0.034;-0.003;0.220;0.7;! +24.640;4.903;24.510;1639.3;4.995;4.903;-1;6;6;0.035;-0.003;0.221;0.7;! +24.660;4.926;24.530;1640.1;5.019;4.926;-1;6;6;0.035;-0.003;0.221;0.7;! +24.680;4.934;24.550;1640.9;5.027;4.934;-1;6;6;0.035;-0.003;0.221;0.7;! +24.700;4.958;24.570;1641.7;5.051;4.958;-1;6;6;0.035;-0.003;0.221;0.7;! +24.720;4.965;24.590;1642.4;5.058;4.965;-1;6;6;0.036;-0.003;0.221;0.7;! +24.740;4.949;24.610;1643.2;5.042;4.949;-1;6;6;0.037;-0.003;0.221;0.7;! +24.760;4.984;24.630;1644.0;5.077;4.984;-1;6;6;0.037;-0.003;0.222;0.7;! +24.780;5.024;24.650;1644.7;5.117;5.024;-1;6;6;0.038;-0.003;0.222;0.7;! +24.800;5.083;24.670;1645.5;5.176;5.083;-1;6;6;0.038;-0.003;0.222;0.7;! +24.820;5.040;24.690;1646.3;5.133;5.040;-1;6;6;0.038;-0.003;0.222;0.7;! +24.840;5.035;24.710;1647.1;5.129;5.035;-1;6;6;0.038;-0.003;0.222;0.7;! +24.860;5.034;24.730;1647.8;5.127;5.034;-1;6;6;0.038;-0.003;0.223;0.7;! +24.880;4.987;24.750;1648.6;5.080;4.987;-1;6;6;0.038;-0.003;0.223;0.7;! +24.900;4.986;24.770;1649.4;5.080;4.986;-1;6;6;0.038;-0.003;0.223;0.7;! +24.920;4.982;24.790;1651.9;5.076;4.982;-1;6;6;0.038;-0.003;0.223;0.7;! +24.940;4.990;24.810;1661.1;5.084;4.990;-1;6;6;0.037;-0.003;0.223;0.7;! +24.960;4.999;24.830;1670.4;5.092;4.999;-1;6;6;0.037;-0.003;0.223;0.7;! +24.980;5.022;24.850;1675.7;5.116;5.022;-1;6;6;0.037;-0.003;0.224;0.7;! +25.000;5.037;24.870;1677.1;5.131;5.037;-1;6;6;0.037;-0.003;0.224;0.7;! +25.020;5.015;24.890;1678.4;5.109;5.015;-1;6;6;0.037;-0.003;0.224;0.7;! +25.040;4.979;24.910;1679.6;5.073;4.979;-1;6;6;0.036;-0.003;0.224;0.7;! +25.060;4.916;24.930;1680.9;5.010;4.916;-1;6;6;0.036;-0.003;0.225;0.7;! +25.080;4.864;24.950;1682.2;4.958;4.864;-1;6;6;0.036;-0.003;0.225;0.7;! +25.100;4.800;24.970;1683.4;4.894;4.800;-1;6;6;9.999;-0.003;0.225;999.9;! +25.120;4.747;24.990;1684.7;4.842;4.747;-1;6;6;9.999;-0.003;0.225;999.9;! +25.140;4.724;25.010;1685.9;4.819;4.724;-1;6;6;9.999;-0.003;0.225;999.9;! +25.160;4.764;25.030;1687.6;4.859;4.764;-1;6;6;9.999;-0.003;0.225;999.9;! +25.180;4.823;25.050;1689.3;4.918;4.823;-1;6;6;9.999;-0.003;0.226;999.9;! +25.190;4.863;25.060;1690.5;4.958;4.863;-1;6;6;9.999;-0.003;99.999;999.9;! diff --git a/tests/cpts/gef/CPT000000217402_IMBRO.gef b/tests/cpts/gef/CPT000000217402_IMBRO.gef new file mode 100644 index 0000000..627b6db --- /dev/null +++ b/tests/cpts/gef/CPT000000217402_IMBRO.gef @@ -0,0 +1,1355 @@ +#GEFID= 1, 1, 0 +#COLUMN= 12 +#COLUMNINFO= 1, m (meter), sondeertrajectlengte, 1 +#COLUMNINFO= 2, MPa (megaPascal), conusweerstand, 2 +#COLUMNINFO= 3, m (meter), diepte, 11 +#COLUMNINFO= 4, s (seconde), verlopen tijd, 12 +#COLUMNINFO= 5, MPa (megaPascal), gecorrigeerde conusweerstand, 13 +#COLUMNINFO= 6, MPa (megaPascal), netto conusweerstand, 14 +#COLUMNINFO= 7, ° (graden), helling x, 21 +#COLUMNINFO= 8, ° (graden), helling y, 22 +#COLUMNINFO= 9, ° (graden), hellingresultante, 8 +#COLUMNINFO= 10, MPa (megaPascal), plaatselijke wrijving, 3 +#COLUMNINFO= 11, geen, porienratio, 15 +#COLUMNINFO= 12, % (procent; MPa/MPa), wrijvingsgetal, 4 +#COLUMNSEPARATOR= ; +#COLUMNTEXT= 1, aan +#COLUMNVOID= 1, 999.999 +#COLUMNVOID= 2, 999.999 +#COLUMNVOID= 3, 999.999 +#COLUMNVOID= 4, 99999.9 +#COLUMNVOID= 5, 999.999 +#COLUMNVOID= 6, 999.999 +#COLUMNVOID= 7, 99 +#COLUMNVOID= 8, 99 +#COLUMNVOID= 9, 99 +#COLUMNVOID= 10, 9.999 +#COLUMNVOID= 11, 99.999 +#COLUMNVOID= 12, 999.9 +#COMPANYID= uitvoerder onderzoek, wordt niet uitgeleverd, - +#FILEDATE= 2024, 12, 04 +#FILEOWNER= Basisregistratie Ondergrond +#LASTSCAN= 1256 +#MEASUREMENTTEXT= 4, CP15-CF75SN2-P1E1M4-V1-S1/1701-2757, conustype +#MEASUREMENTTEXT= 5, Fugro Cone Penetrometer MkII, omschrijving sondeerapparaat +#MEASUREMENTTEXT= 6, NEN-EN-ISO 22476-1 / klasse 2, sondeernorm en kwaliteitsklasse +#MEASUREMENTTEXT= 9, maaiveld, lokaal verticaal referentiepunt +#MEASUREMENTTEXT= 20, nee, signaalbewerking uitgevoerd +#MEASUREMENTTEXT= 21, ja, bewerking onderbrekingen uitgevoerd +#MEASUREMENTTEXT= 42, MRG2, methode verticale positiebepaling +#MEASUREMENTTEXT= 43, LRG3, methode locatiebepaling +#MEASUREMENTTEXT= 101, bronhouder, 30124359, - +#MEASUREMENTTEXT= 102, opdracht publieke taakuitvoering, kader aanlevering +#MEASUREMENTTEXT= 103, infrastructuur land, kader inwinning +#MEASUREMENTTEXT= 104, uitvoerder locatiebepaling, wordt niet uitgeleverd, - +#MEASUREMENTTEXT= 105, 2022, 12, 12 +#MEASUREMENTTEXT= 106, uitvoerder verticale positiebepaling, wordt niet uitgeleverd, - +#MEASUREMENTTEXT= 107, 2022, 12, 12 +#MEASUREMENTTEXT= 109, nee, dissipatietest uitgevoerd +#MEASUREMENTTEXT= 110, ja, expertcorrectie uitgevoerd +#MEASUREMENTTEXT= 111, nee, aanvullend onderzoek uitgevoerd +#MEASUREMENTTEXT= 112, 2023, 04, 17 +#MEASUREMENTTEXT= 113, 2022, 12, 20 +#MEASUREMENTTEXT= 115, IMBRO, kwaliteitsregime +#MEASUREMENTTEXT= 116, 2023, 06, 01, 13, 45, 33 +#MEASUREMENTTEXT= 117, voltooid, registratiestatus +#MEASUREMENTTEXT= 118, 2023, 06, 01, 13, 45, 33 +#MEASUREMENTTEXT= 119, nee, gecorrigeerd +#MEASUREMENTTEXT= 121, nee, in onderzoek +#MEASUREMENTTEXT= 123, nee, uit registratie genomen +#MEASUREMENTTEXT= 125, nee, weer in registratie genomen +#MEASUREMENTTEXT= 127, 4258, 51.964487, 4.379010 +#MEASUREMENTTEXT= 128, RDNAPTRANS2018, toegepaste transformatie +#MEASUREMENTVAR= 1, 1510, mm2 (vierkante millimeter), oppervlakte conuspunt +#MEASUREMENTVAR= 2, 19895, mm2 (vierkante millimeter), oppervlakte kleefmantel +#MEASUREMENTVAR= 3, 0.58, geen, oppervlaktequoti�nt conuspunt +#MEASUREMENTVAR= 4, 1.0, geen, oppervlaktequoti�nt kleefmantel +#MEASUREMENTVAR= 5, 87, mm (millimeter), afstand conus tot midden kleefmantel +#MEASUREMENTVAR= 12, 4, -, sondeermethode +#MEASUREMENTVAR= 13, 0.00, m (meter), voorgeboord tot +#MEASUREMENTVAR= 16, 25.090, m (meter), einddiepte +#MEASUREMENTVAR= 17, 0, -, stopcriterium +#MEASUREMENTVAR= 20, -0.041, MPa (megaPascal), conusweerstand vooraf +#MEASUREMENTVAR= 21, -0.083, MPa (megaPascal), conusweerstand achteraf +#MEASUREMENTVAR= 22, 0.002, MPa (megaPascal), plaatselijke wrijving vooraf +#MEASUREMENTVAR= 23, 0.001, MPa (megaPascal), plaatselijke wrijving achteraf +#MEASUREMENTVAR= 24, -, MPa (megaPascal), waterspanning u1 vooraf +#MEASUREMENTVAR= 25, -, MPa (megaPascal), waterspanning u1 achteraf +#MEASUREMENTVAR= 26, -, MPa (megaPascal), waterspanning u2 vooraf +#MEASUREMENTVAR= 27, -, MPa (megaPascal), waterspanning u2 achteraf +#MEASUREMENTVAR= 28, -, MPa (megaPascal), waterspanning u3 vooraf +#MEASUREMENTVAR= 29, -, MPa (megaPascal), waterspanning u3 achteraf +#MEASUREMENTVAR= 30, 1, ° (graden), hellingresultante vooraf +#MEASUREMENTVAR= 31, 1, ° (graden), hellingresultante achteraf +#MEASUREMENTVAR= 32, -, ° (graden), helling noord-zuid vooraf +#MEASUREMENTVAR= 33, -, ° (graden), helling noord-zuid achteraf +#MEASUREMENTVAR= 34, -, ° (graden), helling oost-west vooraf +#MEASUREMENTVAR= 35, -, ° (graden), helling oost-west achteraf +#MEASUREMENTVAR= 36, -, S/m (Siemens/meter), elektrische geleidbaarheid vooraf +#MEASUREMENTVAR= 37, -, S/m (Siemens/meter), elektrische geleidbaarheid achteraf +#MEASUREMENTVAR= 130, 44, mm (millimeter), conusdiameter +#PROJECTID= BRO +#RECORDSEPARATOR= ! +#REPORTCODE= GEF-CPT-Report, 1, 1, 2 +#STARTDATE= 2022, 12, 11 +#STARTTIME= 08, 18, 21 +#TESTID= CPT000000217402 +#XYID= 28992, 85712.120, 442265.259 +#ZID= 31000, -0.906 +#EOH= +0.000;0.797;0.000;110.5;0.797;0.797;-1;-1;1;9.999;0.000;999.9;! +0.020;1.029;0.020;111.8;1.029;1.029;-1;0;1;9.999;0.000;999.9;! +0.040;1.448;0.040;112.9;1.448;1.448;-1;-1;1;9.999;0.000;999.9;! +0.060;2.857;0.060;114.1;2.857;2.857;-2;0;2;9.999;0.000;999.9;! +0.080;1.439;0.080;115.2;1.439;1.439;-1;0;1;0.001;0.000;0.0;! +0.100;1.750;0.100;116.3;1.750;1.750;-1;0;1;0.003;0.000;0.1;! +0.120;0.938;0.120;117.4;0.938;0.938;-1;0;1;0.004;0.000;0.1;! +0.140;1.411;0.140;118.6;1.411;1.411;-1;0;1;0.008;0.000;0.3;! +0.160;2.741;0.160;119.7;2.741;2.741;-1;0;1;0.041;0.000;1.5;! +0.180;3.117;0.180;120.9;3.117;3.117;-1;1;1;0.040;0.000;1.1;! +0.200;3.891;0.200;122.0;3.891;3.891;-1;1;1;0.011;0.000;0.2;! +0.220;5.320;0.220;123.2;5.320;5.320;-5;2;5;0.010;0.000;0.2;! +0.240;7.841;0.240;124.3;7.841;7.841;-1;1;2;0.009;0.000;0.1;! +0.260;6.213;0.260;125.4;6.213;6.213;-5;0;5;0.086;0.000;1.5;! +0.280;9.267;0.280;126.7;9.267;9.267;-6;1;6;0.069;0.000;0.9;! +0.300;10.683;0.300;131.5;10.683;10.683;-6;0;6;0.032;0.000;0.3;! +0.320;12.099;0.320;136.2;12.099;12.099;-6;0;6;0.027;0.000;0.2;! +0.340;11.925;0.340;139.9;11.925;11.925;-7;-1;7;0.034;0.000;0.3;! +0.360;11.217;0.360;141.4;11.217;11.217;-1;1;1;0.026;0.000;0.2;! +0.380;13.986;0.380;142.8;13.986;13.986;-1;1;1;0.017;0.000;0.1;! +0.400;14.484;0.400;144.1;14.484;14.484;-1;1;1;0.104;0.000;0.8;! +0.420;14.397;0.420;146.9;14.397;14.397;-2;1;2;0.050;0.000;0.3;! +0.440;16.088;0.440;153.2;16.088;16.088;-2;1;2;0.041;0.000;0.2;! +0.460;17.779;0.460;159.6;17.779;17.779;-2;1;2;0.092;0.000;0.5;! +0.480;15.981;0.480;164.3;15.981;15.981;-2;1;2;0.105;0.000;0.5;! +0.500;17.688;0.500;165.5;17.688;17.688;-1;1;1;0.069;0.000;0.3;! +0.520;23.148;0.520;166.6;23.148;23.148;-1;1;1;0.082;0.000;0.3;! +0.540;24.673;0.540;167.7;24.673;24.673;-1;1;1;0.103;0.000;0.4;! +0.560;25.882;0.560;168.9;25.882;25.882;-1;0;1;0.108;0.000;0.4;! +0.580;27.666;0.580;170.0;27.666;27.666;-1;1;1;0.111;0.000;0.4;! +0.600;27.274;0.600;171.2;27.274;27.274;-1;1;1;0.100;0.000;0.3;! +0.620;25.742;0.620;172.3;25.742;25.742;-1;0;1;0.106;0.000;0.3;! +0.640;27.328;0.640;173.4;27.328;27.328;-1;0;1;0.121;0.000;0.4;! +0.660;26.747;0.660;174.5;26.747;26.747;-1;0;1;0.130;0.000;0.4;! +0.680;27.278;0.680;175.7;27.278;27.278;-1;0;1;0.121;0.000;0.4;! +0.700;30.000;0.700;176.8;30.000;30.000;-1;0;1;0.113;0.000;0.3;! +0.720;28.895;0.720;177.9;28.895;28.895;-1;1;1;0.123;0.000;0.4;! +0.740;29.661;0.740;179.1;29.661;29.661;-1;1;1;0.142;0.000;0.4;! +0.760;31.231;0.760;180.2;31.231;31.231;-1;1;1;0.148;0.000;0.4;! +0.780;31.435;0.780;181.3;31.435;31.435;-1;1;1;0.153;0.000;0.4;! +0.800;31.876;0.800;182.4;31.876;31.876;-1;1;1;0.141;0.000;0.4;! +0.820;32.337;0.820;183.6;32.337;32.337;-1;1;1;0.108;0.000;0.3;! +0.840;33.445;0.840;184.8;33.445;33.445;-1;1;1;0.075;0.000;0.2;! +0.860;35.918;0.860;185.9;35.918;35.918;-1;1;1;0.091;0.000;0.2;! +0.880;38.115;0.880;187.2;38.115;38.115;0;1;1;0.132;0.000;0.3;! +0.900;38.665;0.900;191.3;38.665;38.665;0;1;1;0.147;0.000;0.3;! +0.920;39.214;0.920;195.4;39.214;39.214;0;1;1;0.198;0.000;0.4;! +0.940;41.369;0.940;198.1;41.369;41.369;0;1;1;0.216;0.000;0.5;! +0.960;42.826;0.960;199.4;42.826;42.826;0;1;1;0.234;0.000;0.5;! +0.980;43.332;0.980;200.7;43.332;43.332;0;1;1;0.227;0.000;0.5;! +1.000;42.498;1.000;201.9;42.498;42.498;0;1;1;0.258;0.000;0.6;! +1.020;42.555;1.020;203.3;42.555;42.555;0;1;1;0.272;0.000;0.6;! +1.040;42.411;1.040;204.6;42.411;42.411;0;1;1;0.294;0.000;0.7;! +1.060;41.060;1.060;205.8;41.060;41.060;0;0;1;0.315;0.000;0.7;! +1.080;39.330;1.080;207.1;39.330;39.330;0;0;1;0.329;0.000;0.8;! +1.100;38.287;1.100;208.2;38.287;38.287;0;0;1;0.350;0.000;0.9;! +1.120;37.182;1.120;209.4;37.182;37.182;0;0;1;0.363;0.000;0.9;! +1.140;35.957;1.140;210.6;35.957;35.957;0;0;1;0.361;0.000;0.9;! +1.160;35.267;1.160;211.8;35.267;35.267;0;0;1;0.388;0.000;1.0;! +1.180;34.829;1.180;212.9;34.829;34.829;0;0;1;0.397;0.000;1.1;! +1.200;34.136;1.200;214.1;34.136;34.136;0;0;1;0.388;0.000;1.1;! +1.220;33.602;1.220;215.3;33.602;33.602;0;0;1;0.385;0.000;1.1;! +1.240;32.904;1.240;216.4;32.904;32.904;0;0;1;0.393;0.000;1.1;! +1.260;32.411;1.260;217.6;32.411;32.411;0;0;1;0.395;0.000;1.2;! +1.280;32.107;1.280;218.8;32.107;32.107;0;1;1;0.373;0.000;1.1;! +1.300;31.293;1.300;219.9;31.293;31.293;0;1;1;0.353;0.000;1.1;! +1.320;30.856;1.320;221.1;30.856;30.856;0;1;1;0.334;0.000;1.0;! +1.340;30.348;1.340;222.3;30.348;30.348;0;1;1;0.318;0.000;1.0;! +1.360;30.641;1.360;223.4;30.641;30.641;0;1;1;0.269;0.000;0.8;! +1.380;29.780;1.380;224.5;29.780;29.780;0;1;1;0.221;0.000;0.7;! +1.400;28.755;1.400;225.7;28.755;28.755;0;1;1;0.209;0.000;0.7;! +1.420;28.303;1.420;226.8;28.303;28.303;0;1;1;0.235;0.000;0.8;! +1.440;27.294;1.440;232.9;27.294;27.294;0;1;1;0.266;0.000;0.9;! +1.460;26.007;1.460;240.3;26.007;26.007;0;1;1;0.263;0.000;0.9;! +1.480;25.914;1.480;244.6;25.914;25.914;0;1;1;0.279;0.000;1.0;! +1.500;25.524;1.500;245.7;25.524;25.524;0;1;1;0.288;0.000;1.1;! +1.520;25.257;1.520;246.8;25.257;25.257;0;1;1;0.286;0.000;1.1;! +1.540;24.909;1.540;247.9;24.909;24.909;0;1;1;0.294;0.000;1.1;! +1.560;24.694;1.560;249.0;24.694;24.694;0;1;1;0.306;0.000;1.2;! +1.580;24.384;1.580;250.1;24.384;24.384;0;1;1;0.309;0.000;1.2;! +1.600;23.821;1.600;251.2;23.821;23.821;0;1;1;0.299;0.000;1.2;! +1.620;23.261;1.620;252.4;23.261;23.261;0;1;1;0.294;0.000;1.2;! +1.640;22.759;1.640;253.5;22.759;22.759;0;1;1;0.286;0.000;1.2;! +1.660;22.250;1.660;254.6;22.250;22.250;0;1;1;0.283;0.000;1.2;! +1.680;21.833;1.680;255.7;21.833;21.833;0;1;1;0.278;0.000;1.2;! +1.700;21.102;1.700;256.8;21.102;21.102;0;1;1;0.269;0.000;1.2;! +1.720;19.935;1.720;257.9;19.935;19.935;0;1;1;0.263;0.000;1.3;! +1.740;18.808;1.740;259.0;18.808;18.808;0;1;1;0.262;0.000;1.3;! +1.760;18.137;1.760;260.1;18.137;18.137;0;1;1;0.259;0.000;1.3;! +1.780;17.835;1.780;261.2;17.835;17.835;0;1;1;0.253;0.000;1.4;! +1.800;17.252;1.800;262.3;17.252;17.252;0;1;1;0.244;0.000;1.4;! +1.820;16.423;1.820;263.4;16.423;16.423;0;1;1;0.236;0.000;1.4;! +1.840;16.351;1.840;264.6;16.351;16.351;0;1;1;0.228;0.000;1.3;! +1.860;15.890;1.860;265.7;15.890;15.890;0;1;1;0.221;0.000;1.3;! +1.880;15.311;1.880;266.8;15.311;15.311;0;1;1;0.217;0.000;1.4;! +1.900;14.793;1.900;267.9;14.793;14.793;0;1;1;0.213;0.000;1.4;! +1.920;14.237;1.920;269.0;14.237;14.237;0;1;1;0.205;0.000;1.4;! +1.940;13.405;1.940;270.1;13.405;13.405;0;1;1;0.193;0.000;1.4;! +1.960;12.471;1.960;271.2;12.471;12.471;0;1;1;0.186;0.000;1.4;! +1.980;11.869;1.980;272.3;11.869;11.869;0;1;1;0.171;0.000;1.3;! +2.000;11.248;2.000;273.4;11.248;11.248;0;1;1;0.154;0.000;1.3;! +2.020;10.698;2.020;274.5;10.698;10.698;0;1;1;0.138;0.000;1.2;! +2.040;10.098;2.040;275.6;10.098;10.098;0;1;1;0.136;0.000;1.2;! +2.060;9.386;2.060;277.2;9.386;9.386;0;1;1;0.133;0.000;1.3;! +2.080;8.423;2.080;280.7;8.423;8.423;0;1;1;0.130;0.000;1.5;! +2.100;7.461;2.100;284.1;7.461;7.461;0;1;1;0.126;0.000;1.6;! +2.120;6.797;2.120;286.2;6.797;6.797;0;1;1;0.120;0.000;1.8;! +2.140;6.241;2.140;287.3;6.241;6.241;0;1;1;0.110;0.000;1.8;! +2.160;5.607;2.160;288.4;5.607;5.607;0;1;1;0.104;0.000;1.8;! +2.180;4.849;2.180;289.5;4.849;4.849;0;1;1;0.096;0.000;1.9;! +2.200;4.150;2.200;290.6;4.150;4.150;0;1;1;0.087;0.000;2.0;! +2.220;3.425;2.220;291.7;3.425;3.425;0;1;1;0.082;0.000;2.2;! +2.240;2.825;2.240;292.8;2.825;2.825;0;1;1;0.079;0.000;2.5;! +2.260;2.225;2.260;293.9;2.225;2.225;0;1;1;0.079;0.000;3.0;! +2.280;1.750;2.280;295.1;1.750;1.750;0;1;1;0.079;0.000;3.7;! +2.300;1.447;2.300;296.1;1.447;1.447;0;1;1;0.079;0.000;4.5;! +2.320;1.213;2.320;297.3;1.213;1.213;0;1;1;0.073;0.000;5.0;! +2.340;1.045;2.340;298.4;1.045;1.045;0;1;1;0.063;0.000;5.2;! +2.360;0.930;2.360;299.4;0.930;0.930;0;1;1;0.051;0.000;4.9;! +2.380;0.838;2.380;300.6;0.838;0.838;0;1;1;0.047;0.000;4.8;! +2.400;0.760;2.400;301.7;0.760;0.760;0;1;1;0.044;0.000;4.8;! +2.420;0.734;2.420;302.8;0.734;0.734;0;1;1;0.041;0.000;4.8;! +2.440;0.729;2.440;303.9;0.729;0.729;0;1;1;0.038;0.000;4.8;! +2.460;0.728;2.460;305.6;0.728;0.728;0;1;1;0.027;0.000;3.5;! +2.480;0.723;2.480;307.9;0.723;0.723;0;1;1;0.034;0.000;4.8;! +2.500;0.718;2.500;310.2;0.718;0.718;0;1;1;0.037;0.000;5.5;! +2.520;0.713;2.520;312.5;0.713;0.713;0;1;1;0.039;0.000;6.1;! +2.540;0.634;2.540;314.7;0.634;0.634;0;1;1;0.042;0.000;6.6;! +2.560;0.624;2.560;315.8;0.624;0.624;0;1;1;0.043;0.000;6.8;! +2.580;0.620;2.580;316.9;0.620;0.620;0;1;1;0.042;0.000;6.7;! +2.600;0.620;2.600;318.1;0.620;0.620;0;1;1;0.041;0.000;6.4;! +2.620;0.633;2.620;319.2;0.633;0.633;0;1;1;0.041;0.000;6.4;! +2.640;0.648;2.640;320.2;0.648;0.648;0;1;1;0.042;0.000;6.3;! +2.660;0.673;2.660;321.4;0.673;0.673;0;1;1;0.045;0.000;6.6;! +2.680;0.704;2.680;322.4;0.704;0.704;0;1;1;0.049;0.000;6.9;! +2.700;0.729;2.700;323.6;0.729;0.729;0;1;1;0.053;0.000;7.4;! +2.720;0.752;2.720;324.7;0.752;0.752;0;1;1;0.057;0.000;7.8;! +2.740;0.768;2.740;325.8;0.768;0.768;0;1;1;0.061;0.000;8.2;! +2.760;0.763;2.760;326.9;0.763;0.763;0;1;1;0.066;0.000;8.9;! +2.780;0.739;2.780;328.0;0.739;0.739;0;1;1;0.069;0.000;9.5;! +2.800;0.707;2.800;329.1;0.707;0.707;0;1;1;0.070;0.000;9.9;! +2.820;0.694;2.820;330.2;0.694;0.694;0;1;1;0.070;0.000;10.0;! +2.840;0.664;2.840;331.3;0.664;0.664;0;1;1;0.068;0.000;10.1;! +2.860;0.636;2.860;332.4;0.636;0.636;0;1;1;0.066;0.000;10.2;! +2.880;0.615;2.880;333.6;0.615;0.615;0;1;1;0.065;0.000;10.6;! +2.900;0.582;2.900;334.7;0.582;0.582;0;1;1;0.063;0.000;10.7;! +2.920;0.555;2.920;335.8;0.555;0.555;0;1;1;0.062;0.000;10.8;! +2.940;0.534;2.940;336.9;0.534;0.534;0;1;1;0.061;0.000;11.0;! +2.960;0.513;2.960;338.0;0.513;0.513;0;1;1;0.060;0.000;11.1;! +2.980;0.504;2.980;339.1;0.504;0.504;0;1;1;0.057;0.000;10.9;! +3.000;0.493;3.000;340.2;0.493;0.493;0;1;1;0.053;0.000;10.5;! +3.020;0.471;3.020;342.0;0.471;0.471;0;1;1;0.051;0.000;10.6;! +3.040;0.449;3.040;345.1;0.449;0.449;0;1;1;0.050;0.000;10.7;! +3.060;0.427;3.060;348.3;0.427;0.427;0;1;1;0.048;0.000;10.6;! +3.080;0.433;3.080;349.6;0.433;0.433;0;1;1;0.047;0.000;10.4;! +3.100;0.425;3.100;350.7;0.425;0.425;0;1;1;0.046;0.000;10.3;! +3.120;0.431;3.120;351.8;0.431;0.431;0;1;1;0.048;0.000;10.6;! +3.140;0.459;3.140;352.9;0.459;0.459;0;1;1;0.051;0.000;10.9;! +3.160;0.483;3.160;354.0;0.483;0.483;0;1;1;0.054;0.000;11.2;! +3.180;0.505;3.180;355.1;0.505;0.505;0;1;1;0.056;0.000;11.4;! +3.200;0.544;3.200;356.2;0.544;0.544;0;1;1;0.058;0.000;11.7;! +3.220;0.547;3.220;357.3;0.547;0.547;0;1;1;0.059;0.000;11.8;! +3.240;0.503;3.240;358.4;0.503;0.503;0;1;1;0.059;0.000;12.2;! +3.260;0.468;3.260;359.6;0.468;0.468;0;1;1;0.058;0.000;12.1;! +3.280;0.437;3.280;360.7;0.437;0.437;0;1;1;0.055;0.000;11.9;! +3.300;0.411;3.300;361.9;0.411;0.411;0;1;1;0.050;0.000;11.3;! +3.320;0.410;3.320;363.0;0.410;0.410;0;1;1;0.045;0.000;10.7;! +3.340;0.402;3.340;364.2;0.402;0.402;0;1;1;0.042;0.000;10.4;! +3.360;0.388;3.360;365.3;0.388;0.388;0;1;1;0.039;0.000;10.0;! +3.380;0.375;3.380;366.4;0.375;0.375;0;1;1;0.038;0.000;9.8;! +3.400;0.359;3.400;367.6;0.359;0.359;0;1;1;0.037;0.000;9.7;! +3.420;0.351;3.420;368.8;0.351;0.351;0;1;1;0.036;0.000;9.6;! +3.440;0.377;3.440;369.9;0.377;0.377;0;1;1;0.036;0.000;9.7;! +3.460;0.392;3.460;372.4;0.392;0.392;0;1;1;0.037;0.000;10.0;! +3.480;0.383;3.480;376.2;0.383;0.383;0;1;1;0.037;0.000;9.2;! +3.500;0.375;3.500;379.9;0.375;0.375;0;1;1;0.036;0.000;7.2;! +3.520;0.365;3.520;381.4;0.365;0.365;0;1;1;0.035;0.000;5.5;! +3.540;0.448;3.540;382.6;0.448;0.448;0;1;1;0.040;0.000;5.4;! +3.560;0.827;3.560;383.7;0.827;0.827;0;1;1;0.047;0.000;6.1;! +3.580;1.120;3.580;384.8;1.120;1.120;0;1;1;0.054;0.000;6.8;! +3.600;1.153;3.600;385.9;1.153;1.153;0;1;1;0.056;0.000;7.0;! +3.620;1.040;3.620;387.0;1.040;1.040;0;1;1;0.059;0.000;7.3;! +3.640;0.712;3.640;388.1;0.712;0.712;0;1;1;0.061;0.000;7.9;! +3.660;0.503;3.660;389.2;0.503;0.503;0;1;1;0.062;0.000;9.0;! +3.680;0.445;3.680;390.3;0.445;0.445;0;1;1;0.059;0.000;9.7;! +3.700;0.433;3.700;391.4;0.433;0.433;0;1;1;0.055;0.000;10.7;! +3.720;0.416;3.720;392.7;0.416;0.416;0;1;1;0.050;0.000;11.1;! +3.740;0.420;3.740;393.8;0.420;0.420;0;1;1;0.048;0.000;11.3;! +3.760;0.413;3.760;395.0;0.413;0.413;0;1;1;0.049;0.000;11.7;! +3.780;0.410;3.780;396.1;0.410;0.410;0;1;1;0.050;0.000;12.2;! +3.800;0.404;3.800;397.3;0.404;0.404;0;1;1;0.051;0.000;12.5;! +3.820;0.403;3.820;398.5;0.403;0.403;0;1;1;0.053;0.000;13.3;! +3.840;0.405;3.840;399.7;0.405;0.405;0;1;1;0.054;0.000;13.6;! +3.860;0.392;3.860;400.9;0.392;0.392;0;1;1;0.055;0.000;13.8;! +3.880;0.374;3.880;402.3;0.374;0.374;0;1;1;0.057;0.000;14.0;! +3.900;0.376;3.900;403.6;0.376;0.376;0;1;1;0.056;0.000;13.5;! +3.920;0.403;3.920;405.0;0.403;0.403;0;1;1;0.055;0.000;13.0;! +3.940;0.466;3.940;406.4;0.466;0.466;0;1;1;0.053;0.000;12.4;! +3.960;0.487;3.960;407.8;0.487;0.487;0;1;1;0.050;0.000;11.8;! +3.980;0.457;3.980;409.2;0.457;0.457;0;1;1;0.048;0.000;11.3;! +4.000;0.405;4.000;410.6;0.405;0.405;0;1;1;0.045;0.000;10.8;! +4.020;0.382;4.020;411.8;0.382;0.382;0;1;1;0.043;0.000;10.7;! +4.040;0.351;4.040;412.9;0.351;0.351;0;1;1;0.041;0.000;10.6;! +4.060;0.325;4.060;414.1;0.325;0.325;0;1;1;0.040;0.000;10.9;! +4.080;0.335;4.080;415.4;0.335;0.335;0;1;1;0.039;0.000;11.3;! +4.100;0.335;4.100;418.2;0.335;0.335;0;1;1;0.040;0.000;12.0;! +4.120;0.332;4.120;421.2;0.332;0.332;0;1;1;0.040;0.000;12.5;! +4.140;0.327;4.140;423.8;0.327;0.327;0;1;1;0.040;0.000;12.6;! +4.160;0.311;4.160;425.3;0.311;0.311;0;1;1;0.039;0.000;12.9;! +4.180;0.296;4.180;426.8;0.296;0.296;0;1;1;0.038;0.000;12.9;! +4.200;0.298;4.200;427.9;0.298;0.298;0;1;1;0.036;0.000;12.6;! +4.220;0.270;4.220;429.1;0.270;0.270;0;1;1;0.034;0.000;12.3;! +4.240;0.249;4.240;430.2;0.249;0.249;0;1;1;0.031;0.000;11.9;! +4.260;0.231;4.260;431.3;0.231;0.231;0;1;1;0.029;0.000;11.7;! +4.280;0.218;4.280;432.4;0.218;0.218;0;1;1;0.028;0.000;11.8;! +4.300;0.212;4.300;433.5;0.212;0.212;0;1;1;0.028;0.000;12.0;! +4.320;0.216;4.320;434.9;0.216;0.216;0;1;1;0.029;0.000;12.4;! +4.340;0.227;4.340;436.1;0.227;0.227;0;1;1;0.030;0.000;12.7;! +4.360;0.239;4.360;437.4;0.239;0.239;0;1;1;0.031;0.000;13.2;! +4.380;0.256;4.380;438.7;0.256;0.256;0;1;1;0.034;0.000;13.7;! +4.400;0.260;4.400;440.0;0.260;0.260;0;1;1;0.036;0.000;14.3;! +4.420;0.264;4.420;441.3;0.264;0.264;0;1;1;0.038;0.000;14.9;! +4.440;0.267;4.440;442.5;0.267;0.267;0;1;1;0.039;0.000;14.9;! +4.460;0.269;4.460;444.5;0.269;0.269;0;1;1;0.040;0.000;14.8;! +4.480;0.282;4.480;448.5;0.282;0.282;0;1;1;0.041;0.000;14.6;! +4.500;0.296;4.500;452.6;0.296;0.296;0;1;1;0.041;0.000;14.5;! +4.520;0.303;4.520;455.5;0.303;0.303;0;1;1;0.041;0.000;14.3;! +4.540;0.295;4.540;456.6;0.295;0.295;0;1;1;0.041;0.000;14.0;! +4.560;0.291;4.560;457.7;0.291;0.291;0;1;1;0.040;0.000;13.9;! +4.580;0.292;4.580;458.9;0.292;0.292;0;1;1;0.040;0.000;13.7;! +4.600;0.288;4.600;460.0;0.288;0.288;0;1;1;0.039;0.000;13.5;! +4.620;0.286;4.620;461.1;0.286;0.286;0;1;1;0.039;0.000;13.1;! +4.640;0.288;4.640;462.2;0.288;0.288;0;1;1;0.039;0.000;12.9;! +4.660;0.292;4.660;463.3;0.292;0.292;0;1;1;0.039;0.000;12.9;! +4.680;0.311;4.680;464.5;0.311;0.311;0;1;1;0.038;0.000;12.9;! +4.700;0.323;4.700;465.6;0.323;0.323;0;1;1;0.038;0.000;12.7;! +4.720;0.306;4.720;466.7;0.306;0.306;0;1;1;0.036;0.000;12.3;! +4.740;0.286;4.740;467.8;0.286;0.286;0;1;1;0.034;0.000;11.9;! +4.760;0.271;4.760;468.9;0.271;0.271;0;1;1;0.030;0.000;11.2;! +4.780;0.253;4.780;470.1;0.253;0.253;0;1;1;0.027;0.000;10.3;! +4.800;0.233;4.800;471.7;0.233;0.233;0;1;1;0.024;0.000;9.3;! +4.820;0.230;4.820;473.2;0.230;0.230;0;1;1;0.022;0.000;8.5;! +4.840;0.237;4.840;474.7;0.237;0.237;0;1;1;0.022;0.000;8.4;! +4.860;0.253;4.860;476.5;0.253;0.253;0;1;1;0.024;0.000;8.7;! +4.880;0.284;4.880;478.3;0.284;0.284;0;1;1;0.026;0.000;9.0;! +4.900;0.326;4.900;480.1;0.326;0.326;0;1;1;0.030;0.000;9.8;! +4.920;0.352;4.920;481.8;0.352;0.352;0;1;1;0.033;0.000;10.2;! +4.940;0.357;4.940;483.7;0.357;0.357;0;1;1;0.033;0.000;10.0;! +4.960;0.350;4.960;485.5;0.350;0.350;0;1;1;0.033;0.000;9.7;! +4.980;0.344;4.980;486.6;0.344;0.344;0;1;1;0.032;0.000;9.4;! +5.000;0.320;5.000;487.7;0.320;0.320;0;1;1;0.031;0.000;8.9;! +5.020;0.306;5.020;489.2;0.306;0.306;0;1;1;0.027;0.000;8.2;! +5.040;0.298;5.040;491.9;0.298;0.298;0;1;1;0.023;0.000;7.5;! +5.060;0.290;5.060;494.6;0.290;0.290;0;1;1;0.020;0.000;6.7;! +5.080;0.280;5.080;496.8;0.280;0.280;0;1;1;0.018;0.000;6.3;! +5.100;0.277;5.100;497.9;0.277;0.277;0;1;1;0.016;0.000;5.7;! +5.120;0.282;5.120;499.1;0.282;0.282;0;1;1;0.014;0.000;5.2;! +5.140;0.273;5.140;500.2;0.273;0.273;0;1;1;0.013;0.000;4.8;! +5.160;0.260;5.160;501.4;0.260;0.260;0;1;1;0.012;0.000;4.5;! +5.180;0.257;5.180;502.6;0.257;0.257;0;1;1;0.012;0.000;4.4;! +5.200;0.256;5.200;503.8;0.256;0.256;0;1;1;0.012;0.000;4.3;! +5.220;0.268;5.220;505.1;0.268;0.268;0;1;1;0.012;0.000;4.4;! +5.240;0.283;5.240;506.3;0.283;0.283;0;1;1;0.013;0.000;4.6;! +5.260;0.299;5.260;507.5;0.299;0.299;0;1;1;0.014;0.000;4.7;! +5.280;0.324;5.280;508.6;0.324;0.324;0;1;1;0.015;0.000;4.7;! +5.300;0.336;5.300;509.7;0.336;0.336;0;1;1;0.015;0.000;4.7;! +5.320;0.346;5.320;510.9;0.346;0.346;0;1;1;0.018;0.000;5.1;! +5.340;0.358;5.340;512.0;0.358;0.358;0;1;1;0.021;0.000;5.7;! +5.360;0.367;5.360;513.1;0.367;0.367;0;1;1;0.022;0.000;5.8;! +5.380;0.388;5.380;514.3;0.388;0.388;0;1;1;0.023;0.000;5.9;! +5.400;0.401;5.400;515.3;0.401;0.401;0;1;1;0.024;0.000;6.2;! +5.420;0.399;5.420;516.4;0.399;0.399;0;1;1;0.026;0.000;6.5;! +5.440;0.394;5.440;517.6;0.394;0.394;0;1;1;0.027;0.000;6.8;! +5.460;0.385;5.460;519.0;0.385;0.385;0;1;1;0.027;0.000;7.0;! +5.480;0.363;5.480;522.2;0.363;0.363;0;1;1;0.025;0.000;7.0;! +5.500;0.340;5.500;525.3;0.340;0.340;0;1;1;0.023;0.000;7.0;! +5.520;0.317;5.520;528.5;0.317;0.317;0;1;1;0.021;0.000;7.1;! +5.540;0.286;5.540;529.6;0.286;0.286;0;1;1;0.019;0.000;6.7;! +5.560;0.261;5.560;530.8;0.261;0.261;0;1;1;0.017;0.000;5.9;! +5.580;0.252;5.580;531.9;0.252;0.252;0;1;1;0.015;0.000;5.1;! +5.600;0.257;5.600;533.0;0.257;0.257;0;1;1;0.013;0.000;4.7;! +5.620;0.268;5.620;534.1;0.268;0.268;0;1;1;0.011;0.000;4.1;! +5.640;0.280;5.640;535.2;0.280;0.280;0;1;1;0.011;0.000;3.8;! +5.660;0.299;5.660;536.3;0.299;0.299;0;1;1;0.011;0.000;3.6;! +5.680;0.314;5.680;537.4;0.314;0.314;0;1;1;0.011;0.000;3.4;! +5.700;0.348;5.700;538.6;0.348;0.348;0;1;1;0.011;0.000;3.2;! +5.720;0.389;5.720;539.7;0.389;0.389;0;1;1;0.010;0.000;2.9;! +5.740;0.399;5.740;540.8;0.399;0.399;0;1;1;0.010;0.000;2.7;! +5.760;0.390;5.760;541.8;0.390;0.390;0;1;1;0.012;0.000;3.0;! +5.780;0.376;5.780;542.9;0.376;0.376;0;1;1;0.013;0.000;3.0;! +5.800;0.388;5.800;544.1;0.388;0.388;0;1;1;0.012;0.000;2.6;! +5.820;0.475;5.820;545.2;0.475;0.475;0;1;1;0.011;0.000;2.1;! +5.840;0.600;5.840;546.7;0.600;0.600;0;1;1;0.009;0.000;1.7;! +5.860;0.622;5.860;547.8;0.622;0.622;0;1;1;0.007;0.000;1.5;! +5.880;0.552;5.880;548.9;0.552;0.552;0;1;1;0.007;0.000;1.5;! +5.900;0.434;5.900;550.0;0.434;0.434;0;1;1;0.007;0.000;1.6;! +5.920;0.330;5.920;551.1;0.330;0.330;0;1;1;0.008;0.000;1.9;! +5.940;0.267;5.940;552.4;0.267;0.267;0;1;1;0.007;0.000;2.0;! +5.960;0.258;5.960;553.6;0.258;0.258;0;1;1;0.007;0.000;2.4;! +5.980;0.263;5.980;554.8;0.263;0.263;0;1;1;0.007;0.000;2.5;! +6.000;0.251;6.000;556.1;0.251;0.251;0;1;1;0.008;0.000;2.7;! +6.020;0.257;6.020;557.3;0.257;0.257;0;1;1;0.008;0.000;3.0;! +6.040;0.255;6.040;558.6;0.255;0.255;0;1;1;0.009;0.000;3.5;! +6.060;0.287;6.060;559.8;0.287;0.287;0;1;1;0.012;0.000;3.3;! +6.080;0.404;6.080;562.2;0.404;0.404;0;1;1;0.013;0.000;2.7;! +6.100;0.541;6.100;565.1;0.541;0.541;0;1;1;0.010;0.000;1.7;! +6.120;0.695;6.120;567.7;0.695;0.695;0;1;1;0.009;0.000;1.1;! +6.140;0.904;6.140;568.8;0.904;0.904;0;1;1;0.009;0.000;1.0;! +6.160;1.025;6.160;569.9;1.025;1.025;0;1;1;0.010;0.000;1.1;! +6.180;0.996;6.180;571.1;0.996;0.996;0;1;1;0.011;0.000;1.4;! +6.200;0.880;6.200;572.1;0.880;0.880;0;1;1;0.014;0.000;1.7;! +6.220;0.728;6.220;573.2;0.728;0.728;0;1;1;0.013;0.000;1.6;! +6.240;0.593;6.240;574.3;0.593;0.593;0;1;1;0.013;0.000;1.8;! +6.260;0.526;6.260;575.4;0.526;0.526;0;1;1;0.014;0.000;2.2;! +6.280;0.480;6.280;576.6;0.480;0.480;0;1;1;0.015;0.000;2.3;! +6.300;0.470;6.300;577.7;0.470;0.470;0;1;1;0.012;0.000;1.9;! +6.320;0.591;6.320;578.8;0.591;0.591;0;1;1;0.010;0.000;1.6;! +6.340;0.780;6.340;579.9;0.780;0.780;0;1;1;0.011;0.000;1.7;! +6.360;0.773;6.360;581.0;0.773;0.773;0;1;1;0.013;0.000;2.2;! +6.380;0.649;6.380;582.1;0.649;0.649;0;1;1;0.015;0.000;2.6;! +6.400;0.515;6.400;583.2;0.515;0.515;0;1;1;0.015;0.000;2.7;! +6.420;0.401;6.420;584.3;0.401;0.401;0;1;1;0.015;0.000;2.8;! +6.440;0.302;6.440;585.4;0.302;0.302;0;1;1;0.014;0.000;2.9;! +6.460;0.264;6.460;586.8;0.264;0.264;0;1;1;0.012;0.000;3.1;! +6.480;0.254;6.480;590.0;0.254;0.254;0;1;1;0.009;0.000;2.9;! +6.500;0.244;6.500;593.1;0.244;0.244;0;1;1;0.007;0.000;2.3;! +6.520;0.239;6.520;595.8;0.239;0.239;0;1;1;0.006;0.000;2.0;! +6.540;0.255;6.540;596.9;0.255;0.255;0;1;1;0.005;0.000;1.8;! +6.560;0.283;6.560;598.0;0.283;0.283;0;1;1;0.005;0.000;1.7;! +6.580;0.328;6.580;599.1;0.328;0.328;0;1;1;0.004;0.000;1.6;! +6.600;0.311;6.600;600.2;0.311;0.311;0;1;1;0.005;0.000;1.6;! +6.620;0.272;6.620;601.3;0.272;0.272;0;1;1;0.004;0.000;1.5;! +6.640;0.260;6.640;602.4;0.260;0.260;0;1;1;0.004;0.000;1.6;! +6.660;0.254;6.660;603.6;0.254;0.254;0;1;1;0.005;0.000;1.6;! +6.680;0.246;6.680;604.6;0.246;0.246;0;0;1;0.004;0.000;1.7;! +6.700;0.250;6.700;605.7;0.250;0.250;0;1;1;0.004;0.000;1.7;! +6.720;0.242;6.720;606.8;0.242;0.242;0;1;1;0.004;0.000;1.6;! +6.740;0.245;6.740;607.9;0.245;0.245;0;1;1;0.004;0.000;1.7;! +6.760;0.242;6.760;609.1;0.242;0.242;0;1;1;0.004;0.000;1.7;! +6.780;0.239;6.780;610.2;0.239;0.239;0;1;1;0.005;0.000;1.8;! +6.800;0.253;6.800;611.3;0.253;0.253;0;1;1;0.005;0.000;2.0;! +6.820;0.267;6.820;612.4;0.267;0.267;0;1;1;0.005;0.000;1.9;! +6.840;0.283;6.840;613.5;0.283;0.283;0;1;1;0.004;0.000;1.6;! +6.860;0.288;6.860;614.6;0.288;0.288;0;1;1;0.004;0.000;1.6;! +6.880;0.273;6.880;615.7;0.273;0.273;0;1;1;0.005;0.000;1.7;! +6.900;0.257;6.900;616.9;0.257;0.257;0;1;1;0.005;0.000;1.7;! +6.920;0.256;6.920;618.0;0.256;0.256;0;1;1;0.005;0.000;1.8;! +6.940;0.256;6.940;619.2;0.256;0.256;0;1;1;0.005;0.000;1.8;! +6.960;0.256;6.960;620.4;0.256;0.256;0;0;1;0.005;0.000;1.8;! +6.980;0.260;6.980;621.8;0.260;0.260;0;1;1;0.005;0.000;1.8;! +7.000;0.262;7.000;626.8;0.262;0.262;0;1;1;0.005;0.000;1.9;! +7.020;0.264;7.020;631.8;0.264;0.264;0;1;1;0.005;0.000;2.0;! +7.040;0.266;7.040;635.4;0.266;0.266;0;1;1;0.005;0.000;2.0;! +7.060;0.265;7.060;636.5;0.265;0.265;0;0;1;0.005;0.000;2.0;! +7.080;0.262;7.080;637.6;0.262;0.262;0;0;1;0.005;0.000;1.9;! +7.100;0.265;7.100;638.7;0.265;0.265;0;0;1;0.005;0.000;1.9;! +7.120;0.265;7.120;639.8;0.265;0.265;0;1;1;0.005;0.000;1.9;! +7.140;0.263;7.140;640.9;0.263;0.263;0;0;1;0.005;0.000;1.8;! +7.160;0.264;7.160;642.0;0.264;0.264;0;1;1;0.005;0.000;1.8;! +7.180;0.264;7.180;643.1;0.264;0.264;0;0;1;0.005;0.000;1.8;! +7.200;0.268;7.200;644.2;0.268;0.268;0;1;1;0.005;0.000;1.9;! +7.220;0.277;7.220;645.3;0.277;0.277;0;0;1;0.005;0.000;1.9;! +7.240;0.283;7.240;646.4;0.283;0.283;0;0;1;0.005;0.000;1.9;! +7.260;0.282;7.260;647.5;0.282;0.282;0;0;1;0.006;0.000;1.9;! +7.280;0.281;7.280;648.7;0.281;0.281;0;0;1;0.006;0.000;2.0;! +7.300;0.284;7.300;649.8;0.284;0.284;0;1;1;0.006;0.000;2.0;! +7.320;0.290;7.320;650.9;0.290;0.290;0;0;1;0.006;0.000;2.1;! +7.340;0.295;7.340;652.0;0.295;0.295;0;0;1;0.006;0.000;2.1;! +7.360;0.299;7.360;653.1;0.299;0.299;0;0;1;0.006;0.000;2.1;! +7.380;0.299;7.380;654.2;0.299;0.299;0;0;1;0.006;0.000;2.2;! +7.400;0.291;7.400;655.3;0.291;0.291;0;0;1;0.006;0.000;2.2;! +7.420;0.287;7.420;656.4;0.287;0.287;0;0;1;0.007;0.000;2.2;! +7.440;0.280;7.440;657.5;0.280;0.280;0;0;1;0.006;0.000;2.1;! +7.460;0.286;7.460;660.9;0.286;0.286;0;0;1;0.006;0.000;2.1;! +7.480;0.293;7.480;664.3;0.293;0.293;0;0;1;0.006;0.000;2.1;! +7.500;0.299;7.500;667.7;0.299;0.299;0;0;1;0.007;0.000;2.2;! +7.520;0.303;7.520;668.9;0.303;0.303;0;0;1;0.007;0.000;2.2;! +7.540;0.307;7.540;670.1;0.307;0.307;0;0;1;0.007;0.000;2.3;! +7.560;0.301;7.560;671.2;0.301;0.301;0;0;1;0.007;0.000;2.3;! +7.580;0.289;7.580;672.3;0.289;0.289;0;0;1;0.008;0.000;2.4;! +7.600;0.293;7.600;673.4;0.293;0.293;0;0;1;0.007;0.000;2.4;! +7.620;0.305;7.620;674.5;0.305;0.305;0;1;1;0.007;0.000;2.3;! +7.640;0.331;7.640;675.6;0.331;0.331;0;0;1;0.008;0.000;2.4;! +7.660;0.326;7.660;676.8;0.326;0.326;0;0;1;0.008;0.000;2.4;! +7.680;0.336;7.680;677.8;0.336;0.336;0;0;1;0.009;0.000;2.6;! +7.700;0.343;7.700;678.9;0.343;0.343;0;0;1;0.009;0.000;2.6;! +7.720;0.348;7.720;680.1;0.348;0.348;0;0;1;0.009;0.000;2.5;! +7.740;0.350;7.740;681.2;0.350;0.350;0;0;1;0.009;0.000;2.6;! +7.760;0.348;7.760;682.3;0.348;0.348;0;0;1;0.010;0.000;2.7;! +7.780;0.357;7.780;683.4;0.357;0.357;0;0;1;0.010;0.000;2.7;! +7.800;0.375;7.800;684.5;0.375;0.375;0;0;1;0.011;0.000;2.8;! +7.820;0.394;7.820;685.6;0.394;0.394;0;0;1;0.012;0.000;3.0;! +7.840;0.416;7.840;686.8;0.416;0.416;0;0;1;0.013;0.000;3.2;! +7.860;0.437;7.860;688.0;0.437;0.437;0;0;1;0.015;0.000;3.4;! +7.880;0.454;7.880;689.1;0.454;0.454;0;0;1;0.016;0.000;3.6;! +7.900;0.471;7.900;690.2;0.471;0.471;0;0;1;0.017;0.000;3.7;! +7.920;0.479;7.920;691.3;0.479;0.479;0;0;1;0.018;0.000;3.8;! +7.940;0.498;7.940;692.4;0.498;0.498;0;0;1;0.019;0.000;3.9;! +7.960;0.510;7.960;693.6;0.510;0.510;0;0;1;0.020;0.000;4.0;! +7.980;0.514;7.980;694.6;0.514;0.514;0;0;1;0.021;0.000;4.0;! +8.000;0.523;8.000;695.8;0.523;0.523;0;0;1;0.022;0.000;4.0;! +8.020;0.568;8.020;696.8;0.568;0.568;0;0;1;0.023;0.000;4.3;! +8.040;0.589;8.040;697.9;0.589;0.589;0;0;1;0.025;0.000;4.5;! +8.060;0.569;8.060;699.1;0.569;0.569;0;0;1;0.027;0.000;4.7;! +8.080;0.564;8.080;700.2;0.564;0.564;0;0;1;0.028;0.000;5.0;! +8.100;0.549;8.100;702.4;0.549;0.549;0;0;1;0.031;0.000;5.5;! +8.120;0.533;8.120;705.4;0.533;0.533;0;0;1;0.033;0.000;6.2;! +8.140;0.516;8.140;708.4;0.516;0.516;0;0;1;0.033;0.000;6.7;! +8.160;0.488;8.160;709.5;0.488;0.488;0;0;1;0.032;0.000;6.8;! +8.180;0.459;8.180;710.6;0.459;0.459;0;0;1;0.030;0.000;6.7;! +8.200;0.430;8.200;711.7;0.430;0.430;0;0;1;0.028;0.000;6.2;! +8.220;0.407;8.220;712.8;0.407;0.407;0;0;1;0.024;0.000;5.6;! +8.240;0.392;8.240;714.0;0.392;0.392;0;0;1;0.020;0.000;4.9;! +8.260;0.381;8.260;715.1;0.381;0.381;0;0;1;0.016;0.000;4.1;! +8.280;0.369;8.280;716.2;0.369;0.369;0;0;1;0.015;0.000;3.8;! +8.300;0.364;8.300;717.3;0.364;0.364;0;0;1;0.014;0.000;3.6;! +8.320;0.365;8.320;718.4;0.365;0.365;0;0;1;0.013;0.000;3.5;! +8.340;0.362;8.340;719.8;0.362;0.362;0;0;1;0.012;0.000;3.4;! +8.360;0.357;8.360;721.2;0.357;0.357;0;0;1;0.012;0.000;3.3;! +8.380;0.354;8.380;722.5;0.354;0.354;0;0;1;0.012;0.000;3.3;! +8.400;0.353;8.400;723.6;0.353;0.353;0;0;1;0.012;0.000;3.3;! +8.420;0.353;8.420;724.7;0.353;0.353;0;0;1;0.012;0.000;3.3;! +8.440;0.355;8.440;725.8;0.355;0.355;0;0;1;0.011;0.000;3.2;! +8.460;0.360;8.460;727.8;0.360;0.360;0;0;1;0.012;0.000;3.2;! +8.480;0.372;8.480;731.0;0.372;0.372;0;0;1;0.012;0.000;3.2;! +8.500;0.383;8.500;734.2;0.383;0.383;0;0;1;0.011;0.000;3.0;! +8.520;0.379;8.520;736.5;0.379;0.379;0;0;1;0.011;0.000;2.9;! +8.540;0.365;8.540;737.6;0.365;0.365;0;0;1;0.012;0.000;2.9;! +8.560;0.370;8.560;738.7;0.370;0.370;0;0;1;0.013;0.000;3.3;! +8.580;0.401;8.580;739.8;0.401;0.401;0;0;1;0.012;0.000;3.0;! +8.600;0.417;8.600;740.9;0.417;0.417;0;0;1;0.011;0.000;2.7;! +8.620;0.411;8.620;742.1;0.411;0.411;0;0;1;0.011;0.000;2.6;! +8.640;0.382;8.640;743.2;0.382;0.382;0;0;1;0.012;0.000;3.0;! +8.660;0.403;8.660;744.3;0.403;0.403;0;0;1;0.011;0.000;2.7;! +8.680;0.425;8.680;745.4;0.425;0.425;0;0;1;0.012;0.000;2.7;! +8.700;0.442;8.700;746.6;0.442;0.442;0;0;1;0.010;0.000;2.2;! +8.720;0.417;8.720;747.7;0.417;0.417;0;0;1;0.010;0.000;2.0;! +8.740;0.445;8.740;748.8;0.445;0.445;0;0;1;0.008;0.000;1.2;! +8.760;0.506;8.760;749.9;0.506;0.506;0;0;1;0.009;0.000;1.1;! +8.780;0.799;8.780;751.0;0.799;0.799;0;0;1;0.012;0.000;1.2;! +8.800;1.404;8.800;752.1;1.404;1.404;0;0;1;0.013;0.000;1.2;! +8.820;1.641;8.820;753.3;1.641;1.641;0;0;1;0.016;0.000;1.4;! +8.840;1.476;8.840;754.4;1.476;1.476;0;0;1;0.017;0.000;1.3;! +8.860;1.215;8.860;755.5;1.215;1.215;0;0;1;0.018;0.000;1.4;! +8.880;1.064;8.880;756.6;1.064;1.064;0;0;1;0.018;0.000;1.3;! +8.900;1.096;8.900;757.8;1.096;1.096;0;0;1;0.021;0.000;1.6;! +8.920;1.218;8.920;758.9;1.218;1.218;0;0;1;0.022;0.000;1.6;! +8.940;1.345;8.940;760.0;1.345;1.345;0;0;1;0.022;0.000;1.5;! +8.960;1.612;8.960;761.2;1.612;1.612;0;0;1;0.023;0.000;1.6;! +8.980;1.753;8.980;762.3;1.753;1.753;1;0;1;0.025;0.000;1.7;! +9.000;1.584;9.000;763.4;1.584;1.584;0;0;1;0.026;0.000;1.7;! +9.020;1.395;9.020;764.7;1.395;1.395;1;0;1;0.027;0.000;1.7;! +9.040;1.526;9.040;765.8;1.526;1.526;1;0;1;0.028;0.000;1.6;! +9.060;1.825;9.060;768.4;1.825;1.825;1;0;1;0.030;0.000;1.6;! +9.080;2.155;9.080;771.3;2.155;2.155;1;0;1;0.033;0.000;1.6;! +9.100;2.407;9.100;773.8;2.407;2.407;1;0;1;0.035;0.000;1.6;! +9.120;2.382;9.120;774.8;2.382;2.382;1;0;1;0.037;0.000;1.5;! +9.140;2.378;9.140;775.9;2.378;2.378;1;0;1;0.039;0.000;1.6;! +9.160;2.389;9.160;777.1;2.389;2.389;1;0;1;0.041;0.000;1.7;! +9.180;2.379;9.180;778.2;2.379;2.379;1;0;1;0.041;0.000;1.7;! +9.200;2.316;9.200;779.3;2.316;2.316;1;0;1;0.041;0.000;1.6;! +9.220;2.306;9.220;780.5;2.306;2.306;1;0;1;0.040;0.000;1.5;! +9.240;2.508;9.240;781.7;2.508;2.508;1;0;1;0.040;0.000;1.5;! +9.260;2.773;9.260;782.8;2.773;2.773;1;0;1;0.041;0.000;1.5;! +9.280;2.929;9.280;784.1;2.929;2.929;1;0;1;0.042;0.000;1.5;! +9.300;2.910;9.300;785.3;2.910;2.910;1;0;1;0.041;0.000;1.5;! +9.320;2.835;9.320;786.4;2.835;2.835;1;0;1;0.041;0.000;1.5;! +9.340;2.670;9.340;787.6;2.670;2.670;1;0;1;0.043;0.000;1.6;! +9.360;2.354;9.360;789.1;2.354;2.354;1;0;1;0.044;0.000;1.7;! +9.380;2.293;9.380;790.2;2.293;2.293;1;0;1;0.043;0.000;1.7;! +9.400;2.122;9.400;791.3;2.122;2.122;1;0;1;0.041;0.000;1.7;! +9.420;1.995;9.420;792.4;1.995;1.995;1;0;1;0.039;0.000;1.7;! +9.440;1.893;9.440;793.5;1.893;1.893;1;0;1;0.038;0.000;1.8;! +9.460;1.912;9.460;796.5;1.912;1.912;1;0;1;0.037;0.000;1.9;! +9.480;1.896;9.480;801.0;1.896;1.896;1;0;1;0.037;0.000;2.0;! +9.500;1.881;9.500;805.6;1.881;1.881;1;0;1;0.038;0.000;2.3;! +9.520;1.641;9.520;807.4;1.641;1.641;1;0;1;0.038;0.000;2.5;! +9.540;1.372;9.540;808.4;1.372;1.372;1;0;1;0.036;0.000;2.4;! +9.560;1.234;9.560;809.6;1.234;1.234;1;0;1;0.032;0.000;2.1;! +9.580;1.161;9.580;810.6;1.161;1.161;1;0;1;0.031;0.000;2.0;! +9.600;1.321;9.600;811.8;1.321;1.321;1;0;1;0.029;0.000;1.7;! +9.620;1.581;9.620;812.8;1.581;1.581;1;0;1;0.029;0.000;1.6;! +9.640;2.103;9.640;813.9;2.103;2.103;1;0;1;0.031;0.000;1.7;! +9.660;2.358;9.660;815.1;2.358;2.358;1;0;1;0.032;0.000;1.7;! +9.680;2.151;9.680;816.2;2.151;2.151;1;0;1;0.032;0.000;1.6;! +9.700;1.904;9.700;817.4;1.904;1.904;1;0;1;0.030;0.000;1.6;! +9.720;1.789;9.720;818.7;1.789;1.789;1;0;1;0.033;0.000;1.8;! +9.740;1.672;9.740;819.7;1.672;1.672;1;0;1;0.033;0.000;2.1;! +9.760;1.327;9.760;820.9;1.327;1.327;1;0;1;0.033;0.000;2.4;! +9.780;0.990;9.780;822.0;0.990;0.990;1;0;1;0.030;0.000;2.6;! +9.800;0.735;9.800;823.1;0.735;0.735;1;0;1;0.026;0.000;2.7;! +9.820;0.626;9.820;824.2;0.626;0.626;1;0;1;0.023;0.000;2.9;! +9.840;0.536;9.840;825.3;0.536;0.536;1;0;1;0.021;0.000;3.2;! +9.860;0.474;9.860;826.4;0.474;0.474;1;0;1;0.017;0.000;3.1;! +9.880;0.424;9.880;827.5;0.424;0.424;1;0;1;0.014;0.000;2.7;! +9.900;0.446;9.900;828.6;0.446;0.446;1;0;1;0.012;0.000;2.4;! +9.920;0.465;9.920;829.7;0.465;0.465;1;0;1;0.009;0.000;1.8;! +9.940;0.479;9.940;830.8;0.479;0.479;1;0;1;0.008;0.000;1.3;! +9.960;0.528;9.960;831.9;0.528;0.528;1;0;1;0.010;0.000;1.4;! +9.980;0.708;9.980;833.0;0.708;0.708;1;0;1;0.012;0.000;1.6;! +10.000;1.010;10.000;834.1;1.010;1.010;1;0;1;0.015;0.000;1.7;! +10.020;1.210;10.020;835.3;1.210;1.210;1;0;1;0.017;0.000;1.9;! +10.040;1.173;10.040;837.4;1.173;1.173;1;0;1;0.020;0.000;2.1;! +10.060;1.113;10.060;839.7;1.113;1.113;1;0;1;0.021;0.000;2.0;! +10.080;1.053;10.080;841.9;1.053;1.053;1;0;1;0.019;0.000;1.5;! +10.100;0.993;10.100;844.2;0.993;0.993;1;0;1;0.020;0.000;1.1;! +10.120;0.933;10.120;846.4;0.933;0.933;1;0;1;0.022;0.000;1.0;! +10.140;1.202;10.140;848.4;1.202;1.202;1;0;1;0.019;0.000;0.8;! +10.160;2.532;10.160;849.5;2.532;2.532;1;0;1;0.021;0.000;0.9;! +10.180;2.896;10.180;850.6;2.896;2.896;1;0;1;0.025;0.000;1.2;! +10.200;2.448;10.200;851.7;2.448;2.448;1;0;1;0.032;0.000;1.6;! +10.220;2.005;10.220;852.8;2.005;2.005;1;0;1;0.037;0.000;1.8;! +10.240;1.710;10.240;853.9;1.710;1.710;1;0;1;0.037;0.000;1.8;! +10.260;1.522;10.260;855.0;1.522;1.522;1;0;1;0.036;0.000;1.8;! +10.280;1.548;10.280;856.1;1.548;1.548;1;0;1;0.038;0.000;1.9;! +10.300;1.817;10.300;857.2;1.817;1.817;1;0;1;0.033;0.000;1.6;! +10.320;2.216;10.320;858.3;2.216;2.216;1;0;1;0.034;0.000;1.5;! +10.340;2.490;10.340;859.4;2.490;2.490;1;0;1;0.031;0.000;1.2;! +10.360;2.779;10.360;860.6;2.779;2.779;1;0;1;0.034;0.000;1.2;! +10.380;3.334;10.380;861.7;3.334;3.334;1;0;1;0.035;0.000;1.1;! +10.400;3.796;10.400;862.8;3.796;3.796;1;0;1;0.035;0.000;1.0;! +10.420;4.074;10.420;863.8;4.074;4.074;1;0;1;0.036;0.000;1.0;! +10.440;3.983;10.440;865.0;3.983;3.983;1;0;1;0.035;0.000;0.9;! +10.460;3.758;10.460;867.6;3.758;3.758;1;0;1;0.038;0.000;1.0;! +10.480;3.522;10.480;871.5;3.522;3.522;1;0;1;0.039;0.000;1.0;! +10.500;3.287;10.500;875.1;3.287;3.287;1;0;1;0.039;0.000;1.1;! +10.520;3.083;10.520;876.2;3.083;3.083;1;0;1;0.038;0.000;1.2;! +10.540;2.912;10.540;877.3;2.912;2.912;1;0;1;0.035;0.000;1.1;! +10.560;2.838;10.560;878.4;2.838;2.838;1;0;1;0.035;0.000;1.1;! +10.580;2.849;10.580;879.5;2.849;2.849;1;0;1;0.035;0.000;1.2;! +10.600;2.822;10.600;880.6;2.822;2.822;1;0;1;0.037;0.000;1.3;! +10.620;2.665;10.620;881.7;2.665;2.665;1;0;1;0.040;0.000;1.4;! +10.640;2.512;10.640;882.8;2.512;2.512;1;0;1;0.039;0.000;1.4;! +10.660;2.466;10.660;883.9;2.466;2.466;1;0;1;0.035;0.000;1.2;! +10.680;2.548;10.680;885.0;2.548;2.548;1;0;1;0.036;0.000;1.2;! +10.700;2.825;10.700;886.1;2.825;2.825;1;0;1;0.035;0.000;1.1;! +10.720;3.276;10.720;887.2;3.276;3.276;1;0;1;0.035;0.000;1.1;! +10.740;3.607;10.740;888.3;3.607;3.607;1;0;1;0.036;0.000;1.0;! +10.760;3.728;10.760;889.5;3.728;3.728;1;0;1;0.036;0.000;1.0;! +10.780;3.760;10.780;890.7;3.760;3.760;1;0;1;0.036;0.000;0.9;! +10.800;3.753;10.800;891.8;3.753;3.753;1;0;1;0.035;0.000;0.9;! +10.820;3.763;10.820;892.9;3.763;3.763;1;0;1;0.037;0.000;0.9;! +10.840;3.821;10.840;894.2;3.821;3.821;1;0;1;0.038;0.000;0.9;! +10.860;3.896;10.860;895.4;3.896;3.896;1;0;1;0.039;0.000;1.0;! +10.880;3.903;10.880;896.7;3.903;3.903;1;0;1;0.039;0.000;1.0;! +10.900;3.850;10.900;897.8;3.850;3.850;1;0;1;0.039;0.000;1.0;! +10.920;3.781;10.920;899.1;3.781;3.781;1;0;1;0.040;0.000;1.0;! +10.940;3.711;10.940;900.2;3.711;3.711;1;0;1;0.039;0.000;1.0;! +10.960;3.646;10.960;901.4;3.646;3.646;1;0;1;0.039;0.000;1.0;! +10.980;3.567;10.980;902.5;3.567;3.567;1;0;1;0.038;0.000;1.0;! +11.000;3.538;11.000;903.6;3.538;3.538;1;0;1;0.037;0.000;1.0;! +11.020;3.547;11.020;904.7;3.547;3.547;1;0;1;0.035;0.000;0.9;! +11.040;3.528;11.040;906.1;3.528;3.528;1;0;1;0.034;0.000;0.9;! +11.060;3.478;11.060;907.2;3.478;3.478;1;0;1;0.036;0.000;1.0;! +11.080;3.386;11.080;908.4;3.386;3.386;1;0;1;0.037;0.000;1.0;! +11.100;3.357;11.100;912.0;3.357;3.357;1;0;1;0.038;0.000;1.1;! +11.120;3.331;11.120;915.8;3.331;3.331;1;0;1;0.038;0.000;1.0;! +11.140;3.411;11.140;917.4;3.411;3.411;1;0;1;0.037;0.000;1.0;! +11.160;3.529;11.160;918.4;3.529;3.529;1;0;1;0.038;0.000;1.0;! +11.180;3.614;11.180;919.6;3.614;3.614;1;0;1;0.039;0.000;1.0;! +11.200;3.710;11.200;920.7;3.710;3.710;1;0;1;0.041;0.000;1.1;! +11.220;3.720;11.220;921.8;3.720;3.720;1;0;1;0.042;0.000;1.1;! +11.240;3.691;11.240;922.9;3.691;3.691;1;0;1;0.043;0.000;1.1;! +11.260;3.753;11.260;924.1;3.753;3.753;1;0;1;0.040;0.000;1.0;! +11.280;3.880;11.280;925.2;3.880;3.880;1;0;1;0.040;0.000;1.0;! +11.300;4.031;11.300;926.3;4.031;4.031;1;0;1;0.039;0.000;1.0;! +11.320;4.001;11.320;927.4;4.001;4.001;1;0;1;0.038;0.000;1.0;! +11.340;3.773;11.340;928.5;3.773;3.773;1;0;1;0.037;0.000;1.0;! +11.360;3.568;11.360;929.6;3.568;3.568;1;0;1;0.037;0.000;1.0;! +11.380;3.398;11.380;930.7;3.398;3.398;1;0;1;0.037;0.000;1.0;! +11.400;3.345;11.400;931.9;3.345;3.345;1;0;1;0.037;0.000;1.0;! +11.420;3.377;11.420;933.2;3.377;3.377;1;0;1;0.036;0.000;1.0;! +11.440;3.472;11.440;934.2;3.472;3.472;1;0;1;0.037;0.000;1.0;! +11.460;3.609;11.460;935.3;3.609;3.609;1;0;1;0.041;0.000;1.1;! +11.480;3.577;11.480;939.4;3.577;3.577;1;0;1;0.045;0.000;1.3;! +11.500;3.513;11.500;944.1;3.513;3.513;1;0;1;0.051;0.000;1.4;! +11.520;3.424;11.520;948.2;3.424;3.424;1;0;1;0.053;0.000;1.3;! +11.540;3.297;11.540;949.2;3.297;3.297;1;0;1;0.058;0.000;1.2;! +11.560;3.676;11.560;950.3;3.676;3.676;1;0;1;0.058;0.000;1.0;! +11.580;5.296;11.580;951.4;5.296;5.296;1;0;1;0.063;0.000;1.0;! +11.600;7.508;11.600;952.6;7.508;7.508;1;0;1;0.069;0.000;0.9;! +11.620;9.576;11.620;953.7;9.576;9.576;1;0;1;0.075;0.000;0.8;! +11.640;11.067;11.640;954.8;11.067;11.067;1;0;1;0.082;0.000;0.8;! +11.660;12.095;11.660;955.9;12.095;12.095;1;0;1;0.089;0.000;0.7;! +11.680;12.809;11.680;956.9;12.809;12.809;1;0;1;0.097;0.000;0.7;! +11.700;13.436;11.700;958.1;13.436;13.436;1;0;1;0.107;0.000;0.8;! +11.720;13.843;11.720;959.3;13.843;13.843;1;0;1;0.114;0.000;0.8;! +11.740;14.380;11.740;960.4;14.380;14.380;1;0;1;0.119;0.000;0.8;! +11.760;14.797;11.760;961.5;14.797;14.797;1;0;1;0.124;0.000;0.8;! +11.780;14.914;11.780;962.6;14.914;14.914;1;0;1;0.127;0.000;0.8;! +11.800;15.147;11.800;963.7;15.147;15.147;1;0;1;0.130;0.000;0.8;! +11.820;15.525;11.820;964.8;15.525;15.525;1;0;1;0.136;0.000;0.8;! +11.840;15.828;11.840;965.9;15.828;15.828;1;0;1;0.137;0.000;0.8;! +11.860;15.976;11.860;967.0;15.976;15.976;1;0;1;0.138;0.000;0.8;! +11.880;15.862;11.880;968.1;15.862;15.862;1;0;1;0.140;0.000;0.9;! +11.900;15.358;11.900;969.2;15.358;15.358;1;0;1;0.142;0.000;0.9;! +11.920;14.830;11.920;970.3;14.830;14.830;1;0;1;0.143;0.000;0.9;! +11.940;14.459;11.940;971.4;14.459;14.459;1;0;1;0.143;0.000;0.9;! +11.960;14.376;11.960;972.6;14.376;14.376;1;0;1;0.142;0.000;0.9;! +11.980;14.379;11.980;973.7;14.379;14.379;1;0;1;0.141;0.000;0.9;! +12.000;14.209;12.000;974.8;14.209;14.209;1;0;1;0.138;0.000;0.9;! +12.020;13.949;12.020;975.9;13.949;13.949;1;0;1;0.134;0.000;0.9;! +12.040;13.730;12.040;977.1;13.730;13.730;1;0;1;0.122;0.000;0.8;! +12.060;13.649;12.060;978.1;13.649;13.649;1;0;1;0.110;0.000;0.7;! +12.080;13.616;12.080;979.2;13.616;13.616;1;0;1;0.110;0.000;0.8;! +12.100;13.620;12.100;980.3;13.620;13.620;1;0;1;0.115;0.000;0.8;! +12.120;13.424;12.120;983.1;13.424;13.424;1;0;1;0.119;0.000;0.8;! +12.140;13.189;12.140;986.2;13.189;13.189;1;0;1;0.118;0.000;0.8;! +12.160;13.014;12.160;988.4;13.014;13.014;1;0;1;0.118;0.000;0.9;! +12.180;12.802;12.180;989.6;12.802;12.802;1;0;1;0.118;0.000;0.9;! +12.200;12.600;12.200;990.6;12.600;12.600;1;0;1;0.118;0.000;0.9;! +12.220;12.525;12.220;991.7;12.525;12.525;1;0;1;0.117;0.000;0.9;! +12.240;12.429;12.240;992.8;12.429;12.429;1;0;1;0.115;0.000;0.9;! +12.260;12.197;12.260;993.9;12.197;12.197;1;0;1;0.113;0.000;0.9;! +12.280;11.859;12.280;995.1;11.859;11.859;1;0;1;0.111;0.000;0.9;! +12.300;11.527;12.300;996.2;11.527;11.527;1;0;1;0.109;0.000;0.9;! +12.320;11.224;12.320;997.3;11.224;11.224;1;0;1;0.107;0.000;0.9;! +12.340;11.079;12.340;998.3;11.079;11.079;1;0;1;0.103;0.000;0.8;! +12.360;11.213;12.360;999.5;11.213;11.213;1;0;1;0.099;0.000;0.8;! +12.380;11.487;12.380;1000.6;11.487;11.487;1;0;1;0.096;0.000;0.8;! +12.400;11.650;12.400;1001.7;11.650;11.650;1;0;1;0.093;0.000;0.8;! +12.420;11.686;12.420;1002.8;11.686;11.686;1;0;1;0.086;0.000;0.7;! +12.440;11.737;12.440;1003.9;11.737;11.737;1;0;1;0.079;0.000;0.6;! +12.460;11.865;12.460;1005.1;11.865;11.865;1;0;1;0.084;0.000;0.7;! +12.480;11.883;12.480;1006.4;11.883;11.883;1;0;1;0.088;0.000;0.7;! +12.500;11.588;12.500;1010.8;11.588;11.588;1;0;1;0.091;0.000;0.7;! +12.520;11.294;12.520;1015.2;11.294;11.294;1;0;1;0.094;0.000;0.8;! +12.540;11.122;12.540;1017.7;11.122;11.122;1;0;1;0.098;0.000;0.9;! +12.560;10.821;12.560;1018.8;10.821;10.821;1;0;1;0.100;0.000;0.9;! +12.580;10.478;12.580;1019.9;10.478;10.478;1;0;1;0.101;0.000;0.9;! +12.600;10.071;12.600;1021.1;10.071;10.071;1;0;1;0.099;0.000;0.9;! +12.620;9.618;12.620;1022.3;9.618;9.618;1;0;1;0.098;0.000;0.9;! +12.640;9.310;12.640;1023.6;9.310;9.310;1;0;1;0.096;0.000;1.0;! +12.660;9.078;12.660;1025.1;9.078;9.078;1;0;1;0.093;0.000;1.0;! +12.680;8.831;12.680;1026.4;8.831;8.831;1;0;1;0.090;0.000;1.0;! +12.700;8.430;12.700;1027.5;8.430;8.430;1;0;1;0.087;0.000;1.0;! +12.720;7.924;12.720;1028.6;7.924;7.924;1;0;1;0.082;0.000;1.0;! +12.740;7.440;12.740;1029.7;7.440;7.440;1;0;1;0.078;0.000;1.0;! +12.760;6.989;12.760;1030.8;6.989;6.989;1;0;1;0.073;0.000;1.0;! +12.780;6.523;12.780;1032.1;6.523;6.523;1;0;1;0.069;0.000;1.0;! +12.800;6.166;12.800;1033.2;6.166;6.166;1;0;1;0.064;0.000;1.0;! +12.820;5.765;12.820;1034.2;5.765;5.765;1;0;1;0.060;0.000;1.0;! +12.840;5.343;12.840;1035.3;5.343;5.343;1;0;1;0.056;0.000;1.0;! +12.860;4.911;12.860;1036.4;4.911;4.911;1;0;1;0.051;0.000;1.0;! +12.880;4.440;12.880;1037.5;4.440;4.440;1;0;1;0.047;0.000;1.0;! +12.900;3.951;12.900;1038.6;3.951;3.951;1;0;1;0.044;0.000;1.0;! +12.920;3.459;12.920;1039.8;3.459;3.459;1;0;1;0.042;0.000;1.1;! +12.940;3.055;12.940;1041.2;3.055;3.055;1;0;1;0.041;0.000;1.2;! +12.960;2.839;12.960;1042.3;2.839;2.839;1;0;1;0.043;0.000;1.3;! +12.980;2.653;12.980;1043.4;2.653;2.653;1;0;1;0.044;0.000;1.4;! +13.000;2.587;13.000;1044.6;2.587;2.587;1;0;1;0.044;0.000;1.5;! +13.020;2.672;13.020;1045.8;2.672;2.672;1;0;1;0.041;0.000;1.4;! +13.040;2.872;13.040;1047.1;2.872;2.872;1;0;1;0.040;0.000;1.3;! +13.060;3.114;13.060;1048.6;3.114;3.114;1;0;1;0.039;0.000;1.2;! +13.080;3.435;13.080;1050.1;3.435;3.435;1;0;1;0.037;0.000;1.1;! +13.100;3.714;13.100;1051.3;3.714;3.714;1;0;1;0.036;0.000;1.0;! +13.120;3.985;13.120;1053.2;3.985;3.985;1;0;1;0.034;0.000;0.9;! +13.140;4.225;13.140;1056.0;4.225;4.225;1;0;1;0.034;0.000;0.8;! +13.160;4.466;13.160;1058.8;4.466;4.466;1;0;1;0.035;0.000;0.8;! +13.180;4.756;13.180;1060.6;4.756;4.756;1;0;1;0.036;0.000;0.7;! +13.200;5.073;13.200;1061.7;5.073;5.073;1;0;1;0.039;0.000;0.7;! +13.220;5.283;13.220;1063.5;5.283;5.283;1;0;1;0.041;0.000;0.8;! +13.240;5.366;13.240;1067.6;5.366;5.366;1;0;1;0.045;0.000;0.8;! +13.260;5.450;13.260;1071.7;5.450;5.450;1;0;1;0.049;0.000;0.9;! +13.280;5.471;13.280;1074.1;5.471;5.471;1;0;1;0.053;0.000;1.0;! +13.300;5.370;13.300;1075.2;5.370;5.370;1;0;1;0.056;0.000;1.0;! +13.320;5.175;13.320;1076.3;5.175;5.175;1;0;1;0.058;0.000;1.1;! +13.340;4.883;13.340;1077.4;4.883;4.883;1;0;1;0.058;0.000;1.2;! +13.360;4.552;13.360;1078.4;4.552;4.552;1;0;1;0.057;0.000;1.2;! +13.380;4.188;13.380;1079.6;4.188;4.188;1;0;1;0.056;0.000;1.3;! +13.400;3.840;13.400;1080.7;3.840;3.840;1;0;1;0.055;0.000;1.3;! +13.420;3.549;13.420;1081.7;3.549;3.549;1;0;1;0.053;0.000;1.4;! +13.440;3.312;13.440;1082.8;3.312;3.312;1;0;1;0.051;0.000;1.4;! +13.460;3.136;13.460;1083.9;3.136;3.136;1;0;1;0.048;0.000;1.4;! +13.480;2.905;13.480;1085.0;2.905;2.905;1;0;1;0.047;0.000;1.5;! +13.500;2.588;13.500;1086.1;2.588;2.588;1;0;1;0.050;0.000;1.8;! +13.520;2.199;13.520;1088.9;2.199;2.199;1;0;1;0.053;0.000;2.1;! +13.540;1.857;13.540;1093.0;1.857;1.857;1;0;1;0.046;0.000;2.0;! +13.560;1.515;13.560;1097.0;1.515;1.515;1;0;1;0.046;0.000;2.1;! +13.580;1.512;13.580;1098.1;1.512;1.512;1;0;1;0.044;0.000;1.9;! +13.600;1.842;13.600;1099.2;1.842;1.842;1;0;1;0.042;0.000;1.6;! +13.620;2.692;13.620;1100.3;2.692;2.692;1;0;1;0.040;0.000;1.4;! +13.640;3.319;13.640;1101.4;3.319;3.319;1;0;1;0.039;0.000;1.3;! +13.660;3.619;13.660;1102.5;3.619;3.619;1;0;1;0.038;0.000;1.1;! +13.680;3.940;13.680;1103.6;3.940;3.940;1;0;1;0.037;0.000;1.0;! +13.700;4.096;13.700;1104.7;4.096;4.096;1;0;1;0.038;0.000;1.0;! +13.720;4.035;13.720;1105.8;4.035;4.035;1;0;1;0.038;0.000;0.9;! +13.740;3.874;13.740;1107.1;3.874;3.874;1;0;1;0.039;0.000;1.0;! +13.760;3.788;13.760;1108.1;3.788;3.788;1;0;1;0.041;0.000;1.1;! +13.780;3.582;13.780;1109.2;3.582;3.582;1;0;1;0.043;0.000;1.2;! +13.800;3.333;13.800;1110.3;3.333;3.333;1;0;1;0.045;0.000;1.3;! +13.820;3.021;13.820;1111.4;3.021;3.021;1;0;1;0.049;0.000;1.5;! +13.840;2.711;13.840;1112.5;2.711;2.711;1;0;1;0.051;0.000;1.8;! +13.860;2.430;13.860;1113.6;2.430;2.430;1;0;1;0.052;0.000;2.1;! +13.880;2.130;13.880;1114.7;2.130;2.130;1;0;1;0.061;0.000;2.8;! +13.900;1.799;13.900;1115.8;1.799;1.799;1;0;1;0.062;0.000;3.3;! +13.920;1.466;13.920;1116.8;1.466;1.466;1;0;1;0.059;0.000;3.7;! +13.940;1.129;13.940;1118.0;1.129;1.129;1;0;1;0.056;0.000;4.1;! +13.960;0.918;13.960;1119.1;0.918;0.918;1;0;1;0.054;0.000;4.5;! +13.980;0.839;13.980;1120.2;0.839;0.839;1;0;1;0.054;0.000;4.9;! +14.000;0.868;14.000;1121.3;0.868;0.868;1;0;1;0.053;0.000;4.9;! +14.020;0.972;14.020;1122.4;0.972;0.972;1;0;1;0.048;0.000;4.1;! +14.040;1.018;14.040;1123.5;1.018;1.018;1;0;1;0.047;0.000;3.6;! +14.060;1.409;14.060;1124.6;1.409;1.409;1;0;1;0.045;0.000;3.1;! +14.080;2.158;14.080;1125.7;2.158;2.158;1;0;1;0.044;0.000;2.7;! +14.100;3.197;14.100;1126.8;3.197;3.197;1;0;1;0.046;0.000;1.9;! +14.120;3.818;14.120;1129.8;3.818;3.818;1;0;1;0.045;0.000;1.5;! +14.140;4.344;14.140;1133.2;4.344;4.344;1;0;1;0.047;0.000;1.3;! +14.160;4.837;14.160;1136.6;4.837;4.837;1;0;1;0.051;0.000;1.3;! +14.180;4.610;14.180;1137.7;4.610;4.610;1;0;1;0.057;0.000;1.4;! +14.200;4.155;14.200;1138.8;4.155;4.155;1;0;1;0.063;0.000;1.7;! +14.220;3.505;14.220;1139.8;3.505;3.505;1;0;1;0.071;0.000;2.1;! +14.240;2.712;14.240;1140.9;2.712;2.712;1;0;1;0.079;0.000;2.7;! +14.260;2.021;14.260;1142.1;2.021;2.021;1;0;1;0.082;0.000;3.3;! +14.280;1.557;14.280;1143.1;1.557;1.557;1;0;1;0.082;0.000;4.1;! +14.300;1.237;14.300;1144.2;1.237;1.237;1;0;1;0.079;0.000;5.0;! +14.320;0.975;14.320;1145.3;0.975;0.975;1;0;1;0.078;0.000;6.3;! +14.340;0.802;14.340;1146.4;0.802;0.802;1;0;1;0.074;0.000;7.4;! +14.360;0.699;14.360;1147.5;0.699;0.699;1;0;1;0.067;0.000;7.9;! +14.380;0.649;14.380;1148.6;0.649;0.649;1;0;1;0.058;0.000;8.0;! +14.400;0.607;14.400;1149.7;0.607;0.607;1;0;1;0.047;0.000;7.4;! +14.420;0.561;14.420;1150.8;0.561;0.561;1;0;1;0.041;0.000;6.7;! +14.440;0.507;14.440;1151.9;0.507;0.507;1;0;1;0.035;0.000;6.0;! +14.460;0.460;14.460;1153.0;0.460;0.460;1;0;1;0.028;0.000;5.3;! +14.480;0.439;14.480;1154.1;0.439;0.439;1;0;1;0.023;0.000;4.7;! +14.500;0.434;14.500;1156.7;0.434;0.434;1;0;1;0.021;0.000;4.4;! +14.520;0.433;14.520;1160.2;0.433;0.433;1;0;1;0.018;0.000;4.0;! +14.540;0.431;14.540;1163.6;0.431;0.431;1;0;1;0.016;0.000;3.8;! +14.560;0.430;14.560;1165.7;0.430;0.430;1;0;1;0.016;0.000;3.9;! +14.580;0.412;14.580;1166.8;0.412;0.412;1;0;1;0.016;0.000;3.8;! +14.600;0.398;14.600;1167.9;0.398;0.398;1;0;1;0.016;0.000;3.8;! +14.620;0.395;14.620;1168.9;0.395;0.395;1;0;1;0.016;0.000;3.9;! +14.640;0.390;14.640;1170.1;0.390;0.390;1;0;1;0.015;0.000;3.8;! +14.660;0.387;14.660;1171.2;0.387;0.387;1;0;1;0.015;0.000;3.8;! +14.680;0.390;14.680;1172.3;0.390;0.390;1;0;1;0.015;0.000;3.8;! +14.700;0.391;14.700;1173.3;0.391;0.391;1;0;1;0.016;0.000;3.9;! +14.720;0.393;14.720;1174.4;0.393;0.393;1;0;1;0.016;0.000;3.9;! +14.740;0.405;14.740;1175.5;0.405;0.405;1;0;1;0.016;0.000;3.9;! +14.760;0.411;14.760;1176.6;0.411;0.411;1;0;1;0.016;0.000;3.9;! +14.780;0.409;14.780;1177.7;0.409;0.409;1;0;1;0.016;0.000;3.9;! +14.800;0.402;14.800;1178.8;0.402;0.402;1;0;1;0.016;0.000;3.9;! +14.820;0.392;14.820;1179.9;0.392;0.392;1;0;1;0.016;0.000;3.9;! +14.840;0.382;14.840;1181.0;0.382;0.382;1;0;1;0.015;0.000;3.9;! +14.860;0.378;14.860;1182.1;0.378;0.378;1;0;1;0.015;0.000;3.9;! +14.880;0.379;14.880;1183.2;0.379;0.379;1;0;1;0.015;0.000;3.9;! +14.900;0.382;14.900;1184.3;0.382;0.382;1;0;1;0.015;0.000;3.9;! +14.920;0.380;14.920;1185.4;0.380;0.380;1;0;1;0.015;0.000;3.9;! +14.940;0.377;14.940;1186.5;0.377;0.377;1;0;1;0.015;0.000;3.9;! +14.960;0.373;14.960;1187.6;0.373;0.373;1;0;1;0.015;0.000;3.9;! +14.980;0.371;14.980;1188.7;0.371;0.371;1;0;1;0.015;0.000;3.9;! +15.000;0.370;15.000;1189.8;0.370;0.370;1;0;1;0.015;0.000;3.9;! +15.020;0.370;15.020;1190.8;0.370;0.370;1;0;1;0.014;0.000;3.9;! +15.040;0.367;15.040;1191.9;0.367;0.367;1;0;1;0.014;0.000;3.8;! +15.060;0.363;15.060;1193.0;0.363;0.363;1;0;1;0.014;0.000;3.8;! +15.080;0.362;15.080;1194.1;0.362;0.362;1;0;1;0.014;0.000;3.8;! +15.100;0.365;15.100;1195.4;0.365;0.365;1;0;1;0.014;0.000;3.8;! +15.120;0.364;15.120;1198.4;0.364;0.364;1;0;1;0.014;0.000;3.9;! +15.140;0.364;15.140;1201.3;0.364;0.364;1;0;1;0.015;0.000;3.9;! +15.160;0.363;15.160;1203.8;0.363;0.363;1;0;1;0.015;0.000;3.9;! +15.180;0.364;15.180;1204.9;0.364;0.364;1;0;1;0.015;0.000;3.9;! +15.200;0.367;15.200;1206.0;0.367;0.367;1;0;1;0.014;0.000;3.9;! +15.220;0.366;15.220;1207.1;0.366;0.366;1;0;1;0.014;0.000;3.9;! +15.240;0.363;15.240;1208.2;0.363;0.363;1;0;1;0.014;0.000;3.9;! +15.260;0.363;15.260;1209.3;0.363;0.363;1;0;1;0.014;0.000;3.9;! +15.280;0.366;15.280;1210.3;0.366;0.366;1;0;1;0.014;0.000;3.8;! +15.300;0.371;15.300;1211.4;0.371;0.371;1;0;1;0.014;0.000;3.8;! +15.320;0.379;15.320;1212.6;0.379;0.379;1;0;1;0.015;0.000;3.8;! +15.340;0.390;15.340;1213.7;0.390;0.390;1;0;1;0.016;0.000;3.9;! +15.360;0.400;15.360;1214.8;0.400;0.400;1;0;1;0.017;0.000;3.3;! +15.380;0.418;15.380;1215.9;0.418;0.418;1;0;1;0.016;0.000;1.9;! +15.400;0.453;15.400;1217.0;0.453;0.453;1;0;1;0.019;0.000;1.5;! +15.420;0.986;15.420;1218.1;0.986;0.986;1;0;1;0.022;0.000;1.4;! +15.440;2.307;15.440;1219.2;2.307;2.307;1;0;1;0.024;0.000;1.3;! +15.460;3.543;15.460;1220.3;3.543;3.543;1;0;1;0.026;0.000;1.2;! +15.480;3.863;15.480;1221.4;3.863;3.863;1;0;1;0.031;0.000;1.3;! +15.500;3.479;15.500;1223.8;3.479;3.479;1;0;1;0.037;0.000;1.3;! +15.520;3.002;15.520;1227.3;3.002;3.002;1;0;1;0.042;0.000;1.5;! +15.540;2.526;15.540;1230.9;2.526;2.526;1;0;1;0.049;0.000;2.0;! +15.560;2.051;15.560;1233.1;2.051;2.051;1;0;1;0.055;0.000;3.0;! +15.580;1.614;15.580;1234.2;1.614;1.614;1;0;1;0.057;0.000;3.5;! +15.600;1.304;15.600;1235.3;1.304;1.304;1;0;1;0.053;0.000;3.4;! +15.620;1.092;15.620;1236.4;1.092;1.092;1;0;1;0.041;0.000;2.7;! +15.640;0.972;15.640;1237.5;0.972;0.972;1;0;1;0.035;0.000;2.7;! +15.660;0.928;15.660;1238.6;0.928;0.928;1;0;1;0.029;0.000;2.3;! +15.680;1.165;15.680;1239.7;1.165;1.165;1;0;1;0.026;0.000;2.0;! +15.700;1.433;15.700;1241.0;1.433;1.433;1;0;1;0.025;0.000;1.9;! +15.720;1.499;15.720;1242.5;1.499;1.499;1;0;1;0.023;0.000;1.6;! +15.740;1.516;15.740;1243.8;1.516;1.516;1;0;1;0.022;0.000;1.5;! +15.760;1.514;15.760;1245.0;1.514;1.514;1;0;1;0.021;0.000;1.4;! +15.780;1.489;15.780;1246.2;1.489;1.489;1;0;1;0.027;0.000;1.9;! +15.800;1.489;15.800;1247.4;1.489;1.489;1;0;1;0.034;0.000;2.5;! +15.820;1.362;15.820;1248.6;1.362;1.362;1;0;1;0.038;0.000;3.0;! +15.840;1.123;15.840;1249.9;1.123;1.123;1;0;1;0.038;0.000;3.3;! +15.860;0.950;15.860;1251.0;0.950;0.950;1;0;1;0.039;0.000;3.6;! +15.880;0.785;15.880;1252.1;0.785;0.785;1;0;1;0.040;0.000;4.2;! +15.900;0.702;15.900;1253.2;0.702;0.702;1;0;1;0.041;0.000;4.9;! +15.920;0.680;15.920;1254.4;0.680;0.680;1;0;1;0.041;0.000;5.4;! +15.940;0.674;15.940;1255.8;0.674;0.674;1;0;1;0.041;0.000;5.6;! +15.960;0.698;15.960;1257.2;0.698;0.698;1;0;1;0.042;0.000;5.7;! +15.980;0.735;15.980;1258.5;0.735;0.735;1;0;1;0.045;0.000;6.2;! +16.000;0.775;16.000;1259.7;0.775;0.775;1;0;1;0.050;0.000;6.8;! +16.020;0.787;16.020;1260.9;0.787;0.787;1;1;1;0.053;0.000;7.1;! +16.040;0.770;16.040;1262.2;0.770;0.770;1;0;1;0.054;0.000;7.2;! +16.060;0.772;16.060;1263.3;0.772;0.772;1;1;1;0.055;0.000;7.4;! +16.080;0.730;16.080;1264.4;0.730;0.730;1;1;1;0.056;0.000;7.5;! +16.100;0.691;16.100;1265.5;0.691;0.691;1;1;1;0.055;0.000;7.6;! +16.120;0.658;16.120;1266.6;0.658;0.658;1;1;1;0.053;0.000;7.4;! +16.140;0.660;16.140;1269.0;0.660;0.660;1;1;1;0.050;0.000;7.1;! +16.160;0.676;16.160;1272.1;0.676;0.676;1;1;1;0.049;0.000;7.0;! +16.180;0.693;16.180;1275.2;0.693;0.693;1;1;1;0.049;0.000;6.9;! +16.200;0.686;16.200;1276.9;0.686;0.686;1;1;1;0.049;0.000;6.8;! +16.220;0.717;16.220;1278.4;0.717;0.717;1;1;1;0.052;0.000;7.0;! +16.240;0.738;16.240;1279.8;0.738;0.738;1;1;1;0.056;0.000;7.4;! +16.260;0.772;16.260;1281.3;0.772;0.772;1;1;1;0.060;0.000;7.9;! +16.280;0.808;16.280;1282.8;0.808;0.808;1;0;1;0.063;0.000;8.1;! +16.300;0.832;16.300;1284.3;0.832;0.832;1;0;1;0.065;0.000;8.2;! +16.320;0.819;16.320;1285.6;0.819;0.819;1;0;1;0.065;0.000;8.1;! +16.340;0.799;16.340;1286.9;0.799;0.799;1;1;1;0.061;0.000;7.7;! +16.360;0.783;16.360;1288.2;0.783;0.783;1;1;1;0.062;0.000;7.9;! +16.380;0.762;16.380;1289.6;0.762;0.762;1;1;1;0.057;0.000;7.5;! +16.400;0.748;16.400;1290.9;0.748;0.748;1;1;1;0.053;0.000;7.1;! +16.420;0.721;16.420;1292.3;0.721;0.721;1;1;1;0.049;0.000;6.7;! +16.440;0.669;16.440;1293.8;0.669;0.669;1;1;1;0.046;0.000;6.4;! +16.460;0.661;16.460;1294.9;0.661;0.661;1;1;1;0.042;0.000;6.1;! +16.480;0.614;16.480;1296.0;0.614;0.614;1;1;1;0.038;0.000;5.7;! +16.500;0.575;16.500;1297.5;0.575;0.575;1;0;1;0.033;0.000;5.4;! +16.520;0.550;16.520;1302.1;0.550;0.550;1;0;1;0.029;0.000;5.0;! +16.540;0.525;16.540;1306.7;0.525;0.525;1;0;1;0.026;0.000;4.6;! +16.560;0.504;16.560;1309.5;0.504;0.504;1;0;1;0.023;0.000;4.4;! +16.580;0.506;16.580;1310.6;0.506;0.506;1;1;1;0.021;0.000;4.1;! +16.600;0.511;16.600;1311.7;0.511;0.511;1;1;1;0.019;0.000;3.8;! +16.620;0.506;16.620;1312.8;0.506;0.506;1;1;1;0.019;0.000;3.7;! +16.640;0.491;16.640;1313.9;0.491;0.491;1;1;1;0.018;0.000;3.7;! +16.660;0.475;16.660;1315.1;0.475;0.475;1;1;1;0.019;0.000;3.9;! +16.680;0.460;16.680;1316.2;0.460;0.460;1;0;1;0.018;0.000;3.8;! +16.700;0.450;16.700;1317.3;0.450;0.450;1;1;1;0.017;0.000;3.8;! +16.720;0.428;16.720;1318.7;0.428;0.428;1;1;1;0.016;0.000;3.6;! +16.740;0.420;16.740;1319.9;0.420;0.420;1;1;1;0.016;0.000;3.6;! +16.760;0.423;16.760;1320.9;0.423;0.423;1;1;1;0.015;0.000;3.5;! +16.780;0.412;16.780;1322.0;0.412;0.412;1;1;1;0.014;0.000;3.3;! +16.800;0.398;16.800;1323.2;0.398;0.398;1;1;1;0.013;0.000;3.2;! +16.820;0.392;16.820;1324.2;0.392;0.392;1;1;1;0.014;0.000;3.3;! +16.840;0.401;16.840;1325.3;0.401;0.401;1;1;1;0.014;0.000;3.3;! +16.860;0.415;16.860;1326.5;0.415;0.415;1;0;1;0.014;0.000;3.4;! +16.880;0.420;16.880;1327.8;0.420;0.420;1;0;1;0.014;0.000;3.3;! +16.900;0.417;16.900;1329.1;0.417;0.417;1;1;1;0.013;0.000;3.1;! +16.920;0.416;16.920;1330.4;0.416;0.416;1;0;1;0.013;0.000;3.1;! +16.940;0.423;16.940;1331.6;0.423;0.423;1;1;1;0.014;0.000;3.3;! +16.960;0.422;16.960;1332.9;0.422;0.422;1;0;1;0.015;0.000;3.3;! +16.980;0.429;16.980;1334.2;0.429;0.429;1;1;1;0.014;0.000;2.9;! +17.000;0.445;17.000;1335.3;0.445;0.445;1;1;1;0.016;0.000;2.7;! +17.020;0.491;17.020;1336.5;0.491;0.491;1;0;1;0.015;0.000;2.1;! +17.040;0.706;17.040;1337.7;0.706;0.706;1;1;1;0.013;0.000;1.6;! +17.060;1.075;17.060;1338.8;1.075;1.075;1;1;1;0.013;0.000;1.4;! +17.080;1.357;17.080;1340.0;1.357;1.357;1;1;1;0.013;0.000;1.2;! +17.100;1.410;17.100;1341.2;1.410;1.410;1;1;1;0.014;0.000;1.2;! +17.120;1.322;17.120;1342.4;1.322;1.322;1;1;1;0.017;0.000;1.4;! +17.140;1.195;17.140;1345.6;1.195;1.195;1;1;1;0.023;0.000;2.0;! +17.160;1.070;17.160;1349.1;1.070;1.070;1;1;1;0.026;0.000;2.3;! +17.180;0.919;17.180;1351.5;0.919;0.919;1;1;1;0.028;0.000;2.6;! +17.200;0.778;17.200;1352.6;0.778;0.778;1;1;1;0.032;0.000;3.0;! +17.220;0.898;17.220;1353.7;0.898;0.898;1;1;1;0.028;0.000;2.5;! +17.240;1.116;17.240;1354.8;1.116;1.116;1;1;1;0.023;0.000;1.9;! +17.260;1.272;17.260;1355.8;1.272;1.272;1;1;1;0.021;0.000;1.7;! +17.280;1.449;17.280;1356.9;1.449;1.449;1;1;1;0.020;0.000;1.5;! +17.300;1.594;17.300;1358.0;1.594;1.594;1;1;1;0.017;0.000;1.2;! +17.320;1.574;17.320;1359.2;1.574;1.574;1;1;1;0.020;0.000;1.5;! +17.340;1.366;17.340;1360.3;1.366;1.366;1;1;1;0.024;0.000;1.9;! +17.360;1.127;17.360;1361.5;1.127;1.127;1;1;1;0.023;0.000;2.0;! +17.380;0.887;17.380;1362.8;0.887;0.887;1;1;1;0.023;0.000;2.3;! +17.400;0.704;17.400;1364.0;0.704;0.704;1;1;1;0.023;0.000;2.6;! +17.420;0.621;17.420;1365.2;0.621;0.621;1;0;1;0.021;0.000;2.7;! +17.440;0.563;17.440;1366.3;0.563;0.563;1;0;1;0.018;0.000;2.5;! +17.460;0.539;17.460;1367.4;0.539;0.539;1;1;1;0.015;0.000;2.4;! +17.480;0.534;17.480;1368.6;0.534;0.534;1;0;1;0.016;0.000;2.6;! +17.500;0.541;17.500;1370.2;0.541;0.541;1;1;1;0.016;0.000;2.5;! +17.520;0.581;17.520;1374.5;0.581;0.581;1;0;1;0.016;0.000;2.4;! +17.540;0.621;17.540;1378.8;0.621;0.621;1;0;1;0.017;0.000;2.5;! +17.560;0.761;17.560;1380.6;0.761;0.761;1;0;1;0.017;0.000;2.4;! +17.580;0.880;17.580;1381.8;0.880;0.880;1;0;1;0.017;0.000;2.5;! +17.600;0.779;17.600;1383.0;0.779;0.779;1;1;1;0.016;0.000;2.5;! +17.620;0.563;17.620;1384.2;0.563;0.563;1;0;1;0.016;0.000;2.4;! +17.640;0.479;17.640;1385.3;0.479;0.479;1;0;1;0.014;0.000;2.3;! +17.660;0.450;17.660;1386.4;0.450;0.450;1;1;1;0.013;0.000;2.2;! +17.680;0.460;17.680;1387.4;0.460;0.460;1;1;1;0.014;0.000;2.6;! +17.700;0.488;17.700;1388.6;0.488;0.488;1;1;1;0.018;0.000;2.9;! +17.720;0.528;17.720;1389.6;0.528;0.528;1;1;1;0.015;0.000;1.6;! +17.740;0.582;17.740;1390.7;0.582;0.582;1;1;1;0.017;0.000;1.0;! +17.760;0.942;17.760;1391.8;0.942;0.942;1;1;1;0.022;0.000;0.8;! +17.780;2.760;17.780;1392.9;2.760;2.760;1;1;1;0.029;0.000;0.8;! +17.800;5.603;17.800;1394.1;5.603;5.603;1;1;1;0.038;0.000;0.8;! +17.820;7.348;17.820;1395.1;7.348;7.348;1;1;1;0.048;0.000;0.8;! +17.840;8.445;17.840;1396.2;8.445;8.445;1;1;1;0.059;0.000;0.8;! +17.860;9.160;17.860;1397.3;9.160;9.160;1;1;1;0.071;0.000;0.8;! +17.880;9.744;17.880;1398.4;9.744;9.744;1;1;1;0.082;0.000;0.8;! +17.900;10.263;17.900;1399.6;10.263;10.263;1;1;1;0.088;0.000;0.8;! +17.920;10.621;17.920;1400.6;10.621;10.621;1;1;1;0.094;0.000;0.9;! +17.940;10.913;17.940;1401.8;10.913;10.913;1;1;1;0.100;0.000;0.9;! +17.960;11.192;17.960;1402.9;11.192;11.192;1;1;1;0.105;0.000;0.9;! +17.980;11.471;17.980;1404.0;11.471;11.471;1;1;1;0.108;0.000;0.9;! +18.000;11.774;18.000;1405.1;11.774;11.774;1;1;1;0.112;0.000;0.9;! +18.020;12.013;18.020;1406.3;12.013;12.013;1;1;1;0.115;0.000;0.9;! +18.040;12.121;18.040;1407.5;12.121;12.121;1;1;1;0.110;0.000;0.9;! +18.060;12.472;18.060;1408.6;12.472;12.472;1;1;1;0.103;0.000;0.8;! +18.080;12.894;18.080;1409.7;12.894;12.894;1;1;1;0.101;0.000;0.8;! +18.100;13.355;18.100;1410.9;13.355;13.355;1;0;1;0.110;0.000;0.8;! +18.120;13.622;18.120;1413.1;13.622;13.622;1;1;1;0.117;0.000;0.8;! +18.140;13.684;18.140;1416.6;13.684;13.684;1;1;1;0.123;0.000;0.9;! +18.160;13.747;18.160;1420.1;13.747;13.747;1;1;1;0.129;0.000;0.9;! +18.180;14.273;18.180;1421.4;14.273;14.273;1;1;1;0.134;0.000;0.9;! +18.200;14.642;18.200;1422.6;14.642;14.642;1;1;1;0.139;0.000;0.9;! +18.220;14.950;18.220;1423.7;14.950;14.950;1;1;1;0.144;0.000;0.9;! +18.240;15.180;18.240;1424.7;15.180;15.180;1;1;1;0.147;0.000;0.9;! +18.260;15.381;18.260;1425.8;15.381;15.381;1;1;1;0.148;0.000;0.9;! +18.280;15.599;18.280;1426.9;15.599;15.599;1;1;1;0.150;0.000;0.9;! +18.300;16.032;18.300;1428.0;16.032;16.032;1;1;1;0.155;0.000;0.9;! +18.320;16.624;18.320;1429.1;16.624;16.624;1;1;1;0.160;0.000;0.9;! +18.340;17.254;18.340;1430.2;17.254;17.254;1;1;1;0.165;0.000;0.9;! +18.360;17.838;18.360;1431.5;17.838;17.838;1;1;1;0.169;0.000;0.9;! +18.380;18.404;18.380;1432.6;18.404;18.404;1;1;1;0.175;0.000;0.9;! +18.400;19.186;18.400;1433.7;19.186;19.186;1;1;1;0.179;0.000;0.9;! +18.420;20.142;18.420;1434.8;20.142;20.142;1;1;1;0.175;0.000;0.8;! +18.440;21.095;18.440;1435.9;21.095;21.095;1;1;1;0.162;0.000;0.7;! +18.460;21.995;18.460;1437.0;21.995;21.995;1;1;1;0.149;0.000;0.7;! +18.480;22.782;18.480;1438.1;22.782;22.782;1;1;1;0.163;0.000;0.7;! +18.500;23.423;18.500;1439.6;23.423;23.423;1;1;1;0.177;0.000;0.7;! +18.520;23.516;18.520;1443.6;23.516;23.516;1;1;1;0.187;0.000;0.7;! +18.540;23.609;18.540;1447.5;23.609;23.609;1;1;1;0.196;0.000;0.8;! +18.560;24.401;18.560;1450.1;24.401;24.401;1;1;1;0.202;0.000;0.8;! +18.580;25.321;18.580;1451.2;25.321;25.321;1;1;1;0.208;0.000;0.8;! +18.600;26.210;18.600;1452.3;26.210;26.210;1;1;1;0.218;0.000;0.8;! +18.620;26.987;18.620;1453.4;26.987;26.987;1;1;1;0.230;0.000;0.8;! +18.640;27.657;18.640;1454.5;27.657;27.657;1;1;1;0.239;0.000;0.8;! +18.660;27.678;18.660;1455.6;27.678;27.678;1;1;1;0.248;0.000;0.9;! +18.680;27.484;18.680;1456.7;27.484;27.484;1;1;1;0.257;0.000;0.9;! +18.700;27.359;18.700;1457.8;27.359;27.359;1;1;1;0.266;0.000;0.9;! +18.720;27.494;18.720;1458.9;27.494;27.494;1;1;1;0.272;0.000;0.9;! +18.740;27.896;18.740;1460.0;27.896;27.896;1;1;1;0.278;0.000;1.0;! +18.760;28.162;18.760;1461.1;28.162;28.162;1;1;1;0.284;0.000;1.0;! +18.780;28.165;18.780;1462.2;28.165;28.165;1;1;1;0.288;0.000;1.0;! +18.800;28.216;18.800;1463.3;28.216;28.216;1;1;1;0.291;0.000;1.0;! +18.820;28.318;18.820;1464.4;28.318;28.318;1;1;1;0.298;0.000;1.0;! +18.840;28.095;18.840;1465.6;28.095;28.095;1;1;1;0.302;0.000;1.0;! +18.860;27.765;18.860;1466.7;27.765;27.765;1;1;1;0.307;0.000;1.1;! +18.880;27.306;18.880;1467.8;27.306;27.306;1;1;1;0.311;0.000;1.1;! +18.900;26.671;18.900;1468.9;26.671;26.671;1;1;1;0.311;0.000;1.1;! +18.920;26.125;18.920;1470.0;26.125;26.125;1;1;1;0.308;0.000;1.1;! +18.940;25.738;18.940;1471.1;25.738;25.738;1;1;1;0.305;0.000;1.1;! +18.960;25.499;18.960;1472.2;25.499;25.499;1;1;1;0.297;0.000;1.1;! +18.980;25.425;18.980;1473.3;25.425;25.425;1;1;1;0.289;0.000;1.1;! +19.000;25.634;19.000;1474.4;25.634;25.634;1;1;1;0.285;0.000;1.1;! +19.020;25.986;19.020;1475.5;25.986;25.986;1;1;1;0.284;0.000;1.1;! +19.040;26.051;19.040;1476.7;26.051;26.051;1;1;1;0.261;0.000;1.0;! +19.060;25.683;19.060;1477.8;25.683;25.683;1;1;1;0.235;0.000;0.9;! +19.080;24.701;19.080;1479.1;24.701;24.701;1;1;1;0.226;0.000;0.9;! +19.100;23.753;19.100;1480.5;23.753;23.753;1;1;1;0.238;0.000;0.9;! +19.120;22.839;19.120;1483.3;22.839;22.839;1;1;1;0.244;0.000;1.0;! +19.140;21.826;19.140;1487.3;21.826;21.826;1;1;1;0.251;0.000;1.0;! +19.160;21.683;19.160;1490.3;21.683;21.683;1;1;1;0.254;0.000;1.1;! +19.180;22.385;19.180;1491.4;22.385;22.385;1;1;1;0.248;0.000;1.1;! +19.200;22.584;19.200;1492.5;22.584;22.584;1;1;1;0.243;0.000;1.0;! +19.220;22.521;19.220;1493.6;22.521;22.521;1;1;1;0.241;0.000;1.0;! +19.240;22.198;19.240;1494.7;22.198;22.198;1;1;1;0.235;0.000;1.0;! +19.260;21.995;19.260;1495.8;21.995;21.995;1;1;1;0.228;0.000;1.0;! +19.280;22.007;19.280;1496.9;22.007;22.007;1;1;1;0.218;0.000;0.9;! +19.300;22.174;19.300;1498.0;22.174;22.174;1;1;1;0.211;0.000;0.9;! +19.320;22.261;19.320;1499.1;22.261;22.261;1;1;1;0.210;0.000;0.9;! +19.340;22.058;19.340;1500.2;22.058;22.058;1;1;1;0.208;0.000;0.9;! +19.360;21.464;19.360;1501.4;21.464;21.464;1;1;1;0.207;0.000;0.9;! +19.380;20.937;19.380;1502.5;20.937;20.937;1;1;1;0.208;0.000;0.9;! +19.400;20.598;19.400;1503.6;20.598;20.598;1;1;1;0.211;0.000;1.0;! +19.420;20.275;19.420;1504.7;20.275;20.275;1;1;1;0.211;0.000;1.0;! +19.440;19.984;19.440;1505.7;19.984;19.984;1;1;1;0.208;0.000;1.0;! +19.460;19.655;19.460;1506.8;19.655;19.655;1;1;1;0.200;0.000;1.0;! +19.480;19.362;19.480;1507.9;19.362;19.362;1;1;1;0.187;0.000;0.9;! +19.500;19.067;19.500;1509.0;19.067;19.067;1;1;1;0.173;0.000;0.8;! +19.520;18.837;19.520;1510.1;18.837;18.837;1;1;1;0.175;0.000;0.9;! +19.540;18.646;19.540;1511.6;18.646;18.646;1;1;1;0.173;0.000;0.9;! +19.560;18.369;19.560;1515.6;18.369;18.369;1;1;1;0.170;0.000;0.9;! +19.580;18.092;19.580;1519.5;18.092;18.092;1;1;1;0.167;0.000;0.8;! +19.600;18.226;19.600;1522.1;18.226;18.226;1;1;1;0.163;0.000;0.8;! +19.620;18.472;19.620;1523.1;18.472;18.472;1;1;1;0.163;0.000;0.8;! +19.640;18.622;19.640;1524.2;18.622;18.622;1;1;1;0.160;0.000;0.8;! +19.660;18.727;19.660;1525.3;18.727;18.727;1;1;1;0.163;0.000;0.8;! +19.680;18.797;19.680;1526.4;18.797;18.797;1;1;1;0.161;0.000;0.8;! +19.700;18.998;19.700;1527.5;18.998;18.998;1;1;1;0.162;0.000;0.8;! +19.720;19.231;19.720;1528.6;19.231;19.231;1;1;1;0.162;0.000;0.8;! +19.740;19.498;19.740;1529.7;19.498;19.498;1;0;1;0.164;0.000;0.8;! +19.760;19.486;19.760;1530.8;19.486;19.486;1;0;1;0.166;0.000;0.8;! +19.780;19.351;19.780;1531.8;19.351;19.351;1;0;1;0.174;0.000;0.9;! +19.800;19.243;19.800;1532.9;19.243;19.243;1;0;1;0.178;0.000;0.9;! +19.820;19.193;19.820;1534.0;19.193;19.193;1;0;1;0.181;0.000;0.9;! +19.840;19.227;19.840;1535.1;19.227;19.227;1;0;1;0.184;0.000;0.9;! +19.860;19.141;19.860;1536.3;19.141;19.141;1;0;1;0.186;0.000;0.9;! +19.880;19.145;19.880;1537.4;19.145;19.145;1;1;1;0.189;0.000;0.9;! +19.900;19.120;19.900;1538.6;19.120;19.120;1;1;1;0.194;0.000;1.0;! +19.920;19.110;19.920;1539.7;19.110;19.110;1;0;1;0.197;0.000;1.0;! +19.940;19.004;19.940;1540.8;19.004;19.004;1;0;1;0.199;0.000;1.0;! +19.960;18.771;19.960;1541.9;18.771;18.771;1;0;1;0.199;0.000;1.0;! +19.980;18.530;19.980;1543.0;18.530;18.530;1;0;1;0.199;0.000;1.0;! +20.000;18.245;20.000;1544.1;18.245;18.245;1;0;1;0.197;0.000;1.0;! +20.020;17.999;20.020;1545.2;17.999;17.999;1;0;1;0.194;0.000;1.0;! +20.040;17.800;20.040;1546.3;17.800;17.800;1;0;1;0.190;0.000;1.0;! +20.060;17.625;20.060;1547.4;17.625;17.625;1;0;1;0.185;0.000;1.0;! +20.080;17.530;20.080;1548.6;17.530;17.530;1;0;1;0.181;0.000;1.0;! +20.100;17.508;20.100;1549.6;17.508;17.508;1;0;1;0.171;0.000;0.9;! +20.120;17.680;20.120;1550.7;17.680;17.680;1;0;1;0.156;0.000;0.8;! +20.140;18.158;20.140;1551.8;18.158;18.158;1;0;1;0.143;0.000;0.7;! +20.160;19.047;20.160;1552.9;19.047;19.047;1;0;1;0.150;0.000;0.8;! +20.180;20.045;20.180;1554.3;20.045;20.045;1;1;1;0.156;0.000;0.8;! +20.200;20.324;20.200;1557.5;20.324;20.324;1;1;1;0.162;0.000;0.8;! +20.220;20.604;20.220;1560.7;20.604;20.604;1;1;1;0.171;0.000;0.8;! +20.240;21.619;20.240;1562.3;21.619;21.619;1;1;1;0.181;0.000;0.8;! +20.260;22.231;20.260;1563.4;22.231;22.231;1;1;1;0.193;0.000;0.8;! +20.280;22.664;20.280;1564.5;22.664;22.664;1;1;1;0.206;0.000;0.9;! +20.300;23.046;20.300;1565.6;23.046;23.046;1;1;1;0.217;0.000;0.9;! +20.320;23.581;20.320;1566.7;23.581;23.581;1;0;1;0.225;0.000;0.9;! +20.340;24.243;20.340;1567.8;24.243;24.243;1;1;1;0.230;0.000;0.9;! +20.360;25.099;20.360;1568.9;25.099;25.099;1;1;1;0.235;0.000;0.9;! +20.380;26.199;20.380;1570.0;26.199;26.199;1;1;1;0.238;0.000;0.9;! +20.400;27.221;20.400;1571.1;27.221;27.221;1;0;1;0.243;0.000;0.9;! +20.420;28.152;20.420;1572.2;28.152;28.152;1;0;1;0.245;0.000;0.8;! +20.440;28.804;20.440;1573.3;28.804;28.804;1;0;1;0.252;0.000;0.9;! +20.460;29.107;20.460;1574.4;29.107;29.107;1;0;1;0.256;0.000;0.9;! +20.480;28.978;20.480;1575.6;28.978;28.978;1;0;1;0.259;0.000;0.9;! +20.500;28.781;20.500;1576.7;28.781;28.781;1;0;1;0.255;0.000;0.8;! +20.520;28.221;20.520;1577.9;28.221;28.221;1;0;1;0.237;0.000;0.8;! +20.540;27.800;20.540;1579.0;27.800;27.800;1;0;1;0.221;0.000;0.7;! +20.560;27.504;20.560;1580.1;27.504;27.504;1;0;1;0.226;0.000;0.8;! +20.580;26.862;20.580;1582.5;26.862;26.862;1;0;1;0.231;0.000;0.8;! +20.600;25.849;20.600;1588.3;25.849;25.849;1;0;1;0.232;0.000;0.8;! +20.620;24.836;20.620;1594.1;24.836;24.836;1;0;1;0.225;0.000;0.8;! +20.640;24.713;20.640;1595.9;24.713;24.713;1;1;1;0.225;0.000;0.9;! +20.660;23.863;20.660;1597.0;23.863;23.863;1;0;1;0.223;0.000;0.9;! +20.680;23.196;20.680;1598.1;23.196;23.196;1;0;1;0.211;0.000;0.8;! +20.700;22.951;20.700;1599.2;22.951;22.951;1;1;1;0.207;0.000;0.8;! +20.720;22.972;20.720;1600.3;22.972;22.972;1;1;1;0.195;0.000;0.8;! +20.740;22.766;20.740;1601.3;22.766;22.766;1;0;1;0.186;0.000;0.7;! +20.760;23.092;20.760;1602.4;23.092;23.092;1;0;1;0.182;0.000;0.7;! +20.780;23.520;20.780;1603.6;23.520;23.520;1;1;1;0.176;0.000;0.7;! +20.800;24.112;20.800;1604.6;24.112;24.112;1;1;1;0.168;0.000;0.7;! +20.820;24.416;20.820;1605.7;24.416;24.416;1;0;1;0.164;0.000;0.6;! +20.840;24.306;20.840;1606.8;24.306;24.306;1;0;1;0.166;0.000;0.7;! +20.860;23.592;20.860;1607.9;23.592;23.592;1;0;1;0.170;0.000;0.7;! +20.880;22.906;20.880;1608.9;22.906;22.906;1;0;1;0.171;0.000;0.7;! +20.900;22.267;20.900;1610.0;22.267;22.267;1;0;1;0.173;0.000;0.7;! +20.920;21.884;20.920;1611.1;21.884;21.884;1;0;1;0.169;0.000;0.7;! +20.940;21.791;20.940;1612.2;21.791;21.791;1;0;1;0.167;0.000;0.7;! +20.960;22.101;20.960;1613.3;22.101;22.101;1;0;1;0.166;0.000;0.7;! +20.980;22.627;20.980;1614.7;22.627;22.627;1;0;1;0.166;0.000;0.7;! +21.000;23.303;21.000;1616.0;23.303;23.303;1;0;1;0.168;0.000;0.7;! +21.020;24.080;21.020;1617.3;24.080;24.080;1;0;1;0.172;0.000;0.7;! +21.040;24.732;21.040;1618.3;24.732;24.732;1;0;1;0.180;0.000;0.7;! +21.060;24.650;21.060;1619.4;24.650;24.650;1;0;1;0.184;0.000;0.7;! +21.080;23.728;21.080;1620.5;23.728;23.728;1;0;1;0.185;0.000;0.8;! +21.100;22.389;21.100;1621.6;22.389;22.389;1;0;1;0.176;0.000;0.7;! +21.120;20.988;21.120;1622.7;20.988;20.988;1;0;1;0.167;0.000;0.7;! +21.140;20.058;21.140;1623.7;20.058;20.058;1;0;1;0.166;0.000;0.7;! +21.160;19.446;21.160;1624.8;19.446;19.446;1;0;1;0.167;0.000;0.8;! +21.180;19.031;21.180;1627.9;19.031;19.031;1;0;1;0.167;0.000;0.8;! +21.200;18.632;21.200;1631.5;18.632;18.632;1;0;1;0.162;0.000;0.8;! +21.220;18.364;21.220;1634.7;18.364;18.364;1;0;1;0.156;0.000;0.8;! +21.240;18.734;21.240;1635.8;18.734;18.734;1;0;1;0.148;0.000;0.7;! +21.260;19.081;21.260;1636.9;19.081;19.081;1;0;1;0.144;0.000;0.7;! +21.280;19.634;21.280;1638.0;19.634;19.634;1;0;1;0.142;0.000;0.7;! +21.300;20.213;21.300;1639.1;20.213;20.213;1;0;1;0.137;0.000;0.6;! +21.320;20.639;21.320;1640.2;20.639;20.639;1;0;1;0.136;0.000;0.6;! +21.340;20.540;21.340;1641.3;20.540;20.540;1;0;1;0.135;0.000;0.6;! +21.360;19.288;21.360;1643.1;19.288;19.288;1;0;1;0.143;0.000;0.7;! +21.380;19.652;21.380;1644.3;19.652;19.652;1;0;1;0.146;0.000;0.7;! +21.400;19.495;21.400;1645.4;19.495;19.495;1;0;1;0.149;0.000;0.7;! +21.420;19.661;21.420;1646.4;19.661;19.661;1;0;1;0.147;0.000;0.7;! +21.440;19.844;21.440;1647.6;19.844;19.844;1;0;1;0.153;0.000;0.7;! +21.460;20.411;21.460;1648.7;20.411;20.411;1;0;1;0.157;0.000;0.7;! +21.480;21.169;21.480;1649.8;21.169;21.169;1;0;1;0.162;0.000;0.7;! +21.500;21.968;21.500;1650.9;21.968;21.968;1;0;1;0.165;0.000;0.7;! +21.520;22.745;21.520;1651.9;22.745;22.745;1;0;1;0.159;0.000;0.7;! +21.540;23.657;21.540;1653.1;23.657;23.657;1;0;1;0.153;0.000;0.6;! +21.560;24.871;21.560;1654.1;24.871;24.871;1;0;1;0.148;0.000;0.6;! +21.580;26.402;21.580;1655.3;26.402;26.402;1;0;1;0.158;0.000;0.6;! +21.600;27.481;21.600;1657.3;27.481;27.481;1;0;1;0.174;0.000;0.6;! +21.620;27.726;21.620;1661.2;27.726;27.726;1;0;1;0.186;0.000;0.6;! +21.640;27.971;21.640;1665.0;27.971;27.971;1;0;1;0.197;0.000;0.7;! +21.660;28.585;21.660;1666.8;28.585;28.585;1;0;1;0.204;0.000;0.7;! +21.680;28.130;21.680;1667.9;28.130;28.130;1;0;1;0.208;0.000;0.7;! +21.700;27.118;21.700;1669.0;27.118;27.118;1;0;1;0.208;0.000;0.8;! +21.720;25.341;21.720;1670.1;25.341;25.341;1;0;1;0.211;0.000;0.8;! +21.740;23.333;21.740;1671.2;23.333;23.333;1;0;1;0.209;0.000;0.8;! +21.760;21.630;21.760;1672.2;21.630;21.630;1;0;1;0.202;0.000;0.8;! +21.780;20.452;21.780;1673.3;20.452;20.452;1;0;1;0.194;0.000;0.8;! +21.800;19.686;21.800;1674.4;19.686;19.686;1;0;1;0.188;0.000;0.9;! +21.820;19.350;21.820;1675.5;19.350;19.350;1;0;1;0.181;0.000;0.8;! +21.840;19.373;21.840;1676.6;19.373;19.373;1;0;1;0.179;0.000;0.8;! +21.860;19.643;21.860;1677.7;19.643;19.643;1;0;1;0.178;0.000;0.8;! +21.880;20.014;21.880;1678.8;20.014;20.014;1;0;1;0.177;0.000;0.8;! +21.900;20.287;21.900;1679.9;20.287;20.287;1;0;1;0.180;0.000;0.9;! +21.920;20.481;21.920;1680.9;20.481;20.481;1;0;1;0.183;0.000;0.9;! +21.940;20.380;21.940;1682.1;20.380;20.380;1;0;1;0.186;0.000;0.9;! +21.960;19.972;21.960;1683.2;19.972;19.972;1;0;1;0.184;0.000;0.9;! +21.980;18.952;21.980;1684.3;18.952;18.952;1;0;1;0.180;0.000;0.9;! +22.000;17.682;22.000;1685.3;17.682;17.682;1;0;1;0.175;0.000;0.9;! +22.020;16.373;22.020;1686.4;16.373;16.373;1;0;1;0.172;0.000;1.0;! +22.040;15.448;22.040;1687.6;15.448;15.448;1;0;1;0.165;0.000;1.0;! +22.060;14.777;22.060;1688.7;14.777;14.777;1;0;1;0.160;0.000;1.0;! +22.080;14.412;22.080;1689.8;14.412;14.412;1;0;1;0.151;0.000;1.0;! +22.100;14.111;22.100;1690.9;14.111;14.111;1;0;1;0.143;0.000;0.9;! +22.120;13.967;22.120;1692.0;13.967;13.967;1;0;1;0.134;0.000;0.9;! +22.140;14.129;22.140;1693.1;14.129;14.129;1;0;1;0.121;0.000;0.8;! +22.160;14.628;22.160;1694.2;14.628;14.628;1;0;1;0.109;0.000;0.7;! +22.180;15.358;22.180;1695.3;15.358;15.358;1;0;1;0.111;0.000;0.7;! +22.200;16.114;22.200;1696.4;16.114;16.114;1;0;1;0.127;0.000;0.8;! +22.220;16.258;22.220;1700.1;16.258;16.258;1;0;1;0.126;0.000;0.7;! +22.240;16.325;22.240;1704.0;16.325;16.325;1;0;1;0.129;0.000;0.7;! +22.260;17.671;22.260;1705.1;17.671;17.671;1;0;1;0.132;0.000;0.7;! +22.280;17.856;22.280;1706.2;17.856;17.856;1;0;1;0.134;0.000;0.7;! +22.300;17.918;22.300;1707.3;17.918;17.918;1;0;1;0.136;0.000;0.7;! +22.320;17.835;22.320;1708.3;17.835;17.835;1;0;1;0.147;0.000;0.8;! +22.340;17.973;22.340;1709.4;17.973;17.973;1;0;1;0.139;0.000;0.7;! +22.360;18.377;22.360;1710.5;18.377;18.377;1;0;1;0.144;0.000;0.7;! +22.380;18.875;22.380;1711.6;18.875;18.875;1;0;1;0.151;0.000;0.7;! +22.400;19.298;22.400;1712.7;19.298;19.298;1;0;1;0.158;0.000;0.8;! +22.420;19.825;22.420;1713.8;19.825;19.825;1;0;1;0.165;0.000;0.8;! +22.440;20.665;22.440;1714.9;20.665;20.665;1;0;1;0.175;0.000;0.8;! +22.460;21.939;22.460;1716.0;21.939;21.939;1;0;1;0.185;0.000;0.8;! +22.480;23.594;22.480;1717.1;23.594;23.594;1;0;1;0.192;0.000;0.7;! +22.500;25.520;22.500;1718.2;25.520;25.520;1;0;1;0.201;0.000;0.7;! +22.520;27.608;22.520;1719.3;27.608;27.608;1;0;1;0.207;0.000;0.7;! +22.540;29.901;22.540;1720.4;29.901;29.901;1;0;1;0.229;0.000;0.7;! +22.560;32.283;22.560;1721.6;32.283;32.283;1;0;1;0.225;0.000;0.7;! +22.580;34.460;22.580;1722.9;34.460;34.460;1;0;1;0.216;0.000;0.6;! +22.600;35.670;22.600;1724.1;35.670;35.670;1;0;1;0.208;0.000;0.6;! +22.620;35.686;22.620;1725.4;35.686;35.686;1;0;1;0.222;0.000;0.6;! +22.640;35.219;22.640;1728.9;35.219;35.219;1;0;1;0.242;0.000;0.6;! +22.660;34.529;22.660;1734.8;34.529;34.529;1;0;1;0.261;0.000;0.7;! +22.680;33.838;22.680;1740.7;33.838;33.838;1;0;1;0.279;0.000;0.8;! +22.700;33.356;22.700;1744.9;33.356;33.356;1;0;1;0.285;0.000;0.8;! +22.720;33.009;22.720;1746.1;33.009;33.009;1;0;1;0.301;0.000;0.9;! +22.740;32.347;22.740;1747.3;32.347;32.347;1;0;1;0.307;0.000;0.9;! +22.760;31.294;22.760;1748.5;31.294;31.294;1;0;1;0.311;0.000;0.9;! +22.780;30.492;22.780;1749.6;30.492;30.492;1;0;1;0.303;0.000;0.9;! +22.800;29.599;22.800;1750.8;29.599;29.599;1;0;1;0.296;0.000;0.9;! +22.820;29.354;22.820;1751.9;29.354;29.354;1;0;1;0.296;0.000;0.9;! +22.840;29.634;22.840;1753.1;29.634;29.634;1;0;1;0.300;0.000;0.9;! +22.860;30.134;22.860;1754.3;30.134;30.134;1;0;1;0.291;0.000;0.9;! +22.880;30.810;22.880;1755.5;30.810;30.810;1;0;1;0.279;0.000;0.9;! +22.900;31.419;22.900;1756.7;31.419;31.419;1;0;1;0.280;0.000;0.9;! +22.920;31.811;22.920;1757.9;31.811;31.811;1;0;1;0.288;0.000;0.9;! +22.940;31.706;22.940;1759.1;31.706;31.706;1;0;1;0.299;0.000;0.9;! +22.960;31.023;22.960;1760.2;31.023;31.023;1;0;1;0.296;0.000;0.9;! +22.980;29.619;22.980;1761.4;29.619;29.619;1;0;1;0.294;0.000;1.0;! +23.000;27.692;23.000;1762.5;27.692;27.692;1;0;1;0.284;0.000;1.0;! +23.020;25.650;23.020;1763.6;25.650;25.650;1;0;1;0.277;0.000;1.0;! +23.040;23.985;23.040;1764.8;23.985;23.985;1;0;1;0.267;0.000;1.0;! +23.060;22.691;23.060;1765.9;22.691;22.691;1;0;1;0.256;0.000;1.0;! +23.080;21.706;23.080;1767.0;21.706;21.706;1;0;1;0.245;0.000;1.0;! +23.100;20.858;23.100;1768.1;20.858;20.858;1;0;1;0.238;0.000;1.1;! +23.120;20.214;23.120;1769.2;20.214;20.214;1;0;1;0.230;0.000;1.1;! +23.140;19.654;23.140;1770.3;19.654;19.654;1;0;1;0.227;0.000;1.1;! +23.160;19.233;23.160;1771.3;19.233;19.233;1;0;1;0.208;0.000;1.0;! +23.180;18.850;23.180;1772.4;18.850;18.850;1;0;1;0.189;0.000;0.9;! +23.200;18.524;23.200;1773.5;18.524;18.524;1;0;1;0.177;0.000;0.9;! +23.220;18.198;23.220;1774.6;18.198;18.198;1;0;1;0.178;0.000;0.9;! +23.240;17.896;23.240;1777.3;17.896;17.896;1;0;1;0.181;0.000;0.9;! +23.260;17.581;23.260;1780.7;17.581;17.581;1;0;1;0.185;0.000;1.0;! +23.280;17.287;23.280;1784.1;17.287;17.287;1;0;1;0.187;0.000;1.0;! +23.300;17.287;23.300;1785.2;17.287;17.287;1;0;1;0.187;0.000;1.0;! +23.320;17.244;23.320;1786.3;17.244;17.244;1;0;1;0.186;0.000;1.0;! +23.340;17.418;23.340;1787.3;17.418;17.418;1;0;1;0.188;0.000;1.0;! +23.360;17.745;23.360;1788.4;17.745;17.745;1;0;1;0.188;0.000;1.0;! +23.380;18.060;23.380;1789.5;18.060;18.060;1;0;1;0.183;0.000;1.0;! +23.400;18.255;23.400;1790.6;18.255;18.255;1;0;1;0.179;0.000;0.9;! +23.420;18.361;23.420;1791.7;18.361;18.361;1;0;1;0.179;0.000;1.0;! +23.440;18.325;23.440;1792.7;18.325;18.325;1;0;1;0.179;0.000;1.0;! +23.460;17.923;23.460;1793.8;17.923;17.923;1;0;1;0.180;0.000;1.0;! +23.480;17.077;23.480;1794.9;17.077;17.077;1;0;1;0.179;0.000;1.0;! +23.500;16.106;23.500;1796.0;16.106;16.106;1;0;1;0.176;0.000;1.0;! +23.520;15.246;23.520;1797.1;15.246;15.246;1;0;1;0.171;0.000;1.0;! +23.540;14.622;23.540;1798.1;14.622;14.622;1;0;1;0.166;0.000;1.1;! +23.560;14.129;23.560;1799.2;14.129;14.129;1;0;1;0.160;0.000;1.1;! +23.580;13.768;23.580;1800.3;13.768;13.768;1;0;1;0.153;0.000;1.0;! +23.600;13.553;23.600;1801.4;13.553;13.553;1;0;1;0.144;0.000;1.0;! +23.620;13.428;23.620;1802.5;13.428;13.428;1;0;1;0.136;0.000;0.9;! +23.640;13.332;23.640;1803.7;13.332;13.332;1;0;1;0.133;0.000;0.9;! +23.660;13.234;23.660;1805.8;13.234;13.234;1;0;1;0.132;0.000;0.9;! +23.680;13.179;23.680;1809.9;13.179;13.179;1;0;1;0.130;0.000;0.9;! +23.700;13.123;23.700;1814.1;13.123;13.123;1;0;1;0.131;0.000;0.9;! +23.720;13.105;23.720;1817.3;13.105;13.105;1;0;1;0.135;0.000;1.0;! +23.740;13.185;23.740;1818.4;13.185;13.185;1;0;1;0.135;0.000;1.0;! +23.760;13.229;23.760;1819.5;13.229;13.229;1;0;1;0.137;0.000;1.0;! +23.780;13.218;23.780;1820.6;13.218;13.218;1;0;1;0.137;0.000;1.0;! +23.800;13.186;23.800;1821.7;13.186;13.186;1;0;1;0.137;0.000;1.0;! +23.820;13.171;23.820;1822.8;13.171;13.171;1;0;1;0.136;0.000;1.0;! +23.840;13.123;23.840;1823.8;13.123;13.123;1;0;1;0.135;0.000;1.0;! +23.860;13.051;23.860;1824.9;13.051;13.051;1;0;1;0.134;0.000;1.0;! +23.880;12.963;23.880;1826.0;12.963;12.963;1;0;1;0.134;0.000;1.0;! +23.900;12.893;23.900;1827.1;12.893;12.893;1;0;1;0.134;0.000;1.0;! +23.920;12.849;23.920;1828.2;12.849;12.849;1;0;1;0.135;0.000;1.0;! +23.940;12.874;23.940;1829.3;12.874;12.874;1;0;1;0.134;0.000;1.0;! +23.960;12.916;23.960;1830.3;12.916;12.916;1;0;1;0.134;0.000;1.0;! +23.980;13.000;23.980;1831.4;13.000;13.000;1;0;1;0.136;0.000;1.0;! +24.000;13.111;24.000;1832.5;13.111;13.111;1;0;1;0.137;0.000;1.0;! +24.020;13.206;24.020;1833.6;13.206;13.206;1;0;1;0.137;0.000;1.0;! +24.040;13.293;24.040;1834.7;13.293;13.293;1;0;1;0.136;0.000;1.0;! +24.060;13.404;24.060;1835.7;13.404;13.404;1;0;1;0.136;0.000;1.0;! +24.080;13.576;24.080;1836.8;13.576;13.576;1;0;1;0.136;0.000;1.0;! +24.100;13.761;24.100;1837.9;13.761;13.761;1;0;1;0.137;0.000;1.0;! +24.120;13.882;24.120;1839.0;13.882;13.882;1;0;1;0.138;0.000;1.0;! +24.140;13.934;24.140;1840.1;13.934;13.934;1;0;1;0.139;0.000;1.0;! +24.160;14.015;24.160;1841.2;14.015;14.015;1;0;1;0.140;0.000;0.9;! +24.180;14.177;24.180;1842.2;14.177;14.177;1;0;1;0.140;0.000;0.9;! +24.200;14.384;24.200;1843.3;14.384;14.384;1;0;1;0.133;0.000;0.9;! +24.220;14.584;24.220;1844.4;14.584;14.584;1;0;1;0.125;0.000;0.8;! +24.240;14.807;24.240;1845.5;14.807;14.807;1;0;1;0.125;0.000;0.8;! +24.260;15.124;24.260;1846.6;15.124;15.124;1;0;1;0.130;0.000;0.8;! +24.280;15.374;24.280;1849.1;15.374;15.374;1;0;1;0.134;0.000;0.8;! +24.300;15.528;24.300;1852.7;15.528;15.528;1;0;1;0.138;0.000;0.8;! +24.320;15.862;24.320;1855.7;15.862;15.862;1;0;1;0.142;0.000;0.8;! +24.340;16.747;24.340;1856.8;16.747;16.747;1;0;1;0.147;0.000;0.8;! +24.360;17.453;24.360;1857.9;17.453;17.453;1;0;1;0.153;0.000;0.8;! +24.380;18.010;24.380;1859.0;18.010;18.010;1;0;1;0.158;0.000;0.8;! +24.400;18.524;24.400;1860.1;18.524;18.524;1;0;1;0.165;0.000;0.8;! +24.420;19.149;24.420;1861.1;19.149;19.149;1;0;1;0.175;0.000;0.8;! +24.440;20.196;24.440;1862.2;20.196;20.196;1;0;1;0.184;0.000;0.8;! +24.460;21.775;24.460;1863.3;21.775;21.775;1;0;1;0.192;0.000;0.8;! +24.480;23.671;24.480;1864.4;23.671;23.671;1;0;1;0.202;0.000;0.8;! +24.500;25.453;24.500;1865.5;25.453;25.453;1;0;1;0.215;0.000;0.8;! +24.520;27.207;24.520;1866.6;27.207;27.207;1;0;1;0.226;0.000;0.8;! +24.540;28.436;24.540;1867.7;28.436;28.436;1;0;1;0.239;0.000;0.8;! +24.560;29.137;24.560;1868.8;29.137;29.137;1;0;1;0.252;0.000;0.8;! +24.580;29.447;24.580;1869.9;29.447;29.447;1;0;1;0.260;0.000;0.9;! +24.600;29.640;24.600;1871.0;29.640;29.640;1;0;1;0.267;0.000;0.9;! +24.620;29.770;24.620;1872.1;29.770;29.770;1;0;1;0.251;0.000;0.8;! +24.640;29.695;24.640;1873.2;29.695;29.695;1;0;1;0.236;0.000;0.8;! +24.660;29.243;24.660;1874.3;29.243;29.243;1;0;1;0.224;0.000;0.7;! +24.680;28.339;24.680;1875.4;28.339;28.339;1;0;1;0.236;0.000;0.8;! +24.700;26.972;24.700;1879.4;26.972;26.972;1;0;1;0.247;0.000;0.9;! +24.720;25.581;24.720;1883.6;25.581;25.581;1;0;1;0.253;0.000;0.9;! +24.740;25.218;24.740;1886.5;25.218;25.218;1;0;1;0.255;0.000;1.0;! +24.760;24.393;24.760;1887.6;24.393;24.393;1;0;1;0.253;0.000;1.0;! +24.780;23.252;24.780;1888.7;23.252;23.252;1;0;1;0.246;0.000;1.0;! +24.800;22.072;24.800;1889.8;22.072;22.072;1;0;1;0.242;0.000;1.0;! +24.820;20.691;24.820;1890.8;20.691;20.691;1;0;1;0.231;0.000;1.1;! +24.840;18.918;24.840;1891.9;18.918;18.918;1;0;1;0.219;0.000;1.1;! +24.860;17.132;24.860;1893.0;17.132;17.132;1;0;1;0.207;0.000;1.1;! +24.880;15.602;24.880;1894.1;15.602;15.602;1;0;1;0.191;0.000;1.1;! +24.900;14.333;24.900;1895.2;14.333;14.333;1;0;1;0.176;0.000;1.1;! +24.920;13.378;24.920;1896.2;13.378;13.378;1;0;1;0.161;0.000;1.1;! +24.940;12.642;24.940;1897.3;12.642;12.642;1;0;1;0.148;0.000;1.1;! +24.960;12.073;24.960;1898.4;12.073;12.073;1;0;1;0.144;0.000;1.1;! +24.980;11.659;24.980;1899.4;11.659;11.659;1;0;1;0.128;0.000;1.0;! +25.000;11.315;25.000;1900.6;11.315;11.315;1;0;1;0.113;0.000;0.9;! +25.020;11.103;25.020;1901.6;11.103;11.103;1;0;1;9.999;0.000;999.9;! +25.040;10.597;25.040;1902.7;10.597;10.597;1;0;1;9.999;0.000;999.9;! +25.060;10.393;25.060;1903.8;10.393;10.393;1;0;1;9.999;0.000;999.9;! +25.080;10.167;25.080;1904.8;10.167;10.167;1;0;1;9.999;0.000;999.9;! +25.090;9.910;25.090;1906.0;9.910;9.910;1;0;1;9.999;0.000;999.9;! diff --git a/tests/cpts/gef/CPT000000217406_IMBRO.gef b/tests/cpts/gef/CPT000000217406_IMBRO.gef new file mode 100644 index 0000000..1a13bdc --- /dev/null +++ b/tests/cpts/gef/CPT000000217406_IMBRO.gef @@ -0,0 +1,1353 @@ +#GEFID= 1, 1, 0 +#COLUMN= 12 +#COLUMNINFO= 1, m (meter), sondeertrajectlengte, 1 +#COLUMNINFO= 2, MPa (megaPascal), conusweerstand, 2 +#COLUMNINFO= 3, m (meter), diepte, 11 +#COLUMNINFO= 4, s (seconde), verlopen tijd, 12 +#COLUMNINFO= 5, MPa (megaPascal), gecorrigeerde conusweerstand, 13 +#COLUMNINFO= 6, MPa (megaPascal), netto conusweerstand, 14 +#COLUMNINFO= 7, ° (graden), helling x, 21 +#COLUMNINFO= 8, ° (graden), helling y, 22 +#COLUMNINFO= 9, ° (graden), hellingresultante, 8 +#COLUMNINFO= 10, MPa (megaPascal), plaatselijke wrijving, 3 +#COLUMNINFO= 11, geen, porienratio, 15 +#COLUMNINFO= 12, % (procent; MPa/MPa), wrijvingsgetal, 4 +#COLUMNSEPARATOR= ; +#COLUMNTEXT= 1, aan +#COLUMNVOID= 1, 999.999 +#COLUMNVOID= 2, 999.999 +#COLUMNVOID= 3, 999.999 +#COLUMNVOID= 4, 99999.9 +#COLUMNVOID= 5, 999.999 +#COLUMNVOID= 6, 999.999 +#COLUMNVOID= 7, 99 +#COLUMNVOID= 8, 99 +#COLUMNVOID= 9, 99 +#COLUMNVOID= 10, 9.999 +#COLUMNVOID= 11, 99.999 +#COLUMNVOID= 12, 999.9 +#COMPANYID= uitvoerder onderzoek, wordt niet uitgeleverd, - +#FILEDATE= 2024, 12, 04 +#FILEOWNER= Basisregistratie Ondergrond +#LASTSCAN= 1254 +#MEASUREMENTTEXT= 4, CP15-CF75SN2-P1E1M4-V1-S1/1701-2757, conustype +#MEASUREMENTTEXT= 5, Fugro Cone Penetrometer MkII, omschrijving sondeerapparaat +#MEASUREMENTTEXT= 6, NEN-EN-ISO 22476-1 / klasse 2, sondeernorm en kwaliteitsklasse +#MEASUREMENTTEXT= 9, maaiveld, lokaal verticaal referentiepunt +#MEASUREMENTTEXT= 20, nee, signaalbewerking uitgevoerd +#MEASUREMENTTEXT= 21, ja, bewerking onderbrekingen uitgevoerd +#MEASUREMENTTEXT= 42, MRG2, methode verticale positiebepaling +#MEASUREMENTTEXT= 43, LRG3, methode locatiebepaling +#MEASUREMENTTEXT= 101, bronhouder, 30124359, - +#MEASUREMENTTEXT= 102, opdracht publieke taakuitvoering, kader aanlevering +#MEASUREMENTTEXT= 103, infrastructuur land, kader inwinning +#MEASUREMENTTEXT= 104, uitvoerder locatiebepaling, wordt niet uitgeleverd, - +#MEASUREMENTTEXT= 105, 2022, 12, 12 +#MEASUREMENTTEXT= 106, uitvoerder verticale positiebepaling, wordt niet uitgeleverd, - +#MEASUREMENTTEXT= 107, 2022, 12, 12 +#MEASUREMENTTEXT= 109, nee, dissipatietest uitgevoerd +#MEASUREMENTTEXT= 110, ja, expertcorrectie uitgevoerd +#MEASUREMENTTEXT= 111, nee, aanvullend onderzoek uitgevoerd +#MEASUREMENTTEXT= 112, 2023, 04, 17 +#MEASUREMENTTEXT= 113, 2022, 12, 20 +#MEASUREMENTTEXT= 115, IMBRO, kwaliteitsregime +#MEASUREMENTTEXT= 116, 2023, 06, 01, 13, 45, 37 +#MEASUREMENTTEXT= 117, voltooid, registratiestatus +#MEASUREMENTTEXT= 118, 2023, 06, 01, 13, 45, 37 +#MEASUREMENTTEXT= 119, nee, gecorrigeerd +#MEASUREMENTTEXT= 121, nee, in onderzoek +#MEASUREMENTTEXT= 123, nee, uit registratie genomen +#MEASUREMENTTEXT= 125, nee, weer in registratie genomen +#MEASUREMENTTEXT= 127, 4258, 51.961036, 4.380857 +#MEASUREMENTTEXT= 128, RDNAPTRANS2018, toegepaste transformatie +#MEASUREMENTVAR= 1, 1510, mm2 (vierkante millimeter), oppervlakte conuspunt +#MEASUREMENTVAR= 2, 19895, mm2 (vierkante millimeter), oppervlakte kleefmantel +#MEASUREMENTVAR= 3, 0.58, geen, oppervlaktequoti�nt conuspunt +#MEASUREMENTVAR= 4, 1.0, geen, oppervlaktequoti�nt kleefmantel +#MEASUREMENTVAR= 5, 87, mm (millimeter), afstand conus tot midden kleefmantel +#MEASUREMENTVAR= 12, 4, -, sondeermethode +#MEASUREMENTVAR= 13, 0.00, m (meter), voorgeboord tot +#MEASUREMENTVAR= 16, 25.015, m (meter), einddiepte +#MEASUREMENTVAR= 17, 0, -, stopcriterium +#MEASUREMENTVAR= 20, -0.064, MPa (megaPascal), conusweerstand vooraf +#MEASUREMENTVAR= 21, -0.076, MPa (megaPascal), conusweerstand achteraf +#MEASUREMENTVAR= 22, -0.001, MPa (megaPascal), plaatselijke wrijving vooraf +#MEASUREMENTVAR= 23, -0.001, MPa (megaPascal), plaatselijke wrijving achteraf +#MEASUREMENTVAR= 24, -, MPa (megaPascal), waterspanning u1 vooraf +#MEASUREMENTVAR= 25, -, MPa (megaPascal), waterspanning u1 achteraf +#MEASUREMENTVAR= 26, -, MPa (megaPascal), waterspanning u2 vooraf +#MEASUREMENTVAR= 27, -, MPa (megaPascal), waterspanning u2 achteraf +#MEASUREMENTVAR= 28, -, MPa (megaPascal), waterspanning u3 vooraf +#MEASUREMENTVAR= 29, -, MPa (megaPascal), waterspanning u3 achteraf +#MEASUREMENTVAR= 30, 1, ° (graden), hellingresultante vooraf +#MEASUREMENTVAR= 31, 0, ° (graden), hellingresultante achteraf +#MEASUREMENTVAR= 32, -, ° (graden), helling noord-zuid vooraf +#MEASUREMENTVAR= 33, -, ° (graden), helling noord-zuid achteraf +#MEASUREMENTVAR= 34, -, ° (graden), helling oost-west vooraf +#MEASUREMENTVAR= 35, -, ° (graden), helling oost-west achteraf +#MEASUREMENTVAR= 36, -, S/m (Siemens/meter), elektrische geleidbaarheid vooraf +#MEASUREMENTVAR= 37, -, S/m (Siemens/meter), elektrische geleidbaarheid achteraf +#MEASUREMENTVAR= 130, 44, mm (millimeter), conusdiameter +#PROJECTID= BRO +#RECORDSEPARATOR= ! +#REPORTCODE= GEF-CPT-Report, 1, 1, 2 +#STARTDATE= 2022, 12, 11 +#STARTTIME= 10, 11, 30 +#TESTID= CPT000000217406 +#XYID= 28992, 85833.711, 441879.550 +#ZID= 31000, -0.787 +#EOH= +0.000;0.115;0.000;105.5;0.115;0.115;-1;0;1;9.999;0.000;999.9;! +0.020;0.511;0.020;107.1;0.511;0.511;-1;0;1;9.999;0.000;999.9;! +0.040;0.527;0.040;108.3;0.527;0.527;0;0;0;9.999;0.000;999.9;! +0.060;0.698;0.060;110.9;0.698;0.698;0;0;0;9.999;0.000;999.9;! +0.080;0.769;0.080;113.7;0.769;0.769;0;0;0;9.999;0.000;999.9;! +0.100;1.430;0.100;115.9;1.430;1.430;0;0;0;0.003;0.000;0.3;! +0.120;0.900;0.120;117.0;0.900;0.900;0;0;0;0.003;0.000;0.2;! +0.140;1.567;0.140;119.6;1.567;1.567;0;0;0;0.004;0.000;0.2;! +0.160;2.351;0.160;122.4;2.351;2.351;-1;0;1;0.016;0.000;0.7;! +0.180;3.004;0.180;125.1;3.004;3.004;-1;0;1;0.009;0.000;0.3;! +0.200;1.972;0.200;126.2;1.972;1.972;-1;0;1;0.012;0.000;0.3;! +0.220;5.112;0.220;127.3;5.112;5.112;-2;1;2;0.022;0.000;0.5;! +0.240;3.354;0.240;128.4;3.354;3.354;-1;1;1;0.008;0.000;0.1;! +0.260;8.082;0.260;129.5;8.082;8.082;-1;1;2;0.013;0.000;0.2;! +0.280;5.927;0.280;130.6;5.927;5.927;-2;1;3;0.054;0.000;0.7;! +0.300;8.403;0.300;131.7;8.403;8.403;-1;2;2;0.043;0.000;0.5;! +0.320;9.487;0.320;132.8;9.487;9.487;-2;2;3;0.024;0.000;0.2;! +0.340;11.140;0.340;133.9;11.140;11.140;-1;1;2;0.073;0.000;0.6;! +0.360;14.792;0.360;135.0;14.792;14.792;-1;2;2;0.044;0.000;0.3;! +0.380;14.275;0.380;136.1;14.275;14.275;-4;0;4;0.054;0.000;0.4;! +0.400;14.106;0.400;137.1;14.106;14.106;-4;1;4;0.065;0.000;0.4;! +0.420;12.707;0.420;138.2;12.707;12.707;-6;2;6;0.090;0.000;0.6;! +0.440;14.272;0.440;139.3;14.272;14.272;-2;2;3;0.096;0.000;0.6;! +0.460;17.321;0.460;141.8;17.321;17.321;-1;1;2;0.111;0.000;0.7;! +0.480;17.137;0.480;146.4;17.137;17.137;-2;2;2;0.133;0.000;0.7;! +0.500;17.037;0.500;150.6;17.037;17.037;-2;2;3;0.148;0.000;0.7;! +0.520;18.472;0.520;151.8;18.472;18.472;-1;2;2;0.176;0.000;0.7;! +0.540;25.500;0.540;152.9;25.500;25.500;0;2;2;0.175;0.000;0.7;! +0.560;27.920;0.560;154.0;27.920;27.920;-1;2;2;0.155;0.000;0.6;! +0.580;27.980;0.580;155.1;27.980;27.980;-1;2;2;0.161;0.000;0.6;! +0.600;29.830;0.600;156.3;29.830;29.830;-1;2;3;0.209;0.000;0.7;! +0.620;30.795;0.620;157.4;30.795;30.795;-1;2;3;0.193;0.000;0.6;! +0.640;29.280;0.640;158.5;29.280;29.280;-1;3;3;0.202;0.000;0.6;! +0.660;30.246;0.660;159.7;30.246;30.246;-1;2;3;0.184;0.000;0.6;! +0.680;31.020;0.680;160.8;31.020;31.020;-1;3;3;0.200;0.000;0.6;! +0.700;31.042;0.700;161.9;31.042;31.042;-1;3;3;0.222;0.000;0.7;! +0.720;30.634;0.720;163.0;30.634;30.634;-1;3;3;0.209;0.000;0.6;! +0.740;31.865;0.740;164.1;31.865;31.865;-1;3;3;0.194;0.000;0.6;! +0.760;32.078;0.760;165.2;32.078;32.078;-1;3;3;0.206;0.000;0.6;! +0.780;31.697;0.780;166.3;31.697;31.697;-1;3;3;0.204;0.000;0.6;! +0.800;32.512;0.800;167.4;32.512;32.512;-1;3;3;0.229;0.000;0.7;! +0.820;33.627;0.820;168.6;33.627;33.627;-1;3;3;0.245;0.000;0.7;! +0.840;33.317;0.840;169.7;33.317;33.317;-1;3;3;0.237;0.000;0.7;! +0.860;32.581;0.860;170.7;32.581;32.581;-1;3;3;0.254;0.000;0.7;! +0.880;31.086;0.880;171.8;31.086;31.086;-1;3;3;0.269;0.000;0.8;! +0.900;31.008;0.900;172.9;31.008;31.008;0;3;3;0.294;0.000;0.9;! +0.920;30.542;0.920;174.0;30.542;30.542;0;3;3;0.292;0.000;0.9;! +0.940;30.082;0.940;175.1;30.082;30.082;0;3;3;0.269;0.000;0.8;! +0.960;29.617;0.960;176.1;29.617;29.617;0;3;3;0.234;0.000;0.7;! +0.980;29.441;0.980;177.2;29.441;29.441;0;3;3;0.200;0.000;0.6;! +1.000;29.337;1.000;178.3;29.337;29.337;0;3;3;0.201;0.000;0.6;! +1.020;29.545;1.020;179.4;29.545;29.545;0;3;3;0.209;0.000;0.7;! +1.040;28.875;1.040;182.9;28.875;28.875;0;3;3;0.211;0.000;0.7;! +1.060;28.099;1.060;186.6;28.099;28.099;0;3;3;0.209;0.000;0.7;! +1.080;28.277;1.080;189.1;28.277;28.277;0;3;3;0.199;0.000;0.6;! +1.100;29.088;1.100;190.3;29.088;29.088;0;3;3;0.190;0.000;0.6;! +1.120;29.804;1.120;191.4;29.804;29.804;0;3;3;0.184;0.000;0.6;! +1.140;29.999;1.140;192.6;29.999;29.999;0;3;3;0.200;0.000;0.6;! +1.160;30.528;1.160;193.7;30.528;30.528;0;3;3;0.179;0.000;0.5;! +1.180;30.836;1.180;194.9;30.836;30.836;0;3;3;0.173;0.000;0.5;! +1.200;31.283;1.200;196.1;31.283;31.283;0;3;3;0.230;0.000;0.7;! +1.220;30.475;1.220;197.2;30.475;30.475;0;3;3;0.232;0.000;0.7;! +1.240;30.842;1.240;198.4;30.842;30.842;0;3;3;0.264;0.000;0.8;! +1.260;30.069;1.260;199.5;30.069;30.069;0;3;3;0.268;0.000;0.9;! +1.280;27.573;1.280;200.7;27.573;27.573;0;3;3;0.255;0.000;0.9;! +1.300;26.302;1.300;201.8;26.302;26.302;0;3;3;0.278;0.000;1.0;! +1.320;25.027;1.320;202.9;25.027;25.027;0;3;3;0.252;0.000;0.9;! +1.340;24.569;1.340;204.1;24.569;24.569;0;3;3;0.237;0.000;0.9;! +1.360;23.760;1.360;205.3;23.760;23.760;0;3;3;0.202;0.000;0.8;! +1.380;22.590;1.380;206.4;22.590;22.590;0;3;3;0.181;0.000;0.7;! +1.400;22.282;1.400;207.6;22.282;22.282;0;3;3;0.160;0.000;0.6;! +1.420;22.002;1.420;208.7;22.002;22.002;0;3;3;0.145;0.000;0.6;! +1.440;21.497;1.440;209.8;21.497;21.497;0;3;3;0.161;0.000;0.7;! +1.460;20.279;1.460;213.1;20.279;20.279;0;3;3;0.157;0.000;0.7;! +1.480;18.958;1.480;216.9;18.958;18.958;0;3;3;0.152;0.000;0.7;! +1.500;17.637;1.500;220.7;17.637;17.637;0;3;3;0.151;0.000;0.8;! +1.520;16.956;1.520;222.3;16.956;16.956;0;3;3;0.151;0.000;0.9;! +1.540;16.402;1.540;223.4;16.402;16.402;0;3;3;0.153;0.000;0.9;! +1.560;15.558;1.560;224.5;15.558;15.558;0;3;3;0.154;0.000;0.9;! +1.580;14.755;1.580;225.6;14.755;14.755;0;3;3;0.151;0.000;1.0;! +1.600;13.971;1.600;226.6;13.971;13.971;0;3;3;0.149;0.000;1.0;! +1.620;13.194;1.620;227.7;13.194;13.194;0;3;3;0.146;0.000;1.0;! +1.640;12.433;1.640;228.8;12.433;12.433;0;3;3;0.141;0.000;1.1;! +1.660;11.591;1.660;229.9;11.591;11.591;0;3;3;0.137;0.000;1.1;! +1.680;10.754;1.680;231.0;10.754;10.754;0;3;3;0.132;0.000;1.2;! +1.700;9.887;1.700;232.1;9.887;9.887;0;3;3;0.128;0.000;1.2;! +1.720;9.073;1.720;233.1;9.073;9.073;0;3;3;0.121;0.000;1.2;! +1.740;8.262;1.740;234.2;8.262;8.262;0;3;3;0.113;0.000;1.3;! +1.760;7.569;1.760;235.3;7.569;7.569;0;3;3;0.105;0.000;1.3;! +1.780;6.863;1.780;236.3;6.863;6.863;0;3;3;0.096;0.000;1.3;! +1.800;6.261;1.800;237.4;6.261;6.261;0;3;3;0.086;0.000;1.3;! +1.820;5.637;1.820;238.5;5.637;5.637;0;3;3;0.078;0.000;1.3;! +1.840;4.932;1.840;239.6;4.932;4.932;0;3;3;0.071;0.000;1.3;! +1.860;4.170;1.860;240.6;4.170;4.170;0;3;3;0.065;0.000;1.5;! +1.880;3.431;1.880;241.7;3.431;3.431;0;3;3;0.062;0.000;1.7;! +1.900;2.709;1.900;242.8;2.709;2.709;0;3;3;0.061;0.000;1.9;! +1.920;2.181;1.920;243.8;2.181;2.181;0;3;3;0.060;0.000;2.2;! +1.940;1.786;1.940;244.9;1.786;1.786;0;3;3;0.058;0.000;2.7;! +1.960;1.518;1.960;246.0;1.518;1.518;0;3;3;0.057;0.000;3.0;! +1.980;1.334;1.980;247.1;1.334;1.334;0;3;3;0.051;0.000;3.1;! +2.000;1.187;2.000;248.1;1.187;1.187;0;3;3;0.046;0.000;3.1;! +2.020;1.048;2.020;249.2;1.048;1.048;0;3;3;0.040;0.000;3.1;! +2.040;0.930;2.040;250.2;0.930;0.930;0;3;3;0.034;0.000;3.0;! +2.060;0.851;2.060;252.9;0.851;0.851;0;3;3;0.028;0.000;2.8;! +2.080;0.784;2.080;256.0;0.784;0.784;0;3;3;0.024;0.000;2.7;! +2.100;0.720;2.100;259.1;0.720;0.720;0;3;3;0.021;0.000;2.6;! +2.120;0.701;2.120;260.1;0.701;0.701;0;3;3;0.019;0.000;2.6;! +2.140;0.695;2.140;261.2;0.695;0.695;0;3;3;0.018;0.000;2.5;! +2.160;0.675;2.160;262.3;0.675;0.675;0;3;3;0.018;0.000;2.5;! +2.180;0.657;2.180;263.4;0.657;0.657;0;3;3;0.022;0.000;3.1;! +2.200;0.650;2.200;264.4;0.650;0.650;0;3;3;0.029;0.000;4.1;! +2.220;0.707;2.220;265.5;0.707;0.707;0;3;3;0.035;0.000;4.8;! +2.240;0.737;2.240;266.6;0.737;0.737;0;3;3;0.039;0.000;5.1;! +2.260;0.819;2.260;267.7;0.819;0.819;0;3;3;0.043;0.000;5.5;! +2.280;0.856;2.280;268.7;0.856;0.856;0;3;3;0.045;0.000;5.6;! +2.300;0.874;2.300;269.8;0.874;0.874;0;3;3;0.047;0.000;5.6;! +2.320;0.916;2.320;270.9;0.916;0.916;0;3;3;0.049;0.000;5.7;! +2.340;0.878;2.340;272.0;0.878;0.878;0;3;3;0.051;0.000;5.9;! +2.360;0.865;2.360;273.1;0.865;0.865;0;3;3;0.053;0.000;6.3;! +2.380;0.849;2.380;274.1;0.849;0.849;0;3;3;0.054;0.000;6.6;! +2.400;0.795;2.400;275.2;0.795;0.795;0;3;3;0.054;0.000;6.7;! +2.420;0.720;2.420;276.3;0.720;0.720;0;3;3;0.053;0.000;6.9;! +2.440;0.654;2.440;277.3;0.654;0.654;0;3;3;0.053;0.000;7.1;! +2.460;0.577;2.460;278.4;0.577;0.577;0;3;3;0.051;0.000;7.8;! +2.480;0.520;2.480;282.3;0.520;0.520;0;3;3;0.048;0.000;8.2;! +2.500;0.463;2.500;286.3;0.463;0.463;0;3;3;0.042;0.000;8.3;! +2.520;0.412;2.520;289.7;0.412;0.412;0;3;3;0.036;0.000;8.1;! +2.540;0.379;2.540;290.8;0.379;0.379;0;3;3;0.031;0.000;7.8;! +2.560;0.369;2.560;291.8;0.369;0.369;0;3;3;0.027;0.000;7.0;! +2.580;0.364;2.580;292.9;0.364;0.364;0;3;3;0.023;0.000;6.0;! +2.600;0.357;2.600;294.0;0.357;0.357;0;3;3;0.020;0.000;5.4;! +2.620;0.364;2.620;295.1;0.364;0.364;0;3;3;0.020;0.000;5.2;! +2.640;0.368;2.640;296.2;0.368;0.368;0;3;3;0.021;0.000;5.5;! +2.660;0.375;2.660;297.2;0.375;0.375;0;3;3;0.022;0.000;5.8;! +2.680;0.386;2.680;298.3;0.386;0.386;0;3;3;0.022;0.000;5.9;! +2.700;0.396;2.700;299.4;0.396;0.396;0;3;3;0.022;0.000;5.9;! +2.720;0.396;2.720;300.5;0.396;0.396;0;3;3;0.023;0.000;6.1;! +2.740;0.367;2.740;301.6;0.367;0.367;0;3;3;0.024;0.000;6.3;! +2.760;0.351;2.760;302.6;0.351;0.351;0;3;3;0.024;0.000;6.6;! +2.780;0.353;2.780;303.7;0.353;0.353;0;3;3;0.026;0.000;7.1;! +2.800;0.344;2.800;304.8;0.344;0.344;0;3;3;0.026;0.000;7.3;! +2.820;0.339;2.820;305.8;0.339;0.339;0;3;3;0.026;0.000;7.4;! +2.840;0.340;2.840;306.9;0.340;0.340;0;3;3;0.026;0.000;7.5;! +2.860;0.333;2.860;308.0;0.333;0.333;0;3;3;0.025;0.000;7.3;! +2.880;0.330;2.880;309.1;0.330;0.330;0;3;3;0.025;0.000;7.0;! +2.900;0.335;2.900;310.2;0.335;0.335;0;3;3;0.024;0.000;6.4;! +2.920;0.354;2.920;311.3;0.354;0.354;0;3;3;0.027;0.000;6.4;! +2.940;0.417;2.940;312.3;0.417;0.417;0;3;3;0.033;0.000;7.2;! +2.960;0.531;2.960;313.4;0.531;0.531;0;3;3;0.041;0.000;8.2;! +2.980;0.635;2.980;314.5;0.635;0.635;0;3;3;0.050;0.000;8.9;! +3.000;0.696;3.000;315.6;0.696;0.696;0;3;3;0.060;0.000;10.1;! +3.020;0.658;3.020;316.6;0.658;0.658;0;3;3;0.066;0.000;10.5;! +3.040;0.668;3.040;317.7;0.668;0.668;0;3;3;0.071;0.000;10.8;! +3.060;0.679;3.060;318.8;0.679;0.679;0;3;3;0.076;0.000;11.2;! +3.080;0.691;3.080;319.8;0.691;0.691;0;3;3;0.074;0.000;10.7;! +3.100;0.743;3.100;321.8;0.743;0.743;0;3;3;0.068;0.000;10.2;! +3.120;0.703;3.120;325.0;0.703;0.703;0;3;3;0.063;0.000;9.6;! +3.140;0.663;3.140;328.2;0.663;0.663;0;3;3;0.060;0.000;9.1;! +3.160;0.600;3.160;330.2;0.600;0.600;0;3;3;0.057;0.000;8.7;! +3.180;0.615;3.180;331.3;0.615;0.615;0;3;3;0.055;0.000;8.6;! +3.200;0.641;3.200;332.3;0.641;0.641;0;3;3;0.056;0.000;8.6;! +3.220;0.661;3.220;333.4;0.661;0.661;0;3;3;0.056;0.000;8.8;! +3.240;0.652;3.240;334.4;0.652;0.652;0;3;3;0.059;0.000;9.4;! +3.260;0.625;3.260;335.6;0.625;0.625;0;3;3;0.063;0.000;10.0;! +3.280;0.606;3.280;336.7;0.606;0.606;0;3;3;0.066;0.000;10.7;! +3.300;0.597;3.300;337.7;0.597;0.597;0;3;3;0.066;0.000;11.1;! +3.320;0.583;3.320;338.8;0.583;0.583;0;3;3;0.065;0.000;11.3;! +3.340;0.559;3.340;339.9;0.559;0.559;0;3;3;0.062;0.000;11.3;! +3.360;0.521;3.360;340.9;0.521;0.521;0;3;3;0.058;0.000;11.0;! +3.380;0.481;3.380;342.1;0.481;0.481;0;3;3;0.052;0.000;10.6;! +3.400;0.445;3.400;343.1;0.445;0.445;0;3;3;0.047;0.000;10.1;! +3.420;0.407;3.420;344.2;0.407;0.407;0;3;3;0.043;0.000;9.6;! +3.440;0.385;3.440;345.3;0.385;0.385;0;3;3;0.038;0.000;9.0;! +3.460;0.367;3.450;346.3;0.367;0.367;0;3;3;0.034;0.000;8.4;! +3.480;0.353;3.470;347.4;0.353;0.353;0;3;3;0.031;0.000;8.2;! +3.500;0.341;3.490;351.3;0.341;0.341;0;3;3;0.028;0.000;7.8;! +3.520;0.331;3.510;355.2;0.331;0.331;0;3;3;0.026;0.000;7.6;! +3.540;0.320;3.530;359.1;0.320;0.320;0;3;3;0.024;0.000;7.4;! +3.560;0.312;3.550;360.2;0.312;0.312;0;3;3;0.023;0.000;7.2;! +3.580;0.308;3.570;361.2;0.308;0.308;0;3;3;0.021;0.000;6.8;! +3.600;0.310;3.590;362.3;0.310;0.310;0;3;3;0.020;0.000;6.6;! +3.620;0.300;3.610;363.4;0.300;0.300;0;3;3;0.020;0.000;6.5;! +3.640;0.292;3.630;364.4;0.292;0.292;0;3;3;0.020;0.000;6.6;! +3.660;0.295;3.650;365.5;0.295;0.295;0;3;3;0.019;0.000;6.6;! +3.680;0.296;3.670;366.6;0.296;0.296;0;3;3;0.019;0.000;6.6;! +3.700;0.285;3.690;367.7;0.285;0.285;0;3;3;0.019;0.000;6.6;! +3.720;0.275;3.710;368.8;0.275;0.275;0;3;3;0.018;0.000;6.6;! +3.740;0.268;3.730;369.9;0.268;0.268;0;3;3;0.018;0.000;6.5;! +3.760;0.262;3.750;371.0;0.262;0.262;0;3;3;0.018;0.000;6.5;! +3.780;0.260;3.770;372.0;0.260;0.260;0;3;3;0.017;0.000;6.5;! +3.800;0.254;3.790;373.1;0.254;0.254;0;3;3;0.017;0.000;6.5;! +3.820;0.252;3.810;374.2;0.252;0.252;0;3;3;0.018;0.000;6.6;! +3.840;0.256;3.830;375.2;0.256;0.256;0;3;3;0.018;0.000;6.5;! +3.860;0.274;3.850;376.3;0.274;0.274;0;3;3;0.019;0.000;6.8;! +3.880;0.289;3.870;377.4;0.289;0.289;0;3;3;0.020;0.000;7.0;! +3.900;0.301;3.890;378.5;0.301;0.301;0;3;3;0.020;0.000;7.3;! +3.920;0.299;3.910;379.6;0.299;0.299;0;3;3;0.020;0.000;7.2;! +3.940;0.283;3.930;380.7;0.283;0.283;0;3;3;0.020;0.000;7.1;! +3.960;0.269;3.950;381.7;0.269;0.269;0;3;3;0.019;0.000;7.0;! +3.980;0.255;3.970;382.8;0.255;0.255;0;3;3;0.019;0.000;7.0;! +4.000;0.250;3.990;383.9;0.250;0.250;0;3;3;0.019;0.000;7.0;! +4.020;0.251;4.010;384.9;0.251;0.251;0;3;3;0.018;0.000;7.0;! +4.040;0.258;4.030;386.0;0.258;0.258;0;3;3;0.018;0.000;6.9;! +4.060;0.259;4.050;387.1;0.259;0.259;0;3;3;0.018;0.000;6.9;! +4.080;0.256;4.070;388.2;0.256;0.256;0;3;3;0.018;0.000;7.0;! +4.100;0.249;4.090;389.3;0.249;0.249;0;3;3;0.018;0.000;6.8;! +4.120;0.249;4.110;391.0;0.249;0.249;0;3;3;0.018;0.000;6.7;! +4.140;0.257;4.130;394.5;0.257;0.257;0;3;3;0.018;0.000;6.7;! +4.160;0.265;4.150;397.9;0.265;0.265;0;3;3;0.020;0.000;7.0;! +4.180;0.277;4.170;400.1;0.277;0.277;0;3;3;0.022;0.000;7.4;! +4.200;0.298;4.190;401.2;0.298;0.298;0;3;3;0.026;0.000;8.0;! +4.220;0.324;4.210;402.3;0.324;0.324;0;3;3;0.030;0.000;8.9;! +4.240;0.353;4.230;403.3;0.353;0.353;0;3;3;0.034;0.000;10.0;! +4.260;0.387;4.250;404.4;0.387;0.387;0;3;3;0.039;0.000;10.6;! +4.280;0.402;4.270;405.5;0.402;0.402;0;3;3;0.042;0.000;11.2;! +4.300;0.411;4.290;406.6;0.411;0.411;0;3;3;0.045;0.000;11.5;! +4.320;0.404;4.310;407.7;0.404;0.404;0;3;3;0.046;0.000;11.6;! +4.340;0.402;4.330;408.8;0.402;0.402;0;3;3;0.047;0.000;11.8;! +4.360;0.396;4.350;409.8;0.396;0.396;0;3;3;0.048;0.000;12.1;! +4.380;0.392;4.370;410.9;0.392;0.392;0;3;3;0.049;0.000;12.2;! +4.400;0.394;4.390;412.0;0.394;0.394;0;3;3;0.048;0.000;12.2;! +4.420;0.395;4.410;413.1;0.395;0.395;0;3;3;0.049;0.000;12.4;! +4.440;0.391;4.430;414.2;0.391;0.391;0;3;3;0.049;0.000;12.6;! +4.460;0.385;4.450;415.2;0.385;0.385;0;3;3;0.049;0.000;12.6;! +4.480;0.383;4.470;416.3;0.383;0.383;0;3;3;0.049;0.000;12.5;! +4.500;0.390;4.490;420.2;0.390;0.390;0;3;3;0.049;0.000;12.3;! +4.520;0.398;4.510;424.8;0.398;0.398;0;3;3;0.049;0.000;12.1;! +4.540;0.404;4.530;428.7;0.404;0.404;0;3;3;0.049;0.000;11.9;! +4.560;0.409;4.550;429.8;0.409;0.409;0;3;3;0.049;0.000;11.7;! +4.580;0.416;4.570;430.8;0.416;0.416;0;3;3;0.049;0.000;11.6;! +4.600;0.424;4.590;431.9;0.424;0.424;0;3;3;0.050;0.000;11.7;! +4.620;0.433;4.610;433.0;0.433;0.433;0;3;3;0.050;0.000;11.6;! +4.640;0.442;4.630;434.1;0.442;0.442;0;3;3;0.051;0.000;11.5;! +4.660;0.451;4.650;435.2;0.451;0.451;0;3;3;0.051;0.000;11.4;! +4.680;0.461;4.670;436.3;0.461;0.461;0;3;3;0.052;0.000;11.3;! +4.700;0.475;4.690;437.3;0.475;0.475;0;3;3;0.051;0.000;11.3;! +4.720;0.477;4.710;438.4;0.477;0.477;0;3;3;0.050;0.000;11.2;! +4.740;0.460;4.730;439.5;0.460;0.460;0;3;3;0.048;0.000;11.0;! +4.760;0.426;4.750;440.6;0.426;0.426;0;3;3;0.044;0.000;10.5;! +4.780;0.391;4.770;441.7;0.391;0.391;0;3;3;0.040;0.000;10.0;! +4.800;0.351;4.790;442.7;0.351;0.351;0;3;3;0.035;0.000;9.3;! +4.820;0.321;4.810;443.8;0.321;0.321;0;3;3;0.030;0.000;8.5;! +4.840;0.297;4.830;444.9;0.297;0.297;0;3;3;0.024;0.000;7.5;! +4.860;0.280;4.850;445.9;0.280;0.280;0;3;3;0.020;0.000;6.5;! +4.880;0.271;4.870;447.1;0.271;0.271;0;3;3;0.017;0.000;5.8;! +4.900;0.270;4.890;448.1;0.270;0.270;0;3;3;0.016;0.000;5.6;! +4.920;0.277;4.910;449.2;0.277;0.277;0;3;3;0.017;0.000;5.8;! +4.940;0.289;4.930;450.3;0.289;0.289;0;3;3;0.017;0.000;5.9;! +4.960;0.300;4.950;451.4;0.300;0.300;0;3;3;0.018;0.000;6.0;! +4.980;0.307;4.970;452.4;0.307;0.307;0;3;3;0.019;0.000;6.0;! +5.000;0.307;4.990;453.5;0.307;0.307;0;3;3;0.020;0.000;6.2;! +5.020;0.322;5.010;454.6;0.322;0.322;0;3;3;0.022;0.000;6.4;! +5.040;0.354;5.030;455.7;0.354;0.354;0;3;3;0.023;0.000;6.6;! +5.060;0.387;5.050;456.7;0.387;0.387;0;3;3;0.024;0.000;6.8;! +5.080;0.408;5.070;457.8;0.408;0.408;0;3;3;0.026;0.000;6.9;! +5.100;0.412;5.090;458.9;0.412;0.412;0;3;3;0.027;0.000;6.9;! +5.120;0.417;5.110;461.8;0.417;0.417;0;3;3;0.028;0.000;6.8;! +5.140;0.423;5.130;465.0;0.423;0.423;0;3;3;0.029;0.000;6.9;! +5.160;0.429;5.150;467.4;0.429;0.429;0;3;3;0.029;0.000;6.9;! +5.180;0.432;5.170;468.5;0.432;0.432;0;3;3;0.029;0.000;7.1;! +5.200;0.407;5.190;469.6;0.407;0.407;0;3;3;0.029;0.000;7.2;! +5.220;0.395;5.210;470.6;0.395;0.395;0;3;3;0.029;0.000;7.1;! +5.240;0.398;5.230;471.7;0.398;0.398;0;3;3;0.028;0.000;7.0;! +5.260;0.391;5.250;472.8;0.391;0.391;0;3;3;0.027;0.000;6.8;! +5.280;0.363;5.270;473.9;0.363;0.363;0;3;3;0.025;0.000;6.5;! +5.300;0.367;5.290;474.9;0.367;0.367;0;3;3;0.023;0.000;6.1;! +5.320;0.373;5.310;476.1;0.373;0.373;0;3;3;0.021;0.000;5.7;! +5.340;0.357;5.330;477.1;0.357;0.357;0;3;3;0.020;0.000;5.9;! +5.360;0.329;5.350;478.2;0.329;0.329;0;3;3;0.021;0.000;6.1;! +5.380;0.306;5.370;479.3;0.306;0.306;0;3;3;0.019;0.000;5.9;! +5.400;0.300;5.390;480.3;0.300;0.300;0;3;3;0.018;0.000;5.6;! +5.420;0.291;5.410;481.4;0.291;0.291;0;3;3;0.016;0.000;5.5;! +5.440;0.270;5.430;482.5;0.270;0.270;0;3;3;0.016;0.000;5.4;! +5.460;0.266;5.450;483.6;0.266;0.266;0;3;3;0.015;0.000;5.4;! +5.480;0.270;5.470;484.6;0.270;0.270;0;3;3;0.015;0.000;5.1;! +5.500;0.291;5.490;486.4;0.291;0.291;0;3;3;0.015;0.000;4.4;! +5.520;0.349;5.510;490.9;0.349;0.349;0;3;3;0.014;0.000;3.7;! +5.540;0.407;5.530;495.4;0.407;0.407;0;3;3;0.014;0.000;3.4;! +5.560;0.457;5.550;497.3;0.457;0.457;0;3;3;0.015;0.000;3.1;! +5.580;0.492;5.570;498.4;0.492;0.492;0;3;3;0.014;0.000;2.8;! +5.600;0.515;5.590;499.4;0.515;0.515;0;3;3;0.014;0.000;2.6;! +5.620;0.574;5.610;500.5;0.574;0.574;0;3;3;0.013;0.000;2.5;! +5.640;0.572;5.630;501.6;0.572;0.572;0;3;3;0.013;0.000;2.3;! +5.660;0.564;5.650;502.7;0.564;0.564;0;3;3;0.014;0.000;2.2;! +5.680;0.590;5.670;503.8;0.590;0.590;0;3;3;0.014;0.000;2.1;! +5.700;0.635;5.690;504.8;0.635;0.635;0;3;3;0.012;0.000;1.7;! +5.720;0.756;5.710;505.9;0.756;0.756;0;3;3;0.012;0.000;1.4;! +5.740;0.919;5.730;507.0;0.919;0.919;0;3;3;0.013;0.000;1.4;! +5.760;1.011;5.750;508.1;1.011;1.011;0;3;3;0.013;0.000;1.3;! +5.780;1.092;5.770;509.1;1.092;1.092;0;3;3;0.014;0.000;1.2;! +5.800;1.216;5.790;510.2;1.216;1.216;0;3;3;0.015;0.000;1.3;! +5.820;1.321;5.810;511.3;1.321;1.321;0;3;3;0.017;0.000;1.3;! +5.840;1.393;5.830;512.3;1.393;1.393;0;3;3;0.019;0.000;1.4;! +5.860;1.427;5.850;513.4;1.427;1.427;0;3;3;0.020;0.000;1.4;! +5.880;1.448;5.870;514.5;1.448;1.448;0;3;3;0.020;0.000;1.4;! +5.900;1.470;5.890;515.6;1.470;1.470;0;3;3;0.022;0.000;1.5;! +5.920;1.439;5.910;516.7;1.439;1.439;0;3;3;0.023;0.000;1.5;! +5.940;1.387;5.930;517.7;1.387;1.387;0;3;3;0.021;0.000;1.5;! +5.960;1.350;5.950;518.8;1.350;1.350;0;3;3;0.021;0.000;1.4;! +5.980;1.353;5.970;519.9;1.353;1.353;0;3;3;0.021;0.000;1.5;! +6.000;1.348;5.990;520.9;1.348;1.348;0;3;3;0.021;0.000;1.5;! +6.020;1.353;6.010;522.0;1.353;1.353;0;3;3;0.021;0.000;1.5;! +6.040;1.321;6.030;523.1;1.321;1.321;0;3;3;0.020;0.000;1.5;! +6.060;1.313;6.050;524.2;1.313;1.313;0;3;3;0.019;0.000;1.4;! +6.080;1.393;6.070;525.2;1.393;1.393;0;3;3;0.020;0.000;1.4;! +6.100;1.468;6.090;526.3;1.468;1.468;0;3;3;0.022;0.000;1.6;! +6.120;1.370;6.110;529.1;1.370;1.370;0;3;3;0.023;0.000;1.8;! +6.140;1.245;6.130;532.4;1.245;1.245;0;3;3;0.025;0.000;1.9;! +6.160;1.122;6.150;534.9;1.122;1.122;0;3;3;0.021;0.000;1.7;! +6.180;1.087;6.170;535.9;1.087;1.087;0;3;3;0.020;0.000;1.6;! +6.200;1.183;6.190;537.0;1.183;1.183;0;3;3;0.019;0.000;1.5;! +6.220;1.289;6.210;538.1;1.289;1.289;0;3;3;0.018;0.000;1.4;! +6.240;1.272;6.230;539.2;1.272;1.272;0;3;3;0.017;0.000;1.4;! +6.260;1.193;6.250;540.2;1.193;1.193;0;3;3;0.017;0.000;1.4;! +6.280;1.125;6.270;541.3;1.125;1.125;0;3;3;0.017;0.000;1.4;! +6.300;1.073;6.290;542.4;1.073;1.073;0;3;3;0.017;0.000;1.5;! +6.320;1.028;6.310;543.5;1.028;1.028;0;3;3;0.019;0.000;1.7;! +6.340;0.970;6.330;544.6;0.970;0.970;0;3;3;0.019;0.000;1.9;! +6.360;0.905;6.350;545.7;0.905;0.905;0;3;3;0.018;0.000;1.9;! +6.380;0.888;6.370;546.7;0.888;0.888;0;3;3;0.017;0.000;1.7;! +6.400;0.914;6.390;547.8;0.914;0.914;0;3;3;0.015;0.000;1.6;! +6.420;0.931;6.410;548.9;0.931;0.931;0;3;3;0.015;0.000;1.6;! +6.440;0.885;6.430;549.9;0.885;0.885;0;3;3;0.014;0.000;1.6;! +6.460;0.803;6.450;551.1;0.803;0.803;0;3;3;0.013;0.000;1.5;! +6.480;0.728;6.470;552.1;0.728;0.728;0;3;3;0.014;0.000;1.6;! +6.500;0.661;6.490;553.6;0.661;0.661;0;3;3;0.015;0.000;1.9;! +6.520;0.638;6.510;557.7;0.638;0.638;0;3;3;0.014;0.000;1.9;! +6.540;0.615;6.530;561.8;0.615;0.615;0;3;3;0.012;0.000;1.8;! +6.560;0.622;6.550;564.5;0.622;0.622;0;3;3;0.011;0.000;1.7;! +6.580;0.640;6.570;565.6;0.640;0.640;0;3;3;0.010;0.000;1.6;! +6.600;0.631;6.590;566.6;0.631;0.631;0;3;3;0.010;0.000;1.7;! +6.620;0.612;6.610;567.7;0.612;0.612;0;3;3;0.010;0.000;1.6;! +6.640;0.573;6.630;568.8;0.573;0.573;0;3;3;0.008;0.000;1.4;! +6.660;0.544;6.650;569.9;0.544;0.544;0;3;3;0.009;0.000;1.5;! +6.680;0.518;6.670;570.9;0.518;0.518;0;3;3;0.010;0.000;1.8;! +6.700;0.493;6.690;572.0;0.493;0.493;0;3;3;0.010;0.000;1.9;! +6.720;0.434;6.710;573.1;0.434;0.434;0;3;3;0.010;0.000;2.0;! +6.740;0.448;6.730;574.2;0.448;0.448;0;3;3;0.009;0.000;1.7;! +6.760;0.535;6.750;575.3;0.535;0.535;0;3;3;0.009;0.000;1.8;! +6.780;0.562;6.770;576.4;0.562;0.562;0;3;3;0.009;0.000;1.8;! +6.800;0.532;6.790;577.4;0.532;0.532;0;3;3;0.010;0.000;1.8;! +6.820;0.500;6.810;578.5;0.500;0.500;0;3;3;0.009;0.000;1.7;! +6.840;0.532;6.830;579.6;0.532;0.532;0;3;3;0.010;0.000;1.7;! +6.860;0.597;6.850;580.7;0.597;0.597;0;3;3;0.010;0.000;1.8;! +6.880;0.607;6.870;581.7;0.607;0.607;0;3;3;0.010;0.000;1.8;! +6.900;0.573;6.890;582.8;0.573;0.573;0;3;3;0.010;0.000;1.8;! +6.920;0.531;6.910;583.9;0.531;0.531;0;3;3;0.009;0.000;1.7;! +6.940;0.480;6.930;585.0;0.480;0.480;0;3;3;0.010;0.000;1.9;! +6.960;0.408;6.950;586.1;0.408;0.408;0;3;3;0.010;0.000;2.2;! +6.980;0.372;6.970;587.1;0.372;0.372;0;3;3;0.011;0.000;2.4;! +7.000;0.374;6.990;588.2;0.374;0.374;0;3;3;0.011;0.000;2.5;! +7.020;0.386;7.010;589.3;0.386;0.386;0;3;3;0.010;0.000;2.4;! +7.040;0.413;7.030;590.4;0.413;0.413;0;3;3;0.010;0.000;2.3;! +7.060;0.452;7.050;591.4;0.452;0.452;0;3;3;0.009;0.000;2.1;! +7.080;0.474;7.070;592.5;0.474;0.474;0;3;3;0.008;0.000;1.9;! +7.100;0.439;7.090;593.6;0.439;0.439;0;3;3;0.008;0.000;1.9;! +7.120;0.409;7.110;595.6;0.409;0.409;0;3;3;0.008;0.000;1.9;! +7.140;0.383;7.130;598.4;0.383;0.383;0;3;3;0.008;0.000;2.0;! +7.160;0.358;7.150;601.1;0.358;0.358;0;3;3;0.008;0.000;2.1;! +7.180;0.345;7.170;603.1;0.345;0.345;0;3;3;0.008;0.000;2.1;! +7.200;0.350;7.190;604.1;0.350;0.350;0;3;3;0.008;0.000;2.2;! +7.220;0.351;7.210;605.2;0.351;0.351;0;3;3;0.008;0.000;2.3;! +7.240;0.360;7.230;606.2;0.360;0.360;0;3;3;0.008;0.000;2.3;! +7.260;0.373;7.250;607.3;0.373;0.373;0;3;3;0.008;0.000;2.3;! +7.280;0.369;7.270;608.4;0.369;0.369;0;3;3;0.009;0.000;2.5;! +7.300;0.363;7.290;609.5;0.363;0.363;0;3;3;0.011;0.000;2.8;! +7.320;0.368;7.310;610.6;0.368;0.368;0;3;3;0.010;0.000;2.8;! +7.340;0.385;7.330;611.7;0.385;0.385;0;3;3;0.011;0.000;2.8;! +7.360;0.386;7.350;612.7;0.386;0.386;0;3;3;0.011;0.000;2.9;! +7.380;0.364;7.370;613.8;0.364;0.364;0;3;3;0.011;0.000;2.9;! +7.400;0.358;7.390;614.9;0.358;0.358;0;3;3;0.011;0.000;2.9;! +7.420;0.351;7.410;616.0;0.351;0.351;0;3;3;0.010;0.000;2.8;! +7.440;0.353;7.430;617.1;0.353;0.353;0;3;3;0.010;0.000;2.8;! +7.460;0.353;7.450;618.1;0.353;0.353;0;3;3;0.010;0.000;2.9;! +7.480;0.355;7.470;619.2;0.355;0.355;0;3;3;0.011;0.000;3.1;! +7.500;0.373;7.490;622.3;0.373;0.373;0;3;3;0.011;0.000;2.9;! +7.520;0.393;7.510;626.1;0.393;0.393;0;3;3;0.011;0.000;2.8;! +7.540;0.412;7.530;629.9;0.412;0.412;0;3;3;0.011;0.000;2.8;! +7.560;0.378;7.550;631.4;0.378;0.378;0;3;3;0.011;0.000;3.0;! +7.580;0.367;7.570;632.6;0.367;0.367;0;3;3;0.011;0.000;3.0;! +7.600;0.363;7.590;633.7;0.363;0.363;0;3;3;0.012;0.000;3.1;! +7.620;0.369;7.610;634.8;0.369;0.369;0;3;3;0.011;0.000;3.0;! +7.640;0.363;7.630;635.9;0.363;0.363;0;3;3;0.011;0.000;3.0;! +7.660;0.371;7.650;637.1;0.371;0.371;0;3;3;0.011;0.000;3.0;! +7.680;0.375;7.670;638.2;0.375;0.375;0;3;3;0.012;0.000;3.0;! +7.700;0.371;7.690;639.3;0.371;0.371;0;3;3;0.012;0.000;3.1;! +7.720;0.381;7.710;640.4;0.381;0.381;0;3;3;0.012;0.000;3.2;! +7.740;0.391;7.730;641.6;0.391;0.391;0;3;3;0.012;0.000;3.0;! +7.760;0.401;7.750;642.7;0.401;0.401;0;3;3;0.012;0.000;3.0;! +7.780;0.406;7.770;643.8;0.406;0.406;0;3;3;0.013;0.000;3.1;! +7.800;0.404;7.790;644.9;0.404;0.404;0;3;3;0.013;0.000;3.1;! +7.820;0.425;7.810;646.1;0.425;0.425;0;3;3;0.014;0.000;3.2;! +7.840;0.440;7.830;647.2;0.440;0.440;0;3;3;0.015;0.000;3.4;! +7.860;0.446;7.850;648.3;0.446;0.446;0;3;3;0.016;0.000;3.6;! +7.880;0.450;7.870;649.4;0.450;0.450;0;3;3;0.016;0.000;3.6;! +7.900;0.453;7.890;650.6;0.453;0.453;0;3;3;0.017;0.000;3.8;! +7.920;0.453;7.910;651.7;0.453;0.453;0;3;3;0.018;0.000;3.8;! +7.940;0.448;7.930;652.8;0.448;0.448;0;3;3;0.018;0.000;4.0;! +7.960;0.455;7.950;653.9;0.455;0.455;0;3;3;0.019;0.000;4.1;! +7.980;0.457;7.970;655.1;0.457;0.457;0;3;3;0.018;0.000;4.0;! +8.000;0.461;7.990;656.2;0.461;0.461;0;3;3;0.018;0.000;4.0;! +8.020;0.459;8.010;657.3;0.459;0.459;0;3;3;0.018;0.000;4.0;! +8.040;0.448;8.030;658.4;0.448;0.448;0;3;3;0.019;0.000;4.2;! +8.060;0.446;8.050;659.6;0.446;0.446;0;3;3;0.020;0.000;4.3;! +8.080;0.458;8.070;660.7;0.458;0.458;0;3;3;0.020;0.000;4.3;! +8.100;0.484;8.090;661.8;0.484;0.484;0;3;3;0.020;0.000;4.2;! +8.120;0.508;8.110;663.8;0.508;0.508;0;3;3;0.021;0.000;4.2;! +8.140;0.534;8.130;667.5;0.534;0.534;0;3;3;0.022;0.000;4.4;! +8.160;0.557;8.150;671.1;0.557;0.557;0;3;3;0.024;0.000;4.7;! +8.180;0.521;8.170;672.4;0.521;0.521;0;3;3;0.025;0.000;4.9;! +8.200;0.506;8.190;673.8;0.506;0.506;0;3;3;0.025;0.000;5.0;! +8.220;0.488;8.210;675.1;0.488;0.488;0;3;3;0.025;0.000;5.1;! +8.240;0.469;8.230;676.6;0.469;0.469;0;3;3;0.025;0.000;5.0;! +8.260;0.461;8.250;677.9;0.461;0.461;0;3;3;0.024;0.000;4.9;! +8.280;0.467;8.270;679.4;0.467;0.467;0;3;3;0.023;0.000;4.7;! +8.300;0.472;8.290;680.7;0.472;0.472;0;3;3;0.022;0.000;4.6;! +8.320;0.472;8.310;682.1;0.472;0.472;0;3;3;0.021;0.000;4.3;! +8.340;0.483;8.330;683.6;0.483;0.483;0;3;3;0.020;0.000;4.2;! +8.360;0.480;8.350;684.9;0.480;0.480;0;3;3;0.020;0.000;4.2;! +8.380;0.473;8.370;686.3;0.473;0.473;0;3;3;0.020;0.000;4.1;! +8.400;0.473;8.390;687.7;0.473;0.473;0;3;3;0.020;0.000;4.1;! +8.420;0.484;8.410;689.1;0.484;0.484;0;3;3;0.021;0.000;4.1;! +8.440;0.494;8.430;690.4;0.494;0.494;0;3;3;0.021;0.000;4.1;! +8.460;0.541;8.450;691.9;0.541;0.541;0;3;3;0.021;0.000;4.1;! +8.480;0.539;8.470;693.2;0.539;0.539;0;3;3;0.021;0.000;4.1;! +8.500;0.512;8.490;695.5;0.512;0.512;0;3;3;0.021;0.000;4.1;! +8.520;0.512;8.510;699.9;0.512;0.512;0;3;3;0.021;0.000;4.0;! +8.540;0.513;8.530;704.3;0.513;0.513;0;3;3;0.021;0.000;3.9;! +8.560;0.512;8.550;705.9;0.512;0.512;0;3;3;0.019;0.000;3.7;! +8.580;0.505;8.570;707.0;0.505;0.505;0;3;3;0.018;0.000;3.6;! +8.600;0.501;8.590;708.1;0.501;0.501;0;3;3;0.018;0.000;3.5;! +8.620;0.489;8.610;709.2;0.489;0.489;0;3;3;0.018;0.000;3.5;! +8.640;0.490;8.630;710.2;0.490;0.490;0;3;3;0.017;0.000;3.4;! +8.660;0.490;8.650;711.3;0.490;0.490;0;3;3;0.017;0.000;3.4;! +8.680;0.487;8.670;712.4;0.487;0.487;0;3;3;0.016;0.000;3.3;! +8.700;0.486;8.690;713.5;0.486;0.486;0;3;3;0.016;0.000;3.4;! +8.720;0.484;8.710;714.6;0.484;0.484;0;3;3;0.016;0.000;3.3;! +8.740;0.473;8.730;715.7;0.473;0.473;0;3;3;0.016;0.000;3.3;! +8.760;0.459;8.750;716.7;0.459;0.459;0;3;3;0.015;0.000;3.3;! +8.780;0.446;8.770;717.8;0.446;0.446;0;3;3;0.015;0.000;3.2;! +8.800;0.440;8.790;718.9;0.440;0.440;0;3;3;0.015;0.000;3.2;! +8.820;0.435;8.810;720.0;0.435;0.435;0;3;3;0.014;0.000;3.1;! +8.840;0.434;8.830;721.1;0.434;0.434;0;3;3;0.015;0.000;3.3;! +8.860;0.443;8.850;722.1;0.443;0.443;0;3;3;0.014;0.000;3.1;! +8.880;0.446;8.870;723.2;0.446;0.446;0;3;3;0.013;0.000;3.0;! +8.900;0.453;8.890;724.3;0.453;0.453;0;3;3;0.013;0.000;3.0;! +8.920;0.433;8.910;725.4;0.433;0.433;0;3;3;0.013;0.000;2.9;! +8.940;0.426;8.930;726.4;0.426;0.426;0;3;3;0.012;0.000;2.8;! +8.960;0.421;8.950;727.6;0.421;0.421;0;3;3;0.013;0.000;2.9;! +8.980;0.421;8.970;728.6;0.421;0.421;0;3;3;0.013;0.000;2.9;! +9.000;0.425;8.990;729.7;0.425;0.425;0;3;3;0.012;0.000;2.7;! +9.020;0.432;9.010;730.8;0.432;0.432;0;3;3;0.012;0.000;2.7;! +9.040;0.446;9.030;731.8;0.446;0.446;0;3;3;0.013;0.000;2.9;! +9.060;0.463;9.050;732.9;0.463;0.463;0;3;3;0.013;0.000;2.8;! +9.080;0.487;9.070;734.0;0.487;0.487;0;3;3;0.013;0.000;2.8;! +9.100;0.476;9.090;735.1;0.476;0.476;0;3;3;0.014;0.000;2.9;! +9.120;0.478;9.110;736.5;0.478;0.478;0;3;3;0.017;0.000;3.1;! +9.140;0.580;9.130;739.8;0.580;0.580;0;3;3;0.017;0.000;2.8;! +9.160;0.681;9.150;743.2;0.681;0.681;0;3;3;0.019;0.000;2.8;! +9.180;0.757;9.170;745.6;0.757;0.757;0;3;3;0.017;0.000;2.2;! +9.200;0.767;9.190;746.8;0.767;0.767;0;3;3;0.020;0.000;2.3;! +9.220;0.813;9.210;748.0;0.813;0.813;0;3;3;0.019;0.000;2.1;! +9.240;0.940;9.230;749.3;0.940;0.940;0;3;3;0.019;0.000;2.0;! +9.260;1.109;9.250;750.4;1.109;1.109;0;3;3;0.019;0.000;1.9;! +9.280;1.150;9.270;751.7;1.150;1.150;0;3;3;0.020;0.000;1.9;! +9.300;1.164;9.290;752.9;1.164;1.164;0;3;3;0.021;0.000;2.0;! +9.320;1.086;9.310;754.2;1.086;1.086;0;3;3;0.022;0.000;2.0;! +9.340;0.990;9.330;755.4;0.990;0.990;0;3;3;0.021;0.000;1.8;! +9.360;0.870;9.350;756.6;0.870;0.870;0;3;3;0.022;0.000;1.9;! +9.380;0.974;9.370;757.9;0.974;0.974;0;3;3;0.021;0.000;1.8;! +9.400;1.340;9.390;759.1;1.340;1.340;0;3;3;0.023;0.000;1.9;! +9.420;1.456;9.410;760.3;1.456;1.456;0;3;3;0.022;0.000;1.8;! +9.440;1.210;9.430;761.6;1.210;1.210;0;3;3;0.022;0.000;1.7;! +9.460;1.123;9.450;762.8;1.123;1.123;0;3;3;0.021;0.000;1.6;! +9.480;1.373;9.470;764.0;1.373;1.373;0;3;3;0.019;0.000;1.4;! +9.500;1.491;9.490;766.9;1.491;1.491;0;3;3;0.024;0.000;1.9;! +9.520;1.410;9.510;770.8;1.410;1.410;0;3;3;0.027;0.000;2.3;! +9.540;1.328;9.530;774.7;1.328;1.328;0;3;3;0.028;0.000;2.6;! +9.560;1.056;9.550;776.4;1.056;1.056;0;3;3;0.026;0.000;2.5;! +9.580;0.817;9.570;777.4;0.817;0.817;0;3;3;0.024;0.000;2.2;! +9.600;0.668;9.590;778.6;0.668;0.668;0;3;3;0.025;0.000;2.3;! +9.620;0.845;9.610;779.6;0.845;0.845;0;3;3;0.024;0.000;2.1;! +9.640;1.260;9.630;780.7;1.260;1.260;0;3;3;0.024;0.000;2.1;! +9.660;1.415;9.650;781.8;1.415;1.415;0;3;3;0.023;0.000;1.8;! +9.680;1.367;9.670;782.9;1.367;1.367;0;3;3;0.023;0.000;1.6;! +9.700;1.389;9.690;784.0;1.389;1.389;0;3;3;0.023;0.000;1.4;! +9.720;1.739;9.710;785.1;1.739;1.739;0;3;3;0.023;0.000;1.3;! +9.740;2.099;9.730;786.1;2.099;2.099;0;3;3;0.026;0.000;1.4;! +9.760;2.222;9.750;787.2;2.222;2.222;0;3;3;0.025;0.000;1.4;! +9.780;2.113;9.770;788.3;2.113;2.113;0;3;3;0.026;0.000;1.4;! +9.800;1.835;9.790;789.4;1.835;1.835;0;3;3;0.029;0.000;1.6;! +9.820;1.497;9.810;790.4;1.497;1.497;0;3;3;0.032;0.000;1.9;! +9.840;1.193;9.830;791.5;1.193;1.193;0;3;3;0.033;0.000;2.2;! +9.860;1.051;9.850;792.6;1.051;1.051;0;3;3;0.029;0.000;2.1;! +9.880;1.080;9.870;793.6;1.080;1.080;0;3;3;0.026;0.000;2.0;! +9.900;1.133;9.890;794.7;1.133;1.133;0;3;3;0.025;0.000;2.0;! +9.920;1.128;9.910;795.8;1.128;1.128;0;3;3;0.022;0.000;1.8;! +9.940;1.191;9.930;796.9;1.191;1.191;0;3;3;0.020;0.000;1.6;! +9.960;1.309;9.950;798.0;1.309;1.309;0;3;3;0.021;0.000;1.7;! +9.980;1.357;9.970;799.1;1.357;1.357;0;3;3;0.024;0.000;1.9;! +10.000;1.282;9.990;800.2;1.282;1.282;0;3;3;0.025;0.000;2.0;! +10.020;1.197;10.010;801.2;1.197;1.197;0;3;3;0.025;0.000;2.1;! +10.040;1.148;10.030;802.3;1.148;1.148;0;3;3;0.028;0.000;2.5;! +10.060;1.090;10.050;803.4;1.090;1.090;0;3;3;0.030;0.000;2.8;! +10.080;0.919;10.070;804.4;0.919;0.919;0;3;3;0.032;0.000;3.2;! +10.100;0.772;10.090;805.5;0.772;0.772;0;3;3;0.033;0.000;3.5;! +10.120;0.648;10.110;806.6;0.648;0.648;0;3;3;0.030;0.000;3.4;! +10.140;0.691;10.130;809.6;0.691;0.691;0;3;3;0.025;0.000;2.8;! +10.160;0.734;10.150;812.5;0.734;0.734;0;3;3;0.023;0.000;2.7;! +10.180;0.794;10.170;815.2;0.794;0.794;0;3;3;0.027;0.000;3.1;! +10.200;1.010;10.190;816.3;1.010;1.010;0;3;3;0.025;0.000;3.0;! +10.220;0.997;10.210;817.3;0.997;0.997;0;3;3;0.023;0.000;2.7;! +10.240;0.812;10.230;818.4;0.812;0.812;0;3;3;0.020;0.000;2.2;! +10.260;0.610;10.250;819.5;0.610;0.610;0;3;3;0.021;0.000;2.0;! +10.280;0.751;10.270;820.6;0.751;0.751;0;3;3;0.021;0.000;1.8;! +10.300;1.253;10.290;821.7;1.253;1.253;0;3;3;0.019;0.000;1.6;! +10.320;1.713;10.310;822.8;1.713;1.713;0;3;3;0.018;0.000;1.4;! +10.340;1.712;10.330;823.8;1.712;1.712;1;3;3;0.019;0.000;1.5;! +10.360;1.493;10.350;824.9;1.493;1.493;0;3;3;0.023;0.000;1.7;! +10.380;1.268;10.370;826.0;1.268;1.268;1;3;3;0.027;0.000;2.0;! +10.400;1.075;10.390;827.1;1.075;1.075;1;3;3;0.030;0.000;2.3;! +10.420;0.969;10.410;828.2;0.969;0.969;1;3;3;0.030;0.000;2.4;! +10.440;0.987;10.430;829.2;0.987;0.987;1;3;3;0.027;0.000;2.2;! +10.460;1.113;10.450;830.3;1.113;1.113;1;3;3;0.024;0.000;2.1;! +10.480;1.277;10.470;831.4;1.277;1.277;1;3;3;0.024;0.000;2.0;! +10.500;1.606;10.490;832.5;1.606;1.606;1;3;3;0.024;0.000;1.8;! +10.520;1.691;10.510;837.5;1.691;1.691;1;3;3;0.027;0.000;1.9;! +10.540;1.764;10.530;842.7;1.764;1.764;1;3;3;0.030;0.000;2.1;! +10.560;1.603;10.550;845.4;1.603;1.603;1;3;3;0.032;0.000;2.3;! +10.580;1.342;10.570;846.8;1.342;1.342;1;3;3;0.031;0.000;2.3;! +10.600;1.179;10.590;848.2;1.179;1.179;1;3;3;0.033;0.000;2.6;! +10.620;1.097;10.610;849.6;1.097;1.097;1;3;3;0.034;0.000;2.8;! +10.640;1.011;10.630;851.1;1.011;1.011;1;3;3;0.032;0.000;2.9;! +10.660;0.932;10.650;852.4;0.932;0.932;1;3;3;0.029;0.000;2.6;! +10.680;0.910;10.670;853.9;0.910;0.910;1;3;3;0.024;0.000;2.1;! +10.700;1.017;10.690;855.3;1.017;1.017;1;3;3;0.020;0.000;1.7;! +10.720;1.280;10.710;856.7;1.280;1.280;1;3;3;0.019;0.000;1.5;! +10.740;1.485;10.730;858.1;1.485;1.485;1;3;3;0.021;0.000;1.6;! +10.760;1.477;10.750;859.6;1.477;1.477;1;3;3;0.023;0.000;1.8;! +10.780;1.336;10.770;861.0;1.336;1.336;1;3;3;0.026;0.000;2.0;! +10.800;1.158;10.790;862.4;1.158;1.158;1;3;3;0.029;0.000;2.3;! +10.820;1.068;10.810;863.8;1.068;1.068;1;3;3;0.029;0.000;2.4;! +10.840;1.010;10.830;865.2;1.010;1.010;1;3;3;0.028;0.000;2.4;! +10.860;1.015;10.850;866.6;1.015;1.015;1;3;3;0.026;0.000;2.2;! +10.880;1.111;10.860;868.1;1.111;1.111;1;3;3;0.022;0.000;2.0;! +10.900;1.190;10.880;869.3;1.190;1.190;1;3;3;0.022;0.000;1.9;! +10.920;1.213;10.900;870.4;1.213;1.213;1;3;3;0.021;0.000;1.9;! +10.940;1.204;10.920;871.5;1.204;1.204;1;3;3;0.023;0.000;2.0;! +10.960;1.168;10.940;872.6;1.168;1.168;1;3;3;0.021;0.000;1.7;! +10.980;1.073;10.960;873.7;1.073;1.073;1;3;3;0.023;0.000;1.8;! +11.000;1.116;10.980;874.7;1.116;1.116;1;3;3;0.023;0.000;1.9;! +11.020;1.276;11.000;875.8;1.276;1.276;1;3;3;0.025;0.000;2.1;! +11.040;1.349;11.020;876.9;1.349;1.349;1;3;3;0.027;0.000;2.4;! +11.060;1.194;11.040;877.9;1.194;1.194;1;3;3;0.028;0.000;2.4;! +11.080;1.022;11.060;879.0;1.022;1.022;1;3;3;0.026;0.000;2.3;! +11.100;0.941;11.080;880.1;0.941;0.941;1;3;3;0.024;0.000;2.1;! +11.120;0.960;11.100;881.2;0.960;0.960;1;3;3;0.028;0.000;2.5;! +11.140;1.014;11.120;882.7;1.014;1.014;1;3;3;0.027;0.000;2.5;! +11.160;1.118;11.140;885.9;1.118;1.118;1;3;3;0.026;0.000;2.4;! +11.180;1.222;11.160;889.2;1.222;1.222;1;3;3;0.025;0.000;2.3;! +11.200;1.178;11.180;891.1;1.178;1.178;1;3;3;0.025;0.000;2.4;! +11.220;1.087;11.200;892.2;1.087;1.087;1;3;3;0.026;0.000;2.5;! +11.240;1.049;11.220;893.3;1.049;1.049;1;3;3;0.027;0.000;2.7;! +11.260;0.942;11.240;894.4;0.942;0.942;1;3;3;0.026;0.000;2.7;! +11.280;0.821;11.260;895.4;0.821;0.821;1;3;3;0.026;0.000;2.9;! +11.300;0.720;11.280;896.5;0.720;0.720;1;3;3;0.024;0.000;2.7;! +11.320;0.742;11.300;897.6;0.742;0.742;1;3;3;0.023;0.000;2.7;! +11.340;0.792;11.320;898.7;0.792;0.792;1;3;3;0.022;0.000;2.7;! +11.360;0.811;11.340;899.8;0.811;0.811;1;3;3;0.019;0.000;2.2;! +11.380;0.882;11.360;900.8;0.882;0.882;1;3;3;0.018;0.000;2.1;! +11.400;0.904;11.380;901.9;0.904;0.904;1;3;3;0.022;0.000;2.5;! +11.420;0.898;11.400;903.0;0.898;0.898;1;3;3;0.022;0.000;2.4;! +11.440;0.901;11.420;904.1;0.901;0.901;1;3;3;0.021;0.000;2.3;! +11.460;0.951;11.440;905.2;0.951;0.951;1;3;3;0.021;0.000;2.2;! +11.480;1.096;11.460;906.2;1.096;1.096;1;3;3;0.021;0.000;2.1;! +11.500;1.165;11.480;909.2;1.165;1.165;1;3;3;0.027;0.000;2.6;! +11.520;1.162;11.500;912.7;1.162;1.162;1;3;3;0.029;0.000;2.8;! +11.540;1.159;11.520;916.3;1.159;1.159;1;3;3;0.031;0.000;2.7;! +11.560;1.047;11.540;918.2;1.047;1.047;1;3;3;0.029;0.000;2.2;! +11.580;1.051;11.560;919.3;1.051;1.051;1;3;3;0.026;0.000;1.9;! +11.600;1.332;11.580;920.4;1.332;1.332;1;3;3;0.027;0.000;2.0;! +11.620;1.688;11.600;921.6;1.688;1.688;1;3;3;0.028;0.000;2.0;! +11.640;1.731;11.620;922.7;1.731;1.731;1;3;3;0.028;0.000;2.0;! +11.660;1.542;11.640;923.8;1.542;1.542;1;3;3;0.032;0.000;2.4;! +11.680;1.353;11.660;924.9;1.353;1.353;1;3;3;0.033;0.000;2.6;! +11.700;1.074;11.680;926.1;1.074;1.074;1;3;3;0.032;0.000;2.7;! +11.720;0.856;11.700;927.1;0.856;0.856;1;3;3;0.029;0.000;2.7;! +11.740;0.711;11.720;928.3;0.711;0.711;1;3;3;0.030;0.000;3.2;! +11.760;0.722;11.740;929.4;0.722;0.722;1;3;3;0.029;0.000;3.3;! +11.780;0.813;11.760;930.5;0.813;0.813;1;3;3;0.025;0.000;3.0;! +11.800;0.845;11.780;931.6;0.845;0.845;1;3;3;0.021;0.000;2.6;! +11.820;0.838;11.800;932.7;0.838;0.838;1;3;3;0.020;0.000;2.5;! +11.840;0.829;11.820;933.8;0.829;0.829;1;3;3;0.022;0.000;2.8;! +11.860;0.806;11.840;934.9;0.806;0.806;1;3;3;0.022;0.000;2.8;! +11.880;0.774;11.860;936.1;0.774;0.774;1;3;3;0.023;0.000;3.1;! +11.900;0.702;11.880;937.2;0.702;0.702;1;3;3;0.023;0.000;3.1;! +11.920;0.598;11.900;938.3;0.598;0.598;1;3;3;0.020;0.000;2.7;! +11.940;0.589;11.920;939.4;0.589;0.589;1;3;3;0.019;0.000;2.6;! +11.960;0.665;11.940;940.5;0.665;0.665;1;3;3;0.020;0.000;2.8;! +11.980;0.763;11.960;941.6;0.763;0.763;1;3;3;0.019;0.000;2.7;! +12.000;0.832;11.980;942.7;0.832;0.832;1;3;3;0.017;0.000;2.4;! +12.020;0.741;12.000;943.8;0.741;0.741;1;3;3;0.017;0.000;2.2;! +12.040;0.669;12.020;944.9;0.669;0.669;1;3;3;0.020;0.000;2.6;! +12.060;0.730;12.040;946.0;0.730;0.730;1;3;3;0.023;0.000;2.9;! +12.080;0.866;12.060;947.1;0.866;0.866;1;3;3;0.026;0.000;3.3;! +12.100;0.920;12.080;948.2;0.920;0.920;1;3;3;0.025;0.000;3.2;! +12.120;0.856;12.100;951.1;0.856;0.856;1;3;3;0.023;0.000;2.9;! +12.140;0.773;12.120;954.9;0.773;0.773;1;3;3;0.021;0.000;2.8;! +12.160;0.690;12.140;958.6;0.690;0.690;1;3;3;0.024;0.000;3.2;! +12.180;0.650;12.160;959.6;0.650;0.650;1;3;3;0.024;0.000;3.4;! +12.200;0.644;12.180;960.7;0.644;0.644;1;3;3;0.021;0.000;2.9;! +12.220;0.682;12.200;961.8;0.682;0.682;1;3;3;0.021;0.000;3.0;! +12.240;0.696;12.220;962.8;0.696;0.696;1;3;3;0.021;0.000;3.0;! +12.260;0.704;12.240;963.9;0.704;0.704;1;3;3;0.016;0.000;1.9;! +12.280;0.714;12.260;965.0;0.714;0.714;1;3;3;0.016;0.000;1.7;! +12.300;0.718;12.280;966.1;0.718;0.718;1;3;3;0.019;0.000;1.7;! +12.320;1.368;12.300;967.2;1.368;1.368;1;3;3;0.031;0.000;2.5;! +12.340;1.909;12.320;968.3;1.909;1.909;1;3;3;0.037;0.000;2.7;! +12.360;1.930;12.340;969.3;1.930;1.930;1;3;3;0.032;0.000;2.0;! +12.380;1.608;12.360;970.4;1.608;1.608;1;3;3;0.032;0.000;1.6;! +12.400;1.474;12.380;971.5;1.474;1.474;1;3;3;0.033;0.000;1.2;! +12.420;2.103;12.400;972.6;2.103;2.103;1;3;3;0.036;0.000;1.1;! +12.440;3.950;12.420;973.7;3.950;3.950;1;3;3;0.038;0.000;1.1;! +12.460;5.732;12.440;974.8;5.732;5.732;1;3;3;0.040;0.000;1.0;! +12.480;6.338;12.460;975.9;6.338;6.338;1;3;3;0.045;0.000;1.0;! +12.500;5.827;12.480;978.1;5.827;5.827;1;3;3;0.052;0.000;1.1;! +12.520;4.986;12.500;982.3;4.986;4.986;1;3;3;0.061;0.000;1.3;! +12.540;4.145;12.520;986.4;4.145;4.145;1;3;3;0.071;0.000;1.8;! +12.560;3.239;12.540;988.7;3.239;3.239;1;3;3;0.079;0.000;2.5;! +12.580;2.427;12.560;989.7;2.427;2.427;1;3;3;0.081;0.000;3.2;! +12.600;1.911;12.580;990.8;1.911;1.911;1;3;3;0.074;0.000;3.1;! +12.620;1.523;12.600;991.9;1.523;1.523;1;3;3;0.064;0.000;2.9;! +12.640;1.327;12.620;993.0;1.327;1.327;1;3;3;0.062;0.000;3.3;! +12.660;1.347;12.640;994.1;1.347;1.347;1;3;3;0.059;0.000;3.4;! +12.680;1.588;12.660;995.1;1.588;1.588;1;3;3;0.049;0.000;2.8;! +12.700;1.767;12.680;996.2;1.767;1.767;1;3;3;0.037;0.000;2.0;! +12.720;1.938;12.700;997.3;1.938;1.938;1;3;3;0.037;0.000;1.8;! +12.740;2.201;12.720;998.4;2.201;2.201;1;3;3;0.031;0.000;1.4;! +12.760;2.578;12.740;999.4;2.578;2.578;1;3;3;0.029;0.000;1.2;! +12.780;2.856;12.760;1000.6;2.856;2.856;1;3;3;0.035;0.000;1.5;! +12.800;2.732;12.780;1001.6;2.732;2.732;1;3;3;0.041;0.000;1.7;! +12.820;2.348;12.800;1002.7;2.348;2.348;1;3;3;0.042;0.000;1.8;! +12.840;1.963;12.820;1003.7;1.963;1.963;1;3;3;0.041;0.000;1.7;! +12.860;1.782;12.840;1004.8;1.782;1.782;1;3;3;0.038;0.000;1.6;! +12.880;1.749;12.860;1005.9;1.749;1.749;1;3;3;0.037;0.000;1.4;! +12.900;2.308;12.880;1007.0;2.308;2.308;1;3;3;0.037;0.000;1.3;! +12.920;3.093;12.900;1008.1;3.093;3.093;1;3;3;0.035;0.000;1.1;! +12.940;3.866;12.920;1009.2;3.866;3.866;1;3;3;0.037;0.000;1.1;! +12.960;4.370;12.940;1010.2;4.370;4.370;1;3;3;0.039;0.000;1.0;! +12.980;4.667;12.960;1011.3;4.667;4.667;1;3;3;0.039;0.000;1.0;! +13.000;4.716;12.980;1012.4;4.716;4.716;1;3;3;0.043;0.000;1.0;! +13.020;4.251;13.000;1013.5;4.251;4.251;1;3;3;0.050;0.000;1.2;! +13.040;3.653;13.020;1014.6;3.653;3.653;1;3;3;0.052;0.000;1.3;! +13.060;3.094;13.040;1015.6;3.094;3.094;1;3;3;0.052;0.000;1.4;! +13.080;2.692;13.060;1016.7;2.692;2.692;1;3;3;0.050;0.000;1.4;! +13.100;2.566;13.080;1017.8;2.566;2.566;1;3;3;0.047;0.000;1.4;! +13.120;2.830;13.100;1019.5;2.830;2.830;1;3;3;0.044;0.000;1.2;! +13.140;3.418;13.120;1022.9;3.418;3.418;1;3;3;0.043;0.000;1.1;! +13.160;4.007;13.140;1026.3;4.007;4.007;1;3;3;0.045;0.000;1.1;! +13.180;4.760;13.160;1027.5;4.760;4.760;1;3;3;0.048;0.000;1.0;! +13.200;5.113;13.180;1028.6;5.113;5.113;1;3;3;0.047;0.000;1.0;! +13.220;5.019;13.200;1029.7;5.019;5.019;1;3;3;0.046;0.000;1.0;! +13.240;4.646;13.220;1030.7;4.646;4.646;1;3;3;0.045;0.000;0.9;! +13.260;4.517;13.240;1031.8;4.517;4.517;1;3;3;0.045;0.000;0.9;! +13.280;4.725;13.260;1032.9;4.725;4.725;1;3;3;0.047;0.000;1.0;! +13.300;4.652;13.280;1034.0;4.652;4.652;1;3;3;0.045;0.000;1.0;! +13.320;4.139;13.300;1035.1;4.139;4.139;1;3;3;0.042;0.000;1.0;! +13.340;3.702;13.320;1036.2;3.702;3.702;1;3;3;0.039;0.000;1.0;! +13.360;3.430;13.340;1037.3;3.430;3.430;1;3;3;0.037;0.000;1.0;! +13.380;3.263;13.360;1038.3;3.263;3.263;1;3;3;0.035;0.000;1.0;! +13.400;3.001;13.380;1039.4;3.001;3.001;1;3;3;0.037;0.000;1.2;! +13.420;2.712;13.400;1040.5;2.712;2.712;1;3;3;0.038;0.000;1.3;! +13.440;2.413;13.420;1041.6;2.413;2.413;1;3;3;0.036;0.000;1.4;! +13.460;2.088;13.440;1042.6;2.088;2.088;1;3;3;0.034;0.000;1.4;! +13.480;1.830;13.460;1043.7;1.830;1.830;1;3;3;0.033;0.000;1.4;! +13.500;1.637;13.480;1044.8;1.637;1.637;1;3;3;0.035;0.000;1.8;! +13.520;1.397;13.500;1048.2;1.397;1.397;1;3;3;0.036;0.000;2.2;! +13.540;1.153;13.520;1052.2;1.153;1.153;1;3;3;0.033;0.000;2.6;! +13.560;0.914;13.540;1056.1;0.914;0.914;1;3;3;0.032;0.000;3.0;! +13.580;0.776;13.560;1057.1;0.776;0.776;1;3;3;0.028;0.000;3.4;! +13.600;0.711;13.580;1058.2;0.711;0.711;1;3;3;0.026;0.000;3.3;! +13.620;0.660;13.600;1059.3;0.660;0.660;1;3;3;0.023;0.000;2.9;! +13.640;0.621;13.620;1060.4;0.621;0.621;1;3;3;0.021;0.000;2.8;! +13.660;0.662;13.640;1061.4;0.662;0.662;1;3;3;0.018;0.000;2.2;! +13.680;0.726;13.660;1062.5;0.726;0.726;1;3;3;0.016;0.000;1.7;! +13.700;0.909;13.680;1063.6;0.909;0.909;1;3;3;0.016;0.000;1.4;! +13.720;1.354;13.700;1064.7;1.354;1.354;1;3;3;0.018;0.000;1.3;! +13.740;1.788;13.720;1065.8;1.788;1.788;1;3;3;0.020;0.000;1.4;! +13.760;1.980;13.740;1066.9;1.980;1.980;1;3;3;0.026;0.000;1.6;! +13.780;1.818;13.760;1067.9;1.818;1.818;1;3;3;0.026;0.000;1.5;! +13.800;1.619;13.780;1069.1;1.619;1.619;1;3;3;0.024;0.000;1.2;! +13.820;1.596;13.800;1070.1;1.596;1.596;1;3;3;0.025;0.000;1.1;! +13.840;1.938;13.820;1071.2;1.938;1.938;1;3;3;0.027;0.000;1.0;! +13.860;2.793;13.840;1072.3;2.793;2.793;1;3;3;0.027;0.000;0.9;! +13.880;3.741;13.860;1073.3;3.741;3.741;1;3;3;0.029;0.000;0.9;! +13.900;4.179;13.880;1074.4;4.179;4.179;1;3;3;0.032;0.000;0.9;! +13.920;4.181;13.900;1075.5;4.181;4.181;1;3;3;0.033;0.000;0.8;! +13.940;4.152;13.920;1076.6;4.152;4.152;1;3;3;0.035;0.000;0.8;! +13.960;3.981;13.940;1077.7;3.981;3.981;1;3;3;0.037;0.000;0.9;! +13.980;3.833;13.960;1078.8;3.833;3.833;1;3;3;0.038;0.000;0.9;! +14.000;3.916;13.980;1079.9;3.916;3.916;1;3;3;0.039;0.000;0.9;! +14.020;4.034;14.000;1081.0;4.034;4.034;1;3;3;0.039;0.000;1.0;! +14.040;4.013;14.020;1082.1;4.013;4.013;1;3;3;0.038;0.000;0.9;! +14.060;3.815;14.040;1083.1;3.815;3.815;1;3;3;0.038;0.000;1.0;! +14.080;3.527;14.060;1084.2;3.527;3.527;1;3;3;0.037;0.000;1.0;! +14.100;3.203;14.080;1085.3;3.203;3.203;1;3;3;0.036;0.000;1.0;! +14.120;2.940;14.100;1086.3;2.940;2.940;1;3;3;0.035;0.000;1.0;! +14.140;2.774;14.120;1087.4;2.774;2.774;1;3;3;0.035;0.000;1.1;! +14.160;2.655;14.140;1090.7;2.655;2.655;1;3;3;0.035;0.000;1.2;! +14.180;2.536;14.160;1094.1;2.536;2.536;1;3;3;0.034;0.000;1.3;! +14.200;2.453;14.180;1096.3;2.453;2.453;1;3;3;0.034;0.000;1.3;! +14.220;2.425;14.200;1097.5;2.425;2.425;1;3;3;0.035;0.000;1.4;! +14.240;2.422;14.220;1098.8;2.422;2.422;1;3;3;0.035;0.000;1.5;! +14.260;2.305;14.240;1100.0;2.305;2.305;1;3;3;0.038;0.000;1.6;! +14.280;2.099;14.260;1101.3;2.099;2.099;1;3;3;0.031;0.000;1.3;! +14.300;1.834;14.280;1102.5;1.834;1.834;1;3;3;0.027;0.000;1.1;! +14.320;2.002;14.300;1103.8;2.002;2.002;1;3;3;0.029;0.000;1.2;! +14.340;2.477;14.320;1105.1;2.477;2.477;1;3;3;0.028;0.000;1.1;! +14.360;2.960;14.340;1106.3;2.960;2.960;1;3;3;0.029;0.000;1.0;! +14.380;3.095;14.360;1107.6;3.095;3.095;1;3;3;0.030;0.000;1.0;! +14.400;3.137;14.380;1108.8;3.137;3.137;1;3;3;0.032;0.000;1.0;! +14.420;3.291;14.400;1110.1;3.291;3.291;1;3;3;0.032;0.000;1.0;! +14.440;3.285;14.420;1111.3;3.285;3.285;1;3;3;0.033;0.000;1.0;! +14.460;3.106;14.440;1112.6;3.106;3.106;1;3;3;0.034;0.000;1.1;! +14.480;2.797;14.460;1113.8;2.797;2.797;1;3;3;0.034;0.000;1.1;! +14.500;2.445;14.480;1114.9;2.445;2.445;1;3;3;0.034;0.000;1.2;! +14.520;2.278;14.500;1119.1;2.278;2.278;1;3;3;0.033;0.000;1.3;! +14.540;2.130;14.520;1123.7;2.130;2.130;1;3;3;0.031;0.000;1.3;! +14.560;2.037;14.540;1126.9;2.037;2.037;1;3;3;0.030;0.000;1.4;! +14.580;2.046;14.560;1128.1;2.046;2.046;1;3;3;0.029;0.000;1.4;! +14.600;1.974;14.580;1129.3;1.974;1.974;1;3;3;0.028;0.000;1.4;! +14.620;1.890;14.600;1130.5;1.890;1.890;1;3;3;0.029;0.000;1.4;! +14.640;1.811;14.620;1131.7;1.811;1.811;1;3;3;0.026;0.000;1.3;! +14.660;1.817;14.640;1132.9;1.817;1.817;1;3;3;0.029;0.000;1.4;! +14.680;1.918;14.660;1134.1;1.918;1.918;1;3;3;0.029;0.000;1.3;! +14.700;1.967;14.680;1135.3;1.967;1.967;1;3;3;0.028;0.000;1.2;! +14.720;2.161;14.700;1136.4;2.161;2.161;1;3;3;0.031;0.000;1.2;! +14.740;2.680;14.720;1137.7;2.680;2.680;1;3;3;0.032;0.000;1.1;! +14.760;3.275;14.740;1138.8;3.275;3.275;1;3;3;0.032;0.000;1.0;! +14.780;3.787;14.760;1140.1;3.787;3.787;1;3;3;0.034;0.000;1.0;! +14.800;3.931;14.780;1141.3;3.931;3.931;1;3;3;0.036;0.000;1.0;! +14.820;3.940;14.800;1142.4;3.940;3.940;1;3;3;0.035;0.000;0.9;! +14.840;3.884;14.820;1143.6;3.884;3.884;1;3;3;0.036;0.000;0.9;! +14.860;3.728;14.840;1144.8;3.728;3.728;1;3;3;0.035;0.000;0.9;! +14.880;3.467;14.860;1145.9;3.467;3.467;1;3;3;0.035;0.000;1.0;! +14.900;3.161;14.880;1147.1;3.161;3.161;1;3;3;0.036;0.000;1.1;! +14.920;2.818;14.900;1148.3;2.818;2.818;1;3;3;0.037;0.000;1.2;! +14.940;2.481;14.920;1149.6;2.481;2.481;1;3;3;0.038;0.000;1.4;! +14.960;2.247;14.940;1150.7;2.247;2.247;1;3;3;0.039;0.000;1.6;! +14.980;2.110;14.960;1151.9;2.110;2.110;1;3;3;0.040;0.000;1.8;! +15.000;2.014;14.980;1153.1;2.014;2.014;1;3;3;0.041;0.000;2.0;! +15.020;1.907;15.000;1154.3;1.907;1.907;1;3;3;0.042;0.000;2.2;! +15.040;1.760;15.020;1155.4;1.760;1.760;1;3;3;0.042;0.000;2.3;! +15.060;1.632;15.040;1156.6;1.632;1.632;1;3;3;0.042;0.000;2.4;! +15.080;1.577;15.060;1157.8;1.577;1.577;1;3;3;0.042;0.000;2.4;! +15.100;1.595;15.080;1159.0;1.595;1.595;1;3;3;0.041;0.000;2.5;! +15.120;1.569;15.100;1160.2;1.569;1.569;1;3;3;0.042;0.000;2.2;! +15.140;1.936;15.120;1161.9;1.936;1.936;1;3;3;0.045;0.000;1.8;! +15.160;2.912;15.140;1165.1;2.912;2.912;1;3;3;0.045;0.000;1.5;! +15.180;3.889;15.160;1168.2;3.889;3.889;1;3;3;0.046;0.000;1.2;! +15.200;4.697;15.180;1169.8;4.697;4.697;1;3;3;0.046;0.000;1.0;! +15.220;4.987;15.200;1170.9;4.987;4.987;1;3;3;0.047;0.000;0.9;! +15.240;5.146;15.220;1171.9;5.146;5.146;1;3;3;0.046;0.000;0.9;! +15.260;5.355;15.240;1173.1;5.355;5.355;1;3;3;0.047;0.000;0.9;! +15.280;5.567;15.260;1174.1;5.567;5.567;1;3;3;0.048;0.000;0.8;! +15.300;5.692;15.280;1175.2;5.692;5.692;1;3;3;0.049;0.000;0.8;! +15.320;5.782;15.300;1176.3;5.782;5.782;1;3;3;0.050;0.000;0.8;! +15.340;5.857;15.320;1177.4;5.857;5.857;1;3;3;0.051;0.000;0.8;! +15.360;5.870;15.340;1178.5;5.870;5.870;1;3;3;0.054;0.000;0.9;! +15.380;5.863;15.360;1179.6;5.863;5.863;1;3;3;0.056;0.000;0.9;! +15.400;5.852;15.380;1180.7;5.852;5.852;1;3;3;0.058;0.000;0.9;! +15.420;5.864;15.400;1181.7;5.864;5.864;1;3;3;0.056;0.000;0.9;! +15.440;5.884;15.420;1182.8;5.884;5.884;1;3;3;0.054;0.000;0.9;! +15.460;5.933;15.440;1183.9;5.933;5.933;1;3;3;0.052;0.000;0.8;! +15.480;6.020;15.460;1185.0;6.020;6.020;1;3;3;0.052;0.000;0.8;! +15.500;6.067;15.480;1187.5;6.067;6.067;1;3;3;0.052;0.000;0.8;! +15.520;6.085;15.500;1191.4;6.085;6.085;1;3;3;0.052;0.000;0.8;! +15.540;6.103;15.520;1195.4;6.103;6.103;1;3;3;0.052;0.000;0.8;! +15.560;6.197;15.540;1196.9;6.197;6.197;1;3;3;0.053;0.000;0.8;! +15.580;6.363;15.560;1198.0;6.363;6.363;1;3;3;0.053;0.000;0.8;! +15.600;6.629;15.580;1199.1;6.629;6.629;1;3;3;0.054;0.000;0.8;! +15.620;6.716;15.600;1200.2;6.716;6.716;1;3;3;0.055;0.000;0.8;! +15.640;6.698;15.620;1201.2;6.698;6.698;1;3;3;0.055;0.000;0.8;! +15.660;6.654;15.640;1202.3;6.654;6.654;1;3;3;0.056;0.000;0.8;! +15.680;6.646;15.660;1203.4;6.646;6.646;1;3;3;0.057;0.000;0.8;! +15.700;6.731;15.680;1204.5;6.731;6.731;1;3;3;0.057;0.000;0.8;! +15.720;6.985;15.700;1205.6;6.985;6.985;1;3;3;0.060;0.000;0.8;! +15.740;7.410;15.720;1206.7;7.410;7.410;1;3;3;0.062;0.000;0.8;! +15.760;7.846;15.740;1207.7;7.846;7.846;1;3;3;0.065;0.000;0.8;! +15.780;8.013;15.760;1208.8;8.013;8.013;1;3;3;0.069;0.000;0.9;! +15.800;7.930;15.780;1209.9;7.930;7.930;1;3;3;0.074;0.000;0.9;! +15.820;7.708;15.800;1211.0;7.708;7.708;1;3;3;0.079;0.000;1.0;! +15.840;7.308;15.820;1212.1;7.308;7.308;1;3;3;0.082;0.000;1.1;! +15.860;6.787;15.840;1213.2;6.787;6.787;1;3;3;0.085;0.000;1.2;! +15.880;6.214;15.860;1214.2;6.214;6.214;1;3;3;0.087;0.000;1.4;! +15.900;5.381;15.880;1215.3;5.381;5.381;1;3;3;0.091;0.000;1.6;! +15.920;4.377;15.900;1216.4;4.377;4.377;1;3;3;0.097;0.000;2.0;! +15.940;3.408;15.920;1217.5;3.408;3.408;1;3;3;0.100;0.000;2.5;! +15.960;2.616;15.940;1218.6;2.616;2.616;1;3;3;0.107;0.000;3.3;! +15.980;2.089;15.960;1219.6;2.089;2.089;1;3;3;0.114;0.000;4.2;! +16.000;1.708;15.980;1220.7;1.708;1.708;1;3;3;0.117;0.000;5.3;! +16.020;1.515;16.000;1221.8;1.515;1.515;1;3;3;0.111;0.000;5.9;! +16.040;1.361;16.020;1222.8;1.361;1.361;1;3;3;0.099;0.000;6.1;! +16.060;1.219;16.040;1223.9;1.219;1.219;1;3;3;0.087;0.000;6.2;! +16.080;1.051;16.060;1225.0;1.051;1.051;1;3;3;0.079;0.000;6.3;! +16.100;0.984;16.080;1226.2;0.984;0.984;1;3;3;0.074;0.000;6.5;! +16.120;0.953;16.100;1229.6;0.953;0.953;1;3;3;0.069;0.000;6.7;! +16.140;0.922;16.120;1233.1;0.922;0.922;1;3;3;0.063;0.000;6.7;! +16.160;0.897;16.140;1235.5;0.897;0.897;1;3;3;0.062;0.000;6.9;! +16.180;0.877;16.160;1236.6;0.877;0.877;1;3;3;0.065;0.000;7.5;! +16.200;0.861;16.180;1237.8;0.861;0.861;1;3;3;0.067;0.000;7.8;! +16.220;0.834;16.200;1238.9;0.834;0.834;1;3;3;0.066;0.000;7.9;! +16.240;0.793;16.220;1240.1;0.793;0.793;1;3;3;0.062;0.000;7.8;! +16.260;0.747;16.240;1241.3;0.747;0.747;1;3;3;0.058;0.000;7.7;! +16.280;0.707;16.260;1242.4;0.707;0.707;1;3;3;0.053;0.000;7.4;! +16.300;0.651;16.280;1243.6;0.651;0.651;1;3;3;0.046;0.000;6.7;! +16.320;0.623;16.300;1244.7;0.623;0.623;1;3;3;0.038;0.000;5.9;! +16.340;0.590;16.320;1245.9;0.590;0.590;1;3;3;0.032;0.000;5.1;! +16.360;0.569;16.340;1247.1;0.569;0.569;1;3;3;0.027;0.000;4.5;! +16.380;0.569;16.360;1248.2;0.569;0.569;1;3;3;0.023;0.000;4.0;! +16.400;0.561;16.380;1249.3;0.561;0.561;1;3;3;0.020;0.000;3.5;! +16.420;0.552;16.400;1250.5;0.552;0.552;1;3;3;0.019;0.000;3.4;! +16.440;0.534;16.420;1251.6;0.534;0.534;1;3;3;0.019;0.000;3.4;! +16.460;0.516;16.440;1252.8;0.516;0.516;1;3;3;0.019;0.000;3.5;! +16.480;0.512;16.460;1253.9;0.512;0.512;1;3;3;0.019;0.000;3.5;! +16.500;0.502;16.480;1255.2;0.502;0.502;1;3;3;0.018;0.000;3.5;! +16.520;0.494;16.500;1259.5;0.494;0.494;1;3;3;0.017;0.000;3.4;! +16.540;0.486;16.520;1263.7;0.486;0.486;1;3;3;0.018;0.000;3.5;! +16.560;0.480;16.540;1266.9;0.480;0.480;1;3;3;0.018;0.000;3.7;! +16.580;0.486;16.560;1268.0;0.486;0.486;1;3;3;0.019;0.000;3.8;! +16.600;0.498;16.580;1269.1;0.498;0.498;1;3;3;0.019;0.000;3.9;! +16.620;0.495;16.600;1270.2;0.495;0.495;1;3;3;0.020;0.000;4.1;! +16.640;0.481;16.620;1271.2;0.481;0.481;1;3;3;0.021;0.000;4.3;! +16.660;0.477;16.640;1272.3;0.477;0.477;1;3;3;0.021;0.000;4.4;! +16.680;0.468;16.660;1273.4;0.468;0.468;1;3;3;0.021;0.000;4.4;! +16.700;0.463;16.680;1274.5;0.463;0.463;1;3;3;0.020;0.000;4.2;! +16.720;0.457;16.700;1275.6;0.457;0.457;1;3;3;0.020;0.000;4.3;! +16.740;0.458;16.720;1276.6;0.458;0.458;1;3;3;0.021;0.000;4.3;! +16.760;0.463;16.740;1277.7;0.463;0.463;1;3;3;0.020;0.000;4.3;! +16.780;0.471;16.760;1278.8;0.471;0.471;1;3;3;0.020;0.000;4.2;! +16.800;0.477;16.780;1279.9;0.477;0.477;1;3;3;0.021;0.000;4.3;! +16.820;0.486;16.800;1280.9;0.486;0.486;1;3;3;0.022;0.000;4.5;! +16.840;0.489;16.820;1282.0;0.489;0.489;1;3;3;0.023;0.000;4.6;! +16.860;0.497;16.840;1283.1;0.497;0.497;1;3;3;0.022;0.000;4.6;! +16.880;0.497;16.860;1284.2;0.497;0.497;1;3;3;0.023;0.000;4.6;! +16.900;0.486;16.880;1285.3;0.486;0.486;1;3;3;0.022;0.000;4.4;! +16.920;0.473;16.900;1286.4;0.473;0.473;1;3;3;0.021;0.000;4.3;! +16.940;0.481;16.920;1287.4;0.481;0.481;1;3;3;0.021;0.000;4.3;! +16.960;0.472;16.940;1288.6;0.472;0.472;1;3;3;0.021;0.000;4.3;! +16.980;0.471;16.960;1289.6;0.471;0.471;1;3;3;0.020;0.000;4.1;! +17.000;0.478;16.980;1290.7;0.478;0.478;1;3;3;0.019;0.000;4.0;! +17.020;0.474;17.000;1291.8;0.474;0.474;1;3;3;0.018;0.000;3.8;! +17.040;0.470;17.020;1292.8;0.470;0.470;1;3;3;0.018;0.000;3.7;! +17.060;0.468;17.040;1293.9;0.468;0.468;1;3;3;0.017;0.000;3.6;! +17.080;0.462;17.060;1295.0;0.462;0.462;1;3;3;0.016;0.000;3.4;! +17.100;0.456;17.080;1296.1;0.456;0.456;1;3;3;0.015;0.000;3.2;! +17.120;0.456;17.100;1299.1;0.456;0.456;1;3;3;0.015;0.000;3.1;! +17.140;0.456;17.120;1302.0;0.456;0.456;1;3;3;0.014;0.000;2.9;! +17.160;0.456;17.140;1305.0;0.456;0.456;1;3;3;0.013;0.000;2.7;! +17.180;0.473;17.160;1306.1;0.473;0.473;1;3;3;0.013;0.000;2.6;! +17.200;0.507;17.180;1307.2;0.507;0.507;1;3;3;0.014;0.000;2.6;! +17.220;0.550;17.200;1308.2;0.550;0.550;1;3;3;0.015;0.000;2.8;! +17.240;0.571;17.220;1309.3;0.571;0.571;1;3;3;0.016;0.000;2.9;! +17.260;0.591;17.240;1310.4;0.591;0.591;1;3;3;0.017;0.000;3.0;! +17.280;0.594;17.260;1311.5;0.594;0.594;1;3;3;0.017;0.000;3.0;! +17.300;0.584;17.280;1312.6;0.584;0.584;1;3;3;0.019;0.000;3.2;! +17.320;0.569;17.300;1313.7;0.569;0.569;1;3;3;0.018;0.000;3.1;! +17.340;0.566;17.320;1314.7;0.566;0.566;1;3;3;0.018;0.000;3.1;! +17.360;0.558;17.340;1315.8;0.558;0.558;1;3;3;0.018;0.000;3.1;! +17.380;0.549;17.360;1316.9;0.549;0.549;1;3;3;0.016;0.000;2.7;! +17.400;0.539;17.380;1318.0;0.539;0.539;1;3;3;0.017;0.000;2.7;! +17.420;0.595;17.400;1319.1;0.595;0.595;1;3;3;0.017;0.000;2.6;! +17.440;0.708;17.420;1320.2;0.708;0.708;1;3;3;0.018;0.000;2.6;! +17.460;0.802;17.440;1321.2;0.802;0.802;1;3;3;0.018;0.000;2.7;! +17.480;0.784;17.460;1322.3;0.784;0.784;1;3;3;0.019;0.000;2.7;! +17.500;0.674;17.480;1323.4;0.674;0.674;1;3;3;0.021;0.000;2.8;! +17.520;0.668;17.500;1325.7;0.668;0.668;1;3;3;0.023;0.000;2.9;! +17.540;0.741;17.520;1329.4;0.741;0.741;1;3;3;0.024;0.000;3.1;! +17.560;0.815;17.540;1333.1;0.815;0.815;1;3;3;0.023;0.000;2.9;! +17.580;0.857;17.560;1335.6;0.857;0.857;1;3;3;0.023;0.000;2.7;! +17.600;0.833;17.580;1336.6;0.833;0.833;1;3;3;0.023;0.000;2.7;! +17.620;0.823;17.600;1337.7;0.823;0.823;1;3;3;0.025;0.000;2.9;! +17.640;0.851;17.620;1338.8;0.851;0.851;1;3;3;0.028;0.000;3.1;! +17.660;0.874;17.640;1339.9;0.874;0.874;1;3;3;0.030;0.000;2.6;! +17.680;0.889;17.660;1340.9;0.889;0.889;1;3;3;0.028;0.000;1.7;! +17.700;1.172;17.680;1342.0;1.172;1.172;1;3;3;0.028;0.000;1.2;! +17.720;2.305;17.700;1343.1;2.305;2.305;1;3;3;0.030;0.000;1.0;! +17.740;4.069;17.720;1344.2;4.069;4.069;1;3;3;0.033;0.000;0.9;! +17.760;5.215;17.740;1345.3;5.215;5.215;1;3;3;0.037;0.000;0.8;! +17.780;5.876;17.760;1346.4;5.876;5.876;1;3;3;0.041;0.000;0.8;! +17.800;6.443;17.780;1347.5;6.443;6.443;1;3;3;0.047;0.000;0.7;! +17.820;7.058;17.800;1348.6;7.058;7.058;1;3;3;0.055;0.000;0.8;! +17.840;7.648;17.820;1349.6;7.648;7.648;1;3;3;0.063;0.000;0.8;! +17.860;8.204;17.840;1350.7;8.204;8.204;1;3;3;0.069;0.000;0.8;! +17.880;8.718;17.860;1351.8;8.718;8.718;1;2;3;0.076;0.000;0.8;! +17.900;9.197;17.880;1352.9;9.197;9.197;1;3;3;0.082;0.000;0.9;! +17.920;9.532;17.900;1354.0;9.532;9.532;1;2;3;0.088;0.000;0.9;! +17.940;9.808;17.920;1355.1;9.808;9.808;1;2;3;0.094;0.000;0.9;! +17.960;10.037;17.940;1356.2;10.037;10.037;1;2;3;0.099;0.000;1.0;! +17.980;10.205;17.960;1357.2;10.205;10.205;1;2;3;0.104;0.000;1.0;! +18.000;10.428;17.980;1358.3;10.428;10.428;1;3;3;0.108;0.000;1.0;! +18.020;10.659;18.000;1359.4;10.659;10.659;1;2;3;0.113;0.000;1.0;! +18.040;10.851;18.020;1360.5;10.851;10.851;1;2;3;0.117;0.000;1.0;! +18.060;10.946;18.040;1361.6;10.946;10.946;1;3;3;0.118;0.000;1.0;! +18.080;10.945;18.060;1362.7;10.945;10.945;1;3;3;0.116;0.000;1.0;! +18.100;10.900;18.080;1363.7;10.900;10.900;1;3;3;0.113;0.000;1.0;! +18.120;10.867;18.100;1364.8;10.867;10.867;1;3;3;0.115;0.000;1.0;! +18.140;10.895;18.120;1365.9;10.895;10.895;1;3;3;0.117;0.000;1.0;! +18.160;10.946;18.140;1368.6;10.946;10.946;1;3;3;0.118;0.000;1.0;! +18.180;10.996;18.160;1371.5;10.996;10.996;1;3;3;0.118;0.000;1.0;! +18.200;11.070;18.180;1374.2;11.070;11.070;1;3;3;0.118;0.000;1.0;! +18.220;11.242;18.200;1375.2;11.242;11.242;1;3;3;0.118;0.000;1.0;! +18.240;11.352;18.220;1376.3;11.352;11.352;1;3;3;0.118;0.000;1.0;! +18.260;11.505;18.240;1377.4;11.505;11.505;1;3;3;0.118;0.000;1.0;! +18.280;11.641;18.260;1378.5;11.641;11.641;1;3;3;0.119;0.000;1.0;! +18.300;11.739;18.280;1379.6;11.739;11.739;1;3;3;0.118;0.000;1.0;! +18.320;11.836;18.300;1380.7;11.836;11.836;1;3;3;0.118;0.000;1.0;! +18.340;11.925;18.320;1381.7;11.925;11.925;1;3;3;0.120;0.000;1.0;! +18.360;11.972;18.340;1382.8;11.972;11.972;1;3;3;0.121;0.000;1.0;! +18.380;11.973;18.360;1383.9;11.973;11.973;1;2;3;0.121;0.000;1.0;! +18.400;11.883;18.380;1385.0;11.883;11.883;1;2;3;0.120;0.000;1.0;! +18.420;11.807;18.400;1386.1;11.807;11.807;1;3;3;0.120;0.000;1.0;! +18.440;11.733;18.410;1387.1;11.733;11.733;1;3;3;0.120;0.000;1.0;! +18.460;11.682;18.430;1388.2;11.682;11.682;1;3;3;0.115;0.000;0.9;! +18.480;11.631;18.450;1389.3;11.631;11.631;1;3;3;0.110;0.000;0.9;! +18.500;11.577;18.470;1390.4;11.577;11.577;1;3;3;0.106;0.000;0.9;! +18.520;11.554;18.490;1391.5;11.554;11.554;1;3;3;0.108;0.000;0.9;! +18.540;11.499;18.510;1394.0;11.499;11.499;1;3;3;0.109;0.000;0.9;! +18.560;11.439;18.530;1398.1;11.439;11.439;1;3;3;0.110;0.000;0.9;! +18.580;11.378;18.550;1402.2;11.378;11.378;1;3;3;0.112;0.000;0.9;! +18.600;11.527;18.570;1403.9;11.527;11.527;1;3;3;0.112;0.000;0.9;! +18.620;11.631;18.590;1405.1;11.631;11.631;1;3;3;0.112;0.000;0.9;! +18.640;11.727;18.610;1406.3;11.727;11.727;1;2;3;0.114;0.000;0.9;! +18.660;11.852;18.630;1407.5;11.852;11.852;1;3;3;0.115;0.000;0.9;! +18.680;12.119;18.650;1408.7;12.119;12.119;1;3;3;0.118;0.000;0.9;! +18.700;12.477;18.670;1409.9;12.477;12.477;1;2;3;0.121;0.000;0.9;! +18.720;12.793;18.690;1411.1;12.793;12.793;1;2;3;0.122;0.000;0.9;! +18.740;12.954;18.710;1412.3;12.954;12.954;1;3;3;0.124;0.000;0.9;! +18.760;12.966;18.730;1413.5;12.966;12.966;1;3;3;0.127;0.000;0.9;! +18.780;13.012;18.750;1414.7;13.012;13.012;1;3;3;0.128;0.000;0.9;! +18.800;13.243;18.770;1415.8;13.243;13.243;1;3;3;0.129;0.000;0.9;! +18.820;13.555;18.790;1416.9;13.555;13.555;1;3;3;0.130;0.000;0.9;! +18.840;13.949;18.810;1417.9;13.949;13.949;1;3;3;0.131;0.000;0.9;! +18.860;14.312;18.830;1419.0;14.312;14.312;1;3;3;0.133;0.000;0.9;! +18.880;14.523;18.850;1420.1;14.523;14.523;1;3;3;0.136;0.000;0.9;! +18.900;14.627;18.870;1421.2;14.627;14.627;1;3;3;0.140;0.000;0.9;! +18.920;14.655;18.890;1422.3;14.655;14.655;1;3;3;0.146;0.000;1.0;! +18.940;14.658;18.910;1423.3;14.658;14.658;1;3;3;0.151;0.000;1.0;! +18.960;14.558;18.930;1424.4;14.558;14.558;1;3;3;0.156;0.000;1.0;! +18.980;14.391;18.950;1425.5;14.391;14.391;1;3;3;0.161;0.000;1.1;! +19.000;14.247;18.970;1426.6;14.247;14.247;1;3;3;0.166;0.000;1.1;! +19.020;14.114;18.990;1427.7;14.114;14.114;1;3;3;0.169;0.000;1.2;! +19.040;13.948;19.010;1428.8;13.948;13.948;1;3;3;0.170;0.000;1.2;! +19.060;13.676;19.030;1429.8;13.676;13.676;1;3;3;0.169;0.000;1.2;! +19.080;13.317;19.050;1430.9;13.317;13.317;1;3;3;0.161;0.000;1.1;! +19.100;13.007;19.070;1432.0;13.007;13.007;1;3;3;0.153;0.000;1.1;! +19.120;12.833;19.090;1433.1;12.833;12.833;1;3;3;0.151;0.000;1.1;! +19.140;12.719;19.110;1434.2;12.719;12.719;1;3;3;0.152;0.000;1.1;! +19.160;12.597;19.130;1436.5;12.597;12.597;1;3;3;0.149;0.000;1.1;! +19.180;12.436;19.150;1439.7;12.436;12.436;1;3;3;0.147;0.000;1.1;! +19.200;12.324;19.170;1442.6;12.324;12.324;1;3;3;0.145;0.000;1.1;! +19.220;12.517;19.190;1443.7;12.517;12.517;1;3;3;0.143;0.000;1.1;! +19.240;12.604;19.210;1444.8;12.604;12.604;1;3;3;0.141;0.000;1.0;! +19.260;12.757;19.230;1445.8;12.757;12.757;1;3;3;0.141;0.000;1.0;! +19.280;13.064;19.250;1446.9;13.064;13.064;1;3;3;0.140;0.000;1.0;! +19.300;13.548;19.270;1448.0;13.548;13.548;1;3;3;0.142;0.000;1.0;! +19.320;14.115;19.290;1449.1;14.115;14.115;1;3;3;0.145;0.000;1.0;! +19.340;14.722;19.310;1450.2;14.722;14.722;1;3;3;0.146;0.000;0.9;! +19.360;15.524;19.330;1451.3;15.524;15.524;1;3;3;0.149;0.000;0.9;! +19.380;16.581;19.350;1452.4;16.581;16.581;1;3;3;0.155;0.000;0.9;! +19.400;17.847;19.370;1453.5;17.847;17.847;1;3;3;0.162;0.000;0.9;! +19.420;19.075;19.390;1454.6;19.075;19.075;1;3;3;0.171;0.000;0.9;! +19.440;20.094;19.410;1455.7;20.094;20.094;1;3;3;0.181;0.000;0.9;! +19.460;20.862;19.430;1456.7;20.862;20.862;1;3;3;0.176;0.000;0.8;! +19.480;21.689;19.450;1457.8;21.689;21.689;1;3;3;0.169;0.000;0.8;! +19.500;22.337;19.470;1458.9;22.337;22.337;1;3;3;0.174;0.000;0.8;! +19.520;22.860;19.490;1460.0;22.860;22.860;1;3;3;0.196;0.000;0.8;! +19.540;22.766;19.510;1462.7;22.766;22.766;1;3;3;0.214;0.000;0.9;! +19.560;22.349;19.530;1467.1;22.349;22.349;1;3;3;0.231;0.000;1.0;! +19.580;22.152;19.550;1471.1;22.152;22.152;1;3;3;0.244;0.000;1.0;! +19.600;23.316;19.570;1472.2;23.316;23.316;1;3;3;0.256;0.000;1.0;! +19.620;23.751;19.590;1473.3;23.751;23.751;1;3;3;0.266;0.000;1.1;! +19.640;24.169;19.610;1474.3;24.169;24.169;1;3;3;0.273;0.000;1.1;! +19.660;24.594;19.630;1475.4;24.594;24.594;1;3;3;0.276;0.000;1.1;! +19.680;24.912;19.650;1476.5;24.912;24.912;1;3;3;0.274;0.000;1.1;! +19.700;25.055;19.670;1477.6;25.055;25.055;1;3;3;0.271;0.000;1.0;! +19.720;25.085;19.690;1478.7;25.085;25.085;1;3;3;0.271;0.000;1.0;! +19.740;24.988;19.710;1479.8;24.988;24.988;1;3;3;0.264;0.000;1.0;! +19.760;24.826;19.730;1480.9;24.826;24.826;1;3;3;0.257;0.000;1.0;! +19.780;24.838;19.750;1481.9;24.838;24.838;1;3;3;0.248;0.000;1.0;! +19.800;24.804;19.770;1483.0;24.804;24.804;1;3;3;0.235;0.000;0.9;! +19.820;24.645;19.790;1484.1;24.645;24.645;1;3;3;0.232;0.000;0.9;! +19.840;24.296;19.810;1485.2;24.296;24.296;1;3;3;0.225;0.000;0.9;! +19.860;24.031;19.830;1486.3;24.031;24.031;1;3;3;0.214;0.000;0.8;! +19.880;23.942;19.850;1487.3;23.942;23.942;1;3;3;0.208;0.000;0.8;! +19.900;23.750;19.870;1488.4;23.750;23.750;1;3;3;0.200;0.000;0.8;! +19.920;23.832;19.890;1489.5;23.832;23.832;1;3;3;0.196;0.000;0.8;! +19.940;23.811;19.910;1490.6;23.811;23.811;1;3;3;0.196;0.000;0.8;! +19.960;23.839;19.930;1491.7;23.839;23.839;1;3;3;0.187;0.000;0.7;! +19.980;24.011;19.950;1492.8;24.011;24.011;1;3;3;0.180;0.000;0.7;! +20.000;24.167;19.970;1493.9;24.167;24.167;1;3;3;0.180;0.000;0.7;! +20.020;24.435;19.990;1494.9;24.435;24.435;1;3;3;0.188;0.000;0.7;! +20.040;24.662;20.010;1496.0;24.662;24.662;1;3;3;0.195;0.000;0.8;! +20.060;24.500;20.030;1497.1;24.500;24.500;1;3;3;0.197;0.000;0.8;! +20.080;23.886;20.050;1498.2;23.886;23.886;1;3;3;0.193;0.000;0.8;! +20.100;22.886;20.070;1499.3;22.886;22.886;1;3;3;0.187;0.000;0.8;! +20.120;22.270;20.090;1500.3;22.270;22.270;1;3;3;0.180;0.000;0.7;! +20.140;21.833;20.110;1501.4;21.833;21.833;1;3;3;0.181;0.000;0.8;! +20.160;21.396;20.130;1502.5;21.396;21.396;1;3;3;0.182;0.000;0.8;! +20.180;20.867;20.150;1506.0;20.867;20.867;1;3;3;0.173;0.000;0.8;! +20.200;20.338;20.170;1509.4;20.338;20.338;1;3;3;0.165;0.000;0.8;! +20.220;20.106;20.190;1512.0;20.106;20.106;1;3;3;0.161;0.000;0.8;! +20.240;19.808;20.210;1513.2;19.808;19.808;1;3;3;0.157;0.000;0.7;! +20.260;19.485;20.230;1514.4;19.485;19.485;1;3;3;0.155;0.000;0.7;! +20.280;19.259;20.250;1515.6;19.259;19.259;1;3;3;0.155;0.000;0.7;! +20.300;19.011;20.270;1516.8;19.011;19.011;1;3;3;0.148;0.000;0.7;! +20.320;18.992;20.290;1518.0;18.992;18.992;1;3;3;0.143;0.000;0.7;! +20.340;18.904;20.310;1519.2;18.904;18.904;1;3;3;0.143;0.000;0.7;! +20.360;18.751;20.330;1520.4;18.751;18.751;1;3;3;0.137;0.000;0.7;! +20.380;18.491;20.350;1521.6;18.491;18.491;1;3;3;0.134;0.000;0.7;! +20.400;18.331;20.370;1522.8;18.331;18.331;1;3;3;0.129;0.000;0.6;! +20.420;18.434;20.390;1524.1;18.434;18.434;1;3;3;0.121;0.000;0.6;! +20.440;18.728;20.410;1525.3;18.728;18.728;1;3;3;0.113;0.000;0.5;! +20.460;19.185;20.430;1526.4;19.185;19.185;1;3;3;0.109;0.000;0.5;! +20.480;19.775;20.450;1527.6;19.775;19.775;1;3;3;0.108;0.000;0.5;! +20.500;20.138;20.470;1528.9;20.138;20.138;1;3;3;0.108;0.000;0.5;! +20.520;20.086;20.490;1530.1;20.086;20.086;1;3;3;0.107;0.000;0.5;! +20.540;19.523;20.510;1531.3;19.523;19.523;1;3;3;0.106;0.000;0.5;! +20.560;18.849;20.530;1532.5;18.849;18.849;1;3;3;0.112;0.000;0.5;! +20.580;18.441;20.550;1533.9;18.441;18.441;1;3;3;0.117;0.000;0.6;! +20.600;18.147;20.570;1538.4;18.147;18.147;1;3;3;0.124;0.000;0.6;! +20.620;17.854;20.590;1542.8;17.854;17.854;1;3;3;0.129;0.000;0.7;! +20.640;17.652;20.610;1546.1;17.652;17.652;1;3;3;0.140;0.000;0.7;! +20.660;17.544;20.630;1547.4;17.544;17.544;1;3;3;0.138;0.000;0.7;! +20.680;17.258;20.650;1548.8;17.258;17.258;1;3;3;0.137;0.000;0.7;! +20.700;17.096;20.670;1550.2;17.096;17.096;1;3;3;0.136;0.000;0.7;! +20.720;16.703;20.690;1551.5;16.703;16.703;1;3;3;0.131;0.000;0.7;! +20.740;16.413;20.710;1552.9;16.413;16.413;1;3;3;0.132;0.000;0.7;! +20.760;16.248;20.730;1554.3;16.248;16.248;1;3;3;0.132;0.000;0.8;! +20.780;16.026;20.750;1555.6;16.026;16.026;1;3;3;0.131;0.000;0.8;! +20.800;15.817;20.770;1557.0;15.817;15.817;1;3;3;0.129;0.000;0.8;! +20.820;15.582;20.790;1558.4;15.582;15.582;1;3;3;0.130;0.000;0.8;! +20.840;15.328;20.810;1559.8;15.328;15.328;1;3;3;0.133;0.000;0.8;! +20.860;15.057;20.830;1561.1;15.057;15.057;1;3;3;0.131;0.000;0.8;! +20.880;14.722;20.850;1562.5;14.722;14.722;1;3;3;0.130;0.000;0.8;! +20.900;14.464;20.870;1563.9;14.464;14.464;1;3;3;0.131;0.000;0.8;! +20.920;14.259;20.890;1565.2;14.259;14.259;1;3;3;0.129;0.000;0.8;! +20.940;14.050;20.910;1566.6;14.050;14.050;1;3;3;0.128;0.000;0.9;! +20.960;13.899;20.930;1567.9;13.899;13.899;1;3;3;0.125;0.000;0.8;! +20.980;13.779;20.950;1569.3;13.779;13.779;1;3;3;0.124;0.000;0.8;! +21.000;13.677;20.970;1570.7;13.677;13.677;1;3;3;0.123;0.000;0.8;! +21.020;13.577;20.990;1572.1;13.577;13.577;1;3;3;0.121;0.000;0.8;! +21.040;13.480;21.010;1573.4;13.480;13.480;1;3;3;0.120;0.000;0.8;! +21.060;13.355;21.030;1574.8;13.355;13.355;1;3;3;0.119;0.000;0.8;! +21.080;13.276;21.050;1576.1;13.276;13.276;1;3;3;0.119;0.000;0.8;! +21.100;13.230;21.070;1577.5;13.230;13.230;1;3;3;0.119;0.000;0.8;! +21.120;13.223;21.090;1578.9;13.223;13.223;1;3;3;0.118;0.000;0.8;! +21.140;13.251;21.110;1580.0;13.251;13.251;1;3;3;0.114;0.000;0.8;! +21.160;13.212;21.130;1581.1;13.212;13.212;1;3;3;0.111;0.000;0.8;! +21.180;13.185;21.150;1582.1;13.185;13.185;1;3;3;0.109;0.000;0.8;! +21.200;13.187;21.170;1583.2;13.187;13.187;1;3;3;0.109;0.000;0.8;! +21.220;13.082;21.190;1586.0;13.082;13.082;1;3;3;0.109;0.000;0.8;! +21.240;12.958;21.210;1589.2;12.958;12.958;1;3;3;0.108;0.000;0.8;! +21.260;12.834;21.230;1592.5;12.834;12.834;1;3;3;0.109;0.000;0.8;! +21.280;12.893;21.250;1593.6;12.893;12.893;1;3;3;0.109;0.000;0.8;! +21.300;12.953;21.270;1594.7;12.953;12.953;1;3;3;0.109;0.000;0.8;! +21.320;12.957;21.290;1595.7;12.957;12.957;1;3;3;0.111;0.000;0.8;! +21.340;12.864;21.310;1596.8;12.864;12.864;1;3;3;0.111;0.000;0.8;! +21.360;12.693;21.330;1597.9;12.693;12.693;1;3;3;0.111;0.000;0.8;! +21.380;12.477;21.350;1599.0;12.477;12.477;1;3;3;0.111;0.000;0.8;! +21.400;12.175;21.370;1600.1;12.175;12.175;1;3;3;0.109;0.000;0.8;! +21.420;11.866;21.390;1601.2;11.866;11.866;1;3;3;0.107;0.000;0.8;! +21.440;11.648;21.410;1602.2;11.648;11.648;1;3;3;0.106;0.000;0.8;! +21.460;11.477;21.430;1603.3;11.477;11.477;1;3;3;0.105;0.000;0.9;! +21.480;11.374;21.450;1604.4;11.374;11.374;1;3;3;0.103;0.000;0.8;! +21.500;11.318;21.470;1605.4;11.318;11.318;1;3;3;0.100;0.000;0.8;! +21.520;11.280;21.490;1606.5;11.280;11.280;1;3;3;0.096;0.000;0.8;! +21.540;11.200;21.510;1607.6;11.200;11.200;1;3;3;0.092;0.000;0.8;! +21.560;11.185;21.530;1608.7;11.185;11.185;1;3;3;0.089;0.000;0.7;! +21.580;11.190;21.550;1609.8;11.190;11.190;1;3;3;0.090;0.000;0.8;! +21.600;11.158;21.570;1611.9;11.158;11.158;1;3;3;0.090;0.000;0.8;! +21.620;11.069;21.590;1616.5;11.069;11.069;1;3;3;0.091;0.000;0.8;! +21.640;10.981;21.610;1621.0;10.981;10.981;1;3;3;0.091;0.000;0.8;! +21.660;11.065;21.630;1622.5;11.065;11.065;1;3;3;0.093;0.000;0.8;! +21.680;11.162;21.650;1623.5;11.162;11.162;1;3;3;0.094;0.000;0.8;! +21.700;11.340;21.670;1624.6;11.340;11.340;1;3;3;0.095;0.000;0.8;! +21.720;11.502;21.690;1625.7;11.502;11.502;1;3;3;0.096;0.000;0.8;! +21.740;11.708;21.710;1626.8;11.708;11.708;1;3;3;0.096;0.000;0.8;! +21.760;12.025;21.730;1627.8;12.025;12.025;1;3;3;0.097;0.000;0.7;! +21.780;12.541;21.750;1628.9;12.541;12.541;1;3;3;0.097;0.000;0.7;! +21.800;13.244;21.770;1630.1;13.244;13.244;1;3;3;0.101;0.000;0.7;! +21.820;13.837;21.790;1631.1;13.837;13.837;1;3;3;0.104;0.000;0.7;! +21.840;14.309;21.810;1632.2;14.309;14.309;1;3;3;0.110;0.000;0.7;! +21.860;14.738;21.830;1633.3;14.738;14.738;1;3;3;0.117;0.000;0.8;! +21.880;15.044;21.850;1634.3;15.044;15.044;1;3;3;0.118;0.000;0.8;! +21.900;15.310;21.870;1635.4;15.310;15.310;1;2;3;0.118;0.000;0.7;! +21.920;15.283;21.890;1636.5;15.283;15.283;1;3;3;0.119;0.000;0.7;! +21.940;15.166;21.910;1637.6;15.166;15.166;1;3;3;0.122;0.000;0.7;! +21.960;15.397;21.930;1638.7;15.397;15.397;1;3;3;0.128;0.000;0.7;! +21.980;16.062;21.950;1639.7;16.062;16.062;1;3;3;0.130;0.000;0.7;! +22.000;17.313;21.970;1640.8;17.313;17.313;1;3;3;0.133;0.000;0.7;! +22.020;18.390;21.990;1641.9;18.390;18.390;1;3;3;0.137;0.000;0.8;! +22.040;18.421;22.010;1643.0;18.421;18.421;1;3;3;0.142;0.000;0.8;! +22.060;17.999;22.030;1644.1;17.999;17.999;1;3;3;0.145;0.000;0.8;! +22.080;17.749;22.050;1645.2;17.749;17.749;1;3;3;0.148;0.000;0.8;! +22.100;17.616;22.070;1646.2;17.616;17.616;1;3;3;0.149;0.000;0.8;! +22.120;17.063;22.090;1647.3;17.063;17.063;1;3;3;0.147;0.000;0.8;! +22.140;16.118;22.110;1648.4;16.118;16.118;1;3;3;0.141;0.000;0.8;! +22.160;14.956;22.130;1649.4;14.956;14.956;1;3;3;0.135;0.000;0.8;! +22.180;14.073;22.150;1650.5;14.073;14.073;1;3;3;0.131;0.000;0.8;! +22.200;13.265;22.170;1651.6;13.265;13.265;1;3;3;0.125;0.000;0.8;! +22.220;12.713;22.190;1654.0;12.713;12.713;1;3;3;0.121;0.000;0.9;! +22.240;12.193;22.210;1657.4;12.193;12.193;1;3;3;0.116;0.000;0.9;! +22.260;11.722;22.230;1660.6;11.722;11.722;1;3;3;0.111;0.000;0.9;! +22.280;11.643;22.250;1661.7;11.643;11.643;1;3;3;0.106;0.000;0.8;! +22.300;11.581;22.270;1662.8;11.581;11.581;1;3;3;0.101;0.000;0.8;! +22.320;11.609;22.290;1663.9;11.609;11.609;1;3;3;0.101;0.000;0.8;! +22.340;11.856;22.310;1664.9;11.856;11.856;1;3;3;0.100;0.000;0.8;! +22.360;12.366;22.330;1666.0;12.366;12.366;1;3;3;0.103;0.000;0.8;! +22.380;12.932;22.350;1667.1;12.932;12.932;1;3;3;0.103;0.000;0.8;! +22.400;13.495;22.370;1668.2;13.495;13.495;1;3;3;0.103;0.000;0.7;! +22.420;13.972;22.390;1669.3;13.972;13.972;1;3;3;0.105;0.000;0.7;! +22.440;14.049;22.410;1670.4;14.049;14.049;1;3;3;0.106;0.000;0.8;! +22.460;13.498;22.430;1671.4;13.498;13.498;1;3;3;0.105;0.000;0.8;! +22.480;12.806;22.450;1672.5;12.806;12.806;1;3;3;0.104;0.000;0.8;! +22.500;12.030;22.470;1673.6;12.030;12.030;1;3;3;0.101;0.000;0.8;! +22.520;11.585;22.490;1674.7;11.585;11.585;1;3;3;0.097;0.000;0.8;! +22.540;11.365;22.510;1675.7;11.365;11.365;1;3;3;0.092;0.000;0.7;! +22.560;11.277;22.530;1676.8;11.277;11.277;1;3;3;0.087;0.000;0.7;! +22.580;11.271;22.550;1677.9;11.271;11.271;1;3;3;0.081;0.000;0.7;! +22.600;11.455;22.570;1678.9;11.455;11.455;1;3;3;0.072;0.000;0.6;! +22.620;11.742;22.590;1681.6;11.742;11.742;1;3;3;0.066;0.000;0.5;! +22.640;11.921;22.610;1685.7;11.921;11.921;1;3;3;0.064;0.000;0.5;! +22.660;12.101;22.630;1689.9;12.101;12.101;1;3;3;0.062;0.000;0.5;! +22.680;12.222;22.650;1691.4;12.222;12.222;1;3;3;0.062;0.000;0.5;! +22.700;12.308;22.670;1692.5;12.308;12.308;1;3;3;0.067;0.000;0.5;! +22.720;12.418;22.690;1693.6;12.418;12.418;1;3;3;0.073;0.000;0.5;! +22.740;12.610;22.710;1694.7;12.610;12.610;1;3;3;0.078;0.000;0.6;! +22.760;12.835;22.730;1695.7;12.835;12.835;1;3;3;0.085;0.000;0.6;! +22.780;13.204;22.750;1696.8;13.204;13.204;1;3;3;0.093;0.000;0.7;! +22.800;13.722;22.770;1697.9;13.722;13.722;1;3;3;0.100;0.000;0.7;! +22.820;14.260;22.790;1699.0;14.260;14.260;1;3;3;0.105;0.000;0.7;! +22.840;14.487;22.810;1700.1;14.487;14.487;1;3;3;0.107;0.000;0.7;! +22.860;14.266;22.830;1701.2;14.266;14.266;1;3;3;0.111;0.000;0.8;! +22.880;13.734;22.850;1702.2;13.734;13.734;1;3;3;0.114;0.000;0.8;! +22.900;13.234;22.870;1703.3;13.234;13.234;1;3;3;0.115;0.000;0.8;! +22.920;12.859;22.890;1704.4;12.859;12.859;1;3;3;0.114;0.000;0.8;! +22.940;12.639;22.910;1705.4;12.639;12.639;1;3;3;0.113;0.000;0.8;! +22.960;12.615;22.930;1706.5;12.615;12.615;1;3;3;0.112;0.000;0.8;! +22.980;12.723;22.950;1707.6;12.723;12.723;1;2;3;0.109;0.000;0.8;! +23.000;12.920;22.970;1708.7;12.920;12.920;1;3;3;0.107;0.000;0.8;! +23.020;13.185;22.990;1709.7;13.185;13.185;1;3;3;0.105;0.000;0.8;! +23.040;13.426;23.010;1710.8;13.426;13.426;1;3;3;0.104;0.000;0.7;! +23.060;13.602;23.030;1711.9;13.602;13.602;1;3;3;0.105;0.000;0.7;! +23.080;13.715;23.050;1713.0;13.715;13.715;1;3;3;0.106;0.000;0.8;! +23.100;13.449;23.070;1714.1;13.449;13.449;1;3;3;0.107;0.000;0.8;! +23.120;13.037;23.090;1715.1;13.037;13.037;1;3;3;0.108;0.000;0.8;! +23.140;12.648;23.110;1716.2;12.648;12.648;1;3;3;0.109;0.000;0.8;! +23.160;12.484;23.130;1717.3;12.484;12.484;1;3;3;0.108;0.000;0.8;! +23.180;12.491;23.150;1718.3;12.491;12.491;1;3;3;0.105;0.000;0.8;! +23.200;12.633;23.170;1719.4;12.633;12.633;1;3;3;0.102;0.000;0.7;! +23.220;12.994;23.190;1720.5;12.994;12.994;1;3;3;0.101;0.000;0.7;! +23.240;13.725;23.210;1721.8;13.725;13.725;1;3;3;0.101;0.000;0.7;! +23.260;14.501;23.230;1725.0;14.501;14.501;1;3;3;0.102;0.000;0.7;! +23.280;15.278;23.250;1728.1;15.278;15.278;1;3;3;0.104;0.000;0.6;! +23.300;16.149;23.270;1730.8;16.149;16.149;1;3;3;0.110;0.000;0.6;! +23.320;17.201;23.290;1731.8;17.201;17.201;1;3;3;0.117;0.000;0.6;! +23.340;18.003;23.310;1732.9;18.003;18.003;1;3;3;0.125;0.000;0.7;! +23.360;18.439;23.330;1734.0;18.439;18.439;1;3;3;0.133;0.000;0.7;! +23.380;18.567;23.350;1735.1;18.567;18.567;1;3;3;0.139;0.000;0.7;! +23.400;18.579;23.370;1736.2;18.579;18.579;1;3;3;0.144;0.000;0.7;! +23.420;18.617;23.390;1737.3;18.617;18.617;1;3;3;0.149;0.000;0.7;! +23.440;18.832;23.410;1738.3;18.832;18.832;1;3;3;0.152;0.000;0.8;! +23.460;19.072;23.430;1739.4;19.072;19.072;1;3;3;0.154;0.000;0.8;! +23.480;19.089;23.450;1740.5;19.089;19.089;1;3;3;0.155;0.000;0.8;! +23.500;19.008;23.470;1741.6;19.008;19.008;2;3;3;0.154;0.000;0.8;! +23.520;19.071;23.490;1742.7;19.071;19.071;1;3;3;0.155;0.000;0.8;! +23.540;19.308;23.510;1743.8;19.308;19.308;1;3;3;0.155;0.000;0.8;! +23.560;19.536;23.530;1744.8;19.536;19.536;1;3;3;0.149;0.000;0.7;! +23.580;19.502;23.550;1745.9;19.502;19.502;1;3;3;0.140;0.000;0.7;! +23.600;19.080;23.570;1747.0;19.080;19.080;2;3;3;0.131;0.000;0.6;! +23.620;18.541;23.590;1748.1;18.541;18.541;2;3;3;0.134;0.000;0.7;! +23.640;18.162;23.610;1749.7;18.162;18.162;2;3;3;0.134;0.000;0.7;! +23.660;17.757;23.630;1754.6;17.757;17.757;2;3;3;0.133;0.000;0.7;! +23.680;17.352;23.650;1759.5;17.352;17.352;1;3;3;0.132;0.000;0.7;! +23.700;17.326;23.670;1761.8;17.326;17.326;2;3;3;0.129;0.000;0.7;! +23.720;17.110;23.690;1762.9;17.110;17.110;2;3;3;0.128;0.000;0.7;! +23.740;16.889;23.710;1763.9;16.889;16.889;1;3;3;0.125;0.000;0.7;! +23.760;16.909;23.730;1765.0;16.909;16.909;2;3;3;0.123;0.000;0.7;! +23.780;17.170;23.750;1766.1;17.170;17.170;2;3;3;0.124;0.000;0.7;! +23.800;17.192;23.770;1767.2;17.192;17.192;1;3;3;0.123;0.000;0.7;! +23.820;17.151;23.790;1768.3;17.151;17.151;2;3;3;0.123;0.000;0.7;! +23.840;17.078;23.810;1769.3;17.078;17.078;2;3;3;0.124;0.000;0.7;! +23.860;16.983;23.830;1770.4;16.983;16.983;2;3;3;0.122;0.000;0.7;! +23.880;16.853;23.850;1771.5;16.853;16.853;2;3;3;0.120;0.000;0.7;! +23.900;16.526;23.870;1772.6;16.526;16.526;2;3;3;0.119;0.000;0.7;! +23.920;16.138;23.890;1773.7;16.138;16.138;2;3;3;0.118;0.000;0.7;! +23.940;15.898;23.910;1774.7;15.898;15.898;2;3;3;0.117;0.000;0.7;! +23.960;15.847;23.930;1775.8;15.847;15.847;2;3;3;0.114;0.000;0.6;! +23.980;15.994;23.950;1776.9;15.994;15.994;2;3;3;0.108;0.000;0.6;! +24.000;16.465;23.970;1777.9;16.465;16.465;2;3;3;0.108;0.000;0.6;! +24.020;16.849;23.990;1779.1;16.849;16.849;2;3;3;0.106;0.000;0.6;! +24.040;17.241;24.010;1780.1;17.241;17.241;1;3;3;0.107;0.000;0.6;! +24.060;17.592;24.030;1781.2;17.592;17.592;2;3;3;0.112;0.000;0.6;! +24.080;17.870;24.050;1782.3;17.870;17.870;2;3;3;0.124;0.000;0.6;! +24.100;18.454;24.070;1783.4;18.454;18.454;2;3;3;0.132;0.000;0.6;! +24.120;19.273;24.090;1784.5;19.273;19.273;2;3;3;0.133;0.000;0.6;! +24.140;20.389;24.110;1785.6;20.389;20.389;2;3;3;0.133;0.000;0.6;! +24.160;22.151;24.130;1786.7;22.151;22.151;2;3;3;0.136;0.000;0.6;! +24.180;24.348;24.150;1787.8;24.348;24.348;2;3;3;0.145;0.000;0.6;! +24.200;26.495;24.170;1788.9;26.495;26.495;2;3;3;0.142;0.000;0.5;! +24.220;28.199;24.190;1789.9;28.199;28.199;2;3;3;0.139;0.000;0.5;! +24.240;29.122;24.210;1791.1;29.122;29.122;2;3;3;0.141;0.000;0.5;! +24.260;29.698;24.230;1792.1;29.698;29.698;2;3;3;0.163;0.000;0.5;! +24.280;29.912;24.250;1794.8;29.912;29.912;2;3;3;0.180;0.000;0.6;! +24.300;29.928;24.270;1798.2;29.928;29.928;2;3;3;0.192;0.000;0.6;! +24.320;30.039;24.290;1801.6;30.039;30.039;2;3;3;0.207;0.000;0.6;! +24.340;31.585;24.310;1802.7;31.585;31.585;2;3;3;0.209;0.000;0.6;! +24.360;33.172;24.330;1803.9;33.172;33.172;2;3;3;0.224;0.000;0.6;! +24.380;34.647;24.350;1805.1;34.647;34.647;2;3;3;0.241;0.000;0.6;! +24.400;35.993;24.370;1806.4;35.993;35.993;2;3;3;0.258;0.000;0.7;! +24.420;37.252;24.390;1807.8;37.252;37.252;2;3;3;0.269;0.000;0.7;! +24.440;38.505;24.410;1809.1;38.505;38.505;2;3;3;0.288;0.000;0.7;! +24.460;39.717;24.430;1810.6;39.717;39.717;2;3;3;0.304;0.000;0.7;! +24.480;40.843;24.450;1812.2;40.843;40.843;2;3;3;0.323;0.000;0.7;! +24.500;41.927;24.470;1813.8;41.927;41.927;2;3;3;0.333;0.000;0.8;! +24.520;42.799;24.490;1815.4;42.799;42.799;2;3;3;0.349;0.000;0.8;! +24.540;43.502;24.510;1817.2;43.502;43.502;2;3;3;0.358;0.000;0.8;! +24.560;44.162;24.530;1819.0;44.162;44.162;2;3;3;0.363;0.000;0.8;! +24.580;44.662;24.550;1820.8;44.662;44.662;2;3;3;0.348;0.000;0.7;! +24.600;44.838;24.570;1822.8;44.838;44.838;2;3;3;0.332;0.000;0.7;! +24.620;44.689;24.590;1824.7;44.689;44.689;2;3;3;0.320;0.000;0.7;! +24.640;44.184;24.610;1826.7;44.184;44.184;2;3;3;0.329;0.000;0.7;! +24.660;43.211;24.630;1833.3;43.211;43.211;2;3;3;0.337;0.000;0.7;! +24.680;42.225;24.650;1840.3;42.225;42.225;2;3;3;0.350;0.000;0.8;! +24.700;41.239;24.670;1847.3;41.239;41.239;2;3;3;0.361;0.000;0.8;! +24.720;40.268;24.690;1853.4;40.268;40.268;2;3;3;0.366;0.000;0.9;! +24.740;39.101;24.710;1860.4;39.101;39.101;2;3;3;0.369;0.000;1.0;! +24.760;36.863;24.730;1862.8;36.863;36.863;2;3;3;0.361;0.000;1.0;! +24.780;34.170;24.750;1864.1;34.170;34.170;2;3;3;0.352;0.000;1.0;! +24.800;31.216;24.770;1865.3;31.216;31.216;2;3;3;0.334;0.000;1.0;! +24.820;28.653;24.790;1866.5;28.653;28.653;2;3;3;0.315;0.000;1.0;! +24.840;26.950;24.810;1867.6;26.950;26.950;2;3;3;0.295;0.000;1.0;! +24.860;25.884;24.830;1868.7;25.884;25.884;2;3;3;0.269;0.000;0.9;! +24.880;25.240;24.850;1869.8;25.240;25.240;2;3;3;0.248;0.000;0.9;! +24.900;24.553;24.870;1870.9;24.553;24.553;2;3;3;0.235;0.000;0.9;! +24.920;23.947;24.890;1872.0;23.947;23.947;2;3;3;0.218;0.000;0.8;! +24.940;23.527;24.910;1873.1;23.527;23.527;2;3;3;0.204;0.000;0.8;! +24.960;23.167;24.930;1874.1;23.167;23.167;2;3;3;0.192;0.000;0.8;! +24.980;22.653;24.950;1875.2;22.653;22.653;2;3;3;9.999;0.000;999.9;! +25.000;22.206;24.970;1876.3;22.206;22.206;2;3;3;9.999;0.000;999.9;! +25.020;21.871;24.990;1877.4;21.871;21.871;2;3;3;9.999;0.000;999.9;! +25.040;21.323;25.010;1878.4;21.323;21.323;2;3;3;9.999;0.000;999.9;! +25.050;20.743;25.020;1879.0;20.743;20.743;2;3;3;9.999;0.000;999.9;! diff --git a/tests/cpts/gef/CPT000000217408_IMBRO.gef b/tests/cpts/gef/CPT000000217408_IMBRO.gef new file mode 100644 index 0000000..d2b2779 --- /dev/null +++ b/tests/cpts/gef/CPT000000217408_IMBRO.gef @@ -0,0 +1,1356 @@ +#GEFID= 1, 1, 0 +#COLUMN= 12 +#COLUMNINFO= 1, m (meter), sondeertrajectlengte, 1 +#COLUMNINFO= 2, MPa (megaPascal), conusweerstand, 2 +#COLUMNINFO= 3, m (meter), diepte, 11 +#COLUMNINFO= 4, s (seconde), verlopen tijd, 12 +#COLUMNINFO= 5, MPa (megaPascal), gecorrigeerde conusweerstand, 13 +#COLUMNINFO= 6, MPa (megaPascal), netto conusweerstand, 14 +#COLUMNINFO= 7, ° (graden), helling x, 21 +#COLUMNINFO= 8, ° (graden), helling y, 22 +#COLUMNINFO= 9, ° (graden), hellingresultante, 8 +#COLUMNINFO= 10, MPa (megaPascal), plaatselijke wrijving, 3 +#COLUMNINFO= 11, geen, porienratio, 15 +#COLUMNINFO= 12, % (procent; MPa/MPa), wrijvingsgetal, 4 +#COLUMNSEPARATOR= ; +#COLUMNTEXT= 1, aan +#COLUMNVOID= 1, 999.999 +#COLUMNVOID= 2, 999.999 +#COLUMNVOID= 3, 999.999 +#COLUMNVOID= 4, 99999.9 +#COLUMNVOID= 5, 999.999 +#COLUMNVOID= 6, 999.999 +#COLUMNVOID= 7, 99 +#COLUMNVOID= 8, 99 +#COLUMNVOID= 9, 99 +#COLUMNVOID= 10, 9.999 +#COLUMNVOID= 11, 99.999 +#COLUMNVOID= 12, 999.9 +#COMPANYID= uitvoerder onderzoek, wordt niet uitgeleverd, - +#FILEDATE= 2024, 12, 04 +#FILEOWNER= Basisregistratie Ondergrond +#LASTSCAN= 1257 +#MEASUREMENTTEXT= 4, CP15-CF75SN2-P1E1M4-V1-S1/1701-3470, conustype +#MEASUREMENTTEXT= 5, Fugro Cone Penetrometer MkII, omschrijving sondeerapparaat +#MEASUREMENTTEXT= 6, NEN-EN-ISO 22476-1 / klasse 2, sondeernorm en kwaliteitsklasse +#MEASUREMENTTEXT= 9, maaiveld, lokaal verticaal referentiepunt +#MEASUREMENTTEXT= 20, nee, signaalbewerking uitgevoerd +#MEASUREMENTTEXT= 21, ja, bewerking onderbrekingen uitgevoerd +#MEASUREMENTTEXT= 42, MRG2, methode verticale positiebepaling +#MEASUREMENTTEXT= 43, LRG3, methode locatiebepaling +#MEASUREMENTTEXT= 101, bronhouder, 30124359, - +#MEASUREMENTTEXT= 102, opdracht publieke taakuitvoering, kader aanlevering +#MEASUREMENTTEXT= 103, infrastructuur land, kader inwinning +#MEASUREMENTTEXT= 104, uitvoerder locatiebepaling, wordt niet uitgeleverd, - +#MEASUREMENTTEXT= 105, 2022, 12, 12 +#MEASUREMENTTEXT= 106, uitvoerder verticale positiebepaling, wordt niet uitgeleverd, - +#MEASUREMENTTEXT= 107, 2022, 12, 12 +#MEASUREMENTTEXT= 109, nee, dissipatietest uitgevoerd +#MEASUREMENTTEXT= 110, ja, expertcorrectie uitgevoerd +#MEASUREMENTTEXT= 111, nee, aanvullend onderzoek uitgevoerd +#MEASUREMENTTEXT= 112, 2023, 04, 17 +#MEASUREMENTTEXT= 113, 2022, 12, 20 +#MEASUREMENTTEXT= 115, IMBRO, kwaliteitsregime +#MEASUREMENTTEXT= 116, 2023, 06, 01, 13, 45, 40 +#MEASUREMENTTEXT= 117, voltooid, registratiestatus +#MEASUREMENTTEXT= 118, 2023, 06, 01, 13, 45, 40 +#MEASUREMENTTEXT= 119, nee, gecorrigeerd +#MEASUREMENTTEXT= 121, nee, in onderzoek +#MEASUREMENTTEXT= 123, nee, uit registratie genomen +#MEASUREMENTTEXT= 125, nee, weer in registratie genomen +#MEASUREMENTTEXT= 127, 4258, 51.963590, 4.379427 +#MEASUREMENTTEXT= 128, RDNAPTRANS2018, toegepaste transformatie +#MEASUREMENTVAR= 1, 1510, mm2 (vierkante millimeter), oppervlakte conuspunt +#MEASUREMENTVAR= 2, 19895, mm2 (vierkante millimeter), oppervlakte kleefmantel +#MEASUREMENTVAR= 3, 0.58, geen, oppervlaktequoti�nt conuspunt +#MEASUREMENTVAR= 4, 1.0, geen, oppervlaktequoti�nt kleefmantel +#MEASUREMENTVAR= 5, 87, mm (millimeter), afstand conus tot midden kleefmantel +#MEASUREMENTVAR= 12, 4, -, sondeermethode +#MEASUREMENTVAR= 13, 0.00, m (meter), voorgeboord tot +#MEASUREMENTVAR= 16, 25.046, m (meter), einddiepte +#MEASUREMENTVAR= 17, 0, -, stopcriterium +#MEASUREMENTVAR= 20, 0.016, MPa (megaPascal), conusweerstand vooraf +#MEASUREMENTVAR= 21, -0.030, MPa (megaPascal), conusweerstand achteraf +#MEASUREMENTVAR= 22, -0.003, MPa (megaPascal), plaatselijke wrijving vooraf +#MEASUREMENTVAR= 23, -0.003, MPa (megaPascal), plaatselijke wrijving achteraf +#MEASUREMENTVAR= 24, -, MPa (megaPascal), waterspanning u1 vooraf +#MEASUREMENTVAR= 25, -, MPa (megaPascal), waterspanning u1 achteraf +#MEASUREMENTVAR= 26, -, MPa (megaPascal), waterspanning u2 vooraf +#MEASUREMENTVAR= 27, -, MPa (megaPascal), waterspanning u2 achteraf +#MEASUREMENTVAR= 28, -, MPa (megaPascal), waterspanning u3 vooraf +#MEASUREMENTVAR= 29, -, MPa (megaPascal), waterspanning u3 achteraf +#MEASUREMENTVAR= 30, 1, ° (graden), hellingresultante vooraf +#MEASUREMENTVAR= 31, 1, ° (graden), hellingresultante achteraf +#MEASUREMENTVAR= 32, -, ° (graden), helling noord-zuid vooraf +#MEASUREMENTVAR= 33, -, ° (graden), helling noord-zuid achteraf +#MEASUREMENTVAR= 34, -, ° (graden), helling oost-west vooraf +#MEASUREMENTVAR= 35, -, ° (graden), helling oost-west achteraf +#MEASUREMENTVAR= 36, -, S/m (Siemens/meter), elektrische geleidbaarheid vooraf +#MEASUREMENTVAR= 37, -, S/m (Siemens/meter), elektrische geleidbaarheid achteraf +#MEASUREMENTVAR= 130, 44, mm (millimeter), conusdiameter +#PROJECTID= BRO +#RECORDSEPARATOR= ! +#REPORTCODE= GEF-CPT-Report, 1, 1, 2 +#STARTDATE= 2022, 12, 11 +#STARTTIME= 11, 52, 57 +#TESTID= CPT000000217408 +#XYID= 28992, 85739.344, 442165.088 +#ZID= 31000, -0.810 +#EOH= +0.000;0.051;0.000;105.5;0.051;0.051;-1;0;1;9.999;0.000;999.9;! +0.020;0.084;0.020;109.3;0.084;0.084;-1;0;1;9.999;0.000;999.9;! +0.040;0.174;0.040;111.4;0.174;0.174;-1;0;1;9.999;0.000;999.9;! +0.060;2.112;0.060;113.4;2.112;2.112;-1;-1;1;9.999;0.000;999.9;! +0.080;2.022;0.080;115.2;2.022;2.022;-1;-1;1;0.005;0.000;0.2;! +0.100;2.484;0.100;123.6;2.484;2.484;0;-1;1;0.009;0.000;0.4;! +0.120;4.049;0.120;133.0;4.049;4.049;0;-1;1;0.013;0.000;0.4;! +0.140;4.084;0.140;135.3;4.084;4.084;0;-1;1;0.018;0.000;0.6;! +0.160;1.565;0.160;137.3;1.565;1.565;0;-1;1;0.029;0.000;0.6;! +0.180;3.336;0.180;139.2;3.336;3.336;0;-1;1;0.039;0.000;0.6;! +0.200;6.498;0.200;141.1;6.498;6.498;0;-1;1;0.063;0.000;0.9;! +0.220;10.259;0.220;143.1;10.259;10.259;0;-1;1;0.026;0.000;0.3;! +0.240;8.309;0.240;145.0;8.309;8.309;0;0;0;0.030;0.000;0.2;! +0.260;7.457;0.260;146.9;7.457;7.457;-2;0;2;0.050;0.000;0.4;! +0.280;10.364;0.280;148.8;10.364;10.364;0;0;0;0.046;0.000;0.3;! +0.300;14.479;0.300;150.8;14.479;14.479;0;0;1;0.070;0.000;0.5;! +0.320;15.269;0.320;152.8;15.269;15.269;1;0;1;0.086;0.000;0.5;! +0.340;15.896;0.340;155.9;15.896;15.896;1;1;1;0.022;0.000;0.1;! +0.360;19.951;0.360;173.5;19.951;19.951;1;1;1;0.047;0.000;0.2;! +0.380;20.340;0.380;185.3;20.340;20.340;-1;1;2;0.066;0.000;0.3;! +0.400;23.293;0.400;188.5;23.293;23.293;1;1;1;0.130;0.000;0.6;! +0.420;22.296;0.420;191.4;22.296;22.296;1;1;2;0.074;0.000;0.3;! +0.440;24.049;0.440;194.3;24.049;24.049;2;0;2;0.136;0.000;0.6;! +0.460;20.499;0.460;196.9;20.499;20.499;2;1;2;0.091;0.000;0.4;! +0.480;21.596;0.480;199.5;21.596;21.596;2;0;2;0.040;0.000;0.1;! +0.500;23.072;0.500;202.0;23.072;23.072;0;1;1;0.160;0.000;0.6;! +0.520;21.844;0.520;204.5;21.844;21.844;1;0;1;0.117;0.000;0.4;! +0.540;24.893;0.540;206.9;24.893;24.893;1;1;1;0.151;0.000;0.5;! +0.560;27.214;0.560;209.4;27.214;27.214;1;1;2;0.173;0.000;0.6;! +0.580;29.020;0.580;211.8;29.020;29.020;2;0;2;0.238;0.000;0.8;! +0.600;34.029;0.600;214.1;34.029;34.029;3;1;3;0.199;0.000;0.6;! +0.620;36.215;0.620;216.3;36.215;36.215;3;1;3;0.208;0.000;0.6;! +0.640;35.940;0.640;218.1;35.940;35.940;3;1;3;0.211;0.000;0.6;! +0.660;34.880;0.660;219.5;34.880;34.880;3;1;3;0.256;0.000;0.7;! +0.680;35.630;0.680;220.9;35.630;35.630;3;1;3;0.215;0.000;0.6;! +0.700;36.416;0.700;222.1;36.416;36.416;3;1;3;0.228;0.000;0.6;! +0.720;35.482;0.720;223.3;35.482;35.482;3;1;3;0.225;0.000;0.6;! +0.740;33.850;0.740;224.5;33.850;33.850;3;1;3;0.235;0.000;0.6;! +0.760;34.146;0.760;225.8;34.146;34.146;3;1;3;0.245;0.000;0.7;! +0.780;33.657;0.780;226.9;33.657;33.657;3;1;3;0.255;0.000;0.7;! +0.800;33.214;0.800;228.2;33.214;33.214;3;1;3;0.217;0.000;0.6;! +0.820;33.632;0.820;229.4;33.632;33.632;3;1;3;0.223;0.000;0.6;! +0.840;34.588;0.840;230.6;34.588;34.588;3;1;3;0.215;0.000;0.6;! +0.860;34.662;0.860;231.8;34.662;34.662;3;1;3;0.206;0.000;0.6;! +0.880;34.256;0.880;233.0;34.256;34.256;3;1;3;0.222;0.000;0.6;! +0.900;33.630;0.900;234.2;33.630;33.630;3;1;3;0.243;0.000;0.7;! +0.920;33.459;0.920;235.4;33.459;33.459;3;1;3;0.260;0.000;0.7;! +0.940;33.291;0.940;236.6;33.291;33.291;3;1;3;0.280;0.000;0.8;! +0.960;32.543;0.960;237.7;32.543;32.543;3;1;3;0.307;0.000;0.9;! +0.980;31.701;0.980;238.9;31.701;31.701;3;1;3;0.322;0.000;1.0;! +1.000;31.278;1.000;240.1;31.278;31.278;3;1;3;0.346;0.000;1.1;! +1.020;30.508;1.020;241.3;30.508;30.508;3;1;3;0.301;0.000;0.9;! +1.040;28.843;1.040;242.6;28.843;28.843;3;1;3;0.253;0.000;0.8;! +1.060;27.816;1.060;244.1;27.816;27.816;3;1;3;0.241;0.000;0.8;! +1.080;27.029;1.080;245.4;27.029;27.029;3;1;3;0.255;0.000;0.8;! +1.100;26.352;1.100;249.5;26.352;26.352;3;1;3;0.267;0.000;0.9;! +1.120;25.667;1.120;255.3;25.667;25.667;3;1;3;0.261;0.000;0.9;! +1.140;25.238;1.140;260.2;25.238;25.238;3;1;3;0.263;0.000;0.9;! +1.160;25.787;1.160;260.9;25.787;25.787;3;1;3;0.264;0.000;1.0;! +1.180;26.189;1.180;261.7;26.189;26.189;3;1;3;0.264;0.000;0.9;! +1.200;26.764;1.200;262.5;26.764;26.764;3;1;3;0.265;0.000;0.9;! +1.220;27.203;1.220;263.3;27.203;27.203;3;1;3;0.264;0.000;0.9;! +1.240;27.808;1.240;264.1;27.808;27.808;3;1;3;0.261;0.000;0.9;! +1.260;28.431;1.260;264.9;28.431;28.431;3;1;3;0.256;0.000;0.8;! +1.280;29.179;1.280;265.7;29.179;29.179;3;1;4;0.250;0.000;0.8;! +1.300;30.161;1.300;266.5;30.161;30.161;3;1;3;0.237;0.000;0.7;! +1.320;30.746;1.320;267.4;30.746;30.746;3;1;4;0.271;0.000;0.8;! +1.340;31.408;1.340;268.2;31.408;31.408;3;1;4;0.278;0.000;0.9;! +1.360;32.365;1.360;269.0;32.365;32.365;3;1;4;0.286;0.000;0.9;! +1.380;31.912;1.380;269.8;31.912;31.912;3;1;3;0.317;0.000;1.0;! +1.400;31.022;1.400;270.7;31.022;31.022;3;1;4;0.339;0.000;1.0;! +1.420;30.609;1.420;271.5;30.609;30.609;3;1;4;0.358;0.000;1.1;! +1.440;30.229;1.440;272.3;30.229;30.229;3;1;4;0.368;0.000;1.2;! +1.460;29.293;1.460;273.1;29.293;29.293;3;1;4;0.358;0.000;1.2;! +1.480;28.389;1.480;273.9;28.389;28.389;3;1;4;0.349;0.000;1.2;! +1.500;27.859;1.500;274.7;27.859;27.859;3;1;4;0.363;0.000;1.2;! +1.520;27.561;1.520;275.5;27.561;27.561;3;1;4;0.365;0.000;1.3;! +1.540;27.434;1.540;276.3;27.434;27.434;4;1;4;0.352;0.000;1.2;! +1.560;27.206;1.560;277.1;27.206;27.206;3;1;4;0.336;0.000;1.2;! +1.580;26.953;1.580;277.9;26.953;26.953;4;1;4;0.334;0.000;1.2;! +1.600;26.757;1.600;278.7;26.757;26.757;4;1;4;0.333;0.000;1.2;! +1.620;26.503;1.620;279.5;26.503;26.503;4;1;4;0.330;0.000;1.2;! +1.640;26.245;1.640;280.3;26.245;26.245;3;1;4;0.323;0.000;1.2;! +1.660;25.908;1.660;281.0;25.908;25.908;3;1;3;0.315;0.000;1.2;! +1.680;25.094;1.680;281.8;25.094;25.094;3;1;4;0.306;0.000;1.2;! +1.700;24.358;1.700;282.6;24.358;24.358;3;1;3;0.301;0.000;1.2;! +1.720;23.554;1.720;283.4;23.554;23.554;3;1;3;0.301;0.000;1.2;! +1.740;22.749;1.740;284.1;22.749;22.749;3;1;3;0.294;0.000;1.2;! +1.760;22.198;1.760;284.9;22.198;22.198;3;1;3;0.284;0.000;1.2;! +1.780;21.639;1.780;285.7;21.639;21.639;3;1;3;0.272;0.000;1.2;! +1.800;20.813;1.800;286.4;20.813;20.813;3;1;4;0.263;0.000;1.2;! +1.820;19.665;1.820;287.2;19.665;19.665;3;1;4;0.255;0.000;1.2;! +1.840;18.649;1.840;287.9;18.649;18.649;3;1;4;0.248;0.000;1.2;! +1.860;17.804;1.860;288.7;17.804;17.804;3;1;4;0.241;0.000;1.3;! +1.880;17.026;1.880;289.5;17.026;17.026;3;1;4;0.234;0.000;1.3;! +1.900;16.052;1.900;290.2;16.052;16.052;3;1;4;0.227;0.000;1.3;! +1.920;15.206;1.920;291.0;15.206;15.206;4;1;4;0.218;0.000;1.3;! +1.940;14.787;1.940;291.7;14.787;14.787;4;1;4;0.212;0.000;1.3;! +1.960;14.442;1.960;292.5;14.442;14.442;4;1;4;0.205;0.000;1.4;! +1.980;13.700;1.980;293.3;13.700;13.700;4;1;4;0.200;0.000;1.4;! +2.000;12.874;2.000;294.0;12.874;12.874;4;1;4;0.188;0.000;1.4;! +2.020;12.033;2.020;294.8;12.033;12.033;4;1;4;0.169;0.000;1.3;! +2.040;11.333;2.040;295.5;11.333;11.333;4;1;4;0.150;0.000;1.2;! +2.060;10.698;2.060;296.3;10.698;10.698;4;1;4;0.135;0.000;1.1;! +2.080;10.093;2.080;297.2;10.093;10.093;4;1;4;0.134;0.000;1.2;! +2.100;9.476;2.100;300.6;9.476;9.476;4;1;4;0.132;0.000;1.2;! +2.120;8.859;2.120;304.0;8.859;8.859;4;1;4;0.130;0.000;1.3;! +2.140;8.241;2.140;307.5;8.241;8.241;4;1;4;0.127;0.000;1.4;! +2.160;7.838;2.160;308.7;7.838;7.838;4;1;4;0.124;0.000;1.5;! +2.180;7.467;2.180;309.4;7.467;7.467;4;1;4;0.121;0.000;1.6;! +2.200;7.060;2.200;310.2;7.060;7.060;4;1;4;0.118;0.000;1.6;! +2.220;6.611;2.220;311.0;6.611;6.611;4;1;4;0.113;0.000;1.6;! +2.240;6.113;2.240;311.7;6.113;6.113;4;1;4;0.107;0.000;1.6;! +2.260;5.603;2.260;312.5;5.603;5.603;4;1;4;0.101;0.000;1.7;! +2.280;5.113;2.280;313.3;5.113;5.113;4;1;4;0.095;0.000;1.7;! +2.300;4.601;2.300;314.0;4.601;4.601;4;1;4;0.089;0.000;1.8;! +2.320;4.119;2.320;314.8;4.119;4.119;4;1;4;0.084;0.000;1.9;! +2.340;3.634;2.340;315.5;3.634;3.634;4;1;4;0.080;0.000;2.0;! +2.360;3.129;2.360;316.3;3.129;3.129;4;1;4;0.078;0.000;2.3;! +2.380;2.618;2.380;317.1;2.618;2.618;4;1;4;0.079;0.000;2.7;! +2.400;2.132;2.400;317.8;2.132;2.132;4;1;4;0.081;0.000;3.2;! +2.420;1.705;2.420;318.6;1.705;1.705;4;1;4;0.081;0.000;3.8;! +2.440;1.379;2.440;319.4;1.379;1.379;4;1;4;0.074;0.000;4.2;! +2.460;1.142;2.460;320.2;1.142;1.142;4;1;4;0.064;0.000;4.4;! +2.480;0.967;2.480;320.9;0.967;0.967;4;1;4;0.053;0.000;4.3;! +2.500;0.853;2.500;321.7;0.853;0.853;4;1;4;0.042;0.000;4.0;! +2.520;0.788;2.520;322.5;0.788;0.788;4;1;4;0.035;0.000;3.8;! +2.540;0.745;2.540;323.2;0.745;0.745;4;1;4;0.028;0.000;3.4;! +2.560;0.708;2.560;324.0;0.708;0.708;4;1;4;0.023;0.000;2.9;! +2.580;0.680;2.580;324.8;0.680;0.680;4;1;4;0.023;0.000;3.1;! +2.600;0.661;2.600;325.5;0.661;0.661;4;1;4;0.026;0.000;3.7;! +2.620;0.672;2.620;326.3;0.672;0.672;4;1;4;0.029;0.000;4.1;! +2.640;0.697;2.640;327.1;0.697;0.697;4;1;4;0.030;0.000;4.3;! +2.660;0.725;2.660;327.8;0.725;0.725;4;1;4;0.032;0.000;4.4;! +2.680;0.743;2.680;328.6;0.743;0.743;4;1;4;0.035;0.000;4.8;! +2.700;0.742;2.700;329.4;0.742;0.742;4;1;4;0.037;0.000;5.2;! +2.720;0.724;2.720;330.1;0.724;0.724;4;1;4;0.040;0.000;5.5;! +2.740;0.713;2.740;330.9;0.713;0.713;4;1;4;0.041;0.000;5.7;! +2.760;0.696;2.760;331.7;0.696;0.696;4;1;4;0.041;0.000;5.9;! +2.780;0.673;2.780;332.5;0.673;0.673;4;1;4;0.041;0.000;6.0;! +2.800;0.649;2.800;333.2;0.649;0.649;4;1;4;0.040;0.000;6.1;! +2.820;0.625;2.820;334.0;0.625;0.625;4;1;4;0.041;0.000;6.3;! +2.840;0.605;2.840;334.7;0.605;0.605;4;1;4;0.041;0.000;6.6;! +2.860;0.582;2.860;335.5;0.582;0.582;4;1;4;0.041;0.000;6.8;! +2.880;0.557;2.880;336.3;0.557;0.557;4;1;4;0.041;0.000;7.1;! +2.900;0.530;2.900;337.0;0.530;0.530;4;1;4;0.041;0.000;7.2;! +2.920;0.524;2.920;337.8;0.524;0.524;4;1;4;0.041;0.000;7.3;! +2.940;0.540;2.940;338.6;0.540;0.540;4;1;4;0.041;0.000;7.4;! +2.960;0.567;2.960;339.4;0.567;0.567;4;1;4;0.043;0.000;7.8;! +2.980;0.566;2.980;340.1;0.566;0.566;4;1;4;0.047;0.000;8.4;! +3.000;0.558;3.000;340.9;0.558;0.558;4;1;4;0.049;0.000;8.8;! +3.020;0.569;3.010;341.7;0.569;0.569;4;1;4;0.052;0.000;9.1;! +3.040;0.580;3.030;342.4;0.580;0.580;4;1;4;0.054;0.000;9.5;! +3.060;0.584;3.050;343.2;0.584;0.584;4;1;4;0.055;0.000;9.6;! +3.080;0.573;3.070;345.5;0.573;0.573;4;1;4;0.056;0.000;9.9;! +3.100;0.555;3.090;348.9;0.555;0.555;4;1;4;0.056;0.000;10.0;! +3.120;0.537;3.110;352.3;0.537;0.537;4;1;4;0.053;0.000;9.8;! +3.140;0.520;3.130;354.8;0.520;0.520;4;1;4;0.051;0.000;9.6;! +3.160;0.508;3.150;355.5;0.508;0.508;4;1;4;0.050;0.000;9.6;! +3.180;0.506;3.170;356.3;0.506;0.506;4;1;4;0.049;0.000;9.4;! +3.200;0.502;3.190;357.1;0.502;0.502;4;1;4;0.049;0.000;9.5;! +3.220;0.490;3.210;357.8;0.490;0.490;4;1;4;0.050;0.000;9.8;! +3.240;0.486;3.230;358.6;0.486;0.486;4;1;4;0.053;0.000;10.4;! +3.260;0.513;3.250;359.4;0.513;0.513;4;1;4;0.058;0.000;11.4;! +3.280;0.517;3.270;360.1;0.517;0.517;4;1;4;0.061;0.000;12.2;! +3.300;0.510;3.290;360.9;0.510;0.510;4;1;4;0.063;0.000;12.9;! +3.320;0.493;3.310;361.7;0.493;0.493;4;1;4;0.064;0.000;13.4;! +3.340;0.450;3.330;362.5;0.450;0.450;4;1;4;0.063;0.000;13.5;! +3.360;0.424;3.350;363.2;0.424;0.424;4;1;4;0.061;0.000;13.5;! +3.380;0.401;3.370;364.0;0.401;0.401;4;1;4;0.058;0.000;13.2;! +3.400;0.395;3.390;364.8;0.395;0.395;4;1;4;0.057;0.000;12.9;! +3.420;0.414;3.410;365.5;0.414;0.414;4;1;4;0.057;0.000;13.2;! +3.440;0.447;3.430;366.3;0.447;0.447;4;1;4;0.057;0.000;13.1;! +3.460;0.475;3.450;367.1;0.475;0.475;4;1;4;0.056;0.000;12.9;! +3.480;0.468;3.470;367.8;0.468;0.468;4;1;4;0.053;0.000;12.2;! +3.500;0.435;3.490;368.6;0.435;0.435;4;1;4;0.052;0.000;11.7;! +3.520;0.415;3.510;369.4;0.415;0.415;4;1;4;0.050;0.000;11.0;! +3.540;0.420;3.530;370.2;0.420;0.420;4;1;4;0.048;0.000;10.1;! +3.560;0.463;3.550;370.9;0.463;0.463;4;1;4;0.049;0.000;9.8;! +3.580;0.541;3.570;371.7;0.541;0.541;4;1;4;0.051;0.000;9.6;! +3.600;0.616;3.590;372.5;0.616;0.616;4;1;4;0.055;0.000;9.8;! +3.620;0.656;3.610;373.2;0.656;0.656;4;1;4;0.063;0.000;10.5;! +3.640;0.676;3.630;374.0;0.676;0.676;4;1;4;0.068;0.000;10.8;! +3.660;0.687;3.650;374.8;0.687;0.687;4;1;4;0.072;0.000;10.7;! +3.680;0.707;3.670;375.5;0.707;0.707;4;1;4;0.074;0.000;10.1;! +3.700;0.703;3.690;376.3;0.703;0.703;4;1;4;0.075;0.000;9.4;! +3.720;0.771;3.710;377.1;0.771;0.771;4;1;4;0.074;0.000;8.3;! +3.740;1.007;3.730;377.8;1.007;1.007;4;1;4;0.074;0.000;7.3;! +3.760;1.225;3.750;378.7;1.225;1.225;4;1;4;0.080;0.000;7.1;! +3.780;1.459;3.770;379.4;1.459;1.459;4;1;4;0.085;0.000;7.2;! +3.800;1.544;3.790;380.2;1.544;1.544;4;1;4;0.091;0.000;7.4;! +3.820;1.523;3.810;380.9;1.523;1.523;4;1;4;0.096;0.000;7.8;! +3.840;1.206;3.830;381.7;1.206;1.206;4;1;4;0.096;0.000;8.0;! +3.860;0.957;3.850;382.5;0.957;0.957;4;1;4;0.095;0.000;8.5;! +3.880;0.812;3.870;383.2;0.812;0.812;4;1;4;0.095;0.000;9.3;! +3.900;0.715;3.890;384.0;0.715;0.715;4;1;4;0.095;0.000;10.4;! +3.920;0.701;3.910;384.8;0.701;0.701;4;1;4;0.092;0.000;11.4;! +3.940;0.697;3.930;385.5;0.697;0.697;4;1;4;0.090;0.000;12.2;! +3.960;0.687;3.950;386.3;0.687;0.687;4;1;4;0.086;0.000;12.6;! +3.980;0.655;3.970;387.1;0.655;0.655;4;1;4;0.085;0.000;12.9;! +4.000;0.617;3.990;387.8;0.617;0.617;4;1;4;0.085;0.000;13.3;! +4.020;0.574;4.010;388.6;0.574;0.574;4;1;4;0.085;0.000;13.8;! +4.040;0.532;4.030;389.4;0.532;0.532;4;1;4;0.084;0.000;14.0;! +4.060;0.504;4.050;390.7;0.504;0.504;4;1;4;0.080;0.000;14.1;! +4.080;0.497;4.070;394.1;0.497;0.497;4;1;4;0.077;0.000;14.4;! +4.100;0.490;4.090;397.6;0.490;0.490;4;1;4;0.074;0.000;14.3;! +4.120;0.483;4.110;401.0;0.483;0.483;4;1;4;0.068;0.000;13.9;! +4.140;0.487;4.130;401.8;0.487;0.487;4;1;4;0.063;0.000;13.3;! +4.160;0.482;4.150;402.5;0.482;0.482;4;1;4;0.059;0.000;12.5;! +4.180;0.457;4.170;403.3;0.457;0.457;4;1;4;0.055;0.000;11.9;! +4.200;0.437;4.190;404.1;0.437;0.437;4;1;4;0.052;0.000;11.6;! +4.220;0.434;4.210;404.8;0.434;0.434;4;1;4;0.048;0.000;11.1;! +4.240;0.393;4.230;405.6;0.393;0.393;4;1;4;0.045;0.000;11.0;! +4.260;0.363;4.250;406.4;0.363;0.363;4;1;4;0.043;0.000;11.2;! +4.280;0.337;4.270;407.2;0.337;0.337;4;1;4;0.043;0.000;11.6;! +4.300;0.333;4.290;407.9;0.333;0.333;4;1;4;0.043;0.000;12.1;! +4.320;0.330;4.310;408.7;0.330;0.330;4;1;4;0.043;0.000;12.8;! +4.340;0.325;4.330;409.5;0.325;0.325;4;1;4;0.043;0.000;13.1;! +4.360;0.316;4.350;410.2;0.316;0.316;4;1;4;0.042;0.000;13.3;! +4.380;0.304;4.370;411.0;0.304;0.304;4;1;4;0.041;0.000;13.3;! +4.400;0.298;4.390;411.8;0.298;0.298;4;1;4;0.039;0.000;13.0;! +4.420;0.291;4.410;412.5;0.291;0.291;4;1;4;0.036;0.000;12.3;! +4.440;0.276;4.430;413.3;0.276;0.276;4;1;4;0.034;0.000;12.0;! +4.460;0.259;4.450;414.1;0.259;0.259;4;1;4;0.034;0.000;12.4;! +4.480;0.252;4.470;414.8;0.252;0.252;4;1;4;0.035;0.000;12.9;! +4.500;0.258;4.490;415.6;0.258;0.258;4;1;4;0.037;0.000;13.8;! +4.520;0.271;4.510;416.4;0.271;0.271;4;1;4;0.040;0.000;14.8;! +4.540;0.277;4.530;417.1;0.277;0.277;4;1;4;0.043;0.000;15.9;! +4.560;0.280;4.550;417.9;0.280;0.280;4;1;4;0.046;0.000;16.9;! +4.580;0.280;4.570;418.7;0.280;0.280;4;1;4;0.048;0.000;17.5;! +4.600;0.282;4.590;419.5;0.282;0.282;4;1;4;0.049;0.000;17.5;! +4.620;0.281;4.610;420.2;0.281;0.281;4;1;4;0.049;0.000;17.5;! +4.640;0.283;4.630;421.0;0.283;0.283;4;1;4;0.049;0.000;17.4;! +4.660;0.280;4.650;421.8;0.280;0.280;4;1;4;0.050;0.000;17.3;! +4.680;0.285;4.670;422.5;0.285;0.285;4;1;4;0.050;0.000;17.2;! +4.700;0.295;4.690;423.3;0.295;0.295;4;1;4;0.050;0.000;17.1;! +4.720;0.304;4.710;424.1;0.304;0.304;4;1;4;0.051;0.000;16.9;! +4.740;0.311;4.730;424.8;0.311;0.311;4;1;4;0.051;0.000;16.8;! +4.760;0.317;4.750;425.6;0.317;0.317;4;1;4;0.051;0.000;16.7;! +4.780;0.316;4.770;426.4;0.316;0.316;4;1;4;0.049;0.000;16.5;! +4.800;0.300;4.790;427.2;0.300;0.300;4;1;4;0.048;0.000;16.3;! +4.820;0.278;4.810;427.9;0.278;0.278;4;1;4;0.046;0.000;16.2;! +4.840;0.261;4.830;428.7;0.261;0.261;4;1;4;0.044;0.000;16.0;! +4.860;0.246;4.850;429.5;0.246;0.246;4;1;4;0.040;0.000;15.7;! +4.880;0.232;4.870;430.2;0.232;0.232;4;1;4;0.036;0.000;15.2;! +4.900;0.214;4.890;431.0;0.214;0.214;4;1;4;0.033;0.000;14.7;! +4.920;0.193;4.910;431.8;0.193;0.193;4;1;4;0.030;0.000;14.2;! +4.940;0.185;4.930;432.5;0.185;0.185;4;1;4;0.028;0.000;13.7;! +4.960;0.187;4.950;433.3;0.187;0.187;4;1;4;0.026;0.000;13.3;! +4.980;0.184;4.970;434.1;0.184;0.184;4;1;4;0.025;0.000;13.2;! +5.000;0.177;4.990;434.8;0.177;0.177;4;1;4;0.024;0.000;13.1;! +5.020;0.167;5.010;435.6;0.167;0.167;4;1;4;0.023;0.000;12.9;! +5.040;0.164;5.030;436.4;0.164;0.164;4;1;4;0.023;0.000;12.9;! +5.060;0.165;5.050;439.2;0.165;0.165;4;1;4;0.022;0.000;12.7;! +5.080;0.166;5.070;442.5;0.166;0.166;4;1;4;0.022;0.000;12.5;! +5.100;0.167;5.090;445.8;0.167;0.167;4;1;4;0.021;0.000;12.1;! +5.120;0.170;5.110;447.9;0.170;0.170;4;1;4;0.020;0.000;11.4;! +5.140;0.177;5.130;448.7;0.177;0.177;4;1;4;0.019;0.000;10.7;! +5.160;0.175;5.150;449.5;0.175;0.175;4;1;4;0.018;0.000;10.2;! +5.180;0.175;5.170;450.2;0.175;0.175;4;1;4;0.017;0.000;9.8;! +5.200;0.177;5.190;451.0;0.177;0.177;4;1;4;0.016;0.000;9.2;! +5.220;0.177;5.210;451.8;0.177;0.177;4;1;4;0.015;0.000;8.6;! +5.240;0.177;5.230;452.5;0.177;0.177;4;1;4;0.015;0.000;8.2;! +5.260;0.177;5.250;453.3;0.177;0.177;4;1;4;0.014;0.000;7.9;! +5.280;0.181;5.270;454.1;0.181;0.181;4;1;4;0.015;0.000;7.9;! +5.300;0.189;5.290;454.8;0.189;0.189;4;1;4;0.015;0.000;8.0;! +5.320;0.197;5.310;455.6;0.197;0.197;4;1;4;0.015;0.000;8.0;! +5.340;0.201;5.330;456.4;0.201;0.201;4;1;4;0.016;0.000;8.0;! +5.360;0.203;5.350;457.1;0.203;0.203;4;1;4;0.016;0.000;8.0;! +5.380;0.201;5.370;457.9;0.201;0.201;4;1;4;0.016;0.000;7.9;! +5.400;0.204;5.390;458.7;0.204;0.204;4;1;4;0.016;0.000;7.8;! +5.420;0.204;5.410;459.5;0.204;0.204;4;1;4;0.016;0.000;7.7;! +5.440;0.204;5.430;460.2;0.204;0.204;4;1;4;0.016;0.000;7.7;! +5.460;0.207;5.450;461.0;0.207;0.207;4;1;4;0.016;0.000;7.6;! +5.480;0.205;5.470;461.8;0.205;0.205;4;1;4;0.016;0.000;7.5;! +5.500;0.205;5.490;462.5;0.205;0.205;4;1;4;0.016;0.000;7.5;! +5.520;0.207;5.510;463.3;0.207;0.207;4;1;4;0.016;0.000;7.6;! +5.540;0.213;5.530;464.1;0.213;0.213;4;1;4;0.017;0.000;7.8;! +5.560;0.223;5.550;464.9;0.223;0.223;4;1;4;0.017;0.000;7.8;! +5.580;0.231;5.570;465.6;0.231;0.231;4;1;4;0.017;0.000;7.8;! +5.600;0.230;5.590;466.4;0.230;0.230;4;1;4;0.017;0.000;7.8;! +5.620;0.227;5.610;467.2;0.227;0.227;4;1;4;0.017;0.000;7.7;! +5.640;0.224;5.630;467.9;0.224;0.224;4;1;4;0.018;0.000;7.9;! +5.660;0.222;5.650;468.7;0.222;0.222;4;1;4;0.018;0.000;7.8;! +5.680;0.219;5.670;469.5;0.219;0.219;4;1;4;0.017;0.000;7.7;! +5.700;0.221;5.690;470.3;0.221;0.221;4;1;4;0.017;0.000;7.6;! +5.720;0.225;5.710;471.0;0.225;0.225;4;1;4;0.018;0.000;7.7;! +5.740;0.227;5.730;471.8;0.227;0.227;4;1;4;0.017;0.000;7.5;! +5.760;0.234;5.750;472.5;0.234;0.234;4;1;4;0.017;0.000;7.4;! +5.780;0.247;5.770;473.3;0.247;0.247;4;1;4;0.018;0.000;7.5;! +5.800;0.249;5.790;474.1;0.249;0.249;4;1;4;0.019;0.000;7.6;! +5.820;0.256;5.810;474.9;0.256;0.256;4;1;4;0.020;0.000;7.7;! +5.840;0.266;5.830;475.6;0.266;0.266;4;1;4;0.020;0.000;7.6;! +5.860;0.276;5.850;476.4;0.276;0.276;4;1;4;0.020;0.000;7.5;! +5.880;0.281;5.870;477.2;0.281;0.281;4;1;4;0.021;0.000;7.5;! +5.900;0.284;5.890;478.0;0.284;0.284;4;1;4;0.021;0.000;7.5;! +5.920;0.291;5.910;478.7;0.291;0.291;4;1;4;0.022;0.000;7.4;! +5.940;0.299;5.930;479.5;0.299;0.299;4;1;4;0.022;0.000;7.3;! +5.960;0.311;5.950;480.3;0.311;0.311;4;1;4;0.023;0.000;7.4;! +5.980;0.329;5.970;481.0;0.329;0.329;4;1;4;0.025;0.000;7.6;! +6.000;0.350;5.990;481.8;0.350;0.350;4;1;4;0.026;0.000;7.8;! +6.020;0.370;6.010;482.6;0.370;0.370;4;1;4;0.027;0.000;7.9;! +6.040;0.373;6.030;483.3;0.373;0.373;4;1;4;0.028;0.000;8.1;! +6.060;0.359;6.050;486.2;0.359;0.359;4;1;4;0.029;0.000;8.4;! +6.080;0.342;6.070;489.6;0.342;0.342;4;1;4;0.029;0.000;8.7;! +6.100;0.324;6.090;493.0;0.324;0.324;4;1;4;0.029;0.000;9.2;! +6.120;0.303;6.110;494.9;0.303;0.303;4;1;4;0.028;0.000;9.5;! +6.140;0.271;6.130;495.7;0.271;0.271;4;1;4;0.024;0.000;8.8;! +6.160;0.249;6.150;496.5;0.249;0.249;4;1;4;0.021;0.000;7.9;! +6.180;0.223;6.170;497.2;0.223;0.223;4;1;4;0.018;0.000;7.1;! +6.200;0.200;6.190;498.0;0.200;0.200;4;1;4;0.015;0.000;6.5;! +6.220;0.206;6.210;498.8;0.206;0.206;4;1;4;0.014;0.000;6.0;! +6.240;0.213;6.230;499.5;0.213;0.213;4;1;4;0.012;0.000;5.6;! +6.260;0.220;6.250;500.3;0.220;0.220;4;1;4;0.012;0.000;5.2;! +6.280;0.230;6.270;501.1;0.230;0.230;4;1;4;0.012;0.000;5.2;! +6.300;0.241;6.290;501.8;0.241;0.241;4;1;4;0.012;0.000;5.2;! +6.320;0.244;6.310;502.6;0.244;0.244;4;1;4;0.012;0.000;5.1;! +6.340;0.243;6.330;503.4;0.243;0.243;4;1;4;0.012;0.000;5.1;! +6.360;0.242;6.350;504.2;0.242;0.242;4;1;4;0.012;0.000;5.1;! +6.380;0.237;6.370;504.9;0.237;0.237;4;1;4;0.012;0.000;5.0;! +6.400;0.237;6.390;505.7;0.237;0.237;4;1;4;0.012;0.000;4.9;! +6.420;0.232;6.410;506.5;0.232;0.232;4;1;4;0.011;0.000;4.8;! +6.440;0.229;6.430;507.3;0.229;0.229;4;1;4;0.011;0.000;4.7;! +6.460;0.230;6.450;508.0;0.230;0.230;4;1;4;0.011;0.000;4.8;! +6.480;0.231;6.470;508.8;0.231;0.231;4;1;4;0.011;0.000;4.6;! +6.500;0.233;6.490;509.5;0.233;0.233;4;1;4;0.010;0.000;4.2;! +6.520;0.237;6.510;510.3;0.237;0.237;4;1;4;0.010;0.000;4.1;! +6.540;0.249;6.530;511.1;0.249;0.249;4;1;4;0.011;0.000;4.3;! +6.560;0.271;6.550;511.9;0.271;0.271;4;1;4;0.011;0.000;4.2;! +6.580;0.289;6.570;512.7;0.289;0.289;4;1;4;0.011;0.000;4.1;! +6.600;0.296;6.590;513.4;0.296;0.296;4;1;4;0.012;0.000;4.1;! +6.620;0.288;6.610;514.2;0.288;0.288;4;1;4;0.012;0.000;4.0;! +6.640;0.290;6.630;515.0;0.290;0.290;4;1;4;0.012;0.000;3.7;! +6.660;0.315;6.640;515.7;0.315;0.315;4;1;4;0.011;0.000;3.3;! +6.680;0.339;6.660;516.5;0.339;0.339;4;1;4;0.011;0.000;2.7;! +6.700;0.376;6.680;517.3;0.376;0.376;4;1;4;0.011;0.000;2.5;! +6.720;0.495;6.700;518.0;0.495;0.495;4;1;4;0.011;0.000;2.2;! +6.740;0.672;6.720;518.8;0.672;0.672;4;1;4;0.011;0.000;2.1;! +6.760;0.721;6.740;519.6;0.721;0.721;4;1;4;0.012;0.000;2.3;! +6.780;0.646;6.760;520.3;0.646;0.646;4;1;4;0.014;0.000;2.5;! +6.800;0.519;6.780;521.1;0.519;0.519;4;1;4;0.015;0.000;3.0;! +6.820;0.415;6.800;521.9;0.415;0.415;4;1;4;0.015;0.000;3.2;! +6.840;0.317;6.820;522.7;0.317;0.317;4;1;4;0.015;0.000;3.6;! +6.860;0.255;6.840;523.4;0.255;0.255;4;1;4;0.014;0.000;3.8;! +6.880;0.232;6.860;524.2;0.232;0.232;4;1;4;0.012;0.000;4.0;! +6.900;0.232;6.880;525.0;0.232;0.232;4;1;4;0.011;0.000;3.9;! +6.920;0.237;6.900;525.7;0.237;0.237;4;1;4;0.009;0.000;3.7;! +6.940;0.235;6.920;526.5;0.235;0.235;4;1;4;0.008;0.000;3.5;! +6.960;0.230;6.940;527.3;0.230;0.230;4;1;4;0.008;0.000;3.5;! +6.980;0.234;6.960;528.0;0.234;0.234;4;1;4;0.008;0.000;3.5;! +7.000;0.230;6.980;528.8;0.230;0.230;4;1;4;0.008;0.000;3.5;! +7.020;0.234;7.000;529.6;0.234;0.234;4;1;4;0.008;0.000;3.5;! +7.040;0.237;7.020;531.5;0.237;0.237;4;1;4;0.008;0.000;3.6;! +7.060;0.242;7.040;535.0;0.242;0.242;4;1;4;0.009;0.000;3.6;! +7.080;0.247;7.060;538.4;0.247;0.247;4;1;4;0.009;0.000;3.6;! +7.100;0.249;7.080;541.2;0.249;0.249;4;1;4;0.009;0.000;3.6;! +7.120;0.248;7.100;542.0;0.248;0.248;4;1;4;0.009;0.000;3.7;! +7.140;0.246;7.120;542.7;0.246;0.246;4;1;4;0.009;0.000;3.6;! +7.160;0.247;7.140;543.5;0.247;0.247;4;1;4;0.009;0.000;3.5;! +7.180;0.247;7.160;544.3;0.247;0.247;4;1;4;0.008;0.000;3.4;! +7.200;0.244;7.180;545.0;0.244;0.244;4;1;4;0.008;0.000;3.3;! +7.220;0.240;7.200;545.8;0.240;0.240;4;1;4;0.008;0.000;3.2;! +7.240;0.240;7.220;546.6;0.240;0.240;4;1;4;0.008;0.000;3.2;! +7.260;0.247;7.240;547.3;0.247;0.247;4;1;4;0.008;0.000;3.2;! +7.280;0.249;7.260;548.1;0.249;0.249;4;1;4;0.008;0.000;3.2;! +7.300;0.249;7.280;548.9;0.249;0.249;4;1;4;0.008;0.000;3.2;! +7.320;0.248;7.300;549.7;0.248;0.248;4;1;4;0.008;0.000;3.2;! +7.340;0.247;7.320;550.4;0.247;0.247;4;1;4;0.008;0.000;3.2;! +7.360;0.250;7.340;551.2;0.250;0.250;4;1;4;0.008;0.000;3.3;! +7.380;0.258;7.360;552.0;0.258;0.258;4;1;4;0.008;0.000;3.2;! +7.400;0.263;7.380;552.7;0.263;0.263;4;1;4;0.008;0.000;3.1;! +7.420;0.266;7.400;553.5;0.266;0.266;4;1;4;0.008;0.000;3.1;! +7.440;0.267;7.420;554.3;0.267;0.267;4;1;4;0.009;0.000;3.2;! +7.460;0.269;7.440;555.0;0.269;0.269;4;1;4;0.009;0.000;3.3;! +7.480;0.287;7.460;555.8;0.287;0.287;4;1;4;0.009;0.000;3.2;! +7.500;0.308;7.480;556.6;0.308;0.308;4;1;4;0.009;0.000;3.1;! +7.520;0.300;7.500;557.3;0.300;0.300;4;1;4;0.008;0.000;2.9;! +7.540;0.279;7.520;558.1;0.279;0.279;4;1;4;0.008;0.000;2.8;! +7.560;0.263;7.540;558.9;0.263;0.263;4;1;4;0.008;0.000;2.8;! +7.580;0.259;7.560;559.7;0.259;0.259;4;1;4;0.008;0.000;2.8;! +7.600;0.264;7.580;560.5;0.264;0.264;4;1;4;0.008;0.000;2.8;! +7.620;0.273;7.600;561.2;0.273;0.273;4;1;4;0.008;0.000;2.8;! +7.640;0.286;7.620;562.0;0.286;0.286;4;1;4;0.008;0.000;2.8;! +7.660;0.294;7.640;562.8;0.294;0.294;4;1;4;0.008;0.000;2.9;! +7.680;0.297;7.660;563.5;0.297;0.297;4;1;4;0.009;0.000;3.0;! +7.700;0.299;7.680;564.3;0.299;0.299;4;1;4;0.009;0.000;3.0;! +7.720;0.303;7.700;565.1;0.303;0.303;4;1;4;0.009;0.000;3.1;! +7.740;0.303;7.720;565.8;0.303;0.303;4;1;4;0.009;0.000;3.1;! +7.760;0.299;7.740;566.6;0.299;0.299;4;1;4;0.009;0.000;3.0;! +7.780;0.320;7.760;567.4;0.320;0.320;4;1;4;0.010;0.000;3.1;! +7.800;0.315;7.780;568.2;0.315;0.315;4;1;4;0.010;0.000;3.2;! +7.820;0.308;7.800;568.9;0.308;0.308;4;1;4;0.010;0.000;3.1;! +7.840;0.310;7.820;569.7;0.310;0.310;4;1;4;0.010;0.000;3.0;! +7.860;0.333;7.840;570.5;0.333;0.333;4;1;4;0.010;0.000;3.0;! +7.880;0.325;7.860;571.2;0.325;0.325;4;1;4;0.010;0.000;3.1;! +7.900;0.325;7.880;572.0;0.325;0.325;4;1;4;0.010;0.000;3.1;! +7.920;0.329;7.900;572.8;0.329;0.329;4;1;4;0.010;0.000;3.1;! +7.940;0.328;7.920;573.5;0.328;0.328;4;1;4;0.010;0.000;3.1;! +7.960;0.324;7.940;574.3;0.324;0.324;4;1;4;0.010;0.000;3.1;! +7.980;0.323;7.960;575.1;0.323;0.323;4;1;4;0.010;0.000;3.1;! +8.000;0.333;7.980;575.8;0.333;0.333;4;1;4;0.010;0.000;3.1;! +8.020;0.350;8.000;577.0;0.350;0.350;4;1;4;0.010;0.000;3.0;! +8.040;0.378;8.020;580.3;0.378;0.378;4;1;4;0.011;0.000;3.0;! +8.060;0.406;8.040;583.7;0.406;0.406;4;1;4;0.013;0.000;3.2;! +8.080;0.434;8.060;587.0;0.434;0.434;4;1;4;0.015;0.000;3.4;! +8.100;0.473;8.080;588.2;0.473;0.473;4;1;4;0.017;0.000;3.6;! +8.120;0.498;8.100;589.0;0.498;0.498;4;1;4;0.024;0.000;4.6;! +8.140;0.527;8.120;589.7;0.527;0.527;4;1;4;0.032;0.000;6.0;! +8.160;0.563;8.140;590.5;0.563;0.563;4;1;4;0.039;0.000;6.9;! +8.180;0.627;8.160;591.3;0.627;0.627;4;1;4;0.046;0.000;7.6;! +8.200;0.694;8.180;592.0;0.694;0.694;4;1;4;0.051;0.000;8.0;! +8.220;0.725;8.200;592.8;0.725;0.725;4;1;4;0.055;0.000;8.4;! +8.240;0.723;8.220;593.6;0.723;0.723;4;1;4;0.057;0.000;8.6;! +8.260;0.685;8.240;594.3;0.685;0.685;4;1;4;0.056;0.000;8.4;! +8.280;0.649;8.260;595.1;0.649;0.649;4;1;4;0.052;0.000;8.0;! +8.300;0.605;8.280;595.9;0.605;0.605;4;1;4;0.048;0.000;7.7;! +8.320;0.556;8.300;596.7;0.556;0.556;4;1;4;0.043;0.000;7.3;! +8.340;0.515;8.320;597.5;0.515;0.515;4;1;4;0.037;0.000;6.7;! +8.360;0.487;8.340;598.2;0.487;0.487;4;1;4;0.032;0.000;6.1;! +8.380;0.450;8.360;599.0;0.450;0.450;4;1;4;0.026;0.000;5.5;! +8.400;0.422;8.380;599.8;0.422;0.422;4;1;4;0.022;0.000;4.9;! +8.420;0.404;8.400;600.5;0.404;0.404;4;1;4;0.020;0.000;4.5;! +8.440;0.398;8.420;601.3;0.398;0.398;4;1;4;0.016;0.000;3.9;! +8.460;0.394;8.440;602.1;0.394;0.394;4;1;4;0.014;0.000;3.4;! +8.480;0.398;8.460;602.8;0.398;0.398;4;1;4;0.013;0.000;3.1;! +8.500;0.405;8.480;603.6;0.405;0.405;4;1;4;0.012;0.000;3.0;! +8.520;0.410;8.500;604.4;0.410;0.410;4;1;4;0.012;0.000;2.9;! +8.540;0.409;8.520;605.2;0.409;0.409;4;1;4;0.012;0.000;2.9;! +8.560;0.409;8.540;606.0;0.409;0.409;4;1;4;0.012;0.000;2.8;! +8.580;0.411;8.560;606.7;0.411;0.411;4;1;4;0.012;0.000;2.8;! +8.600;0.409;8.580;607.5;0.409;0.409;4;1;4;0.011;0.000;2.7;! +8.620;0.407;8.600;608.3;0.407;0.407;4;1;4;0.011;0.000;2.7;! +8.640;0.409;8.620;609.0;0.409;0.409;4;1;4;0.011;0.000;2.7;! +8.660;0.408;8.640;609.8;0.408;0.408;4;1;4;0.011;0.000;2.6;! +8.680;0.410;8.660;610.6;0.410;0.410;4;1;4;0.010;0.000;2.5;! +8.700;0.412;8.680;611.3;0.412;0.412;4;1;4;0.011;0.000;2.6;! +8.720;0.406;8.700;612.1;0.406;0.406;4;1;4;0.011;0.000;2.6;! +8.740;0.403;8.720;612.9;0.403;0.403;4;1;4;0.010;0.000;2.5;! +8.760;0.406;8.740;613.7;0.406;0.406;4;1;4;0.011;0.000;2.6;! +8.780;0.412;8.760;614.4;0.412;0.412;4;1;4;0.011;0.000;2.5;! +8.800;0.419;8.780;615.2;0.419;0.419;4;1;4;0.011;0.000;2.5;! +8.820;0.417;8.800;616.0;0.417;0.417;4;1;4;0.011;0.000;2.5;! +8.840;0.413;8.820;616.8;0.413;0.413;4;1;4;0.010;0.000;2.5;! +8.860;0.405;8.840;617.5;0.405;0.405;4;1;4;0.010;0.000;2.4;! +8.880;0.416;8.860;618.3;0.416;0.416;4;1;4;0.011;0.000;2.4;! +8.900;0.435;8.880;619.1;0.435;0.435;4;1;4;0.013;0.000;2.9;! +8.920;0.479;8.900;619.8;0.479;0.479;4;1;4;0.013;0.000;2.8;! +8.940;0.537;8.920;620.6;0.537;0.537;4;1;4;0.014;0.000;2.9;! +8.960;0.561;8.940;621.4;0.561;0.561;4;1;4;0.016;0.000;3.0;! +8.980;0.539;8.960;622.2;0.539;0.539;4;1;4;0.017;0.000;3.2;! +9.000;0.534;8.980;622.9;0.534;0.534;4;1;4;0.018;0.000;3.3;! +9.020;0.642;9.000;624.4;0.642;0.642;4;1;4;0.018;0.000;2.8;! +9.040;0.825;9.020;627.8;0.825;0.825;4;1;4;0.018;0.000;2.2;! +9.060;1.008;9.040;631.2;1.008;1.008;4;1;4;0.019;0.000;2.0;! +9.080;1.198;9.060;634.5;1.198;1.198;4;1;4;0.019;0.000;1.7;! +9.100;1.413;9.080;635.3;1.413;1.413;4;1;4;0.017;0.000;1.4;! +9.120;1.260;9.100;636.0;1.260;1.260;4;1;4;0.020;0.000;1.5;! +9.140;1.066;9.120;636.8;1.066;1.066;4;1;4;0.018;0.000;1.3;! +9.160;1.278;9.140;637.6;1.278;1.278;4;1;4;0.017;0.000;1.2;! +9.180;1.729;9.160;638.4;1.729;1.729;4;1;4;0.022;0.000;1.6;! +9.200;1.540;9.180;639.2;1.540;1.540;4;1;4;0.027;0.000;2.1;! +9.220;1.169;9.200;639.9;1.169;1.169;4;1;4;0.026;0.000;2.3;! +9.240;0.918;9.220;640.7;0.918;0.918;4;1;4;0.024;0.000;2.2;! +9.260;0.721;9.240;641.5;0.721;0.721;4;1;4;0.022;0.000;2.1;! +9.280;0.622;9.260;642.2;0.622;0.622;4;1;4;0.020;0.000;2.0;! +9.300;0.588;9.280;643.0;0.588;0.588;4;1;4;0.020;0.000;1.9;! +9.320;0.963;9.300;643.8;0.963;0.963;4;1;4;0.017;0.000;1.5;! +9.340;1.549;9.320;644.6;1.549;1.549;4;1;4;0.016;0.000;1.3;! +9.360;1.821;9.340;645.3;1.821;1.821;4;1;4;0.018;0.000;1.4;! +9.380;1.706;9.360;646.1;1.706;1.706;4;1;4;0.020;0.000;1.4;! +9.400;1.474;9.380;646.9;1.474;1.474;4;1;4;0.023;0.000;1.5;! +9.420;1.336;9.400;647.7;1.336;1.336;4;1;4;0.025;0.000;1.7;! +9.440;1.280;9.420;648.4;1.280;1.280;4;1;4;0.026;0.000;1.8;! +9.460;1.257;9.440;649.2;1.257;1.257;4;1;4;0.027;0.000;2.0;! +9.480;1.213;9.460;650.0;1.213;1.213;4;1;4;0.027;0.000;2.2;! +9.500;1.114;9.480;650.7;1.114;1.114;4;1;4;0.025;0.000;2.2;! +9.520;0.949;9.500;651.5;0.949;0.949;4;1;4;0.027;0.000;2.5;! +9.540;0.896;9.520;652.3;0.896;0.896;4;1;4;0.025;0.000;2.3;! +9.560;0.898;9.540;653.0;0.898;0.898;4;1;4;0.024;0.000;2.4;! +9.580;1.069;9.560;653.8;1.069;1.069;4;1;4;0.026;0.000;2.6;! +9.600;1.035;9.580;654.6;1.035;1.035;4;1;4;0.023;0.000;2.2;! +9.620;0.905;9.600;655.3;0.905;0.905;4;1;4;0.020;0.000;1.7;! +9.640;0.955;9.620;656.1;0.955;0.955;4;1;4;0.020;0.000;1.3;! +9.660;1.514;9.640;656.9;1.514;1.514;4;1;4;0.021;0.000;1.2;! +9.680;2.420;9.660;657.7;2.420;2.420;4;1;4;0.021;0.000;1.1;! +9.700;2.685;9.680;658.5;2.685;2.685;4;1;4;0.025;0.000;1.3;! +9.720;2.469;9.700;659.2;2.469;2.469;4;1;4;0.028;0.000;1.3;! +9.740;2.218;9.720;660.0;2.218;2.218;4;1;4;0.031;0.000;1.4;! +9.760;2.018;9.740;660.8;2.018;2.018;4;1;4;0.034;0.000;1.6;! +9.780;1.792;9.760;661.5;1.792;1.792;4;1;4;0.037;0.000;1.9;! +9.800;1.531;9.780;662.3;1.531;1.531;4;1;4;0.037;0.000;2.1;! +9.820;1.298;9.800;663.1;1.298;1.298;4;1;4;0.036;0.000;2.3;! +9.840;1.149;9.820;663.8;1.149;1.149;4;1;4;0.033;0.000;2.4;! +9.860;1.059;9.840;664.6;1.059;1.059;4;1;4;0.029;0.000;2.3;! +9.880;1.005;9.860;665.4;1.005;1.005;4;1;4;0.027;0.000;2.3;! +9.900;1.076;9.880;666.2;1.076;1.076;4;1;4;0.025;0.000;2.2;! +9.920;1.213;9.900;666.9;1.213;1.213;4;1;4;0.024;0.000;2.1;! +9.940;1.229;9.920;667.7;1.229;1.229;4;1;4;0.024;0.000;2.0;! +9.960;1.150;9.940;668.5;1.150;1.150;4;1;4;0.024;0.000;2.0;! +9.980;1.213;9.960;669.2;1.213;1.213;4;1;4;0.024;0.000;1.9;! +10.000;1.436;9.980;670.0;1.436;1.436;4;1;4;0.026;0.000;2.0;! +10.020;1.568;10.000;673.0;1.568;1.568;4;1;4;0.024;0.000;1.7;! +10.040;1.700;10.020;676.0;1.700;1.700;4;1;4;0.026;0.000;1.6;! +10.060;1.833;10.040;679.0;1.833;1.833;4;1;4;0.025;0.000;1.4;! +10.080;2.001;10.060;681.6;2.001;2.001;4;1;4;0.027;0.000;1.3;! +10.100;2.207;10.080;682.4;2.207;2.207;4;1;4;0.029;0.000;1.5;! +10.120;2.041;10.100;683.2;2.041;2.041;4;1;4;0.030;0.000;1.6;! +10.140;1.811;10.120;683.9;1.811;1.811;4;1;4;0.030;0.000;1.7;! +10.160;1.585;10.140;684.7;1.585;1.585;4;1;4;0.030;0.000;1.8;! +10.180;1.371;10.160;685.5;1.371;1.371;4;1;4;0.029;0.000;1.9;! +10.200;1.191;10.180;686.2;1.191;1.191;4;1;4;0.026;0.000;1.9;! +10.220;1.013;10.200;687.0;1.013;1.013;4;1;4;0.022;0.000;1.9;! +10.240;0.852;10.220;687.8;0.852;0.852;4;1;4;0.018;0.000;1.7;! +10.260;0.743;10.240;688.5;0.743;0.743;4;1;4;0.016;0.000;1.6;! +10.280;0.730;10.260;689.3;0.730;0.730;4;1;4;0.017;0.000;1.7;! +10.300;0.881;10.280;690.1;0.881;0.881;4;1;4;0.017;0.000;1.7;! +10.320;1.088;10.300;690.9;1.088;1.088;4;1;4;0.017;0.000;1.7;! +10.340;1.220;10.320;691.7;1.220;1.220;4;1;4;0.019;0.000;1.8;! +10.360;1.236;10.340;692.4;1.236;1.236;4;1;4;0.022;0.000;1.9;! +10.380;1.231;10.360;693.2;1.231;1.231;4;1;4;0.024;0.000;1.9;! +10.400;1.232;10.380;694.0;1.232;1.232;4;1;4;0.025;0.000;1.8;! +10.420;1.260;10.390;694.7;1.260;1.260;4;1;4;0.025;0.000;1.7;! +10.440;1.499;10.410;695.5;1.499;1.499;4;1;4;0.025;0.000;1.6;! +10.460;1.783;10.430;696.3;1.783;1.783;4;1;4;0.026;0.000;1.6;! +10.480;1.915;10.450;697.1;1.915;1.915;4;1;4;0.027;0.000;1.6;! +10.500;1.895;10.470;697.8;1.895;1.895;4;1;4;0.028;0.000;1.5;! +10.520;1.836;10.490;698.6;1.836;1.836;4;1;4;0.027;0.000;1.4;! +10.540;1.896;10.510;699.4;1.896;1.896;4;1;4;0.027;0.000;1.3;! +10.560;2.014;10.530;700.2;2.014;2.014;4;1;4;0.028;0.000;1.4;! +10.580;2.105;10.550;700.9;2.105;2.105;4;1;4;0.027;0.000;1.3;! +10.600;2.085;10.570;701.7;2.085;2.085;4;1;4;0.027;0.000;1.3;! +10.620;2.039;10.590;702.5;2.039;2.039;4;1;4;0.026;0.000;1.2;! +10.640;2.090;10.610;703.3;2.090;2.090;4;1;4;0.027;0.000;1.1;! +10.660;2.216;10.630;704.0;2.216;2.216;4;1;4;0.028;0.000;1.1;! +10.680;2.493;10.650;704.8;2.493;2.493;4;1;4;0.029;0.000;1.1;! +10.700;2.951;10.670;705.6;2.951;2.951;4;1;4;0.030;0.000;1.0;! +10.720;3.333;10.690;706.3;3.333;3.333;4;1;4;0.032;0.000;1.0;! +10.740;3.494;10.710;707.1;3.494;3.494;4;1;4;0.034;0.000;1.0;! +10.760;3.595;10.730;707.9;3.595;3.595;4;1;4;0.036;0.000;1.0;! +10.780;3.679;10.750;708.7;3.679;3.679;4;1;4;0.038;0.000;1.0;! +10.800;3.710;10.770;709.5;3.710;3.710;4;1;4;0.040;0.000;1.1;! +10.820;3.714;10.790;710.3;3.714;3.714;4;1;4;0.041;0.000;1.1;! +10.840;3.721;10.810;711.0;3.721;3.721;4;1;4;0.041;0.000;1.1;! +10.860;3.726;10.830;711.8;3.726;3.726;4;1;4;0.042;0.000;1.1;! +10.880;3.751;10.850;712.6;3.751;3.751;4;1;4;0.043;0.000;1.1;! +10.900;3.777;10.870;713.3;3.777;3.777;4;1;4;0.045;0.000;1.2;! +10.920;3.757;10.890;714.1;3.757;3.757;4;1;4;0.044;0.000;1.1;! +10.940;3.662;10.910;714.9;3.662;3.662;4;1;4;0.041;0.000;1.1;! +10.960;3.516;10.930;715.7;3.516;3.516;4;1;4;0.038;0.000;1.0;! +10.980;3.384;10.950;716.4;3.384;3.384;4;1;4;0.036;0.000;1.0;! +11.000;3.400;10.970;717.9;3.400;3.400;4;1;4;0.037;0.000;1.0;! +11.020;3.534;10.990;721.3;3.534;3.534;4;1;4;0.038;0.000;1.0;! +11.040;3.668;11.010;724.7;3.668;3.668;4;1;4;0.038;0.000;1.0;! +11.060;3.800;11.030;728.0;3.800;3.800;4;1;4;0.039;0.000;1.0;! +11.080;3.859;11.050;728.8;3.859;3.859;4;1;4;0.040;0.000;1.0;! +11.100;3.895;11.070;729.6;3.895;3.895;4;1;4;0.040;0.000;1.0;! +11.120;4.001;11.090;730.4;4.001;4.001;4;1;4;0.041;0.000;1.0;! +11.140;4.083;11.110;731.2;4.083;4.083;4;1;4;0.042;0.000;1.0;! +11.160;4.104;11.130;731.9;4.104;4.104;4;1;4;0.042;0.000;1.0;! +11.180;4.118;11.150;732.7;4.118;4.118;4;1;4;0.043;0.000;1.0;! +11.200;4.130;11.170;733.5;4.130;4.130;4;1;4;0.045;0.000;1.0;! +11.220;4.119;11.190;734.2;4.119;4.119;4;1;4;0.046;0.000;1.1;! +11.240;4.062;11.210;735.0;4.062;4.062;4;1;4;0.047;0.000;1.1;! +11.260;3.991;11.230;735.8;3.991;3.991;4;1;4;0.048;0.000;1.2;! +11.280;3.910;11.250;736.5;3.910;3.910;4;1;4;0.048;0.000;1.2;! +11.300;3.819;11.270;737.3;3.819;3.819;4;1;4;0.048;0.000;1.2;! +11.320;3.696;11.290;738.1;3.696;3.696;4;1;4;0.048;0.000;1.3;! +11.340;3.503;11.310;738.8;3.503;3.503;4;1;4;0.048;0.000;1.3;! +11.360;3.256;11.330;739.6;3.256;3.256;4;1;4;0.048;0.000;1.4;! +11.380;3.000;11.350;740.4;3.000;3.000;4;1;4;0.046;0.000;1.4;! +11.400;2.802;11.370;741.2;2.802;2.802;4;1;4;0.044;0.000;1.4;! +11.420;2.683;11.390;741.9;2.683;2.683;4;1;4;0.042;0.000;1.5;! +11.440;2.564;11.410;742.7;2.564;2.564;4;1;4;0.042;0.000;1.6;! +11.460;2.359;11.430;743.5;2.359;2.359;4;1;4;0.043;0.000;1.8;! +11.480;2.095;11.450;744.2;2.095;2.095;4;1;4;0.044;0.000;2.0;! +11.500;1.809;11.470;745.0;1.809;1.809;4;1;4;0.044;0.000;2.2;! +11.520;1.581;11.490;745.8;1.581;1.581;4;1;4;0.046;0.000;2.5;! +11.540;1.460;11.510;746.5;1.460;1.460;4;1;4;0.049;0.000;3.1;! +11.560;1.276;11.530;747.3;1.276;1.276;4;1;4;0.049;0.000;3.5;! +11.580;1.064;11.550;748.1;1.064;1.064;4;1;4;0.043;0.000;3.6;! +11.600;0.900;11.570;748.8;0.900;0.900;4;1;4;0.036;0.000;3.4;! +11.620;0.729;11.590;749.6;0.729;0.729;4;1;4;0.033;0.000;3.1;! +11.640;0.684;11.610;750.4;0.684;0.684;4;1;4;0.030;0.000;2.8;! +11.660;0.899;11.630;751.2;0.899;0.899;4;1;4;0.025;0.000;2.3;! +11.680;1.296;11.650;751.9;1.296;1.296;4;1;4;0.017;0.000;1.4;! +11.700;1.585;11.670;752.7;1.585;1.585;4;1;4;0.015;0.000;1.1;! +11.720;1.682;11.690;753.5;1.682;1.682;4;1;4;0.018;0.000;1.2;! +11.740;1.762;11.710;754.2;1.762;1.762;4;1;4;0.022;0.000;1.2;! +11.760;1.859;11.730;755.0;1.859;1.859;4;1;4;0.027;0.000;1.3;! +11.780;2.135;11.750;755.8;2.135;2.135;4;1;4;0.027;0.000;1.2;! +11.800;2.521;11.770;756.6;2.521;2.521;4;1;4;0.028;0.000;1.1;! +11.820;2.829;11.790;757.3;2.829;2.829;4;1;4;0.030;0.000;1.0;! +11.840;3.272;11.810;758.1;3.272;3.272;4;1;4;0.035;0.000;1.0;! +11.860;3.850;11.830;758.9;3.850;3.850;4;1;4;0.040;0.000;1.0;! +11.880;4.363;11.850;759.7;4.363;4.363;4;1;4;0.043;0.000;1.0;! +11.900;4.680;11.870;760.5;4.680;4.680;4;1;4;0.047;0.000;0.9;! +11.920;5.296;11.890;761.3;5.296;5.296;4;1;4;0.052;0.000;0.9;! +11.940;7.047;11.910;762.1;7.047;7.047;4;1;4;0.057;0.000;0.9;! +11.960;8.735;11.930;762.8;8.735;8.735;4;1;4;0.062;0.000;0.8;! +11.980;9.774;11.950;763.6;9.774;9.774;4;1;4;0.072;0.000;0.9;! +12.000;10.061;11.970;765.9;10.061;10.061;4;1;4;0.089;0.000;1.0;! +12.020;10.049;11.990;769.4;10.049;10.049;4;1;4;0.098;0.000;1.0;! +12.040;10.037;12.010;772.9;10.037;10.037;4;1;4;0.104;0.000;1.0;! +12.060;10.066;12.030;775.3;10.066;10.066;4;1;4;0.110;0.000;1.1;! +12.080;9.923;12.050;776.1;9.923;9.923;4;1;4;0.114;0.000;1.1;! +12.100;9.784;12.070;776.9;9.784;9.784;4;1;4;0.116;0.000;1.1;! +12.120;9.475;12.090;777.6;9.475;9.475;4;1;4;0.117;0.000;1.2;! +12.140;9.216;12.110;778.4;9.216;9.216;4;1;4;0.116;0.000;1.2;! +12.160;9.236;12.130;779.2;9.236;9.236;4;0;4;0.112;0.000;1.1;! +12.180;9.403;12.150;780.0;9.403;9.403;4;0;4;0.113;0.000;1.1;! +12.200;9.462;12.170;780.7;9.462;9.462;4;0;4;0.115;0.000;1.2;! +12.220;9.415;12.190;781.5;9.415;9.415;4;0;4;0.117;0.000;1.2;! +12.240;9.330;12.210;782.3;9.330;9.330;4;0;4;0.115;0.000;1.2;! +12.260;9.261;12.230;783.0;9.261;9.261;4;0;4;0.112;0.000;1.1;! +12.280;9.359;12.250;783.8;9.359;9.359;4;0;4;0.109;0.000;1.1;! +12.300;9.755;12.270;784.6;9.755;9.755;4;0;4;0.108;0.000;1.0;! +12.320;10.257;12.290;785.3;10.257;10.257;4;0;4;0.106;0.000;1.0;! +12.340;10.621;12.310;786.1;10.621;10.621;4;0;4;0.105;0.000;1.0;! +12.360;10.795;12.330;786.9;10.795;10.795;4;0;4;0.105;0.000;1.0;! +12.380;10.711;12.350;787.7;10.711;10.711;4;0;4;0.106;0.000;1.0;! +12.400;10.517;12.370;788.5;10.517;10.517;4;0;4;0.108;0.000;1.0;! +12.420;10.396;12.390;789.2;10.396;10.396;4;0;4;0.108;0.000;1.0;! +12.440;10.403;12.410;790.0;10.403;10.403;4;0;4;0.109;0.000;1.0;! +12.460;10.421;12.430;790.8;10.421;10.421;4;0;4;0.110;0.000;1.0;! +12.480;10.475;12.450;791.6;10.475;10.475;4;0;4;0.110;0.000;1.0;! +12.500;10.604;12.470;792.3;10.604;10.604;4;0;4;0.112;0.000;1.0;! +12.520;10.705;12.490;793.1;10.705;10.705;4;0;4;0.114;0.000;1.0;! +12.540;10.804;12.510;793.9;10.804;10.804;4;0;4;0.116;0.000;1.0;! +12.560;10.856;12.530;794.7;10.856;10.856;4;0;4;0.116;0.000;1.0;! +12.580;10.711;12.550;795.5;10.711;10.711;4;0;4;0.116;0.000;1.1;! +12.600;10.396;12.570;796.2;10.396;10.396;4;0;4;0.117;0.000;1.1;! +12.620;10.013;12.590;797.0;10.013;10.013;4;0;4;0.117;0.000;1.1;! +12.640;9.703;12.610;797.8;9.703;9.703;4;0;4;0.114;0.000;1.1;! +12.660;9.375;12.630;798.5;9.375;9.375;4;0;4;0.112;0.000;1.1;! +12.680;8.833;12.650;799.3;8.833;8.833;4;0;4;0.109;0.000;1.2;! +12.700;8.176;12.670;800.1;8.176;8.176;4;0;4;0.104;0.000;1.2;! +12.720;7.323;12.690;800.8;7.323;7.323;4;0;4;0.097;0.000;1.2;! +12.740;6.674;12.710;801.6;6.674;6.674;4;0;4;0.089;0.000;1.2;! +12.760;6.298;12.730;802.4;6.298;6.298;4;0;4;0.081;0.000;1.1;! +12.780;5.966;12.750;803.1;5.966;5.966;4;0;4;0.073;0.000;1.1;! +12.800;5.518;12.770;803.9;5.518;5.518;4;0;4;0.067;0.000;1.1;! +12.820;5.112;12.790;804.7;5.112;5.112;4;0;4;0.061;0.000;1.1;! +12.840;4.722;12.810;805.4;4.722;4.722;4;0;4;0.059;0.000;1.1;! +12.860;4.401;12.830;806.2;4.401;4.401;4;0;4;0.058;0.000;1.2;! +12.880;4.156;12.850;807.0;4.156;4.156;4;0;4;0.057;0.000;1.2;! +12.900;4.092;12.870;807.7;4.092;4.092;4;0;4;0.056;0.000;1.2;! +12.920;4.322;12.890;808.5;4.322;4.322;4;0;4;0.057;0.000;1.2;! +12.940;4.717;12.910;809.3;4.717;4.717;4;0;4;0.057;0.000;1.2;! +12.960;4.848;12.930;810.0;4.848;4.848;4;0;4;0.057;0.000;1.2;! +12.980;5.057;12.950;811.8;5.057;5.057;4;0;4;0.060;0.000;1.2;! +13.000;5.613;12.970;815.0;5.613;5.613;4;0;4;0.062;0.000;1.1;! +13.020;6.169;12.990;818.2;6.169;6.169;4;0;4;0.066;0.000;1.0;! +13.040;6.724;13.010;821.4;6.724;6.724;4;0;4;0.072;0.000;0.9;! +13.060;7.693;13.030;822.6;7.693;7.693;4;0;4;0.080;0.000;1.0;! +13.080;8.306;13.050;823.4;8.306;8.306;4;0;4;0.090;0.000;1.1;! +13.100;8.617;13.070;824.2;8.617;8.617;4;0;4;0.095;0.000;1.1;! +13.120;8.887;13.090;825.0;8.887;8.887;4;0;4;0.093;0.000;1.1;! +13.140;9.124;13.110;825.7;9.124;9.124;4;0;4;0.088;0.000;1.0;! +13.160;9.248;13.130;826.5;9.248;9.248;4;0;4;0.088;0.000;0.9;! +13.180;9.191;13.150;827.3;9.191;9.191;4;0;4;0.089;0.000;0.9;! +13.200;9.225;13.170;828.0;9.225;9.225;4;0;4;0.091;0.000;0.9;! +13.220;9.231;13.190;828.8;9.231;9.231;4;0;4;0.095;0.000;1.0;! +13.240;9.158;13.210;829.6;9.158;9.158;4;0;4;0.100;0.000;1.1;! +13.260;8.978;13.230;830.4;8.978;8.978;4;0;4;0.102;0.000;1.1;! +13.280;8.674;13.250;831.2;8.674;8.674;4;0;4;0.104;0.000;1.2;! +13.300;8.200;13.270;831.9;8.200;8.200;4;0;4;0.103;0.000;1.2;! +13.320;7.878;13.290;832.7;7.878;7.878;4;0;4;0.100;0.000;1.2;! +13.340;7.526;13.310;833.5;7.526;7.526;4;0;4;0.093;0.000;1.2;! +13.360;7.006;13.330;834.2;7.006;7.006;4;0;4;0.087;0.000;1.1;! +13.380;6.691;13.350;835.0;6.691;6.691;4;0;4;0.082;0.000;1.1;! +13.400;6.499;13.370;835.7;6.499;6.499;4;0;4;0.081;0.000;1.1;! +13.420;6.323;13.390;836.5;6.323;6.323;4;0;4;0.082;0.000;1.1;! +13.440;6.437;13.410;837.3;6.437;6.437;4;0;4;0.081;0.000;1.1;! +13.460;7.271;13.430;838.1;7.271;7.271;4;0;4;0.084;0.000;1.1;! +13.480;8.201;13.450;838.8;8.201;8.201;4;0;4;0.087;0.000;1.1;! +13.500;8.501;13.470;839.6;8.501;8.501;4;0;4;0.088;0.000;1.1;! +13.520;8.370;13.490;840.4;8.370;8.370;4;0;4;0.088;0.000;1.1;! +13.540;8.237;13.510;841.2;8.237;8.237;4;0;4;0.088;0.000;1.0;! +13.560;8.333;13.530;842.0;8.333;8.333;4;0;4;0.087;0.000;1.0;! +13.580;8.615;13.550;842.7;8.615;8.615;4;0;4;0.086;0.000;0.9;! +13.600;9.003;13.570;843.5;9.003;9.003;4;0;4;0.086;0.000;0.9;! +13.620;9.298;13.590;844.3;9.298;9.298;4;0;4;0.087;0.000;0.9;! +13.640;9.370;13.610;845.0;9.370;9.370;4;0;4;0.090;0.000;1.0;! +13.660;9.149;13.630;845.8;9.149;9.149;4;0;4;0.093;0.000;1.0;! +13.680;8.775;13.650;846.6;8.775;8.775;4;0;4;0.094;0.000;1.0;! +13.700;8.388;13.670;847.3;8.388;8.388;4;0;4;0.094;0.000;1.1;! +13.720;8.035;13.690;848.1;8.035;8.035;4;0;4;0.095;0.000;1.1;! +13.740;7.722;13.710;848.9;7.722;7.722;4;0;4;0.094;0.000;1.1;! +13.760;7.476;13.730;849.7;7.476;7.476;4;0;4;0.092;0.000;1.1;! +13.780;7.276;13.750;850.4;7.276;7.276;4;0;4;0.091;0.000;1.2;! +13.800;7.135;13.770;851.2;7.135;7.135;4;0;4;0.092;0.000;1.2;! +13.820;7.057;13.790;852.0;7.057;7.057;4;0;4;0.092;0.000;1.2;! +13.840;7.135;13.810;852.8;7.135;7.135;4;0;4;0.090;0.000;1.2;! +13.860;7.446;13.830;853.5;7.446;7.446;4;0;4;0.087;0.000;1.1;! +13.880;7.831;13.850;854.3;7.831;7.831;4;0;4;0.086;0.000;1.1;! +13.900;8.014;13.870;855.1;8.014;8.014;4;0;4;0.082;0.000;1.0;! +13.920;7.954;13.890;855.8;7.954;7.954;4;0;4;0.078;0.000;1.0;! +13.940;7.718;13.910;856.6;7.718;7.718;4;0;4;0.074;0.000;0.9;! +13.960;7.401;13.930;857.4;7.401;7.401;4;0;4;0.074;0.000;0.9;! +13.980;7.123;13.950;860.5;7.123;7.123;4;0;4;0.075;0.000;1.0;! +14.000;6.845;13.970;864.1;6.845;6.845;4;0;4;0.077;0.000;1.1;! +14.020;6.568;13.990;867.6;6.568;6.568;4;0;4;0.079;0.000;1.2;! +14.040;6.328;14.010;869.1;6.328;6.328;4;0;4;0.082;0.000;1.3;! +14.060;6.024;14.030;869.8;6.024;6.024;4;0;4;0.085;0.000;1.4;! +14.080;5.657;14.050;870.6;5.657;5.657;4;0;4;0.088;0.000;1.5;! +14.100;5.230;14.070;871.4;5.230;5.230;4;0;4;0.089;0.000;1.6;! +14.120;4.755;14.090;872.2;4.755;4.755;4;0;4;0.092;0.000;1.8;! +14.140;4.274;14.100;872.9;4.274;4.274;4;0;4;0.096;0.000;2.1;! +14.160;3.811;14.120;873.7;3.811;3.811;4;0;4;0.103;0.000;2.4;! +14.180;3.437;14.140;874.5;3.437;3.437;4;0;4;0.110;0.000;2.8;! +14.200;3.209;14.160;875.2;3.209;3.209;4;0;4;0.119;0.000;3.3;! +14.220;3.081;14.180;876.0;3.081;3.081;4;0;4;0.125;0.000;3.7;! +14.240;2.931;14.200;876.8;2.931;2.931;4;0;4;0.120;0.000;3.7;! +14.260;2.829;14.220;877.5;2.829;2.829;4;0;4;0.116;0.000;3.7;! +14.280;2.919;14.240;878.3;2.919;2.919;4;0;4;0.104;0.000;3.2;! +14.300;3.175;14.260;879.1;3.175;3.175;4;0;4;0.097;0.000;2.9;! +14.320;3.559;14.280;879.8;3.559;3.559;4;0;4;0.100;0.000;2.8;! +14.340;3.877;14.300;880.6;3.877;3.877;4;0;4;0.093;0.000;2.4;! +14.360;4.187;14.320;881.4;4.187;4.187;4;0;4;0.085;0.000;2.0;! +14.380;4.626;14.340;882.2;4.626;4.626;4;0;4;0.090;0.000;1.9;! +14.400;5.145;14.360;883.0;5.145;5.145;4;0;4;0.089;0.000;1.6;! +14.420;6.019;14.380;883.8;6.019;6.019;4;0;4;0.086;0.000;1.4;! +14.440;7.265;14.400;884.5;7.265;7.265;4;0;4;0.091;0.000;1.3;! +14.460;8.170;14.420;885.3;8.170;8.170;4;0;4;0.092;0.000;1.2;! +14.480;8.671;14.440;886.1;8.671;8.671;4;0;4;0.089;0.000;1.1;! +14.500;8.852;14.460;886.9;8.852;8.852;4;0;4;0.095;0.000;1.1;! +14.520;8.966;14.480;887.7;8.966;8.966;4;0;4;0.098;0.000;1.1;! +14.540;9.106;14.500;888.4;9.106;9.106;4;0;4;0.094;0.000;1.0;! +14.560;9.178;14.520;889.2;9.178;9.178;4;0;4;0.094;0.000;1.0;! +14.580;9.152;14.540;890.0;9.152;9.152;4;0;4;0.096;0.000;1.0;! +14.600;8.885;14.560;890.8;8.885;8.885;4;0;4;0.097;0.000;1.1;! +14.620;8.432;14.580;891.5;8.432;8.432;4;0;4;0.100;0.000;1.1;! +14.640;7.979;14.600;892.3;7.979;7.979;4;0;4;0.102;0.000;1.2;! +14.660;7.604;14.620;893.1;7.604;7.604;4;0;4;0.102;0.000;1.2;! +14.680;7.362;14.640;893.8;7.362;7.362;4;0;4;0.100;0.000;1.3;! +14.700;7.104;14.660;894.6;7.104;7.104;4;0;4;0.099;0.000;1.3;! +14.720;6.889;14.680;895.4;6.889;6.889;4;0;4;0.097;0.000;1.3;! +14.740;6.670;14.700;896.1;6.670;6.670;4;0;4;0.097;0.000;1.4;! +14.760;6.311;14.720;896.9;6.311;6.311;4;0;4;0.095;0.000;1.5;! +14.780;5.718;14.740;897.7;5.718;5.718;4;0;4;0.094;0.000;1.6;! +14.800;4.992;14.760;898.4;4.992;4.992;4;0;4;0.093;0.000;1.8;! +14.820;4.195;14.780;899.2;4.195;4.195;4;0;4;0.093;0.000;2.0;! +14.840;3.203;14.800;900.0;3.203;3.203;4;0;4;0.103;0.000;2.7;! +14.860;2.334;14.820;900.7;2.334;2.334;4;0;4;0.104;0.000;3.3;! +14.880;1.705;14.840;901.5;1.705;1.705;4;0;4;0.092;0.000;3.6;! +14.900;1.380;14.860;902.2;1.380;1.380;4;0;4;0.079;0.000;3.8;! +14.920;1.070;14.880;903.0;1.070;1.070;4;0;4;0.066;0.000;4.0;! +14.940;0.823;14.900;903.8;0.823;0.823;4;0;4;0.053;0.000;4.0;! +14.960;0.748;14.920;904.7;0.748;0.748;4;0;4;0.039;0.000;3.6;! +14.980;0.750;14.940;908.8;0.750;0.750;4;0;4;0.027;0.000;2.9;! +15.000;0.751;14.960;912.9;0.751;0.751;4;0;4;0.017;0.000;2.1;! +15.020;0.754;14.980;915.4;0.754;0.754;4;0;4;0.015;0.000;1.9;! +15.040;0.759;15.000;916.2;0.759;0.759;4;0;4;0.016;0.000;2.0;! +15.060;0.762;15.020;916.9;0.762;0.762;4;0;4;0.017;0.000;2.2;! +15.080;0.765;15.040;917.7;0.765;0.765;4;0;4;0.017;0.000;2.3;! +15.100;0.761;15.060;918.5;0.761;0.761;4;0;4;0.018;0.000;2.3;! +15.120;0.758;15.080;919.2;0.758;0.758;4;0;4;0.018;0.000;2.4;! +15.140;0.758;15.100;920.0;0.758;0.758;4;0;4;0.018;0.000;2.4;! +15.160;0.762;15.120;920.8;0.762;0.762;4;0;4;0.019;0.000;2.4;! +15.180;0.770;15.140;921.5;0.770;0.770;4;0;4;0.019;0.000;2.5;! +15.200;0.777;15.160;922.3;0.777;0.777;4;0;4;0.020;0.000;2.5;! +15.220;0.785;15.180;923.1;0.785;0.785;4;0;4;0.021;0.000;2.6;! +15.240;0.795;15.200;923.8;0.795;0.795;4;0;4;0.021;0.000;2.6;! +15.260;0.800;15.220;924.6;0.800;0.800;4;0;4;0.022;0.000;2.7;! +15.280;0.800;15.240;925.4;0.800;0.800;4;0;4;0.022;0.000;2.7;! +15.300;0.795;15.260;926.2;0.795;0.795;4;0;4;0.022;0.000;2.7;! +15.320;0.786;15.280;926.9;0.786;0.786;4;0;4;0.023;0.000;2.8;! +15.340;0.789;15.300;927.7;0.789;0.789;4;0;4;0.023;0.000;2.8;! +15.360;0.801;15.320;928.5;0.801;0.801;4;0;4;0.023;0.000;2.8;! +15.380;0.824;15.340;929.2;0.824;0.824;4;0;4;0.024;0.000;2.9;! +15.400;0.847;15.360;930.0;0.847;0.847;4;0;4;0.026;0.000;2.9;! +15.420;0.885;15.380;930.8;0.885;0.885;4;0;4;0.030;0.000;3.2;! +15.440;0.961;15.400;931.5;0.961;0.961;4;0;4;0.038;0.000;3.8;! +15.460;1.068;15.420;932.3;1.068;1.068;4;0;4;0.047;0.000;4.4;! +15.480;1.185;15.440;933.1;1.185;1.185;4;0;4;0.056;0.000;5.0;! +15.500;1.295;15.460;933.9;1.295;1.295;4;0;4;0.063;0.000;5.3;! +15.520;1.324;15.480;934.7;1.324;1.324;4;0;4;0.070;0.000;5.6;! +15.540;1.320;15.500;935.4;1.320;1.320;4;0;4;0.076;0.000;5.9;! +15.560;1.324;15.520;936.2;1.324;1.324;4;0;4;0.083;0.000;6.3;! +15.580;1.334;15.540;937.0;1.334;1.334;4;0;4;0.086;0.000;6.5;! +15.600;1.325;15.560;937.8;1.325;1.325;4;0;4;0.087;0.000;6.6;! +15.620;1.320;15.580;938.5;1.320;1.320;4;0;4;0.084;0.000;6.5;! +15.640;1.284;15.600;939.3;1.284;1.284;4;0;4;0.079;0.000;6.3;! +15.660;1.218;15.620;940.0;1.218;1.218;4;0;4;0.076;0.000;6.3;! +15.680;1.120;15.640;940.8;1.120;1.120;4;0;4;0.072;0.000;6.2;! +15.700;1.022;15.660;941.6;1.022;1.022;4;0;4;0.064;0.000;5.8;! +15.720;0.963;15.680;942.3;0.963;0.963;4;0;4;0.054;0.000;5.3;! +15.740;0.905;15.700;943.2;0.905;0.905;4;0;4;0.046;0.000;4.9;! +15.760;0.823;15.720;943.9;0.823;0.823;4;0;4;0.041;0.000;4.6;! +15.780;0.770;15.740;944.7;0.770;0.770;4;0;4;0.036;0.000;4.3;! +15.800;0.729;15.760;945.4;0.729;0.729;4;0;4;0.031;0.000;3.9;! +15.820;0.697;15.780;946.2;0.697;0.697;4;0;4;0.026;0.000;3.5;! +15.840;0.653;15.800;947.0;0.653;0.653;4;0;4;0.024;0.000;3.4;! +15.860;0.628;15.820;947.7;0.628;0.628;4;0;4;0.022;0.000;3.3;! +15.880;0.622;15.840;948.5;0.622;0.622;4;0;4;0.021;0.000;3.1;! +15.900;0.618;15.860;949.3;0.618;0.618;4;0;4;0.019;0.000;3.0;! +15.920;0.615;15.880;950.1;0.615;0.615;4;0;4;0.018;0.000;2.8;! +15.940;0.621;15.900;950.8;0.621;0.621;4;0;4;0.018;0.000;2.8;! +15.960;0.628;15.920;953.6;0.628;0.628;4;0;4;0.018;0.000;2.8;! +15.980;0.634;15.940;957.1;0.634;0.634;4;0;4;0.018;0.000;2.8;! +16.000;0.641;15.960;960.6;0.641;0.641;4;0;4;0.018;0.000;2.8;! +16.020;0.646;15.980;962.5;0.646;0.646;4;0;4;0.019;0.000;2.9;! +16.040;0.649;16.000;963.2;0.649;0.649;4;0;4;0.019;0.000;2.9;! +16.060;0.645;16.020;964.0;0.645;0.645;4;0;4;0.019;0.000;3.0;! +16.080;0.638;16.040;964.8;0.638;0.638;4;0;4;0.019;0.000;2.9;! +16.100;0.638;16.060;965.5;0.638;0.638;4;0;4;0.019;0.000;2.9;! +16.120;0.643;16.080;966.3;0.643;0.643;4;0;4;0.020;0.000;2.9;! +16.140;0.673;16.100;967.1;0.673;0.673;4;0;4;0.022;0.000;2.9;! +16.160;0.767;16.120;967.8;0.767;0.767;4;0;4;0.027;0.000;3.3;! +16.180;0.922;16.140;968.6;0.922;0.922;4;0;4;0.032;0.000;3.6;! +16.200;1.050;16.160;969.4;1.050;1.050;4;0;4;0.042;0.000;4.3;! +16.220;1.143;16.180;970.2;1.143;1.143;4;0;4;0.058;0.000;5.4;! +16.240;1.217;16.200;970.9;1.217;1.217;4;0;4;0.072;0.000;6.2;! +16.260;1.259;16.220;971.7;1.259;1.259;4;0;4;0.084;0.000;6.9;! +16.280;1.344;16.240;972.5;1.344;1.344;4;0;4;0.096;0.000;7.4;! +16.300;1.361;16.260;973.3;1.361;1.361;4;0;4;0.106;0.000;8.0;! +16.320;1.378;16.280;974.0;1.378;1.378;4;0;4;0.118;0.000;8.6;! +16.340;1.433;16.300;974.8;1.433;1.433;4;0;4;0.125;0.000;8.9;! +16.360;1.473;16.320;975.6;1.473;1.473;4;0;4;0.127;0.000;9.0;! +16.380;1.462;16.340;976.3;1.462;1.462;4;0;4;0.125;0.000;9.0;! +16.400;1.404;16.360;977.1;1.404;1.404;4;0;4;0.119;0.000;8.7;! +16.420;1.323;16.380;977.9;1.323;1.323;4;0;4;0.112;0.000;8.4;! +16.440;1.225;16.400;978.7;1.225;1.225;4;0;4;0.100;0.000;7.9;! +16.460;1.141;16.420;979.5;1.141;1.141;4;0;4;0.086;0.000;7.1;! +16.480;1.061;16.440;980.2;1.061;1.061;4;0;4;0.071;0.000;6.4;! +16.500;0.982;16.460;981.0;0.982;0.982;4;0;4;0.061;0.000;5.8;! +16.520;0.909;16.480;981.8;0.909;0.909;4;0;4;0.053;0.000;5.4;! +16.540;0.839;16.500;982.5;0.839;0.839;4;0;4;0.046;0.000;5.1;! +16.560;0.779;16.520;983.3;0.779;0.779;4;0;4;0.041;0.000;4.9;! +16.580;0.739;16.540;984.1;0.739;0.739;4;0;4;0.037;0.000;4.7;! +16.600;0.699;16.560;984.8;0.699;0.699;4;0;4;0.035;0.000;4.6;! +16.620;0.678;16.580;985.6;0.678;0.678;4;0;4;0.032;0.000;4.6;! +16.640;0.655;16.600;986.4;0.655;0.655;4;0;4;0.031;0.000;4.5;! +16.660;0.631;16.620;987.1;0.631;0.631;4;0;4;0.029;0.000;4.3;! +16.680;0.620;16.640;987.9;0.620;0.620;4;0;4;0.027;0.000;4.1;! +16.700;0.618;16.660;988.7;0.618;0.618;4;0;4;0.024;0.000;3.7;! +16.720;0.620;16.680;989.4;0.620;0.620;4;0;4;0.023;0.000;3.6;! +16.740;0.610;16.700;990.2;0.610;0.610;4;0;4;0.023;0.000;3.6;! +16.760;0.601;16.720;991.0;0.601;0.601;4;0;4;0.023;0.000;3.7;! +16.780;0.611;16.740;991.7;0.611;0.611;4;0;4;0.024;0.000;3.9;! +16.800;0.623;16.760;992.5;0.623;0.623;4;0;4;0.023;0.000;3.7;! +16.820;0.628;16.780;993.3;0.628;0.628;4;0;4;0.023;0.000;3.7;! +16.840;0.630;16.800;994.0;0.630;0.630;4;0;4;0.025;0.000;3.9;! +16.860;0.618;16.820;994.8;0.618;0.618;4;0;4;0.025;0.000;4.0;! +16.880;0.631;16.840;995.6;0.631;0.631;4;0;4;0.026;0.000;4.0;! +16.900;0.652;16.860;996.4;0.652;0.652;4;0;4;0.026;0.000;4.1;! +16.920;0.660;16.880;997.2;0.660;0.660;4;0;4;0.027;0.000;4.1;! +16.940;0.654;16.900;999.4;0.654;0.654;4;0;4;0.027;0.000;4.2;! +16.960;0.638;16.920;1002.8;0.638;0.638;4;0;4;0.027;0.000;4.2;! +16.980;0.622;16.940;1006.3;0.622;0.622;4;0;4;0.026;0.000;4.2;! +17.000;0.602;16.960;1008.8;0.602;0.602;4;0;4;0.026;0.000;4.2;! +17.020;0.586;16.980;1009.5;0.586;0.586;4;0;4;0.024;0.000;4.0;! +17.040;0.587;17.000;1010.3;0.587;0.587;4;0;4;0.022;0.000;3.7;! +17.060;0.598;17.020;1011.1;0.598;0.598;4;0;4;0.021;0.000;3.5;! +17.080;0.591;17.040;1011.8;0.591;0.591;4;0;4;0.020;0.000;3.4;! +17.100;0.575;17.060;1012.6;0.575;0.575;4;0;4;0.019;0.000;3.2;! +17.120;0.567;17.080;1013.4;0.567;0.567;4;0;4;0.018;0.000;3.1;! +17.140;0.563;17.100;1014.2;0.563;0.563;4;0;4;0.014;0.000;2.3;! +17.160;0.577;17.120;1014.9;0.577;0.577;4;0;4;0.014;0.000;2.4;! +17.180;0.586;17.140;1015.7;0.586;0.586;4;0;4;0.018;0.000;2.7;! +17.200;0.593;17.160;1016.5;0.593;0.593;4;0;4;0.022;0.000;2.7;! +17.220;0.657;17.180;1017.2;0.657;0.657;4;0;4;0.021;0.000;2.1;! +17.240;1.071;17.200;1018.0;1.071;1.071;4;0;4;0.018;0.000;1.4;! +17.260;1.794;17.220;1018.8;1.794;1.794;4;0;4;0.018;0.000;1.3;! +17.280;2.218;17.240;1019.5;2.218;2.218;4;0;4;0.027;0.000;1.9;! +17.300;2.091;17.260;1020.3;2.091;2.091;4;0;4;0.041;0.000;2.7;! +17.320;1.702;17.280;1021.1;1.702;1.702;4;0;4;0.049;0.000;3.1;! +17.340;1.282;17.300;1021.9;1.282;1.282;4;0;4;0.049;0.000;3.3;! +17.360;1.027;17.320;1022.6;1.027;1.027;4;0;4;0.048;0.000;3.6;! +17.380;0.836;17.340;1023.4;0.836;0.836;4;0;4;0.045;0.000;3.9;! +17.400;0.725;17.360;1024.2;0.725;0.725;4;0;4;0.039;0.000;4.1;! +17.420;0.677;17.380;1024.9;0.677;0.677;4;0;4;0.033;0.000;4.0;! +17.440;0.656;17.400;1025.7;0.656;0.656;4;0;4;0.025;0.000;3.4;! +17.460;0.670;17.420;1026.5;0.670;0.670;4;0;4;0.021;0.000;3.0;! +17.480;0.665;17.440;1027.3;0.665;0.665;4;0;4;0.021;0.000;3.1;! +17.500;0.633;17.460;1028.0;0.633;0.633;4;0;4;0.024;0.000;3.4;! +17.520;0.620;17.480;1028.8;0.620;0.620;4;0;4;0.028;0.000;3.7;! +17.540;0.682;17.500;1029.6;0.682;0.682;4;0;4;0.026;0.000;3.1;! +17.560;0.955;17.520;1030.3;0.955;0.955;4;0;4;0.025;0.000;2.6;! +17.580;1.217;17.540;1031.1;1.217;1.217;4;0;4;0.026;0.000;2.2;! +17.600;1.311;17.560;1031.9;1.311;1.311;4;0;4;0.024;0.000;1.6;! +17.620;1.596;17.580;1032.7;1.596;1.596;4;0;4;0.023;0.000;1.1;! +17.640;2.204;17.600;1033.4;2.204;2.204;4;0;4;0.028;0.000;1.0;! +17.660;3.177;17.620;1034.2;3.177;3.177;3;0;3;0.036;0.000;0.9;! +17.680;4.475;17.640;1035.0;4.475;4.475;3;0;3;0.045;0.000;0.9;! +17.700;6.193;17.660;1035.8;6.193;6.193;3;0;3;0.053;0.000;0.8;! +17.720;8.370;17.680;1036.6;8.370;8.370;3;0;3;0.067;0.000;0.8;! +17.740;10.304;17.700;1037.4;10.304;10.304;3;0;3;0.083;0.000;0.9;! +17.760;11.748;17.720;1038.2;11.748;11.748;3;0;3;0.099;0.000;0.9;! +17.780;12.888;17.740;1039.0;12.888;12.888;3;0;3;0.114;0.000;0.9;! +17.800;13.800;17.760;1039.8;13.800;13.800;3;0;3;0.129;0.000;0.9;! +17.820;14.680;17.780;1040.6;14.680;14.680;3;0;3;0.142;0.000;0.9;! +17.840;15.773;17.800;1041.4;15.773;15.773;3;0;3;0.156;0.000;0.9;! +17.860;17.246;17.820;1042.2;17.246;17.246;3;0;3;0.152;0.000;0.8;! +17.880;19.058;17.840;1043.0;19.058;19.058;3;0;3;0.148;0.000;0.8;! +17.900;21.217;17.860;1043.8;21.217;21.217;3;0;3;0.153;0.000;0.8;! +17.920;23.175;17.880;1044.7;23.175;23.175;3;0;3;0.186;0.000;0.9;! +17.940;24.179;17.900;1047.6;24.179;24.179;3;0;3;0.218;0.000;0.9;! +17.960;24.749;17.920;1051.6;24.749;24.749;3;0;3;0.246;0.000;1.0;! +17.980;25.318;17.940;1055.6;25.318;25.318;3;0;3;0.271;0.000;1.0;! +18.000;25.897;17.960;1056.8;25.897;25.897;3;0;3;0.292;0.000;1.1;! +18.020;25.968;17.980;1057.6;25.968;25.968;3;0;3;0.310;0.000;1.1;! +18.040;26.035;18.000;1058.5;26.035;26.035;3;0;3;0.325;0.000;1.2;! +18.060;26.266;18.020;1059.4;26.266;26.266;3;0;3;0.333;0.000;1.2;! +18.080;26.854;18.040;1060.3;26.854;26.854;3;0;3;0.337;0.000;1.2;! +18.100;28.042;18.060;1061.3;28.042;28.042;3;0;3;0.343;0.000;1.2;! +18.120;29.562;18.070;1062.3;29.562;29.562;3;0;3;0.350;0.000;1.1;! +18.140;30.818;18.090;1063.4;30.818;30.818;3;0;3;0.355;0.000;1.1;! +18.160;31.500;18.110;1064.6;31.500;31.500;3;0;3;0.360;0.000;1.1;! +18.180;32.018;18.130;1065.7;32.018;32.018;3;0;3;0.368;0.000;1.1;! +18.200;32.376;18.150;1066.9;32.376;32.376;3;0;3;0.379;0.000;1.1;! +18.220;32.551;18.170;1068.1;32.551;32.551;3;0;3;0.390;0.000;1.2;! +18.240;32.716;18.190;1069.3;32.716;32.716;3;0;3;0.403;0.000;1.2;! +18.260;32.682;18.210;1070.5;32.682;32.682;3;0;3;0.413;0.000;1.2;! +18.280;32.520;18.230;1071.7;32.520;32.520;3;0;3;0.423;0.000;1.3;! +18.300;32.435;18.250;1072.9;32.435;32.435;3;0;3;0.431;0.000;1.3;! +18.320;32.389;18.270;1074.1;32.389;32.389;3;0;3;0.439;0.000;1.3;! +18.340;32.333;18.290;1075.3;32.333;32.333;3;0;3;0.444;0.000;1.3;! +18.360;32.261;18.310;1076.6;32.261;32.261;3;0;3;0.442;0.000;1.3;! +18.380;32.230;18.330;1077.8;32.230;32.230;3;0;3;0.439;0.000;1.3;! +18.400;32.208;18.350;1079.1;32.208;32.208;3;0;3;0.437;0.000;1.3;! +18.420;32.396;18.370;1080.3;32.396;32.396;3;0;3;0.438;0.000;1.3;! +18.440;32.711;18.390;1081.6;32.711;32.711;3;0;3;0.438;0.000;1.3;! +18.460;33.009;18.410;1082.9;33.009;33.009;3;0;3;0.442;0.000;1.3;! +18.480;33.202;18.430;1084.3;33.202;33.202;3;0;3;0.445;0.000;1.3;! +18.500;33.294;18.450;1085.6;33.294;33.294;3;0;3;0.446;0.000;1.3;! +18.520;33.351;18.470;1087.0;33.351;33.351;3;0;3;0.449;0.000;1.3;! +18.540;33.118;18.490;1088.3;33.118;33.118;3;0;3;0.451;0.000;1.3;! +18.560;32.637;18.510;1089.6;32.637;32.637;3;0;3;0.448;0.000;1.3;! +18.580;32.345;18.530;1090.9;32.345;32.345;3;0;3;0.446;0.000;1.3;! +18.600;32.401;18.550;1092.3;32.401;32.401;3;0;3;0.441;0.000;1.3;! +18.620;32.718;18.570;1093.6;32.718;32.718;3;0;3;0.434;0.000;1.3;! +18.640;33.150;18.590;1094.9;33.150;33.150;3;0;3;0.434;0.000;1.3;! +18.660;33.560;18.610;1096.3;33.560;33.560;3;0;3;0.438;0.000;1.3;! +18.680;33.778;18.630;1097.7;33.778;33.778;3;0;3;0.440;0.000;1.3;! +18.700;33.837;18.650;1099.1;33.837;33.837;3;0;3;0.444;0.000;1.3;! +18.720;33.781;18.670;1100.5;33.781;33.781;3;0;3;0.446;0.000;1.3;! +18.740;33.513;18.690;1101.9;33.513;33.513;3;0;3;0.445;0.000;1.3;! +18.760;32.983;18.710;1103.3;32.983;32.983;3;0;3;0.443;0.000;1.3;! +18.780;32.389;18.730;1104.6;32.389;32.389;3;0;3;0.435;0.000;1.3;! +18.800;31.923;18.750;1105.9;31.923;31.923;3;0;3;0.437;0.000;1.3;! +18.820;31.634;18.770;1107.2;31.634;31.634;3;0;3;0.429;0.000;1.3;! +18.840;31.184;18.790;1108.5;31.184;31.184;3;0;3;0.411;0.000;1.3;! +18.860;30.604;18.810;1109.8;30.604;30.604;3;0;3;0.374;0.000;1.2;! +18.880;30.117;18.830;1111.0;30.117;30.117;3;0;3;0.338;0.000;1.0;! +18.900;30.260;18.850;1112.3;30.260;30.260;3;0;3;0.323;0.000;1.0;! +18.920;30.696;18.870;1113.7;30.696;30.696;3;0;3;0.328;0.000;1.0;! +18.940;30.628;18.890;1117.8;30.628;30.628;3;0;3;0.331;0.000;1.0;! +18.960;30.560;18.910;1121.8;30.560;30.560;3;0;3;0.327;0.000;1.0;! +18.980;30.531;18.930;1125.6;30.531;30.531;3;0;3;0.327;0.000;1.0;! +19.000;30.696;18.950;1126.7;30.696;30.696;3;0;3;0.332;0.000;1.0;! +19.020;30.545;18.970;1127.9;30.545;30.545;3;0;3;0.343;0.000;1.1;! +19.040;30.534;18.990;1129.0;30.534;30.534;3;0;3;0.358;0.000;1.1;! +19.060;30.626;19.010;1130.1;30.626;30.626;3;0;3;0.369;0.000;1.2;! +19.080;30.649;19.030;1131.2;30.649;30.649;3;0;3;0.379;0.000;1.2;! +19.100;30.583;19.050;1132.3;30.583;30.583;3;0;3;0.390;0.000;1.2;! +19.120;30.521;19.070;1133.4;30.521;30.521;3;0;3;0.403;0.000;1.3;! +19.140;30.486;19.090;1134.5;30.486;30.486;3;0;3;0.412;0.000;1.3;! +19.160;30.283;19.110;1135.6;30.283;30.283;3;0;3;0.419;0.000;1.3;! +19.180;29.932;19.130;1136.7;29.932;29.932;3;0;3;0.418;0.000;1.4;! +19.200;29.476;19.150;1137.8;29.476;29.476;3;0;3;0.418;0.000;1.4;! +19.220;28.980;19.170;1138.9;28.980;28.980;3;0;3;0.416;0.000;1.4;! +19.240;28.661;19.190;1139.9;28.661;28.661;3;0;3;0.408;0.000;1.3;! +19.260;28.679;19.210;1141.1;28.679;28.679;3;0;3;0.401;0.000;1.3;! +19.280;28.816;19.230;1142.1;28.816;28.816;3;0;3;0.390;0.000;1.3;! +19.300;29.026;19.250;1143.2;29.026;29.026;3;0;3;0.385;0.000;1.2;! +19.320;29.659;19.270;1144.3;29.659;29.659;3;0;3;0.383;0.000;1.2;! +19.340;30.664;19.290;1145.4;30.664;30.664;3;0;3;0.386;0.000;1.2;! +19.360;32.021;19.310;1146.7;32.021;32.021;3;0;3;0.386;0.000;1.2;! +19.380;33.004;19.330;1147.9;33.004;33.004;3;0;3;0.391;0.000;1.2;! +19.400;33.675;19.350;1149.2;33.675;33.675;3;0;3;0.408;0.000;1.2;! +19.420;33.971;19.370;1150.5;33.971;33.971;3;0;3;0.421;0.000;1.2;! +19.440;34.158;19.390;1151.8;34.158;34.158;3;0;3;0.434;0.000;1.2;! +19.460;34.540;19.410;1153.1;34.540;34.540;3;0;3;0.452;0.000;1.3;! +19.480;34.970;19.430;1154.5;34.970;34.970;3;0;3;0.463;0.000;1.3;! +19.500;35.338;19.450;1155.9;35.338;35.338;3;0;3;0.473;0.000;1.3;! +19.520;35.605;19.470;1157.5;35.605;35.605;3;0;3;0.482;0.000;1.3;! +19.540;35.800;19.490;1159.0;35.800;35.800;3;0;3;0.487;0.000;1.3;! +19.560;35.947;19.510;1160.6;35.947;35.947;3;0;3;0.490;0.000;1.3;! +19.580;36.082;19.530;1162.3;36.082;36.082;3;0;3;0.493;0.000;1.3;! +19.600;36.331;19.550;1163.9;36.331;36.331;3;0;3;0.495;0.000;1.3;! +19.620;36.619;19.570;1165.7;36.619;36.619;3;0;3;0.494;0.000;1.3;! +19.640;36.748;19.590;1167.6;36.748;36.748;3;0;3;0.494;0.000;1.3;! +19.660;36.762;19.610;1169.3;36.762;36.762;3;0;3;0.492;0.000;1.3;! +19.680;36.355;19.630;1171.2;36.355;36.355;3;0;3;0.495;0.000;1.3;! +19.700;35.692;19.650;1172.8;35.692;35.692;3;0;3;0.494;0.000;1.3;! +19.720;34.879;19.670;1174.5;34.879;34.879;3;0;3;0.485;0.000;1.3;! +19.740;34.146;19.690;1176.1;34.146;34.146;3;0;3;0.488;0.000;1.4;! +19.760;33.333;19.710;1177.7;33.333;33.333;3;0;3;0.475;0.000;1.4;! +19.780;32.820;19.730;1179.1;32.820;32.820;3;0;3;0.468;0.000;1.4;! +19.800;32.452;19.750;1180.6;32.452;32.452;3;0;3;0.466;0.000;1.4;! +19.820;32.050;19.770;1182.1;32.050;32.050;3;0;3;0.458;0.000;1.4;! +19.840;31.861;19.790;1183.6;31.861;31.861;3;0;3;0.424;0.000;1.3;! +19.860;31.936;19.810;1185.1;31.936;31.936;3;0;3;0.384;0.000;1.1;! +19.880;32.141;19.830;1186.6;32.141;32.141;3;0;3;0.369;0.000;1.1;! +19.900;32.478;19.850;1188.1;32.478;32.478;3;0;3;0.387;0.000;1.1;! +19.920;32.936;19.870;1190.3;32.936;32.936;3;0;3;0.398;0.000;1.2;! +19.940;33.283;19.890;1193.2;33.283;33.283;3;0;3;0.408;0.000;1.2;! +19.960;33.682;19.910;1196.1;33.682;33.682;3;0;3;0.417;0.000;1.1;! +19.980;35.163;19.930;1197.6;35.163;35.163;3;0;3;0.434;0.000;1.1;! +20.000;36.697;19.950;1199.3;36.697;36.697;3;0;3;0.452;0.000;1.1;! +20.020;38.100;19.970;1201.3;38.100;38.100;3;0;3;0.441;0.000;1.1;! +20.040;39.256;19.990;1203.5;39.256;39.256;3;0;3;0.392;0.000;1.0;! +20.060;40.196;20.010;1206.2;40.196;40.196;3;0;3;0.399;0.000;1.0;! +20.080;40.822;20.030;1209.3;40.822;40.822;3;0;3;0.441;0.000;1.1;! +20.100;40.562;20.050;1212.9;40.562;40.562;3;0;3;0.481;0.000;1.2;! +20.120;39.354;20.070;1219.1;39.354;39.354;3;0;3;0.515;0.000;1.2;! +20.140;38.642;20.090;1224.1;38.642;38.642;3;0;3;0.531;0.000;1.3;! +20.160;38.482;20.110;1226.1;38.482;38.482;3;0;3;0.538;0.000;1.3;! +20.180;38.639;20.130;1228.3;38.639;38.639;3;0;3;0.541;0.000;1.3;! +20.200;39.469;20.150;1230.8;39.469;39.469;3;0;3;0.547;0.000;1.3;! +20.220;40.769;20.170;1234.5;40.769;40.769;3;0;3;0.545;0.000;1.3;! +20.240;41.648;20.190;1240.0;41.648;41.648;3;0;3;0.546;0.000;1.3;! +20.260;41.766;20.210;1246.5;41.766;41.766;3;0;3;0.545;0.000;1.3;! +20.280;41.905;20.230;1253.3;41.905;41.905;3;0;3;0.546;0.000;1.3;! +20.300;41.729;20.250;1257.4;41.729;41.729;3;0;3;0.550;0.000;1.3;! +20.320;41.331;20.270;1259.4;41.331;41.331;3;0;3;0.561;0.000;1.3;! +20.340;40.191;20.290;1261.1;40.191;40.191;3;0;3;0.575;0.000;1.4;! +20.360;38.833;20.310;1262.3;38.833;38.833;3;0;3;0.584;0.000;1.4;! +20.380;37.393;20.330;1263.4;37.393;37.393;3;0;3;0.582;0.000;1.5;! +20.400;35.623;20.350;1264.6;35.623;35.623;3;0;3;0.572;0.000;1.5;! +20.420;34.392;20.370;1266.1;34.392;34.392;3;0;3;0.562;0.000;1.6;! +20.440;32.897;20.390;1267.5;32.897;32.897;3;0;3;0.540;0.000;1.6;! +20.460;31.651;20.410;1268.9;31.651;31.651;3;0;3;0.533;0.000;1.6;! +20.480;31.070;20.430;1270.2;31.070;31.070;3;0;3;0.519;0.000;1.6;! +20.500;30.839;20.450;1271.4;30.839;30.839;3;-1;3;0.495;0.000;1.5;! +20.520;30.644;20.470;1272.6;30.644;30.644;3;-1;3;0.471;0.000;1.5;! +20.540;30.554;20.490;1273.8;30.554;30.554;3;-1;3;0.447;0.000;1.4;! +20.560;30.484;20.510;1274.9;30.484;30.484;3;-1;3;0.414;0.000;1.3;! +20.580;30.297;20.530;1276.1;30.297;30.297;3;-1;3;0.383;0.000;1.2;! +20.600;29.859;20.550;1277.2;29.859;29.859;3;-1;3;0.359;0.000;1.1;! +20.620;29.350;20.570;1278.3;29.350;29.350;3;-1;3;0.327;0.000;1.1;! +20.640;29.303;20.590;1279.3;29.303;29.303;3;-1;3;0.304;0.000;1.0;! +20.660;29.418;20.610;1280.4;29.418;29.418;3;-1;3;0.276;0.000;0.9;! +20.680;29.103;20.630;1281.3;29.103;29.103;3;-1;3;0.254;0.000;0.8;! +20.700;28.540;20.650;1282.3;28.540;28.540;3;0;3;0.239;0.000;0.8;! +20.720;27.549;20.670;1283.2;27.549;27.549;3;-1;3;0.222;0.000;0.7;! +20.740;27.079;20.690;1284.1;27.079;27.079;3;0;3;0.206;0.000;0.7;! +20.760;26.683;20.710;1285.0;26.683;26.683;3;-1;3;0.195;0.000;0.7;! +20.780;26.055;20.730;1285.8;26.055;26.055;3;-1;3;0.186;0.000;0.7;! +20.800;25.346;20.750;1286.6;25.346;25.346;3;-1;3;0.179;0.000;0.7;! +20.820;24.251;20.770;1287.4;24.251;24.251;3;-1;3;0.175;0.000;0.7;! +20.840;23.308;20.790;1288.2;23.308;23.308;3;0;3;0.176;0.000;0.7;! +20.860;22.538;20.810;1289.0;22.538;22.538;3;0;3;0.181;0.000;0.7;! +20.880;21.899;20.830;1289.7;21.899;21.899;3;0;3;0.184;0.000;0.8;! +20.900;21.204;20.850;1290.5;21.204;21.204;3;-1;3;0.188;0.000;0.8;! +20.920;20.580;20.870;1291.2;20.580;20.580;3;-1;3;0.193;0.000;0.9;! +20.940;19.963;20.890;1291.9;19.963;19.963;3;0;3;0.191;0.000;0.9;! +20.960;19.498;20.910;1292.7;19.498;19.498;3;-1;3;0.191;0.000;0.9;! +20.980;19.124;20.930;1293.4;19.124;19.124;3;-1;3;0.191;0.000;0.9;! +21.000;18.751;20.950;1294.2;18.751;18.751;3;-1;3;0.188;0.000;0.9;! +21.020;18.401;20.970;1294.9;18.401;18.401;3;-1;3;0.177;0.000;0.9;! +21.040;18.059;20.990;1295.6;18.059;18.059;3;-1;3;0.167;0.000;0.9;! +21.060;17.647;21.010;1296.4;17.647;17.647;3;-1;3;0.164;0.000;0.8;! +21.080;17.264;21.030;1297.7;17.264;17.264;3;-1;3;0.166;0.000;0.9;! +21.100;16.925;21.050;1301.3;16.925;16.925;3;-1;3;0.166;0.000;0.9;! +21.120;16.586;21.070;1304.8;16.586;16.586;3;-1;3;0.166;0.000;0.9;! +21.140;16.267;21.090;1308.1;16.267;16.267;3;-1;3;0.161;0.000;0.9;! +21.160;16.113;21.110;1308.8;16.113;16.113;3;-1;3;0.157;0.000;0.9;! +21.180;15.813;21.130;1309.6;15.813;15.813;3;-1;3;0.155;0.000;0.9;! +21.200;15.422;21.150;1310.4;15.422;15.422;3;-1;3;0.153;0.000;0.9;! +21.220;15.203;21.170;1311.2;15.203;15.203;3;-1;3;0.150;0.000;0.9;! +21.240;15.029;21.190;1311.9;15.029;15.029;3;-1;3;0.150;0.000;0.9;! +21.260;14.907;21.210;1312.7;14.907;14.907;3;-1;3;0.144;0.000;0.9;! +21.280;14.747;21.230;1313.5;14.747;14.747;3;-1;3;0.142;0.000;0.9;! +21.300;14.515;21.250;1314.2;14.515;14.515;3;-1;3;0.138;0.000;0.9;! +21.320;14.251;21.270;1315.0;14.251;14.251;3;-1;3;0.133;0.000;0.9;! +21.340;13.983;21.290;1315.8;13.983;13.983;3;-1;3;0.129;0.000;0.9;! +21.360;13.785;21.310;1316.5;13.785;13.785;3;-1;3;0.125;0.000;0.8;! +21.380;13.610;21.330;1317.3;13.610;13.610;3;-1;3;0.123;0.000;0.8;! +21.400;13.433;21.350;1318.1;13.433;13.433;3;-1;3;0.121;0.000;0.8;! +21.420;13.290;21.370;1318.8;13.290;13.290;3;-1;3;0.119;0.000;0.8;! +21.440;13.226;21.390;1319.6;13.226;13.226;3;-1;3;0.117;0.000;0.8;! +21.460;13.159;21.410;1320.3;13.159;13.159;3;-1;3;0.114;0.000;0.8;! +21.480;13.051;21.430;1321.1;13.051;13.051;3;-1;3;0.111;0.000;0.8;! +21.500;12.897;21.450;1321.9;12.897;12.897;3;-1;3;0.110;0.000;0.8;! +21.520;12.714;21.470;1322.7;12.714;12.714;3;-1;3;0.108;0.000;0.8;! +21.540;12.575;21.490;1323.4;12.575;12.575;3;-1;3;0.107;0.000;0.8;! +21.560;12.529;21.510;1324.2;12.529;12.529;3;-1;3;0.106;0.000;0.8;! +21.580;12.422;21.530;1325.0;12.422;12.422;3;-1;3;0.106;0.000;0.8;! +21.600;12.430;21.550;1325.7;12.430;12.430;3;-1;3;0.104;0.000;0.8;! +21.620;12.514;21.570;1326.5;12.514;12.514;3;-1;3;0.102;0.000;0.8;! +21.640;12.643;21.590;1327.3;12.643;12.643;3;-1;3;0.098;0.000;0.7;! +21.660;12.676;21.610;1328.0;12.676;12.676;3;-1;3;0.096;0.000;0.7;! +21.680;12.723;21.630;1328.8;12.723;12.723;3;-1;3;0.094;0.000;0.7;! +21.700;12.668;21.650;1329.6;12.668;12.668;3;-1;3;0.094;0.000;0.7;! +21.720;12.682;21.670;1330.3;12.682;12.682;3;-1;3;0.092;0.000;0.7;! +21.740;12.741;21.690;1331.1;12.741;12.741;3;-1;3;0.093;0.000;0.7;! +21.760;12.958;21.710;1331.9;12.958;12.958;3;0;3;0.093;0.000;0.7;! +21.780;13.075;21.730;1332.7;13.075;13.075;3;-1;3;0.091;0.000;0.7;! +21.800;13.155;21.750;1333.4;13.155;13.155;3;-1;3;0.089;0.000;0.6;! +21.820;13.277;21.770;1334.2;13.277;13.277;3;-1;3;0.086;0.000;0.6;! +21.840;13.533;21.790;1335.0;13.533;13.533;3;-1;3;0.084;0.000;0.5;! +21.860;14.131;21.810;1335.8;14.131;14.131;3;-1;3;0.077;0.000;0.5;! +21.880;15.270;21.830;1336.5;15.270;15.270;3;-1;3;0.077;0.000;0.4;! +21.900;16.813;21.850;1337.3;16.813;16.813;3;0;3;0.074;0.000;0.4;! +21.920;18.354;21.870;1338.1;18.354;18.354;3;0;3;0.076;0.000;0.4;! +21.940;19.892;21.890;1339.0;19.892;19.892;3;0;3;0.084;0.000;0.4;! +21.960;21.269;21.910;1339.8;21.269;21.269;3;0;3;0.091;0.000;0.4;! +21.980;22.915;21.930;1340.6;22.915;22.915;3;0;3;0.103;0.000;0.4;! +22.000;24.820;21.950;1341.5;24.820;24.820;3;0;3;0.114;0.000;0.4;! +22.020;26.912;21.970;1342.4;26.912;26.912;3;0;3;0.125;0.000;0.4;! +22.040;28.905;21.990;1343.3;28.905;28.905;3;0;3;0.143;0.000;0.5;! +22.060;30.440;22.010;1344.2;30.440;30.440;3;0;3;0.164;0.000;0.5;! +22.080;30.357;22.030;1347.4;30.357;30.357;3;0;3;0.183;0.000;0.6;! +22.100;30.337;22.050;1351.6;30.337;30.337;3;0;3;0.206;0.000;0.6;! +22.120;30.380;22.070;1355.6;30.380;30.380;3;0;3;0.215;0.000;0.6;! +22.140;31.455;22.090;1356.6;31.455;31.455;3;0;3;0.210;0.000;0.6;! +22.160;32.137;22.110;1357.6;32.137;32.137;3;0;3;0.208;0.000;0.6;! +22.180;32.275;22.130;1358.6;32.275;32.275;3;0;3;0.215;0.000;0.6;! +22.200;32.516;22.150;1359.6;32.516;32.516;3;0;3;0.237;0.000;0.7;! +22.220;32.860;22.170;1360.7;32.860;32.860;3;0;3;0.252;0.000;0.7;! +22.240;33.036;22.190;1361.7;33.036;33.036;3;0;3;0.258;0.000;0.7;! +22.260;32.940;22.210;1362.8;32.940;32.940;3;0;3;0.254;0.000;0.7;! +22.280;32.251;22.230;1363.9;32.251;32.251;3;0;3;0.250;0.000;0.7;! +22.300;31.433;22.250;1364.9;31.433;31.433;3;0;3;0.257;0.000;0.8;! +22.320;30.106;22.270;1365.9;30.106;30.106;3;0;3;0.269;0.000;0.8;! +22.340;29.210;22.290;1366.9;29.210;29.210;3;0;3;0.261;0.000;0.8;! +22.360;28.301;22.310;1367.8;28.301;28.301;3;0;3;0.261;0.000;0.8;! +22.380;27.618;22.330;1368.8;27.618;27.618;3;0;3;0.262;0.000;0.9;! +22.400;27.142;22.350;1369.7;27.142;27.142;3;0;3;0.275;0.000;1.0;! +22.420;26.721;22.370;1370.7;26.721;26.721;3;0;3;0.276;0.000;1.0;! +22.440;25.886;22.390;1371.6;25.886;25.886;3;0;3;0.268;0.000;1.0;! +22.460;24.647;22.410;1372.5;24.647;24.647;3;0;3;0.257;0.000;1.0;! +22.480;23.301;22.430;1373.3;23.301;23.301;3;0;3;0.255;0.000;1.0;! +22.500;22.137;22.450;1374.2;22.137;22.137;3;0;3;0.253;0.000;1.1;! +22.520;21.103;22.470;1375.0;21.103;21.103;3;0;3;0.247;0.000;1.1;! +22.540;19.871;22.490;1375.8;19.871;19.871;3;0;3;0.235;0.000;1.1;! +22.560;18.716;22.510;1376.6;18.716;18.716;3;0;3;0.221;0.000;1.1;! +22.580;18.134;22.530;1377.3;18.134;18.134;3;0;3;0.217;0.000;1.1;! +22.600;17.888;22.550;1378.1;17.888;17.888;3;0;3;0.209;0.000;1.1;! +22.620;17.915;22.570;1378.9;17.915;17.915;3;0;3;0.204;0.000;1.1;! +22.640;18.150;22.590;1379.7;18.150;18.150;3;0;3;0.194;0.000;1.0;! +22.660;18.440;22.610;1380.5;18.440;18.440;3;0;3;0.198;0.000;1.0;! +22.680;18.875;22.630;1381.3;18.875;18.875;3;0;3;0.199;0.000;1.0;! +22.700;19.580;22.650;1382.1;19.580;19.580;3;0;3;0.197;0.000;1.0;! +22.720;20.512;22.670;1382.9;20.512;20.512;3;0;3;0.193;0.000;0.9;! +22.740;20.948;22.690;1383.7;20.948;20.948;3;0;3;0.195;0.000;0.9;! +22.760;21.098;22.710;1384.5;21.098;21.098;3;0;3;0.198;0.000;0.9;! +22.780;21.383;22.730;1385.4;21.383;21.383;3;0;3;0.206;0.000;0.9;! +22.800;21.721;22.750;1386.2;21.721;21.721;3;0;3;0.209;0.000;0.9;! +22.820;21.818;22.770;1387.0;21.818;21.818;3;0;3;0.205;0.000;0.9;! +22.840;21.753;22.790;1387.8;21.753;21.753;3;0;3;0.204;0.000;0.9;! +22.860;21.790;22.810;1388.7;21.790;21.790;3;0;3;0.205;0.000;0.9;! +22.880;21.882;22.830;1389.5;21.882;21.882;3;0;3;0.206;0.000;0.9;! +22.900;22.105;22.850;1390.3;22.105;22.105;3;0;3;0.208;0.000;0.9;! +22.920;22.211;22.870;1391.1;22.211;22.211;3;0;3;0.210;0.000;0.9;! +22.940;21.850;22.890;1392.0;21.850;21.850;3;0;3;0.214;0.000;1.0;! +22.960;21.040;22.910;1392.8;21.040;21.040;3;0;3;0.214;0.000;1.0;! +22.980;20.001;22.930;1393.6;20.001;20.001;3;0;3;0.209;0.000;1.0;! +23.000;18.964;22.950;1394.4;18.964;18.964;3;0;3;0.199;0.000;1.0;! +23.020;18.109;22.970;1395.2;18.109;18.109;3;0;3;0.189;0.000;0.9;! +23.040;17.444;22.990;1396.0;17.444;17.444;3;0;3;0.183;0.000;0.9;! +23.060;17.068;23.010;1397.6;17.068;17.068;3;0;3;0.180;0.000;1.0;! +23.080;16.759;23.030;1401.2;16.759;16.759;3;0;3;0.174;0.000;1.0;! +23.100;16.450;23.050;1404.8;16.450;16.450;3;0;3;0.168;0.000;0.9;! +23.120;16.238;23.070;1407.7;16.238;16.238;3;0;3;0.160;0.000;0.9;! +23.140;16.274;23.090;1408.5;16.274;16.274;3;0;3;0.157;0.000;0.9;! +23.160;16.466;23.110;1409.3;16.466;16.466;3;0;3;0.158;0.000;0.9;! +23.180;16.800;23.130;1410.0;16.800;16.800;3;0;3;0.159;0.000;0.9;! +23.200;17.098;23.150;1410.8;17.098;17.098;3;0;3;0.161;0.000;0.9;! +23.220;17.294;23.170;1411.6;17.294;17.294;3;0;3;0.163;0.000;0.9;! +23.240;17.544;23.190;1412.4;17.544;17.544;3;0;3;0.167;0.000;0.9;! +23.260;17.942;23.210;1413.2;17.942;17.942;3;0;3;0.171;0.000;0.9;! +23.280;18.279;23.230;1414.0;18.279;18.279;3;0;3;0.174;0.000;0.9;! +23.300;18.421;23.250;1414.7;18.421;18.421;3;0;3;0.179;0.000;0.9;! +23.320;18.391;23.270;1415.5;18.391;18.391;3;0;3;0.186;0.000;1.0;! +23.340;18.292;23.290;1416.3;18.292;18.292;3;0;3;0.191;0.000;1.0;! +23.360;18.109;23.310;1417.0;18.109;18.109;3;0;3;0.195;0.000;1.0;! +23.380;17.807;23.330;1417.8;17.807;17.807;3;0;3;0.195;0.000;1.0;! +23.400;17.609;23.350;1418.6;17.609;17.609;3;0;3;0.194;0.000;1.0;! +23.420;17.591;23.370;1419.4;17.591;17.591;3;0;3;0.192;0.000;1.0;! +23.440;17.653;23.390;1420.2;17.653;17.653;3;0;3;0.186;0.000;1.0;! +23.460;17.838;23.410;1421.0;17.838;17.838;3;0;3;0.179;0.000;0.9;! +23.480;18.145;23.430;1421.7;18.145;18.145;3;0;3;0.174;0.000;0.9;! +23.500;18.387;23.450;1422.5;18.387;18.387;3;0;3;0.168;0.000;0.9;! +23.520;18.601;23.470;1423.3;18.601;18.601;3;0;3;0.166;0.000;0.9;! +23.540;18.766;23.490;1424.1;18.766;18.766;3;0;3;0.170;0.000;0.9;! +23.560;18.851;23.510;1424.9;18.851;18.851;3;0;3;0.174;0.000;0.9;! +23.580;18.783;23.530;1425.6;18.783;18.783;3;0;3;0.175;0.000;0.9;! +23.600;18.309;23.550;1426.4;18.309;18.309;3;0;3;0.174;0.000;0.9;! +23.620;17.336;23.570;1427.2;17.336;17.336;3;0;3;0.172;0.000;1.0;! +23.640;16.110;23.590;1427.9;16.110;16.110;3;0;3;0.175;0.000;1.0;! +23.660;14.915;23.610;1428.7;14.915;14.915;3;0;3;0.177;0.000;1.1;! +23.680;14.050;23.630;1429.5;14.050;14.050;3;0;3;0.171;0.000;1.1;! +23.700;13.398;23.650;1430.2;13.398;13.398;3;0;3;0.162;0.000;1.1;! +23.720;12.806;23.670;1431.0;12.806;12.806;3;0;3;0.158;0.000;1.1;! +23.740;12.223;23.690;1431.8;12.223;12.223;3;0;3;0.152;0.000;1.1;! +23.760;11.802;23.710;1432.5;11.802;11.802;3;0;3;0.144;0.000;1.1;! +23.780;11.547;23.730;1433.3;11.547;11.547;3;0;3;0.136;0.000;1.1;! +23.800;11.364;23.750;1434.0;11.364;11.364;3;0;3;0.129;0.000;1.1;! +23.820;11.283;23.770;1434.8;11.283;11.283;3;-1;3;0.125;0.000;1.0;! +23.840;11.354;23.790;1435.6;11.354;11.354;3;0;3;0.122;0.000;1.0;! +23.860;11.510;23.810;1436.3;11.510;11.510;3;-1;3;0.116;0.000;0.9;! +23.880;11.807;23.830;1437.1;11.807;11.807;3;-1;3;0.110;0.000;0.9;! +23.900;12.327;23.850;1437.9;12.327;12.327;3;-1;3;0.105;0.000;0.8;! +23.920;12.907;23.870;1438.7;12.907;12.907;3;0;3;0.105;0.000;0.8;! +23.940;13.403;23.890;1439.5;13.403;13.403;3;0;3;0.103;0.000;0.7;! +23.960;13.891;23.910;1440.3;13.891;13.891;3;0;3;0.105;0.000;0.7;! +23.980;14.346;23.930;1441.0;14.346;14.346;3;0;3;0.106;0.000;0.7;! +24.000;14.374;23.950;1441.8;14.374;14.374;3;0;3;0.108;0.000;0.7;! +24.020;14.050;23.970;1442.6;14.050;14.050;3;0;3;0.109;0.000;0.7;! +24.040;13.572;23.990;1443.3;13.572;13.572;3;0;3;0.119;0.000;0.8;! +24.060;13.209;24.010;1446.3;13.209;13.209;3;0;3;0.126;0.000;0.9;! +24.080;12.876;24.030;1449.9;12.876;12.876;3;0;3;0.132;0.000;1.0;! +24.100;12.542;24.050;1453.4;12.542;12.542;3;0;3;0.137;0.000;1.0;! +24.120;12.327;24.070;1455.0;12.327;12.327;3;0;3;0.137;0.000;1.1;! +24.140;12.204;24.090;1455.8;12.204;12.204;3;0;3;0.136;0.000;1.1;! +24.160;12.142;24.110;1456.6;12.142;12.142;3;-1;3;0.134;0.000;1.0;! +24.180;12.098;24.130;1457.4;12.098;12.098;3;0;3;0.132;0.000;1.0;! +24.200;12.100;24.150;1458.1;12.100;12.100;3;0;3;0.129;0.000;1.0;! +24.220;12.111;24.170;1458.9;12.111;12.111;3;0;3;0.127;0.000;1.0;! +24.240;12.096;24.190;1459.7;12.096;12.096;3;0;3;0.126;0.000;1.0;! +24.260;12.070;24.210;1460.5;12.070;12.070;3;-1;3;0.125;0.000;1.0;! +24.280;12.015;24.230;1461.2;12.015;12.015;3;-1;3;0.123;0.000;1.0;! +24.300;11.957;24.250;1462.0;11.957;11.957;3;0;3;0.122;0.000;1.0;! +24.320;11.905;24.270;1462.8;11.905;11.905;3;0;3;0.120;0.000;1.0;! +24.340;11.853;24.290;1463.5;11.853;11.853;3;0;3;0.120;0.000;1.0;! +24.360;11.862;24.310;1464.3;11.862;11.862;3;0;3;0.119;0.000;0.9;! +24.380;11.857;24.330;1465.1;11.857;11.857;3;0;3;0.119;0.000;0.9;! +24.400;11.890;24.350;1465.9;11.890;11.890;3;0;3;0.117;0.000;0.9;! +24.420;11.924;24.370;1466.6;11.924;11.924;3;0;3;0.118;0.000;0.9;! +24.440;11.994;24.390;1467.4;11.994;11.994;3;0;3;0.118;0.000;0.9;! +24.460;12.093;24.410;1468.2;12.093;12.093;3;0;3;0.119;0.000;0.9;! +24.480;12.216;24.430;1469.0;12.216;12.216;3;-1;3;0.119;0.000;0.9;! +24.500;12.401;24.450;1469.7;12.401;12.401;3;0;3;0.118;0.000;0.9;! +24.520;12.656;24.470;1470.5;12.656;12.656;3;-1;3;0.118;0.000;0.9;! +24.540;12.928;24.490;1471.3;12.928;12.928;3;-1;3;0.118;0.000;0.9;! +24.560;13.298;24.510;1472.1;13.298;13.298;3;-1;3;0.119;0.000;0.9;! +24.580;13.631;24.530;1472.8;13.631;13.631;3;-1;3;0.119;0.000;0.8;! +24.600;13.993;24.550;1473.6;13.993;13.993;3;-1;3;0.121;0.000;0.8;! +24.620;14.351;24.570;1474.4;14.351;14.351;3;-1;3;0.123;0.000;0.8;! +24.640;14.676;24.590;1475.2;14.676;14.676;3;-1;3;0.125;0.000;0.8;! +24.660;14.953;24.610;1476.0;14.953;14.953;3;-1;3;0.128;0.000;0.8;! +24.680;15.284;24.630;1476.8;15.284;15.284;3;-1;3;0.132;0.000;0.8;! +24.700;15.709;24.650;1477.6;15.709;15.709;3;-1;3;0.133;0.000;0.8;! +24.720;16.181;24.670;1478.3;16.181;16.181;3;-1;3;0.137;0.000;0.8;! +24.740;16.649;24.690;1479.1;16.649;16.649;3;-1;3;0.139;0.000;0.8;! +24.760;17.019;24.710;1479.9;17.019;17.019;3;-1;3;0.141;0.000;0.8;! +24.780;17.312;24.730;1480.7;17.312;17.312;3;-1;3;0.144;0.000;0.8;! +24.800;17.567;24.750;1481.5;17.567;17.567;3;-1;3;0.147;0.000;0.8;! +24.820;17.923;24.770;1482.3;17.923;17.923;3;-1;3;0.148;0.000;0.8;! +24.840;18.263;24.790;1483.1;18.263;18.263;3;-1;3;0.153;0.000;0.8;! +24.860;18.578;24.810;1483.9;18.578;18.578;3;-1;3;0.158;0.000;0.8;! +24.880;18.789;24.830;1484.7;18.789;18.789;3;-1;3;0.162;0.000;0.8;! +24.900;18.943;24.850;1485.5;18.943;18.943;3;-1;3;0.166;0.000;0.8;! +24.920;19.031;24.870;1486.2;19.031;19.031;3;-1;3;0.170;0.000;0.8;! +24.940;19.283;24.880;1487.0;19.283;19.283;3;-1;3;0.173;0.000;0.8;! +24.960;20.008;24.900;1487.8;20.008;20.008;3;-1;3;0.179;0.000;0.8;! +24.980;21.118;24.920;1488.7;21.118;21.118;3;-1;3;0.181;0.000;0.8;! +25.000;22.401;24.940;1489.5;22.401;22.401;3;-1;3;0.183;0.000;0.8;! +25.020;23.996;24.960;1490.4;23.996;23.996;3;-1;3;9.999;0.000;999.9;! +25.040;25.234;24.980;1491.8;25.234;25.234;3;-1;3;9.999;0.000;999.9;! +25.060;25.782;25.000;1494.8;25.782;25.782;3;-1;3;9.999;0.000;999.9;! +25.080;26.329;25.020;1497.8;26.329;26.329;3;-1;3;9.999;0.000;999.9;! +25.100;26.876;25.040;1500.8;26.876;26.876;3;-1;3;9.999;0.000;999.9;! +25.100;26.904;25.050;1501.0;26.904;26.904;3;-1;3;9.999;0.000;999.9;! diff --git a/tests/cpts/gef/CPT000000217409_IMBRO.gef b/tests/cpts/gef/CPT000000217409_IMBRO.gef new file mode 100644 index 0000000..59d77ce --- /dev/null +++ b/tests/cpts/gef/CPT000000217409_IMBRO.gef @@ -0,0 +1,1362 @@ +#GEFID= 1, 1, 0 +#COLUMN= 12 +#COLUMNINFO= 1, m (meter), sondeertrajectlengte, 1 +#COLUMNINFO= 2, MPa (megaPascal), conusweerstand, 2 +#COLUMNINFO= 3, m (meter), diepte, 11 +#COLUMNINFO= 4, s (seconde), verlopen tijd, 12 +#COLUMNINFO= 5, MPa (megaPascal), gecorrigeerde conusweerstand, 13 +#COLUMNINFO= 6, MPa (megaPascal), netto conusweerstand, 14 +#COLUMNINFO= 7, ° (graden), helling x, 21 +#COLUMNINFO= 8, ° (graden), helling y, 22 +#COLUMNINFO= 9, ° (graden), hellingresultante, 8 +#COLUMNINFO= 10, MPa (megaPascal), plaatselijke wrijving, 3 +#COLUMNINFO= 11, geen, porienratio, 15 +#COLUMNINFO= 12, % (procent; MPa/MPa), wrijvingsgetal, 4 +#COLUMNSEPARATOR= ; +#COLUMNTEXT= 1, aan +#COLUMNVOID= 1, 999.999 +#COLUMNVOID= 2, 999.999 +#COLUMNVOID= 3, 999.999 +#COLUMNVOID= 4, 99999.9 +#COLUMNVOID= 5, 999.999 +#COLUMNVOID= 6, 999.999 +#COLUMNVOID= 7, 99 +#COLUMNVOID= 8, 99 +#COLUMNVOID= 9, 99 +#COLUMNVOID= 10, 9.999 +#COLUMNVOID= 11, 99.999 +#COLUMNVOID= 12, 999.9 +#COMPANYID= uitvoerder onderzoek, wordt niet uitgeleverd, - +#FILEDATE= 2024, 12, 04 +#FILEOWNER= Basisregistratie Ondergrond +#LASTSCAN= 1263 +#MEASUREMENTTEXT= 4, CP15-CF75SN2-P1E1M4-V1-S1/1701-2757, conustype +#MEASUREMENTTEXT= 5, Fugro Cone Penetrometer MkII, omschrijving sondeerapparaat +#MEASUREMENTTEXT= 6, NEN-EN-ISO 22476-1 / klasse 2, sondeernorm en kwaliteitsklasse +#MEASUREMENTTEXT= 9, maaiveld, lokaal verticaal referentiepunt +#MEASUREMENTTEXT= 20, nee, signaalbewerking uitgevoerd +#MEASUREMENTTEXT= 21, ja, bewerking onderbrekingen uitgevoerd +#MEASUREMENTTEXT= 42, MRG2, methode verticale positiebepaling +#MEASUREMENTTEXT= 43, LRG3, methode locatiebepaling +#MEASUREMENTTEXT= 101, bronhouder, 30124359, - +#MEASUREMENTTEXT= 102, opdracht publieke taakuitvoering, kader aanlevering +#MEASUREMENTTEXT= 103, infrastructuur land, kader inwinning +#MEASUREMENTTEXT= 104, uitvoerder locatiebepaling, wordt niet uitgeleverd, - +#MEASUREMENTTEXT= 105, 2022, 12, 19 +#MEASUREMENTTEXT= 106, uitvoerder verticale positiebepaling, wordt niet uitgeleverd, - +#MEASUREMENTTEXT= 107, 2022, 12, 19 +#MEASUREMENTTEXT= 109, nee, dissipatietest uitgevoerd +#MEASUREMENTTEXT= 110, ja, expertcorrectie uitgevoerd +#MEASUREMENTTEXT= 111, nee, aanvullend onderzoek uitgevoerd +#MEASUREMENTTEXT= 112, 2023, 04, 17 +#MEASUREMENTTEXT= 113, 2022, 12, 20 +#MEASUREMENTTEXT= 115, IMBRO, kwaliteitsregime +#MEASUREMENTTEXT= 116, 2023, 06, 01, 13, 45, 41 +#MEASUREMENTTEXT= 117, voltooid, registratiestatus +#MEASUREMENTTEXT= 118, 2023, 06, 01, 13, 45, 41 +#MEASUREMENTTEXT= 119, nee, gecorrigeerd +#MEASUREMENTTEXT= 121, nee, in onderzoek +#MEASUREMENTTEXT= 123, nee, uit registratie genomen +#MEASUREMENTTEXT= 125, nee, weer in registratie genomen +#MEASUREMENTTEXT= 127, 4258, 51.962745, 4.379945 +#MEASUREMENTTEXT= 128, RDNAPTRANS2018, toegepaste transformatie +#MEASUREMENTVAR= 1, 1510, mm2 (vierkante millimeter), oppervlakte conuspunt +#MEASUREMENTVAR= 2, 19895, mm2 (vierkante millimeter), oppervlakte kleefmantel +#MEASUREMENTVAR= 3, 0.58, geen, oppervlaktequoti�nt conuspunt +#MEASUREMENTVAR= 4, 1.0, geen, oppervlaktequoti�nt kleefmantel +#MEASUREMENTVAR= 5, 87, mm (millimeter), afstand conus tot midden kleefmantel +#MEASUREMENTVAR= 12, 4, -, sondeermethode +#MEASUREMENTVAR= 13, 0.00, m (meter), voorgeboord tot +#MEASUREMENTVAR= 16, 25.012, m (meter), einddiepte +#MEASUREMENTVAR= 17, 0, -, stopcriterium +#MEASUREMENTVAR= 20, -0.092, MPa (megaPascal), conusweerstand vooraf +#MEASUREMENTVAR= 21, -0.094, MPa (megaPascal), conusweerstand achteraf +#MEASUREMENTVAR= 22, 0.003, MPa (megaPascal), plaatselijke wrijving vooraf +#MEASUREMENTVAR= 23, -0.001, MPa (megaPascal), plaatselijke wrijving achteraf +#MEASUREMENTVAR= 24, -, MPa (megaPascal), waterspanning u1 vooraf +#MEASUREMENTVAR= 25, -, MPa (megaPascal), waterspanning u1 achteraf +#MEASUREMENTVAR= 26, -, MPa (megaPascal), waterspanning u2 vooraf +#MEASUREMENTVAR= 27, -, MPa (megaPascal), waterspanning u2 achteraf +#MEASUREMENTVAR= 28, -, MPa (megaPascal), waterspanning u3 vooraf +#MEASUREMENTVAR= 29, -, MPa (megaPascal), waterspanning u3 achteraf +#MEASUREMENTVAR= 30, 0, ° (graden), hellingresultante vooraf +#MEASUREMENTVAR= 31, 0, ° (graden), hellingresultante achteraf +#MEASUREMENTVAR= 32, -, ° (graden), helling noord-zuid vooraf +#MEASUREMENTVAR= 33, -, ° (graden), helling noord-zuid achteraf +#MEASUREMENTVAR= 34, -, ° (graden), helling oost-west vooraf +#MEASUREMENTVAR= 35, -, ° (graden), helling oost-west achteraf +#MEASUREMENTVAR= 36, -, S/m (Siemens/meter), elektrische geleidbaarheid vooraf +#MEASUREMENTVAR= 37, -, S/m (Siemens/meter), elektrische geleidbaarheid achteraf +#MEASUREMENTVAR= 130, 44, mm (millimeter), conusdiameter +#PROJECTID= BRO +#RECORDSEPARATOR= ! +#REPORTCODE= GEF-CPT-Report, 1, 1, 2 +#STARTDATE= 2022, 12, 11 +#STARTTIME= 09, 21, 39 +#TESTID= CPT000000217409 +#XYID= 28992, 85773.638, 442070.562 +#ZID= 31000, -0.854 +#EOH= +0.000;0.394;0.000;66.5;0.394;0.394;0;0;0;9.999;0.000;999.9;! +0.020;0.589;0.020;67.6;0.589;0.589;0;0;1;9.999;0.000;999.9;! +0.040;0.786;0.040;68.7;0.786;0.786;0;1;1;9.999;0.000;999.9;! +0.060;1.479;0.060;69.8;1.479;1.479;-1;1;1;9.999;0.000;999.9;! +0.080;2.493;0.080;70.9;2.493;2.493;-1;0;1;9.999;0.000;999.9;! +0.100;1.612;0.100;72.0;1.612;1.612;0;1;1;9.999;0.000;999.9;! +0.120;2.279;0.120;73.1;2.279;2.279;-1;-2;2;0.011;0.000;0.6;! +0.140;3.207;0.140;74.2;3.207;3.207;0;1;1;0.020;0.000;0.8;! +0.160;3.811;0.160;76.6;3.811;3.811;0;1;1;0.064;0.000;1.7;! +0.180;4.415;0.180;78.9;4.415;4.415;0;1;1;0.087;0.000;1.7;! +0.200;5.019;0.200;81.3;5.019;5.019;0;2;2;0.094;0.000;1.4;! +0.220;7.991;0.220;82.6;7.991;7.991;-1;2;2;0.127;0.000;1.6;! +0.240;7.387;0.240;83.6;7.387;7.387;-1;2;2;0.106;0.000;1.3;! +0.260;8.382;0.260;84.7;8.382;8.382;-1;2;2;0.096;0.000;1.2;! +0.280;11.349;0.280;85.8;11.349;11.349;-1;2;2;0.103;0.000;1.1;! +0.300;5.822;0.300;86.9;5.822;5.822;-2;2;3;0.085;0.000;0.7;! +0.320;8.958;0.320;88.0;8.958;8.958;0;2;2;0.078;0.000;0.6;! +0.340;14.644;0.340;89.2;14.644;14.644;0;1;1;0.133;0.000;1.0;! +0.360;17.565;0.360;90.2;17.565;17.565;0;2;2;0.198;0.000;1.3;! +0.380;17.034;0.380;91.3;17.034;17.034;0;2;2;0.190;0.000;1.2;! +0.400;16.921;0.400;92.4;16.921;16.921;0;2;2;0.181;0.000;1.0;! +0.420;19.911;0.420;93.6;19.911;19.911;0;3;3;0.151;0.000;0.8;! +0.440;21.894;0.440;94.7;21.894;21.894;0;3;3;0.119;0.000;0.5;! +0.460;23.822;0.460;97.6;23.822;23.822;0;4;4;0.116;0.000;0.4;! +0.480;24.546;0.480;101.3;24.546;24.546;0;4;4;0.182;0.000;0.6;! +0.500;25.271;0.500;105.0;25.271;25.271;1;4;4;0.161;0.000;0.5;! +0.520;35.824;0.520;106.2;35.824;35.824;1;4;4;0.185;0.000;0.5;! +0.540;40.574;0.540;107.4;40.574;40.574;1;5;5;0.276;0.000;0.7;! +0.560;39.317;0.560;108.6;39.317;39.317;1;5;5;0.260;0.000;0.7;! +0.580;38.640;0.580;109.7;38.640;38.640;1;5;5;0.226;0.000;0.5;! +0.600;39.370;0.600;110.9;39.370;39.370;1;5;5;0.248;0.000;0.6;! +0.620;39.464;0.620;112.1;39.464;39.464;1;5;5;0.238;0.000;0.5;! +0.640;41.850;0.640;113.5;41.850;41.850;1;5;5;0.182;0.000;0.4;! +0.660;42.680;0.660;114.8;42.680;42.680;1;5;5;0.182;0.000;0.4;! +0.680;43.598;0.680;116.1;43.598;43.598;1;5;5;0.165;0.000;0.3;! +0.700;43.095;0.700;117.5;43.095;43.095;1;5;5;0.177;0.000;0.3;! +0.720;45.166;0.720;118.9;45.166;45.166;1;5;5;0.192;0.000;0.4;! +0.740;48.440;0.740;120.6;48.440;48.440;1;5;5;0.207;0.000;0.4;! +0.760;50.078;0.760;122.4;50.078;50.078;1;5;5;0.261;0.000;0.5;! +0.780;49.642;0.780;124.1;49.642;49.642;1;5;6;0.246;0.000;0.5;! +0.800;48.536;0.800;125.7;48.536;48.536;1;6;6;0.288;0.000;0.6;! +0.820;47.837;0.820;127.3;47.837;47.837;1;6;6;0.316;0.000;0.6;! +0.840;46.047;0.840;128.8;46.047;46.047;1;6;6;0.335;0.000;0.7;! +0.860;44.260;0.860;130.2;44.260;44.260;1;6;6;0.370;0.000;0.8;! +0.880;43.677;0.880;131.6;43.677;43.677;1;6;6;0.376;0.000;0.8;! +0.900;42.489;0.900;132.9;42.489;42.489;1;6;6;0.363;0.000;0.8;! +0.920;42.156;0.920;134.3;42.156;42.156;1;6;6;0.353;0.000;0.8;! +0.940;42.059;0.940;135.7;42.059;42.059;1;6;6;0.351;0.000;0.8;! +0.960;42.815;0.960;137.1;42.815;42.815;1;6;6;0.314;0.000;0.7;! +0.980;42.741;0.980;138.6;42.741;42.741;1;6;6;0.262;0.000;0.6;! +1.000;42.148;1.000;139.9;42.148;42.148;1;6;6;0.254;0.000;0.6;! +1.020;42.382;1.020;141.4;42.382;42.382;1;6;6;0.263;0.000;0.6;! +1.040;42.646;1.040;143.7;42.646;42.646;1;6;6;0.294;0.000;0.7;! +1.060;39.799;1.060;148.4;39.799;39.799;1;6;6;0.272;0.000;0.6;! +1.080;38.408;1.080;152.4;38.408;38.408;1;6;6;0.271;0.000;0.6;! +1.100;37.784;1.100;153.6;37.784;37.784;1;6;6;0.259;0.000;0.6;! +1.120;36.961;1.120;154.9;36.961;36.961;1;6;6;0.271;0.000;0.7;! +1.140;35.390;1.140;156.2;35.390;35.390;2;6;6;0.229;0.000;0.6;! +1.160;34.846;1.160;157.5;34.846;34.846;2;6;6;0.233;0.000;0.6;! +1.180;35.155;1.180;158.8;35.155;35.155;2;6;6;0.201;0.000;0.5;! +1.200;36.136;1.200;160.2;36.136;36.136;2;6;6;0.172;0.000;0.4;! +1.220;37.389;1.220;161.6;37.389;37.389;1;6;6;0.117;0.000;0.3;! +1.240;38.345;1.240;163.0;38.345;38.345;2;6;6;0.136;0.000;0.3;! +1.260;41.008;1.260;164.6;41.008;41.008;1;6;6;0.167;0.000;0.4;! +1.280;41.945;1.280;166.1;41.945;41.945;2;6;6;0.287;0.000;0.6;! +1.300;44.848;1.300;167.6;44.848;44.848;1;6;6;0.345;0.000;0.8;! +1.320;42.096;1.320;169.2;42.096;42.096;2;6;6;0.339;0.000;0.8;! +1.340;43.280;1.340;170.6;43.280;43.280;1;6;6;0.363;0.000;0.8;! +1.360;39.480;1.360;172.0;39.480;39.480;2;6;6;0.373;0.000;0.9;! +1.380;37.683;1.380;173.4;37.683;37.683;2;6;6;0.370;0.000;0.9;! +1.400;37.205;1.400;174.8;37.205;37.205;1;6;6;0.337;0.000;0.8;! +1.420;36.797;1.410;176.2;36.797;36.797;1;6;6;0.304;0.000;0.8;! +1.440;36.799;1.430;177.6;36.799;36.799;1;6;6;0.286;0.000;0.7;! +1.460;36.071;1.450;178.9;36.071;36.071;1;6;6;0.258;0.000;0.7;! +1.480;35.212;1.470;182.7;35.212;35.212;1;6;6;0.269;0.000;0.7;! +1.500;34.339;1.490;186.5;34.339;34.339;1;6;6;0.273;0.000;0.7;! +1.520;33.825;1.510;189.4;33.825;33.825;1;6;6;0.298;0.000;0.8;! +1.540;34.183;1.530;190.6;34.183;34.183;1;6;6;0.304;0.000;0.8;! +1.560;34.469;1.550;191.7;34.469;34.469;1;6;6;0.312;0.000;0.9;! +1.580;34.657;1.570;192.8;34.657;34.657;2;6;6;0.295;0.000;0.8;! +1.600;34.286;1.590;193.9;34.286;34.286;2;6;6;0.305;0.000;0.8;! +1.620;34.031;1.610;195.1;34.031;34.031;2;6;6;0.297;0.000;0.8;! +1.640;34.209;1.630;196.2;34.209;34.209;2;6;6;0.262;0.000;0.7;! +1.660;33.372;1.650;197.3;33.372;33.372;2;6;6;0.250;0.000;0.7;! +1.680;33.158;1.670;198.4;33.158;33.158;2;6;6;0.229;0.000;0.6;! +1.700;32.242;1.690;199.5;32.242;32.242;2;6;6;0.255;0.000;0.7;! +1.720;32.882;1.710;200.6;32.882;32.882;2;6;6;0.300;0.000;0.9;! +1.740;32.443;1.730;201.7;32.443;32.443;2;6;6;0.269;0.000;0.8;! +1.760;31.097;1.750;202.8;31.097;31.097;2;6;7;0.240;0.000;0.7;! +1.780;29.599;1.770;203.8;29.599;29.599;2;6;7;0.255;0.000;0.8;! +1.800;27.921;1.790;204.9;27.921;27.921;2;6;7;0.259;0.000;0.8;! +1.820;27.975;1.810;206.0;27.975;27.975;2;6;7;0.288;0.000;1.0;! +1.840;27.609;1.830;207.1;27.609;27.609;2;6;7;0.263;0.000;0.9;! +1.860;26.638;1.850;208.2;26.638;26.638;2;6;7;0.227;0.000;0.8;! +1.880;25.905;1.870;209.3;25.905;25.905;2;6;7;0.255;0.000;0.9;! +1.900;24.794;1.890;210.4;24.794;24.794;2;6;7;0.328;0.000;1.2;! +1.920;24.255;1.910;211.4;24.255;24.255;2;6;7;0.284;0.000;1.1;! +1.940;24.154;1.930;212.6;24.154;24.154;2;6;7;0.272;0.000;1.1;! +1.960;24.384;1.950;213.6;24.384;24.384;2;6;7;0.263;0.000;1.1;! +1.980;22.133;1.970;214.7;22.133;22.133;3;6;7;0.246;0.000;1.0;! +2.000;21.091;1.990;215.8;21.091;21.091;2;6;7;0.229;0.000;1.0;! +2.020;20.188;2.010;216.8;20.188;20.188;2;6;7;0.211;0.000;0.9;! +2.040;19.101;2.030;217.9;19.101;19.101;2;6;7;0.185;0.000;0.8;! +2.060;18.252;2.050;219.8;18.252;18.252;2;6;7;0.178;0.000;0.9;! +2.080;17.424;2.070;222.5;17.424;17.424;2;6;7;0.181;0.000;1.0;! +2.100;16.596;2.090;225.3;16.596;16.596;2;6;7;0.181;0.000;1.0;! +2.120;15.952;2.110;227.4;15.952;15.952;2;6;7;0.179;0.000;1.1;! +2.140;15.495;2.130;228.5;15.495;15.495;2;6;7;0.183;0.000;1.2;! +2.160;15.040;2.150;229.6;15.040;15.040;2;7;7;0.182;0.000;1.2;! +2.180;14.392;2.170;230.7;14.392;14.392;2;7;7;0.178;0.000;1.2;! +2.200;13.660;2.190;231.8;13.660;13.660;2;7;7;0.174;0.000;1.2;! +2.220;12.870;2.210;232.8;12.870;12.870;2;7;7;0.165;0.000;1.2;! +2.240;12.175;2.230;233.9;12.175;12.175;2;7;7;0.155;0.000;1.2;! +2.260;11.500;2.250;235.0;11.500;11.500;2;7;7;0.151;0.000;1.2;! +2.280;10.820;2.270;236.1;10.820;10.820;2;7;7;0.141;0.000;1.2;! +2.300;10.163;2.290;237.2;10.163;10.163;2;7;7;0.134;0.000;1.2;! +2.320;9.468;2.310;238.2;9.468;9.468;2;7;7;0.127;0.000;1.3;! +2.340;8.753;2.330;239.3;8.753;8.753;2;7;7;0.120;0.000;1.3;! +2.360;8.199;2.350;240.4;8.199;8.199;2;7;7;0.113;0.000;1.3;! +2.380;7.739;2.370;241.5;7.739;7.739;2;7;7;0.106;0.000;1.3;! +2.400;7.372;2.390;242.6;7.372;7.372;2;7;7;0.099;0.000;1.3;! +2.420;7.030;2.410;243.6;7.030;7.030;2;7;7;0.092;0.000;1.2;! +2.440;6.645;2.430;244.7;6.645;6.645;2;7;7;0.083;0.000;1.2;! +2.460;6.234;2.450;245.8;6.234;6.234;2;7;7;0.074;0.000;1.1;! +2.480;5.788;2.470;246.8;5.788;5.788;2;7;7;0.071;0.000;1.1;! +2.500;5.295;2.490;247.9;5.295;5.295;2;7;7;0.071;0.000;1.2;! +2.520;4.750;2.510;251.4;4.750;4.750;2;7;7;0.070;0.000;1.4;! +2.540;4.203;2.530;255.0;4.203;4.203;2;7;7;0.068;0.000;1.6;! +2.560;3.685;2.550;257.8;3.685;3.685;2;7;7;0.065;0.000;1.8;! +2.580;3.175;2.570;258.9;3.175;3.175;2;7;7;0.063;0.000;2.2;! +2.600;2.656;2.590;260.0;2.656;2.656;2;7;7;0.063;0.000;2.4;! +2.620;2.163;2.610;261.1;2.163;2.163;2;7;7;0.064;0.000;2.6;! +2.640;1.672;2.630;262.2;1.672;1.672;2;7;7;0.064;0.000;3.2;! +2.660;1.273;2.650;263.2;1.273;1.273;2;7;7;0.064;0.000;4.0;! +2.680;0.986;2.670;264.3;0.986;0.986;2;7;7;0.062;0.000;4.8;! +2.700;0.814;2.690;265.4;0.814;0.814;2;7;7;0.057;0.000;5.4;! +2.720;0.681;2.710;266.5;0.681;0.681;2;7;7;0.049;0.000;5.7;! +2.740;0.577;2.730;267.6;0.577;0.577;3;7;7;0.040;0.000;5.5;! +2.760;0.554;2.750;268.6;0.554;0.554;3;7;7;0.035;0.000;5.5;! +2.780;0.557;2.770;269.7;0.557;0.557;3;7;7;0.033;0.000;5.5;! +2.800;0.555;2.790;270.8;0.555;0.555;3;7;7;0.032;0.000;5.6;! +2.820;0.533;2.810;271.8;0.533;0.533;3;7;7;0.034;0.000;6.2;! +2.840;0.532;2.830;272.9;0.532;0.532;3;7;7;0.039;0.000;7.2;! +2.860;0.536;2.840;274.0;0.536;0.536;3;7;7;0.044;0.000;8.0;! +2.880;0.544;2.860;275.1;0.544;0.544;3;7;7;0.047;0.000;8.6;! +2.900;0.552;2.880;276.2;0.552;0.552;3;7;7;0.049;0.000;9.1;! +2.920;0.544;2.900;277.2;0.544;0.544;3;7;7;0.052;0.000;9.5;! +2.940;0.538;2.920;278.3;0.538;0.538;3;7;7;0.055;0.000;10.0;! +2.960;0.534;2.940;279.4;0.534;0.534;3;7;7;0.058;0.000;10.5;! +2.980;0.558;2.960;280.5;0.558;0.558;3;7;7;0.061;0.000;10.9;! +3.000;0.568;2.980;281.6;0.568;0.568;3;7;7;0.063;0.000;11.3;! +3.020;0.581;3.000;282.7;0.581;0.581;3;7;7;0.066;0.000;11.8;! +3.040;0.570;3.020;283.8;0.570;0.570;3;7;7;0.069;0.000;12.3;! +3.060;0.550;3.040;284.8;0.550;0.550;3;7;7;0.072;0.000;12.9;! +3.080;0.522;3.060;285.9;0.522;0.522;3;7;7;0.072;0.000;13.1;! +3.100;0.496;3.080;288.1;0.496;0.496;3;7;7;0.070;0.000;13.8;! +3.120;0.464;3.100;291.2;0.464;0.464;3;7;7;0.069;0.000;14.8;! +3.140;0.433;3.120;294.3;0.433;0.433;3;7;7;0.066;0.000;15.5;! +3.160;0.401;3.140;296.2;0.401;0.401;3;7;7;0.062;0.000;16.3;! +3.180;0.373;3.160;297.2;0.373;0.373;3;7;7;0.058;0.000;15.8;! +3.200;0.335;3.180;298.3;0.335;0.335;3;7;7;0.055;0.000;15.2;! +3.220;0.321;3.200;299.4;0.321;0.321;3;7;7;0.052;0.000;14.5;! +3.240;0.325;3.220;300.4;0.325;0.325;3;7;7;0.051;0.000;14.7;! +3.260;0.327;3.240;301.5;0.327;0.327;3;7;7;0.049;0.000;14.4;! +3.280;0.345;3.260;302.6;0.345;0.345;3;7;7;0.048;0.000;14.3;! +3.300;0.345;3.280;303.7;0.345;0.345;3;7;7;0.049;0.000;14.4;! +3.320;0.330;3.300;304.8;0.330;0.330;3;7;7;0.051;0.000;14.3;! +3.340;0.338;3.320;305.8;0.338;0.338;3;7;7;0.052;0.000;14.0;! +3.360;0.375;3.340;306.9;0.375;0.375;3;7;7;0.054;0.000;14.0;! +3.380;0.413;3.360;308.0;0.413;0.413;3;7;7;0.057;0.000;14.2;! +3.400;0.432;3.380;309.1;0.432;0.432;3;7;7;0.059;0.000;14.3;! +3.420;0.446;3.400;310.1;0.446;0.446;3;7;7;0.061;0.000;14.3;! +3.440;0.478;3.420;311.2;0.478;0.478;3;7;7;0.064;0.000;14.6;! +3.460;0.459;3.440;312.3;0.459;0.459;3;7;7;0.067;0.000;14.9;! +3.480;0.434;3.460;313.4;0.434;0.434;3;7;7;0.070;0.000;15.2;! +3.500;0.453;3.480;314.4;0.453;0.453;3;7;7;0.071;0.000;15.2;! +3.520;0.477;3.500;318.3;0.477;0.477;3;7;7;0.072;0.000;15.1;! +3.540;0.501;3.520;322.3;0.501;0.501;3;7;7;0.071;0.000;14.8;! +3.560;0.505;3.540;325.0;0.505;0.505;3;7;7;0.074;0.000;14.9;! +3.580;0.497;3.560;326.1;0.497;0.497;3;7;7;0.077;0.000;15.2;! +3.600;0.508;3.580;327.1;0.508;0.508;3;7;7;0.078;0.000;15.7;! +3.620;0.528;3.600;328.2;0.528;0.528;3;7;7;0.077;0.000;15.9;! +3.640;0.507;3.620;329.3;0.507;0.507;3;7;7;0.077;0.000;16.3;! +3.660;0.442;3.640;330.4;0.442;0.442;3;7;7;0.076;0.000;16.9;! +3.680;0.405;3.660;331.5;0.405;0.405;3;7;7;0.075;0.000;17.5;! +3.700;0.371;3.680;332.6;0.371;0.371;3;7;7;0.073;0.000;18.1;! +3.720;0.346;3.700;333.7;0.346;0.346;3;7;7;0.071;0.000;18.6;! +3.740;0.333;3.720;334.7;0.333;0.333;3;7;7;0.068;0.000;18.8;! +3.760;0.337;3.740;335.8;0.337;0.337;3;7;7;0.066;0.000;18.8;! +3.780;0.342;3.760;336.8;0.342;0.342;3;7;7;0.063;0.000;18.4;! +3.800;0.338;3.780;337.9;0.338;0.338;3;7;7;0.060;0.000;17.9;! +3.820;0.329;3.800;339.0;0.329;0.329;3;7;7;0.057;0.000;17.2;! +3.840;0.326;3.820;340.1;0.326;0.326;3;7;7;0.055;0.000;16.8;! +3.860;0.321;3.840;341.2;0.321;0.321;3;7;7;0.053;0.000;16.6;! +3.880;0.319;3.860;342.3;0.319;0.319;3;7;7;0.053;0.000;16.8;! +3.900;0.314;3.880;343.3;0.314;0.314;3;7;7;0.051;0.000;17.1;! +3.920;0.286;3.900;344.4;0.286;0.286;3;7;7;0.049;0.000;17.2;! +3.940;0.269;3.920;345.5;0.269;0.269;3;7;7;0.047;0.000;17.0;! +3.960;0.237;3.940;346.6;0.237;0.237;3;7;7;0.044;0.000;16.6;! +3.980;0.230;3.960;347.7;0.230;0.230;3;7;7;0.042;0.000;16.2;! +4.000;0.235;3.980;348.7;0.235;0.235;3;7;7;0.040;0.000;15.4;! +4.020;0.247;4.000;349.8;0.247;0.247;3;7;7;0.040;0.000;15.1;! +4.040;0.267;4.020;350.9;0.267;0.267;3;7;7;0.041;0.000;15.0;! +4.060;0.306;4.040;352.0;0.306;0.306;3;7;7;0.041;0.000;14.9;! +4.080;0.344;4.060;353.1;0.344;0.344;3;7;7;0.042;0.000;10.4;! +4.100;0.509;4.080;355.2;0.509;0.509;3;7;7;0.043;0.000;7.0;! +4.120;0.770;4.090;358.2;0.770;0.770;3;7;7;0.053;0.000;6.4;! +4.140;1.031;4.110;361.2;1.031;1.031;3;7;8;0.057;0.000;6.2;! +4.160;1.296;4.130;362.5;1.296;1.296;3;7;8;0.063;0.000;6.4;! +4.180;1.540;4.150;363.6;1.540;1.540;3;7;8;0.064;0.000;6.9;! +4.200;0.901;4.170;364.6;0.901;0.901;3;7;8;0.065;0.000;7.6;! +4.220;0.652;4.190;365.7;0.652;0.652;3;7;8;0.064;0.000;7.9;! +4.240;0.467;4.210;366.8;0.467;0.467;3;7;8;0.062;0.000;8.5;! +4.260;0.397;4.230;367.9;0.397;0.397;3;7;8;0.050;0.000;8.6;! +4.280;0.372;4.250;368.9;0.372;0.372;3;7;8;0.046;0.000;10.1;! +4.300;0.348;4.270;370.1;0.348;0.348;3;7;8;0.040;0.000;10.3;! +4.320;0.339;4.290;371.1;0.339;0.339;3;7;8;0.036;0.000;10.1;! +4.340;0.324;4.310;372.2;0.324;0.324;3;7;8;0.034;0.000;10.0;! +4.360;0.314;4.330;373.3;0.314;0.314;3;7;8;0.034;0.000;10.2;! +4.380;0.318;4.350;374.4;0.318;0.318;3;7;8;0.034;0.000;10.4;! +4.400;0.328;4.370;375.4;0.328;0.328;3;7;8;0.035;0.000;10.7;! +4.420;0.330;4.390;376.5;0.330;0.330;3;7;8;0.037;0.000;11.2;! +4.440;0.331;4.410;377.6;0.331;0.331;3;7;8;0.038;0.000;11.5;! +4.460;0.333;4.430;378.7;0.333;0.333;3;7;8;0.039;0.000;11.9;! +4.480;0.322;4.450;379.7;0.322;0.322;3;7;8;0.038;0.000;11.9;! +4.500;0.303;4.470;381.6;0.303;0.303;3;7;8;0.037;0.000;11.8;! +4.520;0.289;4.490;385.2;0.289;0.289;3;7;8;0.035;0.000;11.6;! +4.540;0.275;4.510;388.9;0.275;0.275;3;7;8;0.033;0.000;11.7;! +4.560;0.260;4.530;391.1;0.260;0.260;3;7;8;0.032;0.000;11.8;! +4.580;0.254;4.550;392.2;0.254;0.254;3;7;8;0.032;0.000;12.0;! +4.600;0.258;4.570;393.3;0.258;0.258;3;7;8;0.032;0.000;12.2;! +4.620;0.263;4.590;394.3;0.263;0.263;3;7;8;0.033;0.000;12.4;! +4.640;0.257;4.610;395.4;0.257;0.257;3;7;8;0.034;0.000;13.0;! +4.660;0.257;4.630;396.5;0.257;0.257;3;7;8;0.036;0.000;13.3;! +4.680;0.259;4.650;397.6;0.259;0.259;3;7;8;0.037;0.000;13.5;! +4.700;0.276;4.670;398.7;0.276;0.276;3;7;8;0.039;0.000;13.5;! +4.720;0.293;4.690;399.7;0.293;0.293;3;7;8;0.040;0.000;13.3;! +4.740;0.313;4.710;400.8;0.313;0.313;3;7;8;0.041;0.000;13.0;! +4.760;0.341;4.730;401.9;0.341;0.341;3;7;8;0.043;0.000;13.0;! +4.780;0.361;4.750;402.9;0.361;0.361;3;7;8;0.044;0.000;12.8;! +4.800;0.377;4.770;404.0;0.377;0.377;3;7;8;0.045;0.000;12.5;! +4.820;0.379;4.790;405.1;0.379;0.379;3;7;8;0.046;0.000;12.5;! +4.840;0.385;4.810;406.2;0.385;0.385;3;7;8;0.046;0.000;12.4;! +4.860;0.391;4.830;407.2;0.391;0.391;3;7;8;0.046;0.000;12.3;! +4.880;0.389;4.850;408.3;0.389;0.389;3;7;8;0.046;0.000;12.3;! +4.900;0.367;4.870;409.4;0.367;0.367;3;7;8;0.046;0.000;12.5;! +4.920;0.348;4.890;410.5;0.348;0.348;3;7;8;0.046;0.000;12.6;! +4.940;0.343;4.910;411.6;0.343;0.343;3;7;8;0.046;0.000;12.7;! +4.960;0.339;4.930;412.6;0.339;0.339;3;7;8;0.045;0.000;12.8;! +4.980;0.342;4.950;413.7;0.342;0.342;3;7;8;0.044;0.000;12.7;! +5.000;0.343;4.970;414.8;0.343;0.343;3;7;8;0.044;0.000;12.6;! +5.020;0.350;4.990;415.8;0.350;0.350;3;7;8;0.044;0.000;12.6;! +5.040;0.352;5.010;416.9;0.352;0.352;3;7;8;0.044;0.000;12.5;! +5.060;0.352;5.030;418.0;0.352;0.352;3;7;8;0.044;0.000;12.5;! +5.080;0.360;5.050;419.1;0.360;0.360;3;7;8;0.045;0.000;12.1;! +5.100;0.382;5.070;421.9;0.382;0.382;3;7;8;0.046;0.000;11.9;! +5.120;0.405;5.090;424.8;0.405;0.405;3;7;8;0.048;0.000;11.7;! +5.140;0.427;5.110;427.3;0.427;0.427;3;7;8;0.049;0.000;11.6;! +5.160;0.448;5.130;428.4;0.448;0.448;3;7;8;0.050;0.000;11.6;! +5.180;0.453;5.150;429.4;0.453;0.453;3;7;8;0.050;0.000;11.8;! +5.200;0.436;5.170;430.5;0.436;0.436;3;7;8;0.047;0.000;11.6;! +5.220;0.413;5.190;431.6;0.413;0.413;3;7;8;0.044;0.000;11.1;! +5.240;0.381;5.200;432.7;0.381;0.381;3;7;8;0.040;0.000;10.7;! +5.260;0.341;5.220;433.8;0.341;0.341;3;7;8;0.035;0.000;9.9;! +5.280;0.308;5.240;434.8;0.308;0.308;3;7;8;0.028;0.000;8.8;! +5.300;0.280;5.260;435.9;0.280;0.280;3;7;8;0.025;0.000;8.4;! +5.320;0.262;5.280;437.1;0.262;0.262;3;7;8;0.021;0.000;7.4;! +5.340;0.250;5.300;438.2;0.250;0.250;3;7;8;0.017;0.000;6.4;! +5.360;0.236;5.320;439.6;0.236;0.236;3;7;8;0.014;0.000;5.6;! +5.380;0.232;5.340;440.6;0.232;0.232;3;7;8;0.012;0.000;5.2;! +5.400;0.221;5.360;441.8;0.221;0.221;3;7;8;0.011;0.000;4.8;! +5.420;0.219;5.380;443.1;0.219;0.219;3;7;8;0.010;0.000;4.5;! +5.440;0.221;5.400;444.4;0.221;0.221;3;7;8;0.010;0.000;4.3;! +5.460;0.223;5.420;445.5;0.223;0.223;3;7;8;0.010;0.000;4.2;! +5.480;0.222;5.440;446.6;0.222;0.222;3;7;8;0.009;0.000;4.2;! +5.500;0.223;5.460;447.7;0.223;0.223;3;7;8;0.009;0.000;4.1;! +5.520;0.227;5.480;449.5;0.227;0.227;3;7;8;0.009;0.000;4.1;! +5.540;0.229;5.500;453.3;0.229;0.229;3;7;8;0.009;0.000;4.0;! +5.560;0.230;5.520;457.1;0.230;0.230;3;7;8;0.009;0.000;4.0;! +5.580;0.229;5.540;459.6;0.229;0.229;3;7;8;0.009;0.000;4.0;! +5.600;0.229;5.560;460.6;0.229;0.229;3;7;8;0.009;0.000;3.9;! +5.620;0.232;5.580;461.7;0.232;0.232;3;7;8;0.009;0.000;3.9;! +5.640;0.236;5.600;462.8;0.236;0.236;3;7;8;0.009;0.000;3.8;! +5.660;0.232;5.620;463.8;0.232;0.232;3;7;8;0.009;0.000;3.7;! +5.680;0.242;5.640;464.9;0.242;0.242;3;7;8;0.009;0.000;3.7;! +5.700;0.250;5.660;466.0;0.250;0.250;3;7;8;0.010;0.000;3.8;! +5.720;0.255;5.680;467.1;0.255;0.255;3;7;8;0.010;0.000;3.9;! +5.740;0.260;5.700;468.2;0.260;0.260;3;7;8;0.011;0.000;4.0;! +5.760;0.266;5.720;469.3;0.266;0.266;3;7;8;0.011;0.000;4.1;! +5.780;0.271;5.740;470.3;0.271;0.271;3;7;8;0.012;0.000;4.2;! +5.800;0.278;5.760;471.4;0.278;0.278;3;7;8;0.012;0.000;4.3;! +5.820;0.281;5.780;472.5;0.281;0.281;3;7;8;0.013;0.000;4.4;! +5.840;0.286;5.800;473.5;0.286;0.286;3;7;8;0.013;0.000;4.5;! +5.860;0.293;5.820;474.6;0.293;0.293;3;7;8;0.014;0.000;4.5;! +5.880;0.301;5.840;475.7;0.301;0.301;3;7;8;0.014;0.000;4.7;! +5.900;0.315;5.860;476.8;0.315;0.315;3;7;8;0.017;0.000;5.2;! +5.920;0.330;5.880;477.9;0.330;0.330;3;7;8;0.019;0.000;5.8;! +5.940;0.349;5.900;479.0;0.349;0.349;3;7;8;0.022;0.000;6.3;! +5.960;0.375;5.920;480.1;0.375;0.375;3;7;8;0.024;0.000;6.8;! +5.980;0.384;5.940;481.2;0.384;0.384;3;7;8;0.026;0.000;7.2;! +6.000;0.379;5.960;482.3;0.379;0.379;3;7;8;0.027;0.000;7.5;! +6.020;0.371;5.980;483.5;0.371;0.371;3;7;8;0.028;0.000;7.8;! +6.040;0.359;6.000;484.7;0.359;0.359;3;7;8;0.028;0.000;8.0;! +6.060;0.330;6.020;486.1;0.330;0.330;3;7;8;0.028;0.000;8.2;! +6.080;0.319;6.040;487.5;0.319;0.319;3;7;8;0.028;0.000;8.3;! +6.100;0.298;6.060;488.8;0.298;0.298;3;7;8;0.027;0.000;8.4;! +6.120;0.281;6.080;490.8;0.281;0.281;3;7;8;0.025;0.000;8.5;! +6.140;0.266;6.100;493.9;0.266;0.266;3;7;8;0.024;0.000;8.6;! +6.160;0.250;6.120;497.0;0.250;0.250;3;7;8;0.022;0.000;8.5;! +6.180;0.235;6.140;498.4;0.235;0.235;3;7;8;0.019;0.000;8.5;! +6.200;0.220;6.160;499.6;0.220;0.220;3;7;8;0.017;0.000;7.6;! +6.220;0.205;6.180;500.6;0.205;0.205;3;7;8;0.014;0.000;6.8;! +6.240;0.196;6.200;501.7;0.196;0.196;3;7;8;0.013;0.000;6.2;! +6.260;0.182;6.220;502.8;0.182;0.182;3;7;8;0.011;0.000;5.8;! +6.280;0.176;6.240;503.8;0.176;0.176;3;7;8;0.010;0.000;5.4;! +6.300;0.169;6.260;504.9;0.169;0.169;3;7;8;0.009;0.000;5.1;! +6.320;0.170;6.280;506.1;0.170;0.170;3;7;8;0.009;0.000;4.9;! +6.340;0.169;6.300;507.1;0.169;0.169;3;7;8;0.009;0.000;5.0;! +6.360;0.168;6.320;508.2;0.168;0.168;3;7;8;0.008;0.000;4.7;! +6.380;0.168;6.340;509.3;0.168;0.168;3;7;8;0.007;0.000;4.1;! +6.400;0.169;6.350;510.4;0.169;0.169;3;7;8;0.007;0.000;3.1;! +6.420;0.177;6.370;511.4;0.177;0.177;3;7;8;0.007;0.000;2.7;! +6.440;0.226;6.390;512.6;0.226;0.226;3;7;8;0.008;0.000;2.6;! +6.460;0.347;6.410;513.6;0.347;0.347;3;7;8;0.008;0.000;2.4;! +6.480;0.501;6.430;514.7;0.501;0.501;3;7;8;0.008;0.000;2.3;! +6.500;0.573;6.450;515.8;0.573;0.573;3;7;8;0.007;0.000;1.8;! +6.520;0.511;6.470;517.8;0.511;0.511;3;7;8;0.006;0.000;1.5;! +6.540;0.446;6.490;521.6;0.446;0.446;3;7;8;0.006;0.000;1.4;! +6.560;0.380;6.510;525.3;0.380;0.380;3;7;8;0.006;0.000;1.5;! +6.580;0.313;6.530;527.6;0.313;0.313;3;7;8;0.007;0.000;2.0;! +6.600;0.274;6.550;528.7;0.274;0.274;3;7;8;0.007;0.000;2.3;! +6.620;0.275;6.570;529.7;0.275;0.275;3;7;8;0.006;0.000;2.0;! +6.640;0.284;6.590;530.8;0.284;0.284;3;7;8;0.006;0.000;1.9;! +6.660;0.272;6.610;531.9;0.272;0.272;3;7;8;0.005;0.000;1.9;! +6.680;0.254;6.630;533.0;0.254;0.254;3;7;8;0.005;0.000;1.7;! +6.700;0.251;6.650;534.1;0.251;0.251;3;7;8;0.005;0.000;1.7;! +6.720;0.251;6.670;535.1;0.251;0.251;3;7;8;0.005;0.000;1.8;! +6.740;0.252;6.690;536.2;0.252;0.252;3;7;8;0.004;0.000;1.7;! +6.760;0.253;6.710;537.3;0.253;0.253;3;7;8;0.004;0.000;1.5;! +6.780;0.249;6.730;538.4;0.249;0.249;3;7;8;0.004;0.000;1.6;! +6.800;0.246;6.750;539.4;0.246;0.246;3;7;8;0.004;0.000;1.7;! +6.820;0.247;6.770;540.6;0.247;0.247;3;7;7;0.004;0.000;1.6;! +6.840;0.252;6.790;541.6;0.252;0.252;3;7;7;0.004;0.000;1.6;! +6.860;0.257;6.810;542.7;0.257;0.257;3;7;8;0.004;0.000;1.5;! +6.880;0.250;6.830;543.8;0.250;0.250;3;7;8;0.004;0.000;1.6;! +6.900;0.251;6.850;544.8;0.251;0.251;3;7;8;0.004;0.000;1.7;! +6.920;0.251;6.870;545.9;0.251;0.251;3;7;8;0.004;0.000;1.7;! +6.940;0.262;6.890;547.0;0.262;0.262;3;7;8;0.004;0.000;1.6;! +6.960;0.272;6.910;548.1;0.272;0.272;3;7;8;0.004;0.000;1.5;! +6.980;0.279;6.930;549.2;0.279;0.279;3;7;7;0.005;0.000;1.5;! +7.000;0.304;6.950;550.3;0.304;0.304;3;7;8;0.006;0.000;1.3;! +7.020;0.396;6.970;551.5;0.396;0.396;3;7;8;0.005;0.000;0.9;! +7.040;0.622;6.990;552.7;0.622;0.622;3;7;8;0.007;0.000;0.9;! +7.060;0.909;7.010;553.9;0.909;0.909;3;7;7;0.009;0.000;1.1;! +7.080;1.090;7.030;555.1;1.090;1.090;3;7;8;0.010;0.000;1.2;! +7.100;1.120;7.050;556.4;1.120;1.120;3;7;8;0.012;0.000;1.3;! +7.120;0.997;7.070;558.7;0.997;0.997;3;7;8;0.015;0.000;1.5;! +7.140;0.853;7.090;562.2;0.853;0.853;3;7;8;0.019;0.000;2.0;! +7.160;0.709;7.110;565.6;0.709;0.709;3;7;8;0.018;0.000;2.4;! +7.180;0.565;7.130;569.1;0.565;0.565;3;7;8;0.017;0.000;3.4;! +7.200;0.424;7.150;572.2;0.424;0.424;3;7;8;0.015;0.000;3.5;! +7.220;0.342;7.170;573.2;0.342;0.342;3;7;8;0.013;0.000;3.2;! +7.240;0.315;7.190;574.3;0.315;0.315;3;7;8;0.011;0.000;2.9;! +7.260;0.305;7.210;575.4;0.305;0.305;3;7;8;0.008;0.000;2.1;! +7.280;0.295;7.230;576.5;0.295;0.295;3;7;7;0.005;0.000;1.6;! +7.300;0.287;7.250;577.6;0.287;0.287;3;7;8;0.004;0.000;1.2;! +7.320;0.283;7.270;578.6;0.283;0.283;3;7;8;0.003;0.000;1.1;! +7.340;0.283;7.290;579.7;0.283;0.283;3;7;8;0.003;0.000;1.0;! +7.360;0.277;7.310;580.8;0.277;0.277;3;7;8;0.003;0.000;1.0;! +7.380;0.281;7.330;581.9;0.281;0.281;3;7;8;0.003;0.000;1.1;! +7.400;0.287;7.350;583.0;0.287;0.287;3;7;8;0.003;0.000;1.1;! +7.420;0.287;7.370;584.1;0.287;0.287;3;7;8;0.004;0.000;1.2;! +7.440;0.302;7.390;585.2;0.302;0.302;3;7;8;0.004;0.000;1.2;! +7.460;0.309;7.410;586.2;0.309;0.309;3;7;8;0.004;0.000;1.2;! +7.480;0.311;7.430;587.4;0.311;0.311;3;7;8;0.004;0.000;1.1;! +7.500;0.302;7.450;588.5;0.302;0.302;3;7;8;0.003;0.000;1.1;! +7.520;0.297;7.470;589.7;0.297;0.297;3;7;7;0.003;0.000;1.1;! +7.540;0.295;7.490;591.8;0.295;0.295;3;7;7;0.004;0.000;1.2;! +7.560;0.299;7.500;596.3;0.299;0.299;3;7;7;0.004;0.000;1.2;! +7.580;0.304;7.520;600.8;0.304;0.304;3;7;7;0.004;0.000;1.2;! +7.600;0.309;7.540;603.9;0.309;0.309;3;7;7;0.004;0.000;1.3;! +7.620;0.313;7.560;605.0;0.313;0.313;3;7;7;0.004;0.000;1.4;! +7.640;0.315;7.580;606.1;0.315;0.315;3;7;8;0.005;0.000;1.4;! +7.660;0.311;7.600;607.2;0.311;0.311;3;7;7;0.005;0.000;1.5;! +7.680;0.312;7.620;608.3;0.312;0.312;3;7;8;0.005;0.000;1.6;! +7.700;0.312;7.640;609.4;0.312;0.312;3;7;8;0.005;0.000;1.6;! +7.720;0.311;7.660;610.4;0.311;0.311;3;7;7;0.005;0.000;1.6;! +7.740;0.314;7.680;611.6;0.314;0.314;3;7;7;0.005;0.000;1.6;! +7.760;0.314;7.700;612.6;0.314;0.314;3;7;8;0.005;0.000;1.6;! +7.780;0.312;7.720;613.7;0.312;0.312;3;7;7;0.005;0.000;1.7;! +7.800;0.309;7.740;614.9;0.309;0.309;3;7;7;0.006;0.000;1.8;! +7.820;0.315;7.760;616.1;0.315;0.315;3;7;7;0.006;0.000;1.8;! +7.840;0.314;7.780;617.3;0.314;0.314;3;7;8;0.006;0.000;1.7;! +7.860;0.328;7.800;618.4;0.328;0.328;3;7;7;0.005;0.000;1.7;! +7.880;0.338;7.820;619.6;0.338;0.338;3;7;7;0.005;0.000;1.5;! +7.900;0.327;7.840;620.7;0.327;0.327;3;7;7;0.005;0.000;1.4;! +7.920;0.326;7.860;621.9;0.326;0.326;3;7;7;0.005;0.000;1.5;! +7.940;0.325;7.880;623.0;0.325;0.325;3;7;8;0.005;0.000;1.6;! +7.960;0.341;7.900;624.1;0.341;0.341;3;7;7;0.006;0.000;1.6;! +7.980;0.351;7.920;625.3;0.351;0.351;3;7;7;0.005;0.000;1.4;! +8.000;0.364;7.940;626.4;0.364;0.364;3;7;7;0.005;0.000;1.4;! +8.020;0.360;7.960;627.5;0.360;0.360;3;7;7;0.005;0.000;1.5;! +8.040;0.346;7.980;628.6;0.346;0.346;3;7;7;0.006;0.000;1.6;! +8.060;0.356;8.000;629.8;0.356;0.356;3;7;7;0.006;0.000;1.6;! +8.080;0.360;8.020;630.9;0.360;0.360;3;7;7;0.006;0.000;1.6;! +8.100;0.359;8.040;632.0;0.359;0.359;3;7;8;0.006;0.000;1.6;! +8.120;0.358;8.060;634.9;0.358;0.358;3;7;7;0.006;0.000;1.6;! +8.140;0.357;8.080;637.7;0.357;0.357;3;7;7;0.006;0.000;1.7;! +8.160;0.357;8.100;640.2;0.357;0.357;3;7;7;0.006;0.000;1.7;! +8.180;0.357;8.120;641.3;0.357;0.357;3;7;7;0.006;0.000;1.7;! +8.200;0.360;8.140;642.4;0.360;0.360;3;7;7;0.006;0.000;1.7;! +8.220;0.361;8.160;643.4;0.361;0.361;3;7;7;0.007;0.000;1.8;! +8.240;0.365;8.180;644.6;0.365;0.365;3;7;7;0.006;0.000;1.7;! +8.260;0.359;8.200;645.7;0.359;0.359;3;7;7;0.006;0.000;1.7;! +8.280;0.362;8.220;646.8;0.362;0.362;3;7;7;0.007;0.000;1.8;! +8.300;0.362;8.240;647.9;0.362;0.362;3;7;7;0.007;0.000;1.8;! +8.320;0.369;8.260;649.1;0.369;0.369;3;7;7;0.006;0.000;1.7;! +8.340;0.366;8.280;650.3;0.366;0.366;3;7;7;0.006;0.000;1.7;! +8.360;0.366;8.300;651.5;0.366;0.366;3;7;7;0.007;0.000;1.8;! +8.380;0.364;8.320;652.7;0.364;0.364;3;7;7;0.007;0.000;1.8;! +8.400;0.370;8.340;653.9;0.370;0.370;3;7;7;0.008;0.000;2.0;! +8.420;0.385;8.360;655.0;0.385;0.385;3;7;7;0.008;0.000;2.0;! +8.440;0.393;8.380;656.1;0.393;0.393;3;7;7;0.008;0.000;2.1;! +8.460;0.401;8.400;657.2;0.401;0.401;3;7;7;0.009;0.000;2.3;! +8.480;0.402;8.420;658.2;0.402;0.402;3;7;7;0.010;0.000;2.4;! +8.500;0.405;8.440;659.3;0.405;0.405;3;7;7;0.010;0.000;2.4;! +8.520;0.407;8.460;661.3;0.407;0.407;3;7;7;0.010;0.000;2.4;! +8.540;0.415;8.480;665.0;0.415;0.415;3;7;7;0.010;0.000;2.4;! +8.560;0.423;8.500;668.7;0.423;0.423;3;7;7;0.011;0.000;2.6;! +8.580;0.431;8.520;671.1;0.431;0.431;3;7;7;0.012;0.000;2.6;! +8.600;0.444;8.540;672.2;0.444;0.444;3;7;7;0.013;0.000;2.7;! +8.620;0.462;8.560;673.4;0.462;0.462;3;7;7;0.014;0.000;2.9;! +8.640;0.477;8.580;674.6;0.477;0.477;3;7;7;0.015;0.000;3.1;! +8.660;0.490;8.600;675.8;0.490;0.490;3;7;7;0.016;0.000;3.3;! +8.680;0.500;8.620;677.1;0.500;0.500;3;7;7;0.017;0.000;3.5;! +8.700;0.508;8.640;678.2;0.508;0.508;3;7;8;0.018;0.000;3.6;! +8.720;0.511;8.650;679.4;0.511;0.511;3;7;7;0.019;0.000;3.7;! +8.740;0.514;8.670;680.7;0.514;0.514;3;7;7;0.019;0.000;3.7;! +8.760;0.523;8.690;681.9;0.523;0.523;3;7;7;0.020;0.000;3.8;! +8.780;0.528;8.710;683.1;0.528;0.528;3;7;7;0.020;0.000;3.8;! +8.800;0.526;8.730;684.3;0.526;0.526;3;7;7;0.020;0.000;3.7;! +8.820;0.542;8.750;685.4;0.542;0.542;3;7;7;0.021;0.000;3.8;! +8.840;0.545;8.770;686.4;0.545;0.545;3;7;7;0.021;0.000;3.8;! +8.860;0.555;8.790;687.6;0.555;0.555;3;7;7;0.022;0.000;3.8;! +8.880;0.576;8.810;688.6;0.576;0.576;3;7;8;0.024;0.000;4.0;! +8.900;0.609;8.830;689.7;0.609;0.609;3;7;7;0.026;0.000;4.3;! +8.920;0.644;8.850;690.8;0.644;0.644;3;7;7;0.027;0.000;4.4;! +8.940;0.648;8.870;691.9;0.648;0.648;3;7;7;0.028;0.000;4.5;! +8.960;0.643;8.890;693.1;0.643;0.643;3;7;7;0.028;0.000;4.4;! +8.980;0.637;8.910;694.1;0.637;0.637;3;7;7;0.026;0.000;4.2;! +9.000;0.625;8.930;695.2;0.625;0.625;3;7;7;0.029;0.000;4.7;! +9.020;0.595;8.950;696.3;0.595;0.595;3;7;7;0.029;0.000;4.8;! +9.040;0.560;8.970;697.4;0.560;0.560;3;7;7;0.026;0.000;4.5;! +9.060;0.553;8.990;698.6;0.553;0.553;3;7;7;0.024;0.000;4.3;! +9.080;0.520;9.010;700.0;0.520;0.520;3;7;7;0.023;0.000;4.2;! +9.100;0.479;9.030;701.3;0.479;0.479;3;7;7;0.021;0.000;4.0;! +9.120;0.466;9.050;702.6;0.466;0.466;3;7;7;0.019;0.000;3.7;! +9.140;0.461;9.070;705.0;0.461;0.461;3;7;7;0.016;0.000;3.2;! +9.160;0.459;9.090;708.0;0.459;0.459;3;7;7;0.013;0.000;2.8;! +9.180;0.456;9.110;711.0;0.456;0.456;3;7;7;0.012;0.000;2.5;! +9.200;0.448;9.130;712.1;0.448;0.448;3;7;7;0.011;0.000;2.4;! +9.220;0.445;9.150;713.2;0.445;0.445;3;7;7;0.010;0.000;2.3;! +9.240;0.444;9.170;714.2;0.444;0.444;3;7;7;0.010;0.000;2.2;! +9.260;0.441;9.190;715.3;0.441;0.441;3;7;7;0.010;0.000;2.1;! +9.280;0.440;9.210;716.4;0.440;0.440;3;7;7;0.009;0.000;2.0;! +9.300;0.434;9.230;717.4;0.434;0.434;3;7;7;0.009;0.000;2.0;! +9.320;0.421;9.250;718.6;0.421;0.421;4;7;7;0.008;0.000;1.8;! +9.340;0.421;9.270;719.6;0.421;0.421;4;7;8;0.008;0.000;1.7;! +9.360;0.416;9.290;720.7;0.416;0.416;3;7;7;0.007;0.000;1.6;! +9.380;0.408;9.310;721.8;0.408;0.408;3;7;7;0.007;0.000;1.5;! +9.400;0.410;9.330;722.9;0.410;0.410;3;7;7;0.007;0.000;1.6;! +9.420;0.413;9.350;724.0;0.413;0.413;3;7;7;0.007;0.000;1.6;! +9.440;0.413;9.370;725.1;0.413;0.413;3;7;8;0.007;0.000;1.5;! +9.460;0.420;9.390;726.2;0.420;0.420;3;7;7;0.007;0.000;1.6;! +9.480;0.433;9.410;727.2;0.433;0.433;3;7;7;0.007;0.000;1.6;! +9.500;0.438;9.430;728.3;0.438;0.438;3;7;7;0.007;0.000;1.7;! +9.520;0.438;9.450;729.4;0.438;0.438;3;7;7;0.007;0.000;1.7;! +9.540;0.435;9.470;731.8;0.435;0.435;3;7;7;0.008;0.000;1.7;! +9.560;0.440;9.490;735.6;0.440;0.440;3;7;7;0.008;0.000;1.8;! +9.580;0.444;9.510;739.5;0.444;0.444;4;7;8;0.009;0.000;1.9;! +9.600;0.465;9.530;741.3;0.465;0.465;3;7;7;0.009;0.000;1.8;! +9.620;0.488;9.550;742.3;0.488;0.488;3;7;7;0.008;0.000;1.7;! +9.640;0.495;9.570;743.4;0.495;0.495;3;7;7;0.009;0.000;1.8;! +9.660;0.475;9.590;744.6;0.475;0.475;4;7;7;0.009;0.000;1.8;! +9.680;0.449;9.610;745.7;0.449;0.449;4;7;7;0.009;0.000;1.8;! +9.700;0.446;9.630;746.8;0.446;0.446;3;7;7;0.009;0.000;1.8;! +9.720;0.439;9.650;747.9;0.439;0.439;4;7;7;0.008;0.000;1.7;! +9.740;0.429;9.670;749.0;0.429;0.429;4;7;8;0.007;0.000;1.6;! +9.760;0.431;9.690;750.1;0.431;0.431;4;7;7;0.007;0.000;1.6;! +9.780;0.433;9.710;751.2;0.433;0.433;4;7;7;0.007;0.000;1.7;! +9.800;0.428;9.730;752.2;0.428;0.428;4;7;7;0.007;0.000;1.6;! +9.820;0.423;9.750;753.3;0.423;0.423;4;7;7;0.007;0.000;1.7;! +9.840;0.429;9.770;754.4;0.429;0.429;4;7;7;0.008;0.000;1.7;! +9.860;0.438;9.790;755.4;0.438;0.438;4;7;7;0.008;0.000;1.7;! +9.880;0.442;9.810;756.5;0.442;0.442;4;7;7;0.008;0.000;1.8;! +9.900;0.454;9.820;757.6;0.454;0.454;4;7;7;0.009;0.000;1.8;! +9.920;0.472;9.840;758.7;0.472;0.472;3;7;7;0.009;0.000;1.9;! +9.940;0.487;9.860;759.8;0.487;0.487;3;7;7;0.009;0.000;1.8;! +9.960;0.486;9.880;760.9;0.486;0.486;4;7;7;0.009;0.000;1.8;! +9.980;0.478;9.900;761.9;0.478;0.478;4;7;7;0.009;0.000;1.8;! +10.000;0.455;9.920;763.0;0.455;0.455;4;7;7;0.009;0.000;1.8;! +10.020;0.447;9.940;764.1;0.447;0.447;4;7;7;0.009;0.000;1.8;! +10.040;0.441;9.960;765.2;0.441;0.441;4;7;7;0.008;0.000;1.7;! +10.060;0.438;9.980;766.3;0.438;0.438;4;7;7;0.007;0.000;1.6;! +10.080;0.433;10.000;767.3;0.433;0.433;4;7;7;0.008;0.000;1.7;! +10.100;0.428;10.020;768.4;0.428;0.428;4;7;7;0.008;0.000;1.8;! +10.120;0.431;10.040;769.5;0.431;0.431;4;7;8;0.008;0.000;1.8;! +10.140;0.435;10.060;770.6;0.435;0.435;4;7;7;0.008;0.000;1.8;! +10.160;0.439;10.080;772.7;0.439;0.439;4;7;7;0.008;0.000;1.8;! +10.180;0.444;10.100;775.6;0.444;0.444;4;7;7;0.008;0.000;1.7;! +10.200;0.449;10.120;778.5;0.449;0.449;4;7;7;0.008;0.000;1.6;! +10.220;0.451;10.140;779.6;0.451;0.451;4;7;7;0.009;0.000;1.9;! +10.240;0.464;10.160;780.7;0.464;0.464;4;7;8;0.009;0.000;1.9;! +10.260;0.488;10.180;781.8;0.488;0.488;4;7;7;0.009;0.000;1.8;! +10.280;0.514;10.200;782.9;0.514;0.514;4;7;7;0.010;0.000;1.9;! +10.300;0.501;10.220;784.0;0.501;0.501;4;7;7;0.010;0.000;1.9;! +10.320;0.513;10.240;785.1;0.513;0.513;4;7;7;0.012;0.000;2.2;! +10.340;0.520;10.260;786.2;0.520;0.520;4;7;7;0.012;0.000;2.3;! +10.360;0.536;10.280;787.3;0.536;0.536;4;7;7;0.014;0.000;2.5;! +10.380;0.569;10.300;788.4;0.569;0.569;4;7;7;0.015;0.000;2.6;! +10.400;0.585;10.320;789.5;0.585;0.585;4;7;7;0.016;0.000;2.7;! +10.420;0.599;10.340;790.6;0.599;0.599;4;7;7;0.015;0.000;2.6;! +10.440;0.575;10.360;791.9;0.575;0.575;4;7;7;0.014;0.000;2.5;! +10.460;0.548;10.380;793.0;0.548;0.548;4;7;7;0.014;0.000;2.5;! +10.480;0.531;10.400;794.1;0.531;0.531;4;7;8;0.014;0.000;2.6;! +10.500;0.504;10.420;795.2;0.504;0.504;4;7;7;0.014;0.000;2.5;! +10.520;0.499;10.440;796.3;0.499;0.499;4;7;7;0.012;0.000;2.1;! +10.540;0.507;10.460;799.0;0.507;0.507;4;7;7;0.010;0.000;1.9;! +10.560;0.522;10.480;802.4;0.522;0.522;4;7;7;0.011;0.000;2.0;! +10.580;0.537;10.500;805.8;0.537;0.537;4;7;7;0.011;0.000;1.9;! +10.600;0.558;10.520;807.3;0.558;0.558;4;7;7;0.011;0.000;1.6;! +10.620;0.601;10.540;808.4;0.601;0.601;4;7;7;0.010;0.000;1.4;! +10.640;0.684;10.560;809.5;0.684;0.684;4;7;7;0.017;0.000;2.2;! +10.660;0.816;10.580;810.6;0.816;0.816;4;7;7;0.016;0.000;2.0;! +10.680;0.987;10.600;811.7;0.987;0.987;4;7;7;0.019;0.000;2.2;! +10.700;1.068;10.620;812.8;1.068;1.068;4;7;7;0.019;0.000;2.1;! +10.720;1.014;10.640;813.8;1.014;1.014;4;7;7;0.021;0.000;2.2;! +10.740;1.076;10.660;814.9;1.076;1.076;4;7;7;0.028;0.000;2.8;! +10.760;1.033;10.680;816.0;1.033;1.033;4;7;7;0.027;0.000;2.8;! +10.780;0.934;10.700;817.1;0.934;0.934;4;7;7;0.025;0.000;2.6;! +10.800;0.835;10.720;818.2;0.835;0.835;4;7;7;0.020;0.000;2.0;! +10.820;0.738;10.740;819.2;0.738;0.738;4;7;8;0.020;0.000;1.9;! +10.840;0.908;10.760;820.3;0.908;0.908;4;7;8;0.018;0.000;1.6;! +10.860;1.238;10.780;821.4;1.238;1.238;4;7;8;0.018;0.000;1.5;! +10.880;1.512;10.800;822.5;1.512;1.512;4;7;8;0.017;0.000;1.3;! +10.900;1.548;10.820;823.6;1.548;1.548;4;7;7;0.019;0.000;1.4;! +10.920;1.461;10.840;824.7;1.461;1.461;4;7;7;0.022;0.000;1.5;! +10.940;1.396;10.860;825.8;1.396;1.396;4;7;8;0.023;0.000;1.6;! +10.960;1.396;10.880;826.8;1.396;1.396;4;7;8;0.024;0.000;1.7;! +10.980;1.354;10.900;827.9;1.354;1.354;4;7;8;0.025;0.000;1.8;! +11.000;1.271;10.920;829.0;1.271;1.271;4;7;7;0.025;0.000;2.0;! +11.020;1.184;10.940;830.1;1.184;1.184;4;7;8;0.025;0.000;2.1;! +11.040;1.102;10.960;831.2;1.102;1.102;4;7;8;0.025;0.000;2.2;! +11.060;0.989;10.980;832.3;0.989;0.989;4;7;8;0.022;0.000;2.1;! +11.080;0.866;10.990;833.5;0.866;0.866;4;7;8;0.019;0.000;1.9;! +11.100;0.804;11.010;834.7;0.804;0.804;4;7;8;0.017;0.000;1.7;! +11.120;0.886;11.030;835.9;0.886;0.886;4;7;8;0.018;0.000;1.9;! +11.140;0.943;11.050;839.0;0.943;0.943;4;7;8;0.019;0.000;2.0;! +11.160;0.988;11.070;842.3;0.988;0.988;4;7;8;0.019;0.000;2.0;! +11.180;1.032;11.090;845.7;1.032;1.032;4;7;8;0.019;0.000;2.1;! +11.200;0.968;11.110;846.9;0.968;0.968;4;7;8;0.019;0.000;2.0;! +11.220;0.917;11.130;848.0;0.917;0.917;4;7;8;0.020;0.000;2.1;! +11.240;0.901;11.150;849.1;0.901;0.901;4;7;8;0.019;0.000;2.1;! +11.260;0.929;11.170;850.2;0.929;0.929;4;7;8;0.020;0.000;2.2;! +11.280;0.940;11.190;851.3;0.940;0.940;4;7;8;0.019;0.000;2.2;! +11.300;0.831;11.210;852.6;0.831;0.831;4;7;8;0.017;0.000;2.1;! +11.320;0.700;11.230;854.0;0.700;0.700;4;7;8;0.015;0.000;2.0;! +11.340;0.619;11.250;855.3;0.619;0.619;4;7;8;0.015;0.000;2.0;! +11.360;0.572;11.270;856.4;0.572;0.572;4;7;7;0.013;0.000;1.8;! +11.380;0.551;11.290;857.6;0.551;0.551;4;7;8;0.013;0.000;1.9;! +11.400;0.596;11.310;858.8;0.596;0.596;4;7;8;0.013;0.000;1.9;! +11.420;0.697;11.330;860.0;0.697;0.697;4;7;8;0.013;0.000;1.8;! +11.440;0.813;11.350;861.2;0.813;0.813;4;7;8;0.013;0.000;1.8;! +11.460;0.828;11.370;862.4;0.828;0.828;4;7;8;0.014;0.000;1.9;! +11.480;0.700;11.390;863.6;0.700;0.700;4;7;8;0.014;0.000;2.0;! +11.500;0.595;11.410;864.6;0.595;0.595;4;7;8;0.015;0.000;2.1;! +11.520;0.565;11.430;866.3;0.565;0.565;4;7;8;0.017;0.000;2.4;! +11.540;0.594;11.450;870.0;0.594;0.594;4;7;8;0.015;0.000;2.3;! +11.560;0.623;11.470;873.8;0.623;0.623;4;7;8;0.012;0.000;2.0;! +11.580;0.628;11.490;876.4;0.628;0.628;4;7;8;0.010;0.000;1.7;! +11.600;0.580;11.510;877.5;0.580;0.580;4;7;8;0.009;0.000;1.5;! +11.620;0.538;11.530;878.6;0.538;0.538;4;7;8;0.009;0.000;1.6;! +11.640;0.515;11.550;879.7;0.515;0.515;4;7;8;0.010;0.000;1.7;! +11.660;0.520;11.570;880.7;0.520;0.520;4;7;8;0.009;0.000;1.7;! +11.680;0.540;11.590;881.8;0.540;0.540;4;7;8;0.009;0.000;1.6;! +11.700;0.553;11.610;882.9;0.553;0.553;4;7;8;0.008;0.000;1.4;! +11.720;0.534;11.630;884.0;0.534;0.534;4;7;8;0.008;0.000;1.4;! +11.740;0.536;11.650;885.1;0.536;0.536;4;7;8;0.010;0.000;1.8;! +11.760;0.549;11.670;886.1;0.549;0.549;4;7;8;0.011;0.000;1.9;! +11.780;0.551;11.690;887.2;0.551;0.551;4;7;8;0.010;0.000;1.8;! +11.800;0.566;11.710;888.3;0.566;0.566;4;7;8;0.011;0.000;1.9;! +11.820;0.580;11.730;889.6;0.580;0.580;4;7;8;0.014;0.000;2.1;! +11.840;0.651;11.750;890.9;0.651;0.651;4;7;8;0.014;0.000;2.0;! +11.860;0.753;11.770;892.1;0.753;0.753;4;7;8;0.014;0.000;1.9;! +11.880;0.834;11.790;893.2;0.834;0.834;4;7;8;0.014;0.000;2.0;! +11.900;0.860;11.810;894.3;0.860;0.860;4;7;8;0.014;0.000;1.9;! +11.920;0.809;11.830;895.5;0.809;0.809;4;7;8;0.014;0.000;2.0;! +11.940;0.657;11.850;896.7;0.657;0.657;4;7;8;0.015;0.000;2.1;! +11.960;0.575;11.870;897.8;0.575;0.575;4;7;8;0.016;0.000;2.2;! +11.980;0.556;11.890;898.9;0.556;0.556;4;7;8;0.015;0.000;2.2;! +12.000;0.576;11.910;899.9;0.576;0.576;4;7;8;0.015;0.000;2.2;! +12.020;0.638;11.930;901.0;0.638;0.638;4;7;8;0.014;0.000;2.1;! +12.040;0.708;11.950;902.1;0.708;0.708;4;7;8;0.013;0.000;1.9;! +12.060;0.758;11.970;903.2;0.758;0.758;4;7;8;0.012;0.000;1.8;! +12.080;0.733;11.990;904.3;0.733;0.733;4;7;8;0.013;0.000;1.9;! +12.100;0.660;12.010;905.3;0.660;0.660;4;7;8;0.014;0.000;2.0;! +12.120;0.657;12.030;906.5;0.657;0.657;4;7;8;0.016;0.000;2.2;! +12.140;0.691;12.050;907.8;0.691;0.691;4;7;8;0.020;0.000;2.7;! +12.160;0.762;12.070;910.6;0.762;0.762;4;7;8;0.020;0.000;2.7;! +12.180;0.833;12.090;913.3;0.833;0.833;4;7;8;0.018;0.000;2.5;! +12.200;0.845;12.110;915.4;0.845;0.845;4;7;8;0.017;0.000;2.3;! +12.220;0.722;12.120;916.5;0.722;0.722;4;7;8;0.018;0.000;2.3;! +12.240;0.715;12.140;917.6;0.715;0.715;4;7;8;0.018;0.000;2.2;! +12.260;0.753;12.160;918.7;0.753;0.753;4;7;8;0.020;0.000;2.5;! +12.280;0.793;12.180;919.8;0.793;0.793;4;7;8;0.019;0.000;2.4;! +12.300;0.843;12.200;920.8;0.843;0.843;4;7;8;0.022;0.000;2.7;! +12.320;0.904;12.220;921.9;0.904;0.904;4;7;8;0.022;0.000;2.6;! +12.340;0.887;12.240;923.0;0.887;0.887;4;7;8;0.021;0.000;2.3;! +12.360;0.862;12.260;924.1;0.862;0.862;4;7;8;0.026;0.000;2.5;! +12.380;0.943;12.280;925.2;0.943;0.943;4;7;8;0.026;0.000;2.2;! +12.400;1.276;12.300;926.3;1.276;1.276;4;7;8;0.025;0.000;1.9;! +12.420;1.618;12.320;927.3;1.618;1.618;4;7;8;0.025;0.000;1.6;! +12.440;1.736;12.340;928.4;1.736;1.736;4;7;8;0.023;0.000;1.3;! +12.460;1.965;12.360;929.5;1.965;1.965;4;7;8;0.024;0.000;1.2;! +12.480;2.338;12.380;930.6;2.338;2.338;4;7;8;0.024;0.000;1.1;! +12.500;2.616;12.400;931.7;2.616;2.616;4;7;8;0.026;0.000;1.1;! +12.520;2.731;12.420;932.7;2.731;2.731;4;7;8;0.026;0.000;1.0;! +12.540;2.753;12.440;935.8;2.753;2.753;4;7;8;0.028;0.000;1.0;! +12.560;2.767;12.460;939.5;2.767;2.767;4;7;8;0.030;0.000;1.0;! +12.580;2.790;12.480;943.1;2.790;2.790;4;7;8;0.031;0.000;1.0;! +12.600;2.943;12.500;944.2;2.943;2.943;4;7;8;0.033;0.000;1.1;! +12.620;2.975;12.520;945.2;2.975;2.975;4;7;8;0.033;0.000;1.1;! +12.640;2.958;12.540;946.3;2.958;2.958;4;7;8;0.034;0.000;1.1;! +12.660;2.985;12.560;947.4;2.985;2.985;4;7;8;0.038;0.000;1.3;! +12.680;2.952;12.580;948.5;2.952;2.952;4;7;8;0.044;0.000;1.5;! +12.700;2.748;12.600;949.6;2.748;2.748;4;7;8;0.053;0.000;1.9;! +12.720;2.541;12.620;950.6;2.541;2.541;4;7;8;0.053;0.000;1.8;! +12.740;2.463;12.640;951.7;2.463;2.463;4;7;8;0.049;0.000;1.6;! +12.760;2.674;12.660;952.8;2.674;2.674;4;7;8;0.053;0.000;1.7;! +12.780;3.078;12.680;953.9;3.078;3.078;4;7;8;0.051;0.000;1.5;! +12.800;3.570;12.700;955.1;3.570;3.570;4;7;8;0.049;0.000;1.4;! +12.820;3.966;12.720;956.3;3.966;3.966;4;7;8;0.047;0.000;1.2;! +12.840;4.158;12.740;957.5;4.158;4.158;4;7;8;0.046;0.000;1.1;! +12.860;4.297;12.760;958.6;4.297;4.297;4;7;8;0.042;0.000;1.0;! +12.880;4.272;12.780;959.7;4.272;4.272;4;7;8;0.046;0.000;1.1;! +12.900;4.184;12.800;960.8;4.184;4.184;4;7;8;0.049;0.000;1.2;! +12.920;4.079;12.820;961.9;4.079;4.079;4;7;8;0.050;0.000;1.2;! +12.940;3.953;12.840;963.0;3.953;3.953;4;7;8;0.052;0.000;1.3;! +12.960;3.736;12.860;964.1;3.736;3.736;4;7;8;0.055;0.000;1.4;! +12.980;3.546;12.880;965.2;3.546;3.546;4;7;8;0.062;0.000;1.4;! +13.000;3.583;12.900;966.2;3.583;3.583;4;7;8;0.059;0.000;1.2;! +13.020;4.144;12.920;967.3;4.144;4.144;4;7;8;0.062;0.000;1.2;! +13.040;5.672;12.940;968.4;5.672;5.672;4;7;8;0.061;0.000;1.0;! +13.060;7.018;12.960;969.6;7.018;7.018;4;7;8;0.062;0.000;1.0;! +13.080;7.888;12.980;970.7;7.888;7.888;4;7;8;0.063;0.000;0.9;! +13.100;8.346;13.000;971.8;8.346;8.346;4;7;8;0.065;0.000;0.9;! +13.120;8.580;13.020;972.9;8.580;8.580;4;7;8;0.066;0.000;0.8;! +13.140;8.590;13.040;974.9;8.590;8.590;4;7;8;0.062;0.000;0.7;! +13.160;8.538;13.060;977.9;8.538;8.538;4;7;8;0.065;0.000;0.7;! +13.180;8.485;13.080;980.9;8.485;8.485;4;7;8;0.064;0.000;0.7;! +13.200;8.674;13.100;982.0;8.674;8.674;4;7;8;0.064;0.000;0.7;! +13.220;8.989;13.120;983.1;8.989;8.989;4;7;8;0.066;0.000;0.7;! +13.240;9.384;13.140;984.2;9.384;9.384;4;7;8;0.071;0.000;0.7;! +13.260;9.825;13.160;985.3;9.825;9.825;4;7;8;0.076;0.000;0.7;! +13.280;10.135;13.180;986.3;10.135;10.135;4;7;8;0.080;0.000;0.8;! +13.300;10.249;13.200;987.4;10.249;10.249;4;7;8;0.083;0.000;0.8;! +13.320;10.242;13.220;988.5;10.242;10.242;4;7;8;0.085;0.000;0.8;! +13.340;10.183;13.240;989.6;10.183;10.183;4;7;8;0.087;0.000;0.8;! +13.360;10.050;13.250;990.9;10.050;10.050;4;7;8;0.087;0.000;0.8;! +13.380;10.005;13.270;992.1;10.005;10.005;4;7;8;0.088;0.000;0.8;! +13.400;10.030;13.290;993.1;10.030;10.030;4;7;8;0.089;0.000;0.8;! +13.420;10.288;13.310;994.2;10.288;10.288;4;7;8;0.089;0.000;0.8;! +13.440;10.732;13.330;995.4;10.732;10.732;4;7;8;0.090;0.000;0.8;! +13.460;11.028;13.350;996.5;11.028;11.028;4;7;8;0.090;0.000;0.8;! +13.480;11.093;13.370;997.7;11.093;11.093;4;7;8;0.090;0.000;0.8;! +13.500;11.062;13.390;998.9;11.062;11.062;4;7;8;0.090;0.000;0.8;! +13.520;10.849;13.410;1000.2;10.849;10.849;4;7;8;0.091;0.000;0.8;! +13.540;10.451;13.430;1001.8;10.451;10.451;4;7;8;0.092;0.000;0.8;! +13.560;9.937;13.450;1005.2;9.937;9.937;4;7;8;0.091;0.000;0.8;! +13.580;9.424;13.470;1008.6;9.424;9.424;4;7;8;0.091;0.000;0.9;! +13.600;8.963;13.490;1011.7;8.963;8.963;4;7;8;0.094;0.000;0.9;! +13.620;8.911;13.510;1012.7;8.911;8.911;4;7;8;0.096;0.000;0.9;! +13.640;9.244;13.530;1013.8;9.244;9.244;4;7;8;0.094;0.000;0.9;! +13.660;10.033;13.550;1014.9;10.033;10.033;4;7;8;0.094;0.000;0.8;! +13.680;11.043;13.570;1016.0;11.043;11.043;4;7;8;0.098;0.000;0.9;! +13.700;12.116;13.590;1017.1;12.116;12.116;4;7;8;0.098;0.000;0.8;! +13.720;12.722;13.610;1018.2;12.722;12.722;4;7;8;0.098;0.000;0.8;! +13.740;12.730;13.630;1019.2;12.730;12.730;4;7;8;0.097;0.000;0.8;! +13.760;12.552;13.650;1020.3;12.552;12.552;4;7;8;0.098;0.000;0.7;! +13.780;12.469;13.670;1021.4;12.469;12.469;4;7;8;0.099;0.000;0.7;! +13.800;12.446;13.690;1022.5;12.446;12.446;4;7;8;0.100;0.000;0.8;! +13.820;12.465;13.710;1023.6;12.465;12.465;4;7;8;0.099;0.000;0.7;! +13.840;12.517;13.730;1024.7;12.517;12.517;4;7;8;0.097;0.000;0.7;! +13.860;12.619;13.750;1025.7;12.619;12.619;4;7;8;0.098;0.000;0.7;! +13.880;12.733;13.770;1026.8;12.733;12.733;4;7;8;0.099;0.000;0.7;! +13.900;12.881;13.790;1027.9;12.881;12.881;4;7;8;0.100;0.000;0.7;! +13.920;13.081;13.810;1028.9;13.081;13.081;4;7;8;0.101;0.000;0.7;! +13.940;13.278;13.830;1030.1;13.278;13.278;4;7;8;0.102;0.000;0.7;! +13.960;13.395;13.850;1031.3;13.395;13.395;4;7;8;0.103;0.000;0.7;! +13.980;13.389;13.870;1032.4;13.389;13.389;4;7;8;0.105;0.000;0.8;! +14.000;13.248;13.890;1033.5;13.248;13.248;4;7;8;0.107;0.000;0.8;! +14.020;12.914;13.910;1034.6;12.914;12.914;4;7;8;0.109;0.000;0.8;! +14.040;12.466;13.930;1035.7;12.466;12.466;4;7;8;0.109;0.000;0.8;! +14.060;12.067;13.950;1036.7;12.067;12.067;4;7;8;0.109;0.000;0.8;! +14.080;11.773;13.970;1037.8;11.773;11.773;4;6;8;0.104;0.000;0.8;! +14.100;11.614;13.990;1038.8;11.614;11.614;4;7;8;0.098;0.000;0.8;! +14.120;11.552;14.010;1039.9;11.552;11.552;4;6;8;0.096;0.000;0.8;! +14.140;11.542;14.030;1041.0;11.542;11.542;4;6;8;0.094;0.000;0.8;! +14.160;11.597;14.050;1043.4;11.597;11.597;4;6;8;0.095;0.000;0.8;! +14.180;11.653;14.070;1046.9;11.653;11.653;4;6;8;0.094;0.000;0.8;! +14.200;11.736;14.090;1049.8;11.736;11.736;4;6;8;0.095;0.000;0.8;! +14.220;11.734;14.110;1050.9;11.734;11.734;4;7;8;0.096;0.000;0.8;! +14.240;11.524;14.130;1052.1;11.524;11.524;4;6;8;0.096;0.000;0.8;! +14.260;11.331;14.150;1053.2;11.331;11.331;4;7;8;0.097;0.000;0.8;! +14.280;11.087;14.170;1054.3;11.087;11.087;4;7;8;0.097;0.000;0.8;! +14.300;10.841;14.190;1055.4;10.841;10.841;4;7;8;0.097;0.000;0.8;! +14.320;10.644;14.210;1056.5;10.644;10.644;4;6;8;0.095;0.000;0.8;! +14.340;10.520;14.230;1057.6;10.520;10.520;4;6;8;0.095;0.000;0.9;! +14.360;10.360;14.250;1058.7;10.360;10.360;4;7;8;0.094;0.000;0.9;! +14.380;10.072;14.270;1059.9;10.072;10.072;4;7;8;0.092;0.000;0.9;! +14.400;9.883;14.290;1060.9;9.883;9.883;4;6;8;0.090;0.000;0.9;! +14.420;9.647;14.310;1062.1;9.647;9.647;4;7;8;0.089;0.000;0.8;! +14.440;9.545;14.330;1063.1;9.545;9.545;4;6;8;0.090;0.000;0.9;! +14.460;9.666;14.350;1064.2;9.666;9.666;4;6;8;0.088;0.000;0.8;! +14.480;9.963;14.370;1065.3;9.963;9.963;4;6;8;0.086;0.000;0.8;! +14.500;10.158;14.380;1066.4;10.158;10.158;4;6;8;0.084;0.000;0.8;! +14.520;10.042;14.400;1067.5;10.042;10.042;4;6;8;0.084;0.000;0.8;! +14.540;9.773;14.420;1068.6;9.773;9.773;4;6;8;0.084;0.000;0.8;! +14.560;9.414;14.440;1071.6;9.414;9.414;4;7;8;0.083;0.000;0.8;! +14.580;9.069;14.460;1075.5;9.069;9.069;4;6;8;0.083;0.000;0.9;! +14.600;8.761;14.480;1078.8;8.761;8.761;4;6;8;0.082;0.000;0.9;! +14.620;8.473;14.500;1079.9;8.473;8.473;4;6;8;0.082;0.000;0.9;! +14.640;8.155;14.520;1080.9;8.155;8.155;4;7;8;0.082;0.000;0.9;! +14.660;7.913;14.540;1082.1;7.913;7.913;4;6;8;0.080;0.000;0.9;! +14.680;7.896;14.560;1083.1;7.896;7.896;4;6;8;0.078;0.000;0.9;! +14.700;7.854;14.580;1084.2;7.854;7.854;4;6;8;0.078;0.000;1.0;! +14.720;7.586;14.600;1085.3;7.586;7.586;4;6;8;0.076;0.000;1.0;! +14.740;7.156;14.620;1086.4;7.156;7.156;4;6;8;0.074;0.000;1.0;! +14.760;6.703;14.640;1087.5;6.703;6.703;4;6;8;0.072;0.000;1.0;! +14.780;6.242;14.660;1088.6;6.242;6.242;4;6;8;0.069;0.000;1.0;! +14.800;5.902;14.680;1089.6;5.902;5.902;4;6;8;0.066;0.000;1.0;! +14.820;5.546;14.700;1090.7;5.546;5.546;4;6;8;0.066;0.000;1.1;! +14.840;5.151;14.720;1091.8;5.151;5.151;4;6;8;0.068;0.000;1.2;! +14.860;4.821;14.740;1092.8;4.821;4.821;4;6;8;0.069;0.000;1.3;! +14.880;4.642;14.760;1093.9;4.642;4.642;4;6;8;0.067;0.000;1.3;! +14.900;4.717;14.780;1095.0;4.717;4.717;4;6;8;0.065;0.000;1.3;! +14.920;4.743;14.800;1096.1;4.743;4.743;4;6;8;0.064;0.000;1.4;! +14.940;4.519;14.820;1097.2;4.519;4.519;4;6;8;0.062;0.000;1.4;! +14.960;4.125;14.840;1098.3;4.125;4.125;4;6;8;0.060;0.000;1.4;! +14.980;3.794;14.860;1099.3;3.794;3.794;4;6;8;0.057;0.000;1.4;! +15.000;3.544;14.880;1100.4;3.544;3.544;4;6;8;0.058;0.000;1.4;! +15.020;3.450;14.900;1101.5;3.450;3.450;4;6;8;0.059;0.000;1.3;! +15.040;3.791;14.920;1102.6;3.791;3.791;4;6;8;0.059;0.000;1.3;! +15.060;4.770;14.940;1103.7;4.770;4.770;4;6;8;0.064;0.000;1.4;! +15.080;5.654;14.960;1104.8;5.654;5.654;4;6;8;0.069;0.000;1.5;! +15.100;5.352;14.980;1105.9;5.352;5.352;4;6;8;0.074;0.000;1.6;! +15.120;4.346;15.000;1107.0;4.346;4.346;4;6;8;0.080;0.000;1.7;! +15.140;3.434;15.020;1109.1;3.434;3.434;4;6;8;0.085;0.000;2.1;! +15.160;2.717;15.040;1111.9;2.717;2.717;4;6;8;0.087;0.000;2.6;! +15.180;1.999;15.060;1114.8;1.999;1.999;4;6;8;0.091;0.000;3.5;! +15.200;1.590;15.080;1116.3;1.590;1.590;4;6;8;0.087;0.000;4.9;! +15.220;1.336;15.100;1117.4;1.336;1.336;4;6;8;0.081;0.000;5.7;! +15.240;1.114;15.120;1118.4;1.114;1.114;4;6;8;0.074;0.000;5.6;! +15.260;0.954;15.140;1119.5;0.954;0.954;4;6;8;0.065;0.000;5.5;! +15.280;0.836;15.160;1120.6;0.836;0.836;4;6;8;0.055;0.000;5.7;! +15.300;0.761;15.180;1121.7;0.761;0.761;4;6;8;0.044;0.000;5.2;! +15.320;0.698;15.200;1122.8;0.698;0.698;4;6;8;0.033;0.000;4.3;! +15.340;0.655;15.220;1123.8;0.655;0.655;4;6;8;0.026;0.000;3.6;! +15.360;0.634;15.240;1124.9;0.634;0.634;4;6;8;0.022;0.000;3.2;! +15.380;0.620;15.260;1126.0;0.620;0.620;4;6;8;0.019;0.000;2.9;! +15.400;0.603;15.280;1127.1;0.603;0.603;4;6;8;0.017;0.000;2.6;! +15.420;0.596;15.300;1128.2;0.596;0.596;4;6;8;0.015;0.000;2.5;! +15.440;0.596;15.320;1129.3;0.596;0.596;4;6;8;0.015;0.000;2.4;! +15.460;0.595;15.340;1130.4;0.595;0.595;4;6;8;0.015;0.000;2.5;! +15.480;0.591;15.360;1131.5;0.591;0.591;4;6;8;0.016;0.000;2.6;! +15.500;0.586;15.380;1132.6;0.586;0.586;4;6;8;0.016;0.000;2.7;! +15.520;0.583;15.400;1133.8;0.583;0.583;4;6;8;0.017;0.000;2.9;! +15.540;0.586;15.420;1134.9;0.586;0.586;4;6;8;0.017;0.000;2.9;! +15.560;0.591;15.440;1135.9;0.591;0.591;4;6;8;0.018;0.000;3.0;! +15.580;0.586;15.460;1139.8;0.586;0.586;4;6;8;0.018;0.000;3.0;! +15.600;0.582;15.480;1143.7;0.582;0.582;4;6;8;0.018;0.000;3.1;! +15.620;0.577;15.500;1146.1;0.577;0.577;4;6;8;0.018;0.000;3.1;! +15.640;0.569;15.510;1147.2;0.569;0.569;4;6;8;0.018;0.000;3.1;! +15.660;0.560;15.530;1148.3;0.560;0.560;4;6;8;0.018;0.000;3.1;! +15.680;0.548;15.550;1149.3;0.548;0.548;4;6;8;0.018;0.000;3.1;! +15.700;0.543;15.570;1150.4;0.543;0.543;4;6;8;0.018;0.000;3.2;! +15.720;0.542;15.590;1151.5;0.542;0.542;4;6;8;0.017;0.000;3.1;! +15.740;0.546;15.610;1152.6;0.546;0.546;4;6;8;0.017;0.000;3.1;! +15.760;0.550;15.630;1153.7;0.550;0.550;4;6;8;0.017;0.000;3.1;! +15.780;0.551;15.650;1154.8;0.551;0.551;4;6;8;0.017;0.000;3.1;! +15.800;0.550;15.670;1155.8;0.550;0.550;4;6;8;0.017;0.000;3.1;! +15.820;0.547;15.690;1156.9;0.547;0.547;4;6;8;0.017;0.000;3.2;! +15.840;0.539;15.710;1158.0;0.539;0.539;4;6;8;0.018;0.000;3.2;! +15.860;0.529;15.730;1159.1;0.529;0.529;4;6;8;0.018;0.000;3.2;! +15.880;0.531;15.750;1160.2;0.531;0.531;4;6;8;0.018;0.000;3.3;! +15.900;0.530;15.770;1161.2;0.530;0.530;4;6;8;0.018;0.000;3.3;! +15.920;0.526;15.790;1162.3;0.526;0.526;4;6;8;0.018;0.000;3.3;! +15.940;0.528;15.810;1163.4;0.528;0.528;4;6;8;0.018;0.000;3.3;! +15.960;0.525;15.830;1164.6;0.525;0.525;4;6;8;0.018;0.000;3.3;! +15.980;0.532;15.850;1165.7;0.532;0.532;4;6;8;0.018;0.000;3.3;! +16.000;0.536;15.870;1166.8;0.536;0.536;4;6;8;0.018;0.000;3.4;! +16.020;0.541;15.890;1167.9;0.541;0.541;4;6;8;0.018;0.000;3.4;! +16.040;0.536;15.910;1169.1;0.536;0.536;4;6;8;0.019;0.000;3.5;! +16.060;0.529;15.930;1170.3;0.529;0.529;4;6;8;0.019;0.000;3.5;! +16.080;0.515;15.950;1171.5;0.515;0.515;4;6;8;0.019;0.000;3.6;! +16.100;0.509;15.970;1172.8;0.509;0.509;4;6;8;0.019;0.000;3.7;! +16.120;0.502;15.990;1174.1;0.502;0.502;4;6;8;0.019;0.000;3.8;! +16.140;0.495;16.010;1175.3;0.495;0.495;4;6;8;0.020;0.000;3.9;! +16.160;0.493;16.030;1176.6;0.493;0.493;4;6;8;0.020;0.000;3.9;! +16.180;0.498;16.050;1178.4;0.498;0.498;4;6;8;0.020;0.000;3.9;! +16.200;0.516;16.070;1181.3;0.516;0.516;4;6;8;0.021;0.000;3.8;! +16.220;0.535;16.090;1184.1;0.535;0.535;4;6;8;0.022;0.000;3.8;! +16.240;0.567;16.110;1185.7;0.567;0.567;4;6;8;0.023;0.000;3.7;! +16.260;0.627;16.130;1186.8;0.627;0.627;4;6;8;0.024;0.000;3.7;! +16.280;0.686;16.150;1187.9;0.686;0.686;4;6;8;0.026;0.000;3.9;! +16.300;0.705;16.170;1189.1;0.705;0.705;4;6;8;0.028;0.000;4.0;! +16.320;0.739;16.190;1190.2;0.739;0.739;4;6;8;0.031;0.000;4.1;! +16.340;0.802;16.210;1191.3;0.802;0.802;4;6;8;0.034;0.000;4.3;! +16.360;0.841;16.230;1192.3;0.841;0.841;4;6;8;0.037;0.000;4.4;! +16.380;0.888;16.250;1193.4;0.888;0.888;4;6;8;0.038;0.000;4.3;! +16.400;0.940;16.270;1194.5;0.940;0.940;4;6;8;0.046;0.000;4.8;! +16.420;0.977;16.290;1195.6;0.977;0.977;4;6;8;0.058;0.000;5.7;! +16.440;1.031;16.310;1196.7;1.031;1.031;4;6;8;0.070;0.000;6.5;! +16.460;1.156;16.330;1197.8;1.156;1.156;4;6;8;0.078;0.000;6.9;! +16.480;1.290;16.350;1198.8;1.290;1.290;4;6;8;0.089;0.000;7.5;! +16.500;1.332;16.370;1199.9;1.332;1.332;4;6;8;0.100;0.000;8.3;! +16.520;1.283;16.390;1201.0;1.283;1.283;4;6;8;0.112;0.000;9.0;! +16.540;1.272;16.410;1202.1;1.272;1.272;4;6;8;0.119;0.000;9.3;! +16.560;1.264;16.430;1203.5;1.264;1.264;4;6;8;0.119;0.000;9.4;! +16.580;1.236;16.450;1207.2;1.236;1.236;4;6;8;0.115;0.000;9.4;! +16.600;1.208;16.470;1210.8;1.208;1.208;4;6;8;0.109;0.000;9.4;! +16.620;1.150;16.490;1213.4;1.150;1.150;4;6;8;0.101;0.000;9.2;! +16.640;1.072;16.510;1214.5;1.072;1.072;4;6;8;0.090;0.000;8.7;! +16.660;1.002;16.530;1215.6;1.002;1.002;4;6;8;0.077;0.000;7.7;! +16.680;0.929;16.550;1216.7;0.929;0.929;4;6;8;0.064;0.000;6.7;! +16.700;0.848;16.570;1217.8;0.848;0.848;4;6;8;0.053;0.000;5.9;! +16.720;0.781;16.590;1218.8;0.781;0.781;4;6;8;0.045;0.000;5.4;! +16.740;0.747;16.610;1219.9;0.747;0.747;4;6;8;0.038;0.000;4.8;! +16.760;0.713;16.620;1221.0;0.713;0.713;4;6;8;0.034;0.000;4.5;! +16.780;0.687;16.640;1222.1;0.687;0.687;4;6;8;0.031;0.000;4.4;! +16.800;0.662;16.660;1223.2;0.662;0.662;4;6;8;0.030;0.000;4.4;! +16.820;0.636;16.680;1224.2;0.636;0.636;4;6;8;0.028;0.000;4.2;! +16.840;0.626;16.700;1225.3;0.626;0.626;4;6;8;0.027;0.000;4.2;! +16.860;0.615;16.720;1226.4;0.615;0.615;4;6;8;0.026;0.000;4.1;! +16.880;0.598;16.740;1227.4;0.598;0.598;4;6;8;0.025;0.000;4.1;! +16.900;0.584;16.760;1228.5;0.584;0.584;4;6;8;0.025;0.000;4.1;! +16.920;0.576;16.780;1229.6;0.576;0.576;4;6;8;0.024;0.000;4.0;! +16.940;0.579;16.800;1230.7;0.579;0.579;4;6;8;0.023;0.000;3.8;! +16.960;0.576;16.820;1231.7;0.576;0.576;4;6;8;0.022;0.000;3.8;! +16.980;0.577;16.840;1232.8;0.577;0.577;4;6;8;0.021;0.000;3.5;! +17.000;0.590;16.860;1233.9;0.590;0.590;4;6;8;0.020;0.000;3.4;! +17.020;0.592;16.880;1235.1;0.592;0.592;4;6;8;0.023;0.000;4.0;! +17.040;0.584;16.900;1236.2;0.584;0.584;4;6;8;0.024;0.000;4.0;! +17.060;0.593;16.920;1237.4;0.593;0.593;4;6;8;0.024;0.000;4.2;! +17.080;0.550;16.940;1239.3;0.550;0.550;4;6;8;0.024;0.000;4.1;! +17.100;0.544;16.960;1240.7;0.544;0.544;4;6;8;0.023;0.000;4.0;! +17.120;0.574;16.980;1241.7;0.574;0.574;4;6;8;0.022;0.000;3.9;! +17.140;0.573;17.000;1242.9;0.573;0.573;4;6;8;0.021;0.000;3.7;! +17.160;0.547;17.020;1244.1;0.547;0.547;4;6;8;0.020;0.000;3.6;! +17.180;0.543;17.040;1245.1;0.543;0.543;4;6;8;0.018;0.000;3.1;! +17.200;0.524;17.060;1246.5;0.524;0.524;4;6;8;0.015;0.000;2.8;! +17.220;0.518;17.080;1249.3;0.518;0.518;4;6;8;0.015;0.000;2.8;! +17.240;0.512;17.100;1252.0;0.512;0.512;4;6;8;0.014;0.000;2.8;! +17.260;0.491;17.120;1253.7;0.491;0.491;4;6;8;0.014;0.000;3.1;! +17.280;0.473;17.140;1254.8;0.473;0.473;4;6;8;0.014;0.000;3.2;! +17.300;0.430;17.160;1255.9;0.430;0.430;4;6;8;0.013;0.000;3.0;! +17.320;0.399;17.180;1256.9;0.399;0.399;4;6;8;0.013;0.000;3.1;! +17.340;0.372;17.200;1258.0;0.372;0.372;4;6;8;0.012;0.000;3.1;! +17.360;0.344;17.220;1259.1;0.344;0.344;4;6;8;0.011;0.000;2.8;! +17.380;0.337;17.240;1260.2;0.337;0.337;4;6;8;0.010;0.000;2.5;! +17.400;0.342;17.260;1261.3;0.342;0.342;4;6;8;0.010;0.000;2.4;! +17.420;0.381;17.280;1262.4;0.381;0.381;4;6;8;0.010;0.000;2.3;! +17.440;0.472;17.300;1263.5;0.472;0.472;4;6;8;0.010;0.000;2.2;! +17.460;0.557;17.320;1264.6;0.557;0.557;4;6;8;0.011;0.000;2.3;! +17.480;0.565;17.340;1265.7;0.565;0.565;4;6;8;0.013;0.000;2.4;! +17.500;0.545;17.360;1266.8;0.545;0.545;4;6;8;0.014;0.000;2.5;! +17.520;0.565;17.380;1267.9;0.565;0.565;4;6;8;0.015;0.000;2.6;! +17.540;0.618;17.400;1269.0;0.618;0.618;4;6;8;0.016;0.000;2.7;! +17.560;0.669;17.420;1271.3;0.669;0.669;4;6;8;0.015;0.000;2.3;! +17.580;0.720;17.440;1274.7;0.720;0.720;4;6;8;0.014;0.000;1.8;! +17.600;0.772;17.460;1278.0;0.772;0.772;4;6;8;0.015;0.000;1.3;! +17.620;0.808;17.480;1279.4;0.808;0.808;4;6;8;0.016;0.000;1.0;! +17.640;1.038;17.500;1280.5;1.038;1.038;4;6;8;0.021;0.000;0.9;! +17.660;2.022;17.520;1281.6;2.022;2.022;4;6;7;0.023;0.000;0.8;! +17.680;3.420;17.540;1282.7;3.420;3.420;4;6;8;0.028;0.000;0.8;! +17.700;4.670;17.560;1283.8;4.670;4.670;4;6;7;0.034;0.000;0.8;! +17.720;5.376;17.580;1284.9;5.376;5.376;4;6;8;0.041;0.000;0.8;! +17.740;5.856;17.600;1286.0;5.856;5.856;4;6;8;0.049;0.000;0.9;! +17.760;6.217;17.620;1287.1;6.217;6.217;4;6;8;0.057;0.000;0.9;! +17.780;6.482;17.640;1288.2;6.482;6.482;4;6;8;0.063;0.000;1.0;! +17.800;6.646;17.660;1289.3;6.646;6.646;4;6;8;0.066;0.000;1.0;! +17.820;6.763;17.680;1290.4;6.763;6.763;4;6;8;0.070;0.000;1.0;! +17.840;6.931;17.700;1291.5;6.931;6.931;4;6;8;0.073;0.000;1.0;! +17.860;7.114;17.720;1292.6;7.114;7.114;4;6;8;0.075;0.000;1.0;! +17.880;7.298;17.730;1293.7;7.298;7.298;4;6;8;0.078;0.000;1.0;! +17.900;7.507;17.750;1294.8;7.507;7.507;4;6;8;0.079;0.000;1.0;! +17.920;7.683;17.770;1295.9;7.683;7.683;4;6;8;0.079;0.000;1.0;! +17.940;7.796;17.790;1297.1;7.796;7.796;4;6;8;0.086;0.000;1.1;! +17.960;7.854;17.810;1298.2;7.854;7.854;4;6;8;0.094;0.000;1.2;! +17.980;7.832;17.830;1299.3;7.832;7.832;4;6;8;0.097;0.000;1.2;! +18.000;7.834;17.850;1300.4;7.834;7.834;4;6;8;0.092;0.000;1.1;! +18.020;8.116;17.870;1301.5;8.116;8.116;4;6;8;0.093;0.000;1.0;! +18.040;8.802;17.890;1302.6;8.802;8.802;4;6;8;0.093;0.000;1.0;! +18.060;9.324;17.910;1303.8;9.324;9.324;4;6;8;0.090;0.000;1.0;! +18.080;9.759;17.930;1304.9;9.759;9.759;4;6;8;0.087;0.000;0.9;! +18.100;10.024;17.950;1306.1;10.024;10.024;4;7;8;0.088;0.000;0.9;! +18.120;10.126;17.970;1307.3;10.126;10.126;4;7;8;0.091;0.000;0.9;! +18.140;10.199;17.990;1310.0;10.199;10.199;4;7;8;0.094;0.000;0.9;! +18.160;10.226;18.010;1313.0;10.226;10.226;4;7;8;0.103;0.000;1.0;! +18.180;10.272;18.030;1315.7;10.272;10.272;4;6;8;0.116;0.000;1.1;! +18.200;10.283;18.050;1316.8;10.283;10.283;4;7;8;0.118;0.000;1.1;! +18.220;10.161;18.070;1317.9;10.161;10.161;4;6;8;0.121;0.000;1.2;! +18.240;9.890;18.090;1319.0;9.890;9.890;4;7;8;0.123;0.000;1.2;! +18.260;9.578;18.110;1320.1;9.578;9.578;4;7;8;0.125;0.000;1.2;! +18.280;9.309;18.130;1321.2;9.309;9.309;4;7;8;0.127;0.000;1.3;! +18.300;9.058;18.150;1322.2;9.058;9.058;4;7;8;0.126;0.000;1.3;! +18.320;8.981;18.170;1323.3;8.981;8.981;4;7;8;0.122;0.000;1.2;! +18.340;9.277;18.190;1324.4;9.277;9.277;4;7;8;0.116;0.000;1.1;! +18.360;9.909;18.210;1325.5;9.909;9.909;4;7;8;0.114;0.000;1.1;! +18.380;10.666;18.230;1326.6;10.666;10.666;4;7;8;0.112;0.000;1.0;! +18.400;11.449;18.250;1327.7;11.449;11.449;4;7;8;0.110;0.000;0.9;! +18.420;12.169;18.270;1328.8;12.169;12.169;4;7;8;0.109;0.000;0.9;! +18.440;12.742;18.290;1329.9;12.742;12.742;4;7;8;0.111;0.000;0.8;! +18.460;13.215;18.310;1331.0;13.215;13.215;4;7;8;0.114;0.000;0.8;! +18.480;13.585;18.330;1332.1;13.585;13.585;4;7;8;0.116;0.000;0.8;! +18.500;13.909;18.350;1333.2;13.909;13.909;4;7;8;0.113;0.000;0.8;! +18.520;14.102;18.370;1334.5;14.102;14.102;4;7;8;0.111;0.000;0.8;! +18.540;14.361;18.390;1335.6;14.361;14.361;4;7;8;0.115;0.000;0.8;! +18.560;14.520;18.410;1337.2;14.520;14.520;4;7;8;0.124;0.000;0.8;! +18.580;14.613;18.430;1340.6;14.613;14.613;4;7;8;0.133;0.000;0.9;! +18.600;14.707;18.450;1344.0;14.707;14.707;4;7;8;0.139;0.000;0.9;! +18.620;14.889;18.470;1346.8;14.889;14.889;4;7;8;0.144;0.000;0.9;! +18.640;15.221;18.490;1347.8;15.221;15.221;4;7;8;0.148;0.000;0.9;! +18.660;15.478;18.510;1348.9;15.478;15.478;4;7;8;0.152;0.000;0.9;! +18.680;15.757;18.530;1350.1;15.757;15.757;4;7;8;0.157;0.000;0.9;! +18.700;16.043;18.550;1351.1;16.043;16.043;4;7;8;0.159;0.000;0.9;! +18.720;16.351;18.570;1352.2;16.351;16.351;4;7;8;0.161;0.000;0.9;! +18.740;16.676;18.590;1353.3;16.676;16.676;4;7;8;0.162;0.000;0.9;! +18.760;17.029;18.610;1354.4;17.029;17.029;4;7;8;0.166;0.000;0.9;! +18.780;17.410;18.630;1355.5;17.410;17.410;4;7;8;0.170;0.000;0.9;! +18.800;17.838;18.650;1356.6;17.838;17.838;4;7;8;0.177;0.000;1.0;! +18.820;18.051;18.670;1357.7;18.051;18.051;4;7;8;0.182;0.000;1.0;! +18.840;17.975;18.690;1358.8;17.975;17.975;4;7;8;0.186;0.000;1.0;! +18.860;17.601;18.710;1359.9;17.601;17.601;4;7;8;0.189;0.000;1.0;! +18.880;17.081;18.730;1360.9;17.081;17.081;4;7;8;0.191;0.000;1.1;! +18.900;16.718;18.750;1362.1;16.718;16.718;4;7;8;0.192;0.000;1.1;! +18.920;16.604;18.770;1363.2;16.604;16.604;4;7;8;0.191;0.000;1.1;! +18.940;16.713;18.790;1364.4;16.713;16.713;4;7;8;0.188;0.000;1.1;! +18.960;16.862;18.800;1365.6;16.862;16.862;4;7;8;0.186;0.000;1.0;! +18.980;17.073;18.820;1366.7;17.073;17.073;4;7;8;0.182;0.000;1.0;! +19.000;17.530;18.840;1367.9;17.530;17.530;4;7;8;0.180;0.000;1.0;! +19.020;18.117;18.860;1369.1;18.117;18.117;4;7;8;0.179;0.000;1.0;! +19.040;18.558;18.880;1370.2;18.558;18.558;4;7;8;0.180;0.000;0.9;! +19.060;18.714;18.900;1371.3;18.714;18.714;4;7;8;0.181;0.000;1.0;! +19.080;18.571;18.920;1372.4;18.571;18.571;4;7;8;0.178;0.000;0.9;! +19.100;18.170;18.940;1373.5;18.170;18.170;4;7;8;0.169;0.000;0.9;! +19.120;17.580;18.960;1374.6;17.580;17.580;4;7;8;0.160;0.000;0.8;! +19.140;17.019;18.980;1375.6;17.019;17.019;4;7;8;0.162;0.000;0.9;! +19.160;16.481;19.000;1377.1;16.481;16.481;4;7;8;0.167;0.000;0.9;! +19.180;16.058;19.020;1379.9;16.058;16.058;4;7;8;0.170;0.000;1.0;! +19.200;15.634;19.040;1382.8;15.634;15.634;4;7;8;0.169;0.000;1.0;! +19.220;15.420;19.060;1384.9;15.420;15.420;4;7;8;0.165;0.000;1.0;! +19.240;15.333;19.080;1386.0;15.333;15.333;4;7;8;0.160;0.000;1.0;! +19.260;15.231;19.100;1387.1;15.231;15.231;4;7;8;0.159;0.000;1.0;! +19.280;15.099;19.120;1388.2;15.099;15.099;4;7;8;0.157;0.000;1.0;! +19.300;14.964;19.140;1389.2;14.964;14.964;4;7;8;0.153;0.000;1.0;! +19.320;14.860;19.160;1390.3;14.860;14.860;4;7;8;0.150;0.000;1.0;! +19.340;14.734;19.180;1391.4;14.734;14.734;4;7;8;0.148;0.000;1.0;! +19.360;14.605;19.200;1392.5;14.605;14.605;4;7;8;0.146;0.000;1.0;! +19.380;14.453;19.220;1393.6;14.453;14.453;4;7;8;0.144;0.000;0.9;! +19.400;14.293;19.240;1394.7;14.293;14.293;4;7;8;0.144;0.000;0.9;! +19.420;14.142;19.260;1395.8;14.142;14.142;4;7;8;0.143;0.000;0.9;! +19.440;14.078;19.280;1396.9;14.078;14.078;4;7;8;0.141;0.000;0.9;! +19.460;14.041;19.300;1397.9;14.041;14.041;4;7;8;0.141;0.000;0.9;! +19.480;14.087;19.320;1399.0;14.087;14.087;4;7;8;0.140;0.000;0.9;! +19.500;14.215;19.340;1400.1;14.215;14.215;4;7;8;0.138;0.000;0.9;! +19.520;14.420;19.360;1401.2;14.420;14.420;4;7;8;0.132;0.000;0.8;! +19.540;14.804;19.380;1402.3;14.804;14.804;4;7;8;0.124;0.000;0.8;! +19.560;15.415;19.400;1403.3;15.415;15.415;4;7;8;0.121;0.000;0.8;! +19.580;16.318;19.420;1404.4;16.318;16.318;4;7;8;0.128;0.000;0.8;! +19.600;16.812;19.440;1406.7;16.812;16.812;4;7;8;0.133;0.000;0.8;! +19.620;16.932;19.460;1410.2;16.932;16.932;4;7;8;0.139;0.000;0.8;! +19.640;17.051;19.480;1413.7;17.051;17.051;4;7;8;0.144;0.000;0.8;! +19.660;17.334;19.500;1415.0;17.334;17.334;4;7;8;0.150;0.000;0.8;! +19.680;17.424;19.520;1416.1;17.424;17.424;4;7;8;0.154;0.000;0.8;! +19.700;17.436;19.540;1417.2;17.436;17.436;4;7;8;0.161;0.000;0.9;! +19.720;17.518;19.560;1418.3;17.518;17.518;4;7;8;0.166;0.000;0.9;! +19.740;17.551;19.580;1419.3;17.551;17.551;4;7;8;0.171;0.000;0.9;! +19.760;17.566;19.600;1420.4;17.566;17.566;4;7;8;0.170;0.000;0.9;! +19.780;17.522;19.620;1421.5;17.522;17.522;4;7;8;0.172;0.000;0.9;! +19.800;17.446;19.640;1422.6;17.446;17.446;4;7;8;0.174;0.000;0.9;! +19.820;17.353;19.660;1423.7;17.353;17.353;4;7;8;0.173;0.000;0.9;! +19.840;17.329;19.680;1424.8;17.329;17.329;4;7;8;0.172;0.000;0.9;! +19.860;17.352;19.700;1425.9;17.352;17.352;4;7;8;0.170;0.000;0.9;! +19.880;17.538;19.720;1426.9;17.538;17.538;4;7;8;0.169;0.000;0.9;! +19.900;17.878;19.740;1428.1;17.878;17.878;4;7;8;0.168;0.000;0.9;! +19.920;18.285;19.760;1429.1;18.285;18.285;4;7;8;0.170;0.000;0.9;! +19.940;18.858;19.780;1430.3;18.858;18.858;4;7;8;0.174;0.000;0.9;! +19.960;19.459;19.800;1431.3;19.459;19.459;4;7;8;0.178;0.000;0.9;! +19.980;20.091;19.820;1432.4;20.091;20.091;4;7;8;0.183;0.000;0.9;! +20.000;20.627;19.840;1433.6;20.627;20.627;4;7;8;0.188;0.000;0.9;! +20.020;21.096;19.860;1434.6;21.096;21.096;4;7;8;0.192;0.000;0.9;! +20.040;21.598;19.870;1435.7;21.598;21.598;4;7;8;0.198;0.000;0.9;! +20.060;22.147;19.890;1436.8;22.147;22.147;4;7;8;0.196;0.000;0.8;! +20.080;22.834;19.910;1437.9;22.834;22.834;4;7;8;0.188;0.000;0.8;! +20.100;23.508;19.930;1438.9;23.508;23.508;4;7;8;0.182;0.000;0.7;! +20.120;24.072;19.950;1440.1;24.072;24.072;4;6;8;0.194;0.000;0.8;! +20.140;24.281;19.970;1441.6;24.281;24.281;4;7;8;0.205;0.000;0.8;! +20.160;23.886;19.990;1445.4;23.886;23.886;4;7;8;0.218;0.000;0.9;! +20.180;23.492;20.010;1449.2;23.492;23.492;4;7;8;0.224;0.000;0.9;! +20.200;23.889;20.030;1450.9;23.889;23.889;4;7;8;0.230;0.000;0.9;! +20.220;23.627;20.050;1452.0;23.627;23.627;4;7;8;0.228;0.000;0.9;! +20.240;23.120;20.070;1453.3;23.120;23.120;4;7;8;0.228;0.000;0.9;! +20.260;23.010;20.090;1454.4;23.010;23.010;4;7;8;0.222;0.000;0.9;! +20.280;23.200;20.110;1455.6;23.200;23.200;4;7;8;0.226;0.000;0.9;! +20.300;23.649;20.130;1456.6;23.649;23.649;4;7;8;0.216;0.000;0.9;! +20.320;24.123;20.150;1457.7;24.123;24.123;4;7;8;0.216;0.000;0.9;! +20.340;24.587;20.170;1458.8;24.587;24.587;4;7;8;0.212;0.000;0.8;! +20.360;24.405;20.190;1460.0;24.405;24.405;4;7;8;0.215;0.000;0.8;! +20.380;24.376;20.210;1461.1;24.376;24.376;4;7;8;0.223;0.000;0.9;! +20.400;24.082;20.230;1462.2;24.082;24.082;4;7;8;0.235;0.000;0.9;! +20.420;23.466;20.250;1463.3;23.466;23.466;4;7;8;0.244;0.000;1.0;! +20.440;23.026;20.270;1464.4;23.026;23.026;4;7;8;0.240;0.000;1.0;! +20.460;22.806;20.290;1465.5;22.806;22.806;4;7;8;0.241;0.000;1.0;! +20.480;22.831;20.310;1466.6;22.831;22.831;4;7;8;0.236;0.000;1.0;! +20.500;22.924;20.330;1467.7;22.924;22.924;4;7;8;0.231;0.000;1.0;! +20.520;23.017;20.350;1468.7;23.017;23.017;4;7;8;0.222;0.000;0.9;! +20.540;23.065;20.370;1469.8;23.065;23.065;4;7;8;0.204;0.000;0.8;! +20.560;23.120;20.390;1470.9;23.120;23.120;4;7;8;0.185;0.000;0.7;! +20.580;23.373;20.410;1472.0;23.373;23.373;4;7;8;0.165;0.000;0.7;! +20.600;24.072;20.430;1473.1;24.072;24.072;4;7;8;0.164;0.000;0.6;! +20.620;25.101;20.450;1474.6;25.101;25.101;4;7;8;0.162;0.000;0.6;! +20.640;25.630;20.470;1478.9;25.630;25.630;4;7;8;0.165;0.000;0.6;! +20.660;26.159;20.490;1483.1;26.159;26.159;4;7;8;0.162;0.000;0.5;! +20.680;28.445;20.510;1485.1;28.445;28.445;4;7;8;0.165;0.000;0.5;! +20.700;29.680;20.530;1486.3;29.680;29.680;4;7;8;0.176;0.000;0.6;! +20.720;30.333;20.550;1487.4;30.333;30.333;4;7;8;0.193;0.000;0.6;! +20.740;30.418;20.570;1488.6;30.418;30.418;4;7;8;0.208;0.000;0.7;! +20.760;30.164;20.590;1489.8;30.164;30.164;4;7;8;0.221;0.000;0.7;! +20.780;29.665;20.610;1490.9;29.665;29.665;4;7;8;0.238;0.000;0.8;! +20.800;29.065;20.630;1492.1;29.065;29.065;4;7;8;0.246;0.000;0.8;! +20.820;28.193;20.650;1493.3;28.193;28.193;4;7;8;0.255;0.000;0.9;! +20.840;27.177;20.670;1494.4;27.177;27.177;4;7;8;0.264;0.000;0.9;! +20.860;26.111;20.690;1495.5;26.111;26.111;4;6;8;0.267;0.000;1.0;! +20.880;25.063;20.710;1496.6;25.063;25.063;4;7;8;0.264;0.000;1.0;! +20.900;24.081;20.730;1497.7;24.081;24.081;4;7;8;0.262;0.000;1.0;! +20.920;23.399;20.750;1498.7;23.399;23.399;4;7;8;0.253;0.000;1.0;! +20.940;22.977;20.770;1499.8;22.977;22.977;4;7;8;0.240;0.000;1.0;! +20.960;22.698;20.790;1500.9;22.698;22.698;4;7;8;0.232;0.000;1.0;! +20.980;22.323;20.810;1502.0;22.323;22.323;4;7;8;0.221;0.000;0.9;! +21.000;22.029;20.830;1503.1;22.029;22.029;4;7;8;0.207;0.000;0.9;! +21.020;21.851;20.850;1504.2;21.851;21.851;4;7;8;0.194;0.000;0.8;! +21.040;21.501;20.870;1505.3;21.501;21.501;4;7;8;0.184;0.000;0.8;! +21.060;21.222;20.890;1506.3;21.222;21.222;4;7;8;0.175;0.000;0.8;! +21.080;20.862;20.910;1507.4;20.862;20.862;4;7;8;0.172;0.000;0.8;! +21.100;20.478;20.930;1508.5;20.478;20.478;4;7;8;0.168;0.000;0.8;! +21.120;20.191;20.940;1509.6;20.191;20.191;4;7;8;0.165;0.000;0.8;! +21.140;20.043;20.960;1510.7;20.043;20.043;4;7;8;0.165;0.000;0.8;! +21.160;19.797;20.980;1511.7;19.797;19.797;4;7;8;0.160;0.000;0.8;! +21.180;19.585;21.000;1512.8;19.585;19.585;4;7;8;0.154;0.000;0.7;! +21.200;19.388;21.020;1513.9;19.388;19.388;4;7;8;0.149;0.000;0.7;! +21.220;19.321;21.040;1515.0;19.321;19.321;4;7;8;0.153;0.000;0.7;! +21.240;19.058;21.060;1517.1;19.058;19.058;4;7;8;0.153;0.000;0.7;! +21.260;18.935;21.080;1520.1;18.935;18.935;4;7;8;0.151;0.000;0.7;! +21.280;18.812;21.100;1523.1;18.812;18.812;4;7;8;0.150;0.000;0.7;! +21.300;18.966;21.120;1524.4;18.966;18.966;4;7;8;0.147;0.000;0.7;! +21.320;19.089;21.140;1525.5;19.089;19.089;4;7;8;0.141;0.000;0.7;! +21.340;19.215;21.160;1526.6;19.215;19.215;4;6;8;0.141;0.000;0.7;! +21.360;19.417;21.180;1527.7;19.417;19.417;4;6;8;0.141;0.000;0.7;! +21.380;19.596;21.200;1528.8;19.596;19.596;4;6;8;0.138;0.000;0.7;! +21.400;19.818;21.220;1530.0;19.818;19.818;4;6;8;0.137;0.000;0.6;! +21.420;20.001;21.240;1531.2;20.001;20.001;4;6;8;0.135;0.000;0.6;! +21.440;20.215;21.260;1532.5;20.215;20.215;4;6;8;0.138;0.000;0.6;! +21.460;20.587;21.280;1533.6;20.587;20.587;4;6;8;0.137;0.000;0.6;! +21.480;21.031;21.300;1534.7;21.031;21.031;4;6;8;0.135;0.000;0.6;! +21.500;21.620;21.320;1535.8;21.620;21.620;4;6;8;0.137;0.000;0.6;! +21.520;22.367;21.340;1536.9;22.367;22.367;4;6;8;0.142;0.000;0.6;! +21.540;23.146;21.360;1538.0;23.146;23.146;4;6;8;0.137;0.000;0.6;! +21.560;23.678;21.380;1539.1;23.678;23.678;4;6;8;0.135;0.000;0.5;! +21.580;23.925;21.400;1540.3;23.925;23.925;4;6;8;0.130;0.000;0.5;! +21.600;24.219;21.420;1541.3;24.219;24.219;4;7;8;0.126;0.000;0.5;! +21.620;24.438;21.440;1542.4;24.438;24.438;4;7;8;0.125;0.000;0.5;! +21.640;24.708;21.460;1543.5;24.708;24.708;4;7;8;0.135;0.000;0.5;! +21.660;24.625;21.480;1547.1;24.625;24.625;4;7;8;0.141;0.000;0.5;! +21.680;24.542;21.500;1550.7;24.542;24.542;4;7;8;0.154;0.000;0.6;! +21.700;24.507;21.520;1554.1;24.507;24.507;4;7;8;0.164;0.000;0.6;! +21.720;24.601;21.540;1555.2;24.601;24.601;4;6;8;0.175;0.000;0.7;! +21.740;24.575;21.560;1556.3;24.575;24.575;4;7;8;0.177;0.000;0.7;! +21.760;24.368;21.580;1557.4;24.368;24.368;4;7;8;0.184;0.000;0.7;! +21.780;24.178;21.600;1558.6;24.178;24.178;4;7;8;0.187;0.000;0.7;! +21.800;23.634;21.620;1559.8;23.634;23.634;4;7;8;0.193;0.000;0.8;! +21.820;23.101;21.640;1560.9;23.101;23.101;4;7;8;0.190;0.000;0.8;! +21.840;22.103;21.660;1562.0;22.103;22.103;4;7;8;0.186;0.000;0.8;! +21.860;20.672;21.680;1563.1;20.672;20.672;4;6;8;0.184;0.000;0.8;! +21.880;19.496;21.700;1564.1;19.496;19.496;4;6;8;0.180;0.000;0.8;! +21.900;18.544;21.720;1565.2;18.544;18.544;4;6;8;0.177;0.000;0.9;! +21.920;17.921;21.740;1566.3;17.921;17.921;4;6;8;0.170;0.000;0.9;! +21.940;17.518;21.760;1567.4;17.518;17.518;4;6;8;0.162;0.000;0.8;! +21.960;17.299;21.780;1568.4;17.299;17.299;4;6;8;0.157;0.000;0.8;! +21.980;17.243;21.800;1569.5;17.243;17.243;4;6;8;0.151;0.000;0.8;! +22.000;17.350;21.820;1570.6;17.350;17.350;4;6;8;0.148;0.000;0.8;! +22.020;17.613;21.840;1571.7;17.613;17.613;4;6;8;0.146;0.000;0.8;! +22.040;18.159;21.860;1572.8;18.159;18.159;4;6;8;0.144;0.000;0.7;! +22.060;18.796;21.880;1573.9;18.796;18.796;4;6;8;0.144;0.000;0.7;! +22.080;19.359;21.900;1575.0;19.359;19.359;4;6;8;0.144;0.000;0.7;! +22.100;19.932;21.920;1576.1;19.932;19.932;4;6;8;0.146;0.000;0.7;! +22.120;20.332;21.940;1577.2;20.332;20.332;4;6;8;0.149;0.000;0.7;! +22.140;20.316;21.960;1578.3;20.316;20.316;4;6;8;0.149;0.000;0.7;! +22.160;19.949;21.980;1579.3;19.949;19.949;4;6;8;0.146;0.000;0.7;! +22.180;19.531;22.000;1580.4;19.531;19.531;4;6;8;0.144;0.000;0.7;! +22.200;19.174;22.020;1581.5;19.174;19.174;4;6;8;0.145;0.000;0.7;! +22.220;18.881;22.030;1582.9;18.881;18.881;4;6;8;0.145;0.000;0.7;! +22.240;18.440;22.050;1586.6;18.440;18.440;4;6;8;0.146;0.000;0.7;! +22.260;18.000;22.070;1590.3;18.000;18.000;4;6;8;0.146;0.000;0.8;! +22.280;17.532;22.090;1592.9;17.532;17.532;4;6;8;0.144;0.000;0.8;! +22.300;16.841;22.110;1594.1;16.841;16.841;4;6;8;0.140;0.000;0.8;! +22.320;16.309;22.130;1595.1;16.309;16.309;4;6;8;0.134;0.000;0.8;! +22.340;15.888;22.150;1596.2;15.888;15.888;4;6;8;0.130;0.000;0.8;! +22.360;15.448;22.170;1597.3;15.448;15.448;4;6;8;0.124;0.000;0.7;! +22.380;15.036;22.190;1598.4;15.036;15.036;4;6;8;0.119;0.000;0.7;! +22.400;14.696;22.210;1599.4;14.696;14.696;4;6;8;0.112;0.000;0.7;! +22.420;14.660;22.230;1600.6;14.660;14.660;4;6;8;0.108;0.000;0.7;! +22.440;14.736;22.250;1601.6;14.736;14.736;4;6;8;0.105;0.000;0.7;! +22.460;14.581;22.270;1602.7;14.581;14.581;4;6;8;0.104;0.000;0.7;! +22.480;14.438;22.290;1603.8;14.438;14.438;4;6;8;0.102;0.000;0.7;! +22.500;14.177;22.310;1604.9;14.177;14.177;4;6;8;0.101;0.000;0.7;! +22.520;13.769;22.330;1606.1;13.769;13.769;4;6;8;0.099;0.000;0.7;! +22.540;13.294;22.350;1607.1;13.294;13.294;4;6;8;0.099;0.000;0.7;! +22.560;12.898;22.370;1608.2;12.898;12.898;4;6;8;0.101;0.000;0.7;! +22.580;12.700;22.390;1609.3;12.700;12.700;4;6;8;0.102;0.000;0.7;! +22.600;12.676;22.410;1610.4;12.676;12.676;4;6;8;0.102;0.000;0.7;! +22.620;12.838;22.430;1611.5;12.838;12.838;4;6;8;0.103;0.000;0.7;! +22.640;13.275;22.450;1612.6;13.275;13.275;4;6;8;0.106;0.000;0.8;! +22.660;13.943;22.470;1613.8;13.943;13.943;4;6;8;0.113;0.000;0.8;! +22.680;14.707;22.490;1617.5;14.707;14.707;4;6;8;0.120;0.000;0.8;! +22.700;15.465;22.510;1621.7;15.465;15.465;4;6;8;0.124;0.000;0.7;! +22.720;16.397;22.530;1625.2;16.397;16.397;4;6;8;0.129;0.000;0.7;! +22.740;18.031;22.550;1626.3;18.031;18.031;4;6;8;0.168;0.000;0.8;! +22.760;19.564;22.570;1627.4;19.564;19.564;4;7;8;0.157;0.000;0.7;! +22.780;21.316;22.590;1628.4;21.316;21.316;4;7;8;0.157;0.000;0.7;! +22.800;22.754;22.610;1629.6;22.754;22.754;4;7;8;0.161;0.000;0.7;! +22.820;23.095;22.630;1630.6;23.095;23.095;4;7;8;0.160;0.000;0.7;! +22.840;23.244;22.650;1631.7;23.244;23.244;4;7;8;0.156;0.000;0.7;! +22.860;23.017;22.670;1632.8;23.017;23.017;4;7;8;0.155;0.000;0.7;! +22.880;22.195;22.690;1633.9;22.195;22.195;4;6;8;0.146;0.000;0.6;! +22.900;20.993;22.710;1635.0;20.993;20.993;4;6;8;0.140;0.000;0.6;! +22.920;19.998;22.730;1636.1;19.998;19.998;4;6;8;0.143;0.000;0.6;! +22.940;19.400;22.750;1637.1;19.400;19.400;4;6;8;0.147;0.000;0.7;! +22.960;18.855;22.770;1638.3;18.855;18.855;4;6;8;0.147;0.000;0.7;! +22.980;18.116;22.790;1639.4;18.116;18.116;4;6;8;0.147;0.000;0.8;! +23.000;16.913;22.810;1640.4;16.913;16.913;4;6;8;0.147;0.000;0.8;! +23.020;15.842;22.830;1641.5;15.842;15.842;4;6;8;0.145;0.000;0.8;! +23.040;15.012;22.850;1642.6;15.012;15.012;4;6;8;0.139;0.000;0.8;! +23.060;14.570;22.870;1643.7;14.570;14.570;4;6;8;0.131;0.000;0.8;! +23.080;14.374;22.890;1644.8;14.374;14.374;4;6;8;0.126;0.000;0.8;! +23.100;14.264;22.910;1645.8;14.264;14.264;4;6;8;0.120;0.000;0.8;! +23.120;14.280;22.930;1646.9;14.280;14.280;4;6;8;0.116;0.000;0.8;! +23.140;14.157;22.950;1648.0;14.157;14.157;4;6;8;0.114;0.000;0.8;! +23.160;13.722;22.970;1649.1;13.722;13.722;4;6;8;0.113;0.000;0.8;! +23.180;13.249;22.990;1650.2;13.249;13.249;4;6;8;0.111;0.000;0.8;! +23.200;12.987;23.010;1651.2;12.987;12.987;4;6;7;0.111;0.000;0.8;! +23.220;12.992;23.030;1652.3;12.992;12.992;4;6;7;0.109;0.000;0.8;! +23.240;13.135;23.050;1653.4;13.135;13.135;4;6;7;0.107;0.000;0.8;! +23.260;13.072;23.070;1654.5;13.072;13.072;4;6;8;0.105;0.000;0.8;! +23.280;12.914;23.090;1655.6;12.914;12.914;4;6;7;0.105;0.000;0.8;! +23.300;12.850;23.110;1656.8;12.850;12.850;4;6;7;0.104;0.000;0.7;! +23.320;13.008;23.130;1659.4;13.008;13.008;4;6;7;0.105;0.000;0.7;! +23.340;13.198;23.150;1662.3;13.198;13.198;4;6;8;0.106;0.000;0.7;! +23.360;13.416;23.170;1665.1;13.416;13.416;4;6;8;0.107;0.000;0.7;! +23.380;13.804;23.180;1666.2;13.804;13.804;4;6;8;0.108;0.000;0.7;! +23.400;13.932;23.200;1667.3;13.932;13.932;4;6;8;0.109;0.000;0.7;! +23.420;13.875;23.220;1668.3;13.875;13.875;4;6;7;0.110;0.000;0.8;! +23.440;13.719;23.240;1669.4;13.719;13.719;4;6;7;0.111;0.000;0.7;! +23.460;13.714;23.260;1670.5;13.714;13.714;4;6;7;0.110;0.000;0.7;! +23.480;13.961;23.280;1671.6;13.961;13.961;4;6;7;0.111;0.000;0.7;! +23.500;14.485;23.300;1672.7;14.485;14.485;4;6;7;0.110;0.000;0.7;! +23.520;15.096;23.320;1673.8;15.096;15.096;4;6;7;0.110;0.000;0.7;! +23.540;15.565;23.340;1675.1;15.565;15.565;4;6;7;0.108;0.000;0.7;! +23.560;15.665;23.360;1676.2;15.665;15.665;4;6;7;0.109;0.000;0.7;! +23.580;15.831;23.380;1677.3;15.831;15.831;4;6;7;0.116;0.000;0.7;! +23.600;16.281;23.400;1678.4;16.281;16.281;4;6;7;0.119;0.000;0.7;! +23.620;16.977;23.420;1679.4;16.977;16.977;4;6;7;0.121;0.000;0.7;! +23.640;17.671;23.440;1680.5;17.671;17.671;4;6;7;0.122;0.000;0.7;! +23.660;18.392;23.460;1681.6;18.392;18.392;4;6;7;0.123;0.000;0.6;! +23.680;18.889;23.480;1682.7;18.889;18.889;4;6;7;0.128;0.000;0.7;! +23.700;19.053;23.500;1684.5;19.053;19.053;4;6;7;0.142;0.000;0.7;! +23.720;18.797;23.520;1688.6;18.797;18.797;4;6;7;0.158;0.000;0.8;! +23.740;18.541;23.540;1692.7;18.541;18.541;4;6;7;0.160;0.000;0.8;! +23.760;18.849;23.560;1694.3;18.849;18.849;4;6;7;0.167;0.000;0.9;! +23.780;18.649;23.580;1695.4;18.649;18.649;4;6;7;0.167;0.000;0.9;! +23.800;18.078;23.600;1696.6;18.078;18.078;4;6;7;0.174;0.000;0.9;! +23.820;17.599;23.620;1697.7;17.599;17.599;4;6;7;0.172;0.000;0.9;! +23.840;17.149;23.640;1698.8;17.149;17.149;4;6;7;0.166;0.000;0.9;! +23.860;16.909;23.660;1699.9;16.909;16.909;4;6;7;0.149;0.000;0.8;! +23.880;16.608;23.680;1701.1;16.608;16.608;4;6;7;0.146;0.000;0.8;! +23.900;16.472;23.700;1702.2;16.472;16.472;4;6;7;0.142;0.000;0.8;! +23.920;16.390;23.720;1703.5;16.390;16.390;4;6;7;0.139;0.000;0.8;! +23.940;16.346;23.740;1704.6;16.346;16.346;4;6;7;0.128;0.000;0.7;! +23.960;16.064;23.760;1705.7;16.064;16.064;4;6;7;0.126;0.000;0.7;! +23.980;15.986;23.780;1706.8;15.986;15.986;4;6;7;0.129;0.000;0.7;! +24.000;15.974;23.800;1707.8;15.974;15.974;4;6;7;0.127;0.000;0.7;! +24.020;16.074;23.820;1709.0;16.074;16.074;4;6;7;0.130;0.000;0.8;! +24.040;16.130;23.840;1710.1;16.130;16.130;4;6;7;0.127;0.000;0.7;! +24.060;16.242;23.860;1711.2;16.242;16.242;4;6;7;0.126;0.000;0.7;! +24.080;16.465;23.880;1712.2;16.465;16.465;4;6;7;0.130;0.000;0.7;! +24.100;16.675;23.900;1713.3;16.675;16.675;4;6;7;0.132;0.000;0.8;! +24.120;16.912;23.920;1714.4;16.912;16.912;4;6;7;0.133;0.000;0.8;! +24.140;16.811;23.940;1715.5;16.811;16.811;4;6;7;0.134;0.000;0.8;! +24.160;16.172;23.960;1716.7;16.172;16.172;4;6;7;0.136;0.000;0.8;! +24.180;15.556;23.980;1717.7;15.556;15.556;4;6;7;0.136;0.000;0.8;! +24.200;15.088;24.000;1718.8;15.088;15.088;4;6;7;0.136;0.000;0.8;! +24.220;14.778;24.020;1719.9;14.778;14.778;4;6;7;0.133;0.000;0.8;! +24.240;14.566;24.040;1721.0;14.566;14.566;4;6;7;0.131;0.000;0.8;! +24.260;14.532;24.060;1722.1;14.532;14.532;4;6;7;0.127;0.000;0.8;! +24.280;14.491;24.080;1723.1;14.491;14.491;4;6;7;0.124;0.000;0.8;! +24.300;14.575;24.100;1724.2;14.575;14.575;4;6;7;0.124;0.000;0.8;! +24.320;14.692;24.120;1725.7;14.692;14.692;4;6;7;0.123;0.000;0.8;! +24.340;14.794;24.140;1728.7;14.794;14.794;4;6;7;0.124;0.000;0.8;! +24.360;14.895;24.160;1731.6;14.895;14.895;4;6;7;0.124;0.000;0.8;! +24.380;15.150;24.180;1733.9;15.150;15.150;4;6;7;0.127;0.000;0.7;! +24.400;15.701;24.200;1735.0;15.701;15.701;4;6;7;0.130;0.000;0.7;! +24.420;16.448;24.220;1736.1;16.448;16.448;4;6;7;0.133;0.000;0.7;! +24.440;17.249;24.240;1737.2;17.249;17.249;4;6;7;0.137;0.000;0.7;! +24.460;18.023;24.260;1738.2;18.023;18.023;4;6;7;0.141;0.000;0.7;! +24.480;18.920;24.280;1739.3;18.920;18.920;4;6;7;0.149;0.000;0.7;! +24.500;20.034;24.300;1740.4;20.034;20.034;4;6;7;0.157;0.000;0.7;! +24.520;21.186;24.320;1741.5;21.186;21.186;4;6;7;0.165;0.000;0.7;! +24.540;22.216;24.340;1742.6;22.216;22.216;4;6;7;0.174;0.000;0.8;! +24.560;22.756;24.350;1743.7;22.756;22.756;4;6;7;0.181;0.000;0.8;! +24.580;23.121;24.370;1744.8;23.121;23.121;4;6;7;0.190;0.000;0.8;! +24.600;23.418;24.390;1745.9;23.418;23.418;4;6;7;0.195;0.000;0.8;! +24.620;23.694;24.410;1747.0;23.694;23.694;4;6;7;0.204;0.000;0.8;! +24.640;23.841;24.430;1748.1;23.841;23.841;4;6;7;0.211;0.000;0.8;! +24.660;23.856;24.450;1749.2;23.856;23.856;4;6;7;0.201;0.000;0.8;! +24.680;23.944;24.470;1750.3;23.944;23.944;4;6;7;0.192;0.000;0.8;! +24.700;23.866;24.490;1751.6;23.866;23.866;4;6;7;0.187;0.000;0.7;! +24.720;23.867;24.510;1752.9;23.867;23.867;4;6;7;0.196;0.000;0.8;! +24.740;23.454;24.530;1756.1;23.454;23.454;4;6;7;0.205;0.000;0.8;! +24.760;22.901;24.550;1760.1;22.901;22.901;4;6;7;0.212;0.000;0.9;! +24.780;22.470;24.570;1763.7;22.470;22.470;4;6;7;0.219;0.000;0.9;! +24.800;22.161;24.590;1764.7;22.161;22.161;4;6;7;0.221;0.000;1.0;! +24.820;21.508;24.610;1765.8;21.508;21.508;4;6;7;0.216;0.000;0.9;! +24.840;21.067;24.630;1766.9;21.067;21.067;4;6;7;0.212;0.000;0.9;! +24.860;21.171;24.650;1768.0;21.171;21.171;4;6;7;0.213;0.000;0.9;! +24.880;21.817;24.670;1769.1;21.817;21.817;4;6;7;0.213;0.000;0.9;! +24.900;22.246;24.690;1770.2;22.246;22.246;4;6;7;0.212;0.000;0.9;! +24.920;22.004;24.710;1771.3;22.004;22.004;4;6;7;0.212;0.000;1.0;! +24.940;21.368;24.730;1772.3;21.368;21.368;4;6;7;0.214;0.000;1.0;! +24.960;20.574;24.750;1773.4;20.574;20.574;4;6;7;0.213;0.000;1.0;! +24.980;19.417;24.770;1774.5;19.417;19.417;4;6;7;0.208;0.000;1.0;! +25.000;18.252;24.790;1775.6;18.252;18.252;4;6;7;0.202;0.000;1.0;! +25.020;17.166;24.810;1776.7;17.166;17.166;4;6;7;0.193;0.000;1.0;! +25.040;16.485;24.830;1777.9;16.485;16.485;4;6;7;0.183;0.000;1.0;! +25.060;16.102;24.850;1779.1;16.102;16.102;4;6;7;0.174;0.000;1.0;! +25.080;15.919;24.870;1780.2;15.919;15.919;4;6;7;0.168;0.000;1.0;! +25.100;15.908;24.890;1781.4;15.908;15.908;4;6;7;0.162;0.000;0.9;! +25.120;16.061;24.910;1782.6;16.061;16.061;4;6;7;0.156;0.000;0.9;! +25.140;16.337;24.930;1783.8;16.337;16.337;4;6;7;9.999;0.000;999.9;! +25.160;16.614;24.950;1784.9;16.614;16.614;4;6;7;9.999;0.000;999.9;! +25.180;16.738;24.970;1786.0;16.738;16.738;4;6;7;9.999;0.000;999.9;! +25.200;16.765;24.990;1787.2;16.765;16.765;4;6;7;9.999;0.000;999.9;! +25.220;16.242;25.010;1788.4;16.242;16.242;4;6;7;9.999;0.000;999.9;! +25.220;16.163;25.010;1788.5;16.163;16.163;4;6;7;9.999;0.000;999.9;! diff --git a/tests/cpts/xml/CPT000000217393.xml b/tests/cpts/xml/CPT000000217393.xml new file mode 100644 index 0000000..d660701 --- /dev/null +++ b/tests/cpts/xml/CPT000000217393.xml @@ -0,0 +1 @@ +dispatch-2025-01-10T17:08:11+01:00CPT00000021739330124359IMBROpubliekeTaakinfrastructuurLand2023-04-17ISO22476D1nee51.961881008 4.380341476RDNAPTRANS201885799.579 441974.0472022-12-12RTKGPS5tot10cmmaaiveld-0.824NAP2022-12-12RTKGPS4tot10cmnee2022-12-21elektrischContinuklasse2einddiepte0.0025.057Fugro Cone Penetrometer MkIICP15-CF75PB1SN2-P1E1M4-V12-S1/1701-34201510440.5888198951.0-0.090-0.114010.0080.009-0.003-0.0042022-12-11T10:55:42+01:002022-12-11T10:55:42+01:000.000,0.000,242.0,0.557,0.557,0.557,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.020,0.020,245.3,9.030,9.030,9.030,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,0.000,-999999,-999999,0.000,-999999,-999999;0.040,0.040,247.8,8.478,8.478,8.478,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-1,4,-999999,-999999,-999999,0.000,-999999,-999999,0.000,-999999,-999999;0.060,0.060,250.6,1.166,1.166,1.165,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,2,-999999,-999999,-999999,0.000,-999999,-999999,0.000,-999999,-999999;0.080,0.080,253.5,1.943,1.943,1.942,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,-999999,0.000,-999999,-999999,0.000,-999999,-999999;0.100,0.100,256.3,0.482,0.482,0.480,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,2,-999999,-999999,-999999,0.000,-999999,-999999,0.000,-999999,-999999;0.120,0.120,259.0,4.016,4.016,4.015,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,2,-999999,-999999,0.016,0.000,-999999,-999999,0.000,-999999,0.7;0.140,0.140,261.6,2.418,2.418,2.416,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.015,0.000,-999999,-999999,0.000,-999999,0.7;0.160,0.160,264.2,3.513,3.513,3.511,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.015,0.000,-999999,-999999,0.000,-999999,0.5;0.180,0.180,266.7,4.794,4.794,4.792,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.015,0.000,-999999,-999999,0.000,-999999,0.4;0.200,0.200,269.2,6.076,6.075,6.073,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.015,0.000,-999999,-999999,0.000,-999999,0.3;0.220,0.220,271.7,6.607,6.607,6.604,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,2,-999999,-999999,0.008,0.000,-999999,-999999,0.000,-999999,0.1;0.240,0.240,274.1,7.768,7.768,7.765,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,2,-999999,-999999,0.033,0.000,-999999,-999999,0.000,-999999,0.3;0.260,0.260,276.5,8.929,8.929,8.925,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,2,-999999,-999999,0.027,0.000,-999999,-999999,0.000,-999999,0.3;0.280,0.280,279.0,10.090,10.090,10.086,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,2,-999999,-999999,0.021,0.000,-999999,-999999,0.000,-999999,0.2;0.300,0.300,281.3,12.362,12.362,12.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,2,-999999,-999999,0.016,0.000,-999999,-999999,0.000,-999999,0.1;0.320,0.320,283.6,11.654,11.654,11.650,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,2,2,-999999,-999999,0.054,0.000,-999999,-999999,0.000,-999999,0.4;0.340,0.340,312.4,10.260,10.260,10.255,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,2,-999999,-999999,0.041,0.000,-999999,-999999,0.000,-999999,0.3;0.360,0.360,345.8,8.092,8.092,8.087,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,2,-999999,-999999,0.106,0.000,-999999,-999999,0.000,-999999,0.7;0.380,0.380,379.1,5.924,5.924,5.918,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,2,-999999,-999999,0.125,0.000,-999999,-999999,0.000,-999999,0.7;0.400,0.400,398.4,10.091,10.091,10.086,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,2,3,-999999,-999999,0.186,0.000,-999999,-999999,0.000,-999999,0.9;0.420,0.420,400.5,26.416,26.416,26.410,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,3,4,-999999,-999999,0.107,0.000,-999999,-999999,0.000,-999999,0.5;0.440,0.440,402.2,20.217,20.216,20.210,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,2,3,-999999,-999999,0.196,0.000,-999999,-999999,-0.001,-999999,1.0;0.460,0.460,403.9,21.227,21.226,21.220,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,2,-999999,-999999,0.109,0.000,-999999,-999999,0.000,-999999,0.5;0.480,0.480,405.7,21.182,21.182,21.175,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,1,6,-999999,-999999,0.131,0.000,-999999,-999999,0.000,-999999,0.6;0.500,0.500,407.4,19.495,19.495,19.488,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,3,7,-999999,-999999,0.177,0.000,-999999,-999999,0.000,-999999,0.8;0.520,0.520,409.2,20.001,20.001,19.994,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,3,4,-999999,-999999,0.092,0.000,-999999,-999999,0.000,-999999,0.4;0.540,0.540,410.9,21.340,21.340,21.332,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,3,3,-999999,-999999,0.069,0.000,-999999,-999999,0.000,-999999,0.3;0.560,0.560,412.5,14.713,14.712,14.705,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,3,4,-999999,-999999,0.071,0.000,-999999,-999999,0.000,-999999,0.3;0.580,0.580,414.3,18.077,18.077,18.069,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,3,4,-999999,-999999,0.086,0.000,-999999,-999999,0.000,-999999,0.4;0.600,0.600,416.0,20.451,20.451,20.443,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,4,4,-999999,-999999,0.140,0.000,-999999,-999999,0.000,-999999,0.6;0.620,0.620,417.8,21.772,21.772,21.763,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,3,4,-999999,-999999,0.105,0.000,-999999,-999999,0.000,-999999,0.4;0.640,0.640,419.6,28.058,28.058,28.049,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,3,4,-999999,-999999,0.128,0.000,-999999,-999999,0.000,-999999,0.4;0.660,0.660,421.4,34.974,34.974,34.965,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,4,4,-999999,-999999,0.173,0.000,-999999,-999999,0.000,-999999,0.6;0.680,0.680,423.2,34.488,34.488,34.478,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,4,4,-999999,-999999,0.176,0.000,-999999,-999999,0.000,-999999,0.5;0.700,0.700,424.8,32.946,32.946,32.936,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.211,0.000,-999999,-999999,0.000,-999999,0.6;0.720,0.720,426.5,31.707,31.706,31.696,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.171,0.000,-999999,-999999,0.000,-999999,0.5;0.740,0.740,428.2,30.400,30.400,30.390,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,5,6,-999999,-999999,0.137,0.000,-999999,-999999,0.000,-999999,0.4;0.760,0.760,429.8,29.030,29.030,29.019,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,5,6,-999999,-999999,0.125,0.000,-999999,-999999,-0.001,-999999,0.3;0.780,0.780,431.4,29.445,29.445,29.434,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.079,0.000,-999999,-999999,-0.001,-999999,0.2;0.800,0.800,432.7,31.089,31.089,31.078,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.068,0.000,-999999,-999999,0.000,-999999,0.1;0.820,0.820,434.0,34.270,34.270,34.259,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.094,0.000,-999999,-999999,-0.001,-999999,0.2;0.840,0.840,435.4,39.363,39.363,39.351,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.115,0.000,-999999,-999999,0.000,-999999,0.2;0.860,0.860,438.0,44.608,44.608,44.595,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.114,0.000,-999999,-999999,0.000,-999999,0.2;0.880,0.880,441.0,45.086,45.086,45.074,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.085,0.000,-999999,-999999,0.000,-999999,0.2;0.900,0.900,443.0,43.410,43.410,43.397,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.104,0.000,-999999,-999999,-0.001,-999999,0.2;0.920,0.920,444.8,40.019,40.018,40.005,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.140,0.000,-999999,-999999,-0.001,-999999,0.3;0.940,0.940,446.6,39.301,39.300,39.287,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,4,5,-999999,-999999,0.175,0.000,-999999,-999999,-0.001,-999999,0.4;0.960,0.960,448.3,38.096,38.096,38.083,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,4,5,-999999,-999999,0.151,0.000,-999999,-999999,0.000,-999999,0.4;0.980,0.980,450.0,36.353,36.352,36.339,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,5,5,-999999,-999999,0.144,0.000,-999999,-999999,-0.001,-999999,0.4;1.000,1.000,451.6,30.685,30.685,30.671,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.137,0.000,-999999,-999999,-0.001,-999999,0.3;1.020,1.020,453.3,27.967,27.966,27.952,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,5,5,-999999,-999999,0.127,0.000,-999999,-999999,-0.002,-999999,0.3;1.040,1.040,456.3,27.427,27.427,27.412,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.131,0.000,-999999,-999999,-0.001,-999999,0.4;1.060,1.060,465.5,27.128,27.127,27.112,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,5,5,-999999,-999999,0.121,0.000,-999999,-999999,-0.001,-999999,0.4;1.080,1.080,471.8,26.890,26.890,26.875,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,5,5,-999999,-999999,0.105,0.000,-999999,-999999,-0.001,-999999,0.3;1.100,1.100,473.8,25.624,25.624,25.608,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.075,0.000,-999999,-999999,-0.001,-999999,0.2;1.120,1.120,475.8,26.106,26.106,26.090,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.055,0.000,-999999,-999999,-0.001,-999999,0.2;1.140,1.140,477.7,27.480,27.480,27.464,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.083,0.000,-999999,-999999,-0.001,-999999,0.3;1.160,1.160,479.5,27.907,27.907,27.891,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.074,0.000,-999999,-999999,-0.001,-999999,0.2;1.180,1.180,487.1,27.673,27.672,27.656,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.103,0.000,-999999,-999999,-0.001,-999999,0.3;1.200,1.200,496.6,27.709,27.708,27.692,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.117,0.000,-999999,-999999,-0.001,-999999,0.4;1.220,1.220,499.8,29.292,29.291,29.274,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.129,0.000,-999999,-999999,-0.001,-999999,0.4;1.240,1.240,501.8,28.553,28.552,28.535,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.131,0.000,-999999,-999999,-0.001,-999999,0.4;1.260,1.260,503.7,27.963,27.962,27.945,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.137,0.000,-999999,-999999,-0.001,-999999,0.4;1.280,1.280,505.5,28.016,28.015,27.997,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.142,0.000,-999999,-999999,-0.001,-999999,0.5;1.300,1.300,507.1,27.724,27.723,27.705,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.141,0.000,-999999,-999999,-0.001,-999999,0.5;1.320,1.320,508.7,27.648,27.648,27.629,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.147,0.000,-999999,-999999,-0.001,-999999,0.5;1.340,1.340,510.2,27.667,27.667,27.648,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.134,0.000,-999999,-999999,-0.001,-999999,0.4;1.360,1.360,511.6,27.617,27.616,27.597,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.143,0.000,-999999,-999999,-0.001,-999999,0.5;1.380,1.380,513.0,27.144,27.143,27.124,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.146,0.000,-999999,-999999,-0.001,-999999,0.5;1.400,1.400,514.3,26.846,26.845,26.826,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.157,0.000,-999999,-999999,-0.001,-999999,0.5;1.420,1.420,515.6,26.289,26.288,26.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.173,0.000,-999999,-999999,-0.001,-999999,0.6;1.440,1.440,516.9,26.220,26.220,26.200,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.168,0.000,-999999,-999999,-0.001,-999999,0.6;1.460,1.460,518.1,25.405,25.405,25.385,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.162,0.000,-999999,-999999,-0.001,-999999,0.6;1.480,1.480,519.4,24.652,24.652,24.631,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.146,0.000,-999999,-999999,-0.001,-999999,0.5;1.500,1.500,520.6,24.188,24.188,24.167,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.147,0.000,-999999,-999999,-0.001,-999999,0.6;1.520,1.520,521.8,23.359,23.358,23.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.154,0.000,-999999,-999999,-0.001,-999999,0.6;1.540,1.540,523.0,22.434,22.434,22.412,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.148,0.000,-999999,-999999,0.000,-999999,0.6;1.560,1.560,524.2,21.633,21.633,21.611,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.152,0.000,-999999,-999999,-0.001,-999999,0.6;1.580,1.580,525.4,21.045,21.045,21.023,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.139,0.000,-999999,-999999,-0.001,-999999,0.6;1.600,1.600,526.6,20.583,20.583,20.560,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.144,0.000,-999999,-999999,-0.001,-999999,0.7;1.620,1.620,527.7,19.775,19.775,19.752,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.140,0.000,-999999,-999999,-0.001,-999999,0.7;1.640,1.640,528.8,19.017,19.017,18.994,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.134,0.000,-999999,-999999,-0.001,-999999,0.6;1.660,1.660,530.0,18.236,18.236,18.213,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.127,0.000,-999999,-999999,0.000,-999999,0.6;1.680,1.680,531.2,17.401,17.401,17.377,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.120,0.000,-999999,-999999,0.000,-999999,0.6;1.700,1.700,532.3,16.548,16.548,16.524,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.115,0.000,-999999,-999999,-0.001,-999999,0.6;1.720,1.710,533.6,15.804,15.803,15.779,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.109,0.000,-999999,-999999,-0.001,-999999,0.6;1.740,1.730,535.2,15.226,15.226,15.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.104,-0.001,-999999,-999999,-0.001,-999999,0.6;1.760,1.750,536.9,14.648,14.648,14.623,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.102,-0.001,-999999,-999999,-0.001,-999999,0.6;1.780,1.770,538.2,14.054,14.054,14.029,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.101,-0.001,-999999,-999999,-0.001,-999999,0.7;1.800,1.790,539.0,13.385,13.385,13.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.102,-0.001,-999999,-999999,-0.001,-999999,0.7;1.820,1.810,539.8,12.706,12.706,12.680,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.109,-0.001,-999999,-999999,-0.001,-999999,0.8;1.840,1.830,540.5,12.055,12.055,12.029,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.117,-0.001,-999999,-999999,-0.001,-999999,0.9;1.860,1.850,541.3,11.314,11.314,11.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.118,-0.001,-999999,-999999,-0.001,-999999,1.0;1.880,1.870,542.0,10.472,10.472,10.446,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.118,-0.001,-999999,-999999,-0.001,-999999,1.0;1.900,1.890,542.8,9.559,9.559,9.533,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.119,-0.001,-999999,-999999,-0.001,-999999,1.1;1.920,1.910,543.6,8.908,8.908,8.881,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.118,-0.001,-999999,-999999,0.000,-999999,1.2;1.940,1.930,544.3,8.744,8.744,8.717,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.111,-0.001,-999999,-999999,0.000,-999999,1.1;1.960,1.950,545.2,8.867,8.867,8.839,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.105,-0.001,-999999,-999999,0.000,-999999,1.1;1.980,1.970,545.9,8.773,8.773,8.745,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.098,-0.001,-999999,-999999,-0.001,-999999,1.1;2.000,1.990,546.7,8.341,8.339,8.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.089,-0.002,-999999,-999999,-0.004,-999999,1.0;2.020,2.010,547.4,7.842,7.842,7.814,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.083,-0.001,-999999,-999999,0.001,-999999,1.0;2.040,2.030,548.2,7.607,7.608,7.580,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.077,-0.001,-999999,-999999,0.003,-999999,0.9;2.060,2.050,549.0,7.619,7.620,7.591,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.070,-0.001,-999999,-999999,0.002,-999999,0.8;2.080,2.070,549.7,7.517,7.516,7.487,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.063,-0.002,-999999,-999999,-0.002,-999999,0.8;2.100,2.090,550.5,7.314,7.313,7.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.057,-0.002,-999999,-999999,-0.004,-999999,0.7;2.120,2.110,551.3,7.141,7.139,7.110,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.052,-0.002,-999999,-999999,-0.003,-999999,0.7;2.140,2.130,552.2,7.038,7.037,7.007,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.054,-0.002,-999999,-999999,-0.001,-999999,0.7;2.160,2.150,555.7,6.859,6.859,6.829,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.056,-0.002,-999999,-999999,-0.001,-999999,0.7;2.180,2.170,559.1,6.681,6.681,6.651,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.058,-0.002,-999999,-999999,-0.001,-999999,0.8;2.200,2.190,562.6,6.503,6.503,6.472,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.059,-0.002,-999999,-999999,-0.001,-999999,0.9;2.220,2.210,564.1,6.378,6.378,6.347,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.060,-0.002,-999999,-999999,0.000,-999999,0.9;2.240,2.230,564.8,6.183,6.183,6.152,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.061,-0.002,-999999,-999999,0.000,-999999,1.0;2.260,2.250,565.6,5.939,5.939,5.908,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.064,-0.002,-999999,-999999,0.001,-999999,1.0;2.280,2.270,566.4,5.711,5.711,5.679,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.065,-0.002,-999999,-999999,0.001,-999999,1.1;2.300,2.290,567.2,5.410,5.411,5.378,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.066,-0.002,-999999,-999999,0.001,-999999,1.2;2.320,2.310,567.9,5.017,5.017,4.985,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.066,-0.002,-999999,-999999,0.001,-999999,1.3;2.340,2.330,568.7,4.518,4.519,4.486,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.065,-0.003,-999999,-999999,0.001,-999999,1.3;2.360,2.350,569.5,3.976,3.976,3.943,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.063,-0.003,-999999,-999999,0.001,-999999,1.5;2.380,2.370,570.2,3.429,3.430,3.397,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.061,-0.004,-999999,-999999,0.001,-999999,1.6;2.400,2.390,571.0,2.876,2.876,2.843,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.061,-0.005,-999999,-999999,0.001,-999999,1.9;2.420,2.410,571.8,2.344,2.344,2.310,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.061,-0.006,-999999,-999999,0.001,-999999,2.2;2.440,2.430,572.5,1.853,1.853,1.819,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.062,-0.007,-999999,-999999,0.001,-999999,2.7;2.460,2.450,573.3,1.468,1.468,1.434,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.062,-0.009,-999999,-999999,0.001,-999999,3.3;2.480,2.470,574.1,1.230,1.230,1.196,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.060,-0.011,-999999,-999999,0.002,-999999,3.8;2.500,2.490,574.8,1.058,1.059,1.024,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.056,-0.012,-999999,-999999,0.003,-999999,4.3;2.520,2.510,575.6,0.927,0.929,0.894,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.049,-0.013,-999999,-999999,0.004,-999999,4.4;2.540,2.530,576.4,0.836,0.839,0.803,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.043,-0.011,-999999,-999999,0.006,-999999,4.4;2.560,2.550,577.2,0.769,0.773,0.737,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.038,-0.011,-999999,-999999,0.007,-999999,4.3;2.580,2.570,577.9,0.731,0.735,0.699,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.036,-0.011,-999999,-999999,0.008,-999999,4.3;2.600,2.590,578.7,0.739,0.743,0.707,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.035,-0.010,-999999,-999999,0.009,-999999,4.4;2.620,2.610,579.5,0.778,0.782,0.745,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.037,-0.010,-999999,-999999,0.009,-999999,4.8;2.640,2.630,580.2,0.784,0.787,0.750,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.039,-0.012,-999999,-999999,0.008,-999999,5.2;2.660,2.650,581.0,0.755,0.759,0.722,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.042,-0.011,-999999,-999999,0.008,-999999,5.8;2.680,2.670,581.8,0.715,0.717,0.680,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.046,-0.016,-999999,-999999,0.006,-999999,6.5;2.700,2.690,582.5,0.665,0.667,0.629,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.048,-0.021,-999999,-999999,0.003,-999999,7.0;2.720,2.710,583.3,0.613,0.615,0.577,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.049,-0.024,-999999,-999999,0.003,-999999,7.5;2.740,2.730,584.1,0.576,0.578,0.539,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.048,-0.025,-999999,-999999,0.004,-999999,7.6;2.760,2.750,584.8,0.553,0.554,0.516,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.046,-0.026,-999999,-999999,0.004,-999999,7.8;2.780,2.770,585.6,0.546,0.547,0.508,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.046,-0.028,-999999,-999999,0.003,-999999,8.1;2.800,2.790,586.4,0.541,0.543,0.504,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.044,-0.030,-999999,-999999,0.003,-999999,8.1;2.820,2.810,587.2,0.526,0.528,0.488,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.044,-0.031,-999999,-999999,0.003,-999999,8.2;2.840,2.830,587.9,0.511,0.512,0.472,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.042,-0.033,-999999,-999999,0.003,-999999,8.1;2.860,2.850,588.7,0.489,0.490,0.450,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.039,-0.035,-999999,-999999,0.003,-999999,7.8;2.880,2.870,589.5,0.475,0.477,0.436,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.036,-0.037,-999999,-999999,0.003,-999999,7.3;2.900,2.890,590.2,0.459,0.459,0.419,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.033,-0.040,-999999,-999999,0.002,-999999,6.8;2.920,2.910,591.0,0.457,0.458,0.417,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.031,-0.041,-999999,-999999,0.002,-999999,6.4;2.940,2.930,591.8,0.478,0.479,0.438,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.029,-0.039,-999999,-999999,0.002,-999999,6.0;2.960,2.950,592.5,0.480,0.481,0.440,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.027,-0.039,-999999,-999999,0.003,-999999,5.8;2.980,2.970,593.3,0.475,0.476,0.434,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.029,-0.039,-999999,-999999,0.003,-999999,6.0;3.000,2.990,594.1,0.474,0.475,0.433,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.031,-0.039,-999999,-999999,0.003,-999999,6.6;3.020,3.010,594.9,0.467,0.468,0.426,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.033,-0.040,-999999,-999999,0.003,-999999,6.9;3.040,3.030,595.6,0.469,0.470,0.428,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.036,-0.041,-999999,-999999,0.003,-999999,7.2;3.060,3.050,596.4,0.487,0.488,0.445,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.038,-0.041,-999999,-999999,0.002,-999999,7.5;3.080,3.070,597.2,0.526,0.527,0.484,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.040,-0.038,-999999,-999999,0.002,-999999,7.9;3.100,3.090,597.9,0.560,0.561,0.518,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.043,-0.035,-999999,-999999,0.003,-999999,8.2;3.120,3.110,598.7,0.567,0.568,0.525,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.044,-0.035,-999999,-999999,0.003,-999999,8.3;3.140,3.130,601.1,0.566,0.568,0.524,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.047,-0.036,-999999,-999999,0.003,-999999,8.5;3.160,3.150,604.6,0.572,0.573,0.529,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.050,-0.036,-999999,-999999,0.002,-999999,8.8;3.180,3.170,608.1,0.577,0.578,0.534,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.053,-0.037,-999999,-999999,0.002,-999999,9.3;3.200,3.190,610.7,0.579,0.580,0.535,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.054,-0.037,-999999,-999999,0.002,-999999,9.5;3.220,3.210,611.5,0.585,0.586,0.541,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.053,-0.037,-999999,-999999,0.002,-999999,9.5;3.240,3.230,612.3,0.566,0.567,0.522,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.052,-0.038,-999999,-999999,0.002,-999999,9.4;3.260,3.250,613.0,0.529,0.530,0.485,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.051,-0.041,-999999,-999999,0.003,-999999,9.3;3.280,3.270,613.8,0.507,0.509,0.463,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.051,-0.042,-999999,-999999,0.003,-999999,9.2;3.300,3.290,614.6,0.527,0.529,0.483,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.051,-0.041,-999999,-999999,0.003,-999999,9.3;3.320,3.310,615.4,0.553,0.555,0.508,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.050,-0.040,-999999,-999999,0.003,-999999,9.3;3.340,3.330,616.1,0.560,0.562,0.515,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.050,-0.040,-999999,-999999,0.003,-999999,9.5;3.360,3.350,616.9,0.539,0.540,0.494,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.050,-0.042,-999999,-999999,0.003,-999999,9.9;3.380,3.370,617.7,0.492,0.493,0.446,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.050,-0.046,-999999,-999999,0.003,-999999,10.2;3.400,3.390,618.5,0.433,0.434,0.387,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,5,5,-999999,-999999,0.046,-0.056,-999999,-999999,0.002,-999999,10.1;3.420,3.410,619.2,0.390,0.391,0.343,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,5,5,-999999,-999999,0.042,-0.064,-999999,-999999,0.002,-999999,9.9;3.440,3.430,620.0,0.356,0.357,0.309,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,5,5,-999999,-999999,0.039,-0.073,-999999,-999999,0.002,-999999,9.8;3.460,3.450,620.7,0.325,0.325,0.277,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,5,5,-999999,-999999,0.036,-0.083,-999999,-999999,0.002,-999999,9.7;3.480,3.470,621.5,0.305,0.305,0.257,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,5,5,-999999,-999999,0.033,-0.090,-999999,-999999,0.002,-999999,9.5;3.500,3.490,622.3,0.319,0.320,0.271,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,5,5,-999999,-999999,0.031,-0.085,-999999,-999999,0.002,-999999,9.5;3.520,3.510,623.1,0.326,0.327,0.278,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.030,-0.083,-999999,-999999,0.002,-999999,9.5;3.540,3.530,623.8,0.316,0.317,0.267,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,5,5,-999999,-999999,0.030,-0.087,-999999,-999999,0.002,-999999,9.6;3.560,3.550,624.6,0.309,0.309,0.260,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,5,5,-999999,-999999,0.030,-0.090,-999999,-999999,0.002,-999999,9.7;3.580,3.570,625.4,0.305,0.306,0.256,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,5,5,-999999,-999999,0.030,-0.092,-999999,-999999,0.002,-999999,9.5;3.600,3.590,626.2,0.300,0.301,0.251,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.029,-0.096,-999999,-999999,0.002,-999999,9.3;3.620,3.610,626.9,0.292,0.292,0.242,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.030,-0.100,-999999,-999999,0.002,-999999,9.2;3.640,3.630,627.7,0.309,0.310,0.259,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.032,-0.094,-999999,-999999,0.002,-999999,8.9;3.660,3.650,628.5,0.353,0.354,0.303,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.035,-0.081,-999999,-999999,0.002,-999999,8.1;3.680,3.670,629.3,0.438,0.439,0.387,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.036,-0.063,-999999,-999999,0.002,-999999,6.5;3.700,3.690,630.0,0.587,0.588,0.536,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.037,-0.046,-999999,-999999,0.002,-999999,5.1;3.720,3.710,630.8,0.862,0.864,0.812,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.042,-0.030,-999999,-999999,0.003,-999999,4.6;3.740,3.730,631.6,1.347,1.349,1.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.051,-0.018,-999999,-999999,0.003,-999999,4.8;3.760,3.750,632.3,1.581,1.582,1.530,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.061,-0.016,-999999,-999999,0.003,-999999,5.2;3.780,3.770,633.1,1.712,1.713,1.661,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.065,-0.015,-999999,-999999,0.003,-999999,5.3;3.800,3.790,633.9,1.501,1.503,1.450,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.062,-0.017,-999999,-999999,0.004,-999999,5.2;3.820,3.810,634.7,1.172,1.173,1.120,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.061,-0.023,-999999,-999999,0.003,-999999,5.2;3.840,3.830,635.4,0.735,0.736,0.683,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.061,-0.036,-999999,-999999,0.004,-999999,5.6;3.860,3.850,636.2,0.580,0.582,0.528,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.060,-0.043,-999999,-999999,0.006,-999999,6.2;3.880,3.870,637.0,0.633,0.636,0.582,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.056,-0.037,-999999,-999999,0.007,-999999,6.6;3.900,3.890,637.7,0.705,0.709,0.654,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.052,-0.032,-999999,-999999,0.008,-999999,6.9;3.920,3.910,638.5,0.750,0.753,0.699,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.051,-0.029,-999999,-999999,0.009,-999999,7.3;3.940,3.930,639.3,0.762,0.766,0.711,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.056,-0.028,-999999,-999999,0.009,-999999,7.9;3.960,3.940,640.0,0.756,0.760,0.705,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.062,-0.028,-999999,-999999,0.009,-999999,8.8;3.980,3.960,640.8,0.734,0.738,0.682,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.067,-0.030,-999999,-999999,0.009,-999999,9.7;4.000,3.980,641.6,0.677,0.680,0.624,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.071,-0.035,-999999,-999999,0.008,-999999,10.8;4.020,4.000,642.4,0.601,0.604,0.548,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.072,-0.042,-999999,-999999,0.007,-999999,11.6;4.040,4.020,643.2,0.524,0.527,0.470,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.068,-0.051,-999999,-999999,0.006,-999999,11.7;4.060,4.040,643.9,0.464,0.466,0.409,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.063,-0.062,-999999,-999999,0.005,-999999,11.4;4.080,4.060,644.7,0.424,0.426,0.370,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.057,-0.070,-999999,-999999,0.005,-999999,11.1;4.100,4.080,645.4,0.393,0.395,0.338,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.051,-0.078,-999999,-999999,0.005,-999999,10.9;4.120,4.100,646.9,0.376,0.378,0.321,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.049,-0.082,-999999,-999999,0.005,-999999,11.3;4.140,4.120,650.4,0.382,0.384,0.326,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.046,-0.080,-999999,-999999,0.005,-999999,11.3;4.160,4.140,653.8,0.387,0.389,0.331,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.042,-0.078,-999999,-999999,0.006,-999999,11.0;4.180,4.160,657.3,0.392,0.395,0.336,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.040,-0.076,-999999,-999999,0.006,-999999,10.6;4.200,4.180,658.3,0.371,0.374,0.315,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.038,-0.081,-999999,-999999,0.006,-999999,10.3;4.220,4.200,659.0,0.358,0.361,0.302,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.037,-0.085,-999999,-999999,0.006,-999999,10.2;4.240,4.220,659.8,0.355,0.358,0.298,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.036,-0.086,-999999,-999999,0.007,-999999,10.1;4.260,4.240,660.5,0.352,0.355,0.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.036,-0.087,-999999,-999999,0.007,-999999,10.0;4.280,4.260,661.3,0.345,0.348,0.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.036,-0.089,-999999,-999999,0.007,-999999,10.2;4.300,4.280,662.1,0.346,0.349,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.036,-0.089,-999999,-999999,0.007,-999999,10.3;4.320,4.300,662.9,0.348,0.351,0.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.037,-0.088,-999999,-999999,0.007,-999999,10.6;4.340,4.320,663.6,0.350,0.353,0.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.037,-0.088,-999999,-999999,0.007,-999999,10.7;4.360,4.340,664.4,0.347,0.351,0.290,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.038,-0.089,-999999,-999999,0.008,-999999,11.0;4.380,4.360,665.2,0.342,0.346,0.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.039,-0.091,-999999,-999999,0.008,-999999,11.3;4.400,4.380,666.0,0.338,0.341,0.280,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.040,-0.093,-999999,-999999,0.008,-999999,11.5;4.420,4.400,666.7,0.340,0.343,0.281,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.040,-0.093,-999999,-999999,0.008,-999999,11.8;4.440,4.420,667.5,0.342,0.345,0.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.041,-0.093,-999999,-999999,0.008,-999999,12.1;4.460,4.440,668.3,0.340,0.343,0.281,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.042,-0.094,-999999,-999999,0.008,-999999,12.5;4.480,4.460,669.0,0.338,0.342,0.279,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.043,-0.096,-999999,-999999,0.008,-999999,12.8;4.500,4.480,669.8,0.332,0.336,0.273,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.043,-0.098,-999999,-999999,0.008,-999999,13.0;4.520,4.500,670.6,0.323,0.326,0.263,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.044,-0.103,-999999,-999999,0.008,-999999,13.2;4.540,4.520,671.3,0.321,0.325,0.261,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.044,-0.104,-999999,-999999,0.008,-999999,13.1;4.560,4.540,672.2,0.325,0.329,0.265,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.044,-0.104,-999999,-999999,0.008,-999999,13.1;4.580,4.560,672.9,0.336,0.339,0.275,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.045,-0.101,-999999,-999999,0.008,-999999,13.2;4.600,4.580,673.7,0.349,0.353,0.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.046,-0.097,-999999,-999999,0.008,-999999,13.1;4.620,4.600,674.5,0.363,0.366,0.302,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.046,-0.094,-999999,-999999,0.008,-999999,12.9;4.640,4.620,675.2,0.378,0.382,0.317,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.046,-0.090,-999999,-999999,0.008,-999999,12.6;4.660,4.640,676.0,0.376,0.379,0.314,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.045,-0.091,-999999,-999999,0.008,-999999,12.2;4.680,4.660,676.8,0.374,0.377,0.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.044,-0.093,-999999,-999999,0.008,-999999,11.9;4.700,4.680,677.5,0.374,0.377,0.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.043,-0.094,-999999,-999999,0.008,-999999,11.7;4.720,4.700,678.3,0.367,0.370,0.304,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.043,-0.096,-999999,-999999,0.008,-999999,11.7;4.740,4.720,679.1,0.364,0.367,0.301,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.042,-0.098,-999999,-999999,0.008,-999999,11.7;4.760,4.740,679.8,0.350,0.354,0.287,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.040,-0.103,-999999,-999999,0.008,-999999,11.5;4.780,4.760,680.6,0.333,0.336,0.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.038,-0.110,-999999,-999999,0.008,-999999,11.3;4.800,4.780,681.4,0.307,0.311,0.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.036,-0.122,-999999,-999999,0.008,-999999,11.1;4.820,4.800,682.2,0.289,0.293,0.226,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.034,-0.132,-999999,-999999,0.008,-999999,10.9;4.840,4.820,682.9,0.283,0.287,0.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.034,-0.136,-999999,-999999,0.008,-999999,11.0;4.860,4.840,683.7,0.287,0.290,0.223,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.036,-0.134,-999999,-999999,0.009,-999999,11.3;4.880,4.860,684.5,0.300,0.303,0.235,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.037,-0.127,-999999,-999999,0.009,-999999,11.2;4.900,4.880,685.3,0.341,0.344,0.276,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.037,-0.109,-999999,-999999,0.009,-999999,11.0;4.920,4.900,686.0,0.381,0.385,0.317,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.039,-0.095,-999999,-999999,0.009,-999999,10.9;4.940,4.920,686.8,0.404,0.408,0.339,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.040,-0.089,-999999,-999999,0.009,-999999,10.7;4.960,4.940,687.6,0.417,0.421,0.352,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.042,-0.086,-999999,-999999,0.009,-999999,10.6;4.980,4.960,688.3,0.432,0.436,0.367,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.043,-0.083,-999999,-999999,0.009,-999999,10.4;5.000,4.980,689.1,0.433,0.437,0.367,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.043,-0.083,-999999,-999999,0.009,-999999,10.3;5.020,5.000,689.9,0.425,0.429,0.359,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.043,-0.084,-999999,-999999,0.010,-999999,10.2;5.040,5.020,690.7,0.414,0.418,0.348,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.043,-0.086,-999999,-999999,0.010,-999999,10.3;5.060,5.040,691.4,0.407,0.412,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.043,-0.088,-999999,-999999,0.010,-999999,10.6;5.080,5.060,692.2,0.396,0.401,0.330,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.044,-0.091,-999999,-999999,0.011,-999999,10.8;5.100,5.080,693.0,0.381,0.385,0.314,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.044,-0.095,-999999,-999999,0.011,-999999,10.9;5.120,5.100,694.6,0.369,0.374,0.303,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.044,-0.098,-999999,-999999,0.011,-999999,11.1;5.140,5.120,698.1,0.379,0.385,0.313,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.045,-0.093,-999999,-999999,0.012,-999999,11.3;5.160,5.140,701.6,0.390,0.395,0.323,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.046,-0.088,-999999,-999999,0.013,-999999,11.2;5.180,5.160,705.0,0.401,0.406,0.334,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.047,-0.085,-999999,-999999,0.013,-999999,11.0;5.200,5.180,705.8,0.426,0.432,0.359,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.047,-0.079,-999999,-999999,0.014,-999999,10.7;5.220,5.200,706.6,0.459,0.465,0.392,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.046,-0.072,-999999,-999999,0.014,-999999,10.4;5.240,5.220,707.3,0.479,0.485,0.412,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.042,-0.068,-999999,-999999,0.014,-999999,9.8;5.260,5.240,708.1,0.471,0.478,0.404,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.039,-0.068,-999999,-999999,0.015,-999999,9.1;5.280,5.260,708.9,0.432,0.439,0.365,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.035,-0.073,-999999,-999999,0.016,-999999,8.5;5.300,5.280,709.7,0.380,0.387,0.313,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.032,-0.083,-999999,-999999,0.017,-999999,8.2;5.320,5.300,710.4,0.329,0.337,0.262,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.030,-0.097,-999999,-999999,0.017,-999999,8.2;5.340,5.320,711.2,0.291,0.299,0.224,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.028,-0.113,-999999,-999999,0.018,-999999,8.3;5.360,5.340,712.0,0.270,0.278,0.203,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.025,-0.125,-999999,-999999,0.018,-999999,8.2;5.380,5.360,712.7,0.259,0.267,0.192,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.023,-0.133,-999999,-999999,0.018,-999999,8.1;5.400,5.380,713.5,0.249,0.256,0.181,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.022,-0.140,-999999,-999999,0.018,-999999,8.1;5.420,5.400,714.3,0.235,0.243,0.167,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.020,-0.149,-999999,-999999,0.019,-999999,7.8;5.440,5.420,715.0,0.237,0.245,0.170,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.019,-0.145,-999999,-999999,0.020,-999999,7.3;5.460,5.440,715.8,0.257,0.266,0.189,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.017,-0.128,-999999,-999999,0.020,-999999,6.5;5.480,5.460,716.6,0.283,0.291,0.215,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.018,-0.111,-999999,-999999,0.021,-999999,6.4;5.500,5.480,717.4,0.301,0.310,0.234,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.020,-0.100,-999999,-999999,0.021,-999999,6.9;5.520,5.500,718.1,0.314,0.324,0.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.022,-0.094,-999999,-999999,0.022,-999999,7.4;5.540,5.520,718.9,0.329,0.338,0.260,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.023,-0.095,-999999,-999999,0.020,-999999,7.6;5.560,5.540,719.7,0.329,0.338,0.260,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.024,-0.097,-999999,-999999,0.020,-999999,7.7;5.580,5.560,720.5,0.318,0.326,0.248,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.023,-0.102,-999999,-999999,0.020,-999999,7.7;5.600,5.580,721.2,0.295,0.303,0.225,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.023,-0.115,-999999,-999999,0.020,-999999,7.8;5.620,5.600,722.0,0.269,0.277,0.199,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.022,-0.133,-999999,-999999,0.019,-999999,7.9;5.640,5.620,722.8,0.245,0.253,0.174,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.020,-0.153,-999999,-999999,0.019,-999999,7.5;5.660,5.640,723.5,0.235,0.244,0.165,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.018,-0.165,-999999,-999999,0.019,-999999,7.3;5.680,5.660,724.3,0.225,0.233,0.154,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.016,-0.178,-999999,-999999,0.019,-999999,6.9;5.700,5.680,725.1,0.210,0.218,0.138,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.015,-0.200,-999999,-999999,0.019,-999999,6.6;5.720,5.700,725.9,0.206,0.214,0.134,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.015,-0.209,-999999,-999999,0.019,-999999,6.5;5.740,5.720,726.7,0.207,0.214,0.134,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.014,-0.210,-999999,-999999,0.019,-999999,6.2;5.760,5.740,727.4,0.216,0.224,0.144,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.014,-0.198,-999999,-999999,0.019,-999999,5.8;5.780,5.760,728.2,0.240,0.248,0.168,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.015,-0.172,-999999,-999999,0.019,-999999,5.8;5.800,5.780,729.0,0.273,0.281,0.200,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.015,-0.146,-999999,-999999,0.019,-999999,5.5;5.820,5.800,729.7,0.308,0.316,0.235,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.015,-0.126,-999999,-999999,0.018,-999999,5.1;5.840,5.820,730.5,0.350,0.357,0.276,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.016,-0.109,-999999,-999999,0.018,-999999,4.7;5.860,5.840,731.3,0.382,0.390,0.308,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.016,-0.099,-999999,-999999,0.018,-999999,4.4;5.880,5.860,732.0,0.420,0.427,0.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.016,-0.089,-999999,-999999,0.018,-999999,4.0;5.900,5.880,732.8,0.444,0.452,0.370,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.015,-0.084,-999999,-999999,0.018,-999999,3.7;5.920,5.900,733.6,0.456,0.463,0.381,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.014,-0.083,-999999,-999999,0.017,-999999,3.2;5.940,5.920,734.3,0.444,0.451,0.369,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.013,-0.086,-999999,-999999,0.017,-999999,3.1;5.960,5.940,735.2,0.427,0.435,0.352,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.013,-0.091,-999999,-999999,0.017,-999999,2.9;5.980,5.960,735.9,0.433,0.440,0.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.014,-0.090,-999999,-999999,0.018,-999999,3.0;6.000,5.980,736.7,0.434,0.442,0.358,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.015,-0.090,-999999,-999999,0.018,-999999,3.1;6.020,6.000,737.5,0.461,0.468,0.384,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.015,-0.084,-999999,-999999,0.018,-999999,3.0;6.040,6.020,738.2,0.508,0.516,0.432,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.014,-0.075,-999999,-999999,0.018,-999999,2.8;6.060,6.040,739.0,0.563,0.570,0.486,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.014,-0.067,-999999,-999999,0.018,-999999,2.7;6.080,6.060,739.8,0.597,0.604,0.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.013,-0.063,-999999,-999999,0.018,-999999,2.5;6.100,6.080,740.7,0.557,0.565,0.480,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.012,-0.068,-999999,-999999,0.018,-999999,2.2;6.120,6.100,744.2,0.501,0.508,0.423,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.011,-0.077,-999999,-999999,0.019,-999999,2.2;6.140,6.120,747.8,0.444,0.452,0.366,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.011,-0.088,-999999,-999999,0.019,-999999,2.2;6.160,6.140,751.3,0.387,0.396,0.310,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.011,-0.103,-999999,-999999,0.019,-999999,2.0;6.180,6.160,752.6,0.372,0.380,0.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.011,-0.107,-999999,-999999,0.020,-999999,1.9;6.200,6.180,753.4,0.460,0.469,0.383,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.012,-0.081,-999999,-999999,0.021,-999999,1.8;6.220,6.200,754.2,0.670,0.679,0.593,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.012,-0.052,-999999,-999999,0.021,-999999,1.7;6.240,6.220,755.0,0.923,0.932,0.845,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.013,-0.037,-999999,-999999,0.021,-999999,1.7;6.260,6.240,755.7,1.016,1.025,0.938,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.014,-0.034,-999999,-999999,0.020,-999999,1.7;6.280,6.260,756.5,1.050,1.059,0.971,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.016,-0.033,-999999,-999999,0.020,-999999,1.7;6.300,6.280,757.3,1.064,1.072,0.985,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.019,-0.033,-999999,-999999,0.020,-999999,2.0;6.320,6.290,758.0,1.010,1.019,0.931,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.022,-0.036,-999999,-999999,0.020,-999999,2.4;6.340,6.310,758.8,0.865,0.873,0.785,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.023,-0.043,-999999,-999999,0.019,-999999,2.6;6.360,6.330,759.6,0.689,0.698,0.609,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.021,-0.055,-999999,-999999,0.020,-999999,2.6;6.380,6.350,760.3,0.571,0.579,0.490,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.019,-0.068,-999999,-999999,0.020,-999999,2.4;6.400,6.370,761.1,0.536,0.545,0.456,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.017,-0.072,-999999,-999999,0.021,-999999,2.1;6.420,6.390,761.9,0.690,0.698,0.609,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.015,-0.055,-999999,-999999,0.021,-999999,1.7;6.440,6.410,762.7,0.968,0.977,0.887,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.014,-0.037,-999999,-999999,0.021,-999999,1.5;6.460,6.430,763.5,1.184,1.193,1.103,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.013,-0.031,-999999,-999999,0.021,-999999,1.3;6.480,6.450,764.2,1.247,1.256,1.165,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.013,-0.029,-999999,-999999,0.020,-999999,1.1;6.500,6.470,765.0,1.253,1.262,1.171,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.013,-0.029,-999999,-999999,0.020,-999999,1.1;6.520,6.490,765.8,1.281,1.289,1.198,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.014,-0.029,-999999,-999999,0.021,-999999,1.1;6.540,6.510,766.5,1.346,1.354,1.263,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.017,-0.027,-999999,-999999,0.021,-999999,1.4;6.560,6.530,767.3,1.188,1.196,1.105,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.021,-0.031,-999999,-999999,0.021,-999999,1.9;6.580,6.550,768.1,0.868,0.876,0.784,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.022,-0.045,-999999,-999999,0.020,-999999,2.3;6.600,6.570,768.8,0.630,0.639,0.547,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.020,-0.065,-999999,-999999,0.020,-999999,2.5;6.620,6.590,769.6,0.477,0.486,0.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.019,-0.088,-999999,-999999,0.021,-999999,2.8;6.640,6.610,770.4,0.364,0.373,0.280,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.017,-0.121,-999999,-999999,0.022,-999999,3.2;6.660,6.630,771.2,0.303,0.312,0.220,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.016,-0.152,-999999,-999999,0.023,-999999,3.7;6.680,6.650,771.9,0.283,0.293,0.200,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.014,-0.163,-999999,-999999,0.024,-999999,3.8;6.700,6.670,772.7,0.289,0.300,0.206,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.011,-0.155,-999999,-999999,0.025,-999999,3.5;6.720,6.690,773.5,0.277,0.288,0.194,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.010,-0.163,-999999,-999999,0.025,-999999,3.2;6.740,6.710,774.3,0.268,0.279,0.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.170,-999999,-999999,0.026,-999999,3.0;6.760,6.730,775.0,0.278,0.289,0.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.008,-0.160,-999999,-999999,0.026,-999999,2.8;6.780,6.750,775.8,0.298,0.310,0.215,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.144,-999999,-999999,0.027,-999999,2.9;6.800,6.770,776.5,0.320,0.332,0.237,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.131,-999999,-999999,0.027,-999999,2.8;6.820,6.790,777.3,0.368,0.380,0.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.010,-0.109,-999999,-999999,0.027,-999999,2.7;6.840,6.810,778.1,0.411,0.423,0.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.096,-999999,-999999,0.027,-999999,2.5;6.860,6.830,778.8,0.440,0.451,0.356,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.089,-999999,-999999,0.027,-999999,2.3;6.880,6.850,779.6,0.425,0.436,0.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.094,-999999,-999999,0.027,-999999,2.2;6.900,6.870,780.4,0.382,0.393,0.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.108,-999999,-999999,0.027,-999999,2.3;6.920,6.890,781.2,0.353,0.364,0.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.120,-999999,-999999,0.027,-999999,2.3;6.940,6.910,782.0,0.344,0.355,0.258,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.124,-999999,-999999,0.027,-999999,2.4;6.960,6.930,782.7,0.337,0.348,0.251,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.127,-999999,-999999,0.027,-999999,2.6;6.980,6.950,783.5,0.333,0.344,0.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.129,-999999,-999999,0.028,-999999,2.6;7.000,6.970,784.3,0.344,0.356,0.258,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.123,-999999,-999999,0.028,-999999,2.6;7.020,6.990,785.0,0.354,0.365,0.267,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.119,-999999,-999999,0.028,-999999,2.6;7.040,7.010,785.8,0.349,0.361,0.262,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.121,-999999,-999999,0.028,-999999,2.5;7.060,7.030,786.6,0.323,0.335,0.236,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.008,-0.134,-999999,-999999,0.029,-999999,2.5;7.080,7.050,787.3,0.298,0.310,0.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.148,-999999,-999999,0.029,-999999,2.5;7.100,7.070,788.6,0.315,0.328,0.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.010,-0.136,-999999,-999999,0.030,-999999,2.6;7.120,7.090,792.9,0.405,0.417,0.318,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.010,-0.097,-999999,-999999,0.030,-999999,2.6;7.140,7.110,797.1,0.494,0.507,0.407,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.010,-0.075,-999999,-999999,0.031,-999999,2.3;7.160,7.130,799.4,0.538,0.551,0.452,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.010,-0.068,-999999,-999999,0.031,-999999,2.2;7.180,7.150,800.2,0.508,0.520,0.420,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.074,-999999,-999999,0.030,-999999,2.0;7.200,7.170,801.0,0.454,0.466,0.366,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.085,-999999,-999999,0.031,-999999,2.1;7.220,7.190,801.8,0.435,0.448,0.347,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.010,-0.089,-999999,-999999,0.031,-999999,2.1;7.240,7.210,802.5,0.421,0.434,0.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.093,-999999,-999999,0.031,-999999,2.1;7.260,7.230,803.3,0.396,0.409,0.308,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.100,-999999,-999999,0.032,-999999,2.1;7.280,7.250,804.0,0.386,0.399,0.298,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.008,-0.103,-999999,-999999,0.032,-999999,2.1;7.300,7.270,804.8,0.370,0.384,0.282,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.008,-0.108,-999999,-999999,0.032,-999999,2.1;7.320,7.290,805.6,0.347,0.361,0.259,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.008,-0.116,-999999,-999999,0.033,-999999,2.1;7.340,7.310,806.4,0.323,0.337,0.235,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.008,-0.127,-999999,-999999,0.033,-999999,2.3;7.360,7.330,807.2,0.308,0.322,0.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.008,-0.134,-999999,-999999,0.034,-999999,2.3;7.380,7.350,807.9,0.297,0.311,0.209,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.008,-0.139,-999999,-999999,0.034,-999999,2.3;7.400,7.370,808.7,0.296,0.311,0.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.007,-0.139,-999999,-999999,0.035,-999999,2.3;7.420,7.390,809.5,0.295,0.310,0.206,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.008,-0.139,-999999,-999999,0.035,-999999,2.4;7.440,7.410,810.3,0.308,0.323,0.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.008,-0.131,-999999,-999999,0.035,-999999,2.4;7.460,7.430,811.0,0.318,0.333,0.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.125,-999999,-999999,0.036,-999999,2.5;7.480,7.450,811.8,0.359,0.375,0.270,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.106,-999999,-999999,0.036,-999999,2.2;7.500,7.470,812.6,0.476,0.491,0.386,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.074,-999999,-999999,0.036,-999999,2.0;7.520,7.490,813.3,0.565,0.580,0.475,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.008,-0.061,-999999,-999999,0.036,-999999,1.8;7.540,7.510,814.1,0.564,0.578,0.473,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.062,-999999,-999999,0.036,-999999,1.8;7.560,7.530,814.9,0.511,0.526,0.421,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.070,-999999,-999999,0.036,-999999,1.7;7.580,7.550,815.6,0.483,0.498,0.392,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.075,-999999,-999999,0.036,-999999,1.6;7.600,7.570,816.4,0.497,0.512,0.406,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.010,-0.073,-999999,-999999,0.036,-999999,1.8;7.620,7.590,817.2,0.556,0.572,0.465,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.010,-0.063,-999999,-999999,0.036,-999999,1.8;7.640,7.610,818.0,0.573,0.588,0.481,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.062,-999999,-999999,0.036,-999999,1.8;7.660,7.630,818.7,0.515,0.530,0.423,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.071,-999999,-999999,0.036,-999999,1.9;7.680,7.650,819.5,0.433,0.448,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.089,-999999,-999999,0.036,-999999,1.8;7.700,7.670,820.3,0.390,0.405,0.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.101,-999999,-999999,0.037,-999999,1.9;7.720,7.690,821.0,0.367,0.383,0.275,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.009,-0.110,-999999,-999999,0.037,-999999,2.0;7.740,7.710,821.8,0.358,0.374,0.266,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.008,-0.113,-999999,-999999,0.037,-999999,2.1;7.760,7.730,822.6,0.356,0.371,0.263,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.008,-0.113,-999999,-999999,0.037,-999999,2.0;7.780,7.750,823.4,0.348,0.364,0.255,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.007,-0.116,-999999,-999999,0.038,-999999,2.0;7.800,7.770,824.1,0.330,0.347,0.238,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.007,-0.123,-999999,-999999,0.039,-999999,2.1;7.820,7.790,824.9,0.327,0.343,0.234,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.007,-0.123,-999999,-999999,0.039,-999999,2.0;7.840,7.810,825.7,0.333,0.349,0.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.007,-0.119,-999999,-999999,0.039,-999999,2.0;7.860,7.830,826.5,0.340,0.356,0.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.007,-0.115,-999999,-999999,0.040,-999999,2.1;7.880,7.850,827.2,0.342,0.359,0.249,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.007,-0.113,-999999,-999999,0.040,-999999,2.1;7.900,7.870,828.0,0.345,0.362,0.252,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.008,-0.111,-999999,-999999,0.041,-999999,2.1;7.920,7.890,828.8,0.351,0.369,0.258,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.007,-0.108,-999999,-999999,0.041,-999999,2.1;7.940,7.910,829.5,0.353,0.370,0.260,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.008,-0.106,-999999,-999999,0.041,-999999,2.1;7.960,7.930,830.3,0.352,0.369,0.258,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.008,-0.106,-999999,-999999,0.042,-999999,2.2;7.980,7.950,831.1,0.351,0.369,0.257,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.008,-0.105,-999999,-999999,0.042,-999999,2.3;8.000,7.970,831.8,0.358,0.376,0.264,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,5,-999999,-999999,0.008,-0.101,-999999,-999999,0.043,-999999,2.3;8.020,7.990,832.6,0.365,0.383,0.271,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.098,-999999,-999999,0.043,-999999,2.4;8.040,8.010,833.4,0.369,0.387,0.275,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.096,-999999,-999999,0.044,-999999,2.5;8.060,8.030,834.2,0.374,0.393,0.280,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.093,-999999,-999999,0.044,-999999,2.6;8.080,8.050,835.0,0.380,0.399,0.286,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.090,-999999,-999999,0.045,-999999,2.6;8.100,8.070,838.3,0.389,0.408,0.295,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.085,-999999,-999999,0.045,-999999,2.5;8.120,8.090,841.8,0.399,0.418,0.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.080,-999999,-999999,0.046,-999999,2.5;8.140,8.110,845.3,0.408,0.428,0.314,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.076,-999999,-999999,0.047,-999999,2.4;8.160,8.130,847.0,0.417,0.437,0.324,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.073,-999999,-999999,0.048,-999999,2.5;8.180,8.150,847.8,0.428,0.449,0.335,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.070,-999999,-999999,0.048,-999999,2.5;8.200,8.170,848.6,0.443,0.463,0.349,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.066,-999999,-999999,0.049,-999999,2.5;8.220,8.190,849.3,0.460,0.481,0.366,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.062,-999999,-999999,0.049,-999999,2.6;8.240,8.210,850.1,0.473,0.494,0.379,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.013,-0.059,-999999,-999999,0.050,-999999,2.7;8.260,8.230,850.9,0.491,0.512,0.397,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.014,-0.055,-999999,-999999,0.050,-999999,2.8;8.280,8.250,851.7,0.518,0.539,0.424,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.015,-0.051,-999999,-999999,0.051,-999999,2.9;8.300,8.270,852.4,0.538,0.560,0.444,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.016,-0.047,-999999,-999999,0.052,-999999,2.9;8.320,8.290,853.2,0.566,0.588,0.472,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.018,-0.043,-999999,-999999,0.052,-999999,3.1;8.340,8.310,854.0,0.595,0.618,0.502,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.020,-0.040,-999999,-999999,0.053,-999999,3.3;8.360,8.330,854.7,0.623,0.646,0.530,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.021,-0.036,-999999,-999999,0.054,-999999,3.5;8.380,8.350,855.5,0.648,0.671,0.554,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.024,-0.034,-999999,-999999,0.055,-999999,3.7;8.400,8.370,856.3,0.671,0.695,0.577,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.025,-0.031,-999999,-999999,0.056,-999999,3.8;8.420,8.390,857.0,0.690,0.714,0.596,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.028,-0.029,-999999,-999999,0.056,-999999,4.2;8.440,8.410,857.8,0.696,0.720,0.602,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.031,-0.028,-999999,-999999,0.057,-999999,4.6;8.460,8.430,858.6,0.682,0.706,0.589,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.032,-0.029,-999999,-999999,0.057,-999999,4.8;8.480,8.450,859.4,0.684,0.708,0.590,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.032,-0.030,-999999,-999999,0.057,-999999,4.7;8.500,8.470,860.2,0.666,0.690,0.571,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.031,-0.030,-999999,-999999,0.057,-999999,4.7;8.520,8.480,861.0,0.626,0.651,0.533,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.028,-0.029,-999999,-999999,0.059,-999999,4.4;8.540,8.500,861.7,0.594,0.619,0.500,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.027,-0.031,-999999,-999999,0.060,-999999,4.3;8.560,8.520,862.5,0.569,0.594,0.475,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.024,-0.033,-999999,-999999,0.060,-999999,4.1;8.580,8.540,863.3,0.531,0.556,0.437,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.021,-0.036,-999999,-999999,0.060,-999999,3.8;8.600,8.560,864.0,0.513,0.538,0.418,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.019,-0.039,-999999,-999999,0.059,-999999,3.5;8.620,8.580,864.8,0.501,0.525,0.405,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.017,-0.042,-999999,-999999,0.059,-999999,3.3;8.640,8.600,865.6,0.478,0.503,0.382,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.016,-0.045,-999999,-999999,0.059,-999999,3.1;8.660,8.620,866.4,0.461,0.486,0.365,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.015,-0.048,-999999,-999999,0.059,-999999,3.0;8.680,8.640,867.1,0.457,0.482,0.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.014,-0.049,-999999,-999999,0.059,-999999,2.9;8.700,8.660,867.9,0.449,0.473,0.352,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.013,-0.050,-999999,-999999,0.059,-999999,2.8;8.720,8.680,868.7,0.440,0.464,0.343,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.051,-999999,-999999,0.059,-999999,2.6;8.740,8.700,869.5,0.444,0.469,0.347,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.051,-999999,-999999,0.059,-999999,2.4;8.760,8.720,870.2,0.447,0.472,0.350,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.051,-999999,-999999,0.059,-999999,2.3;8.780,8.740,871.0,0.446,0.471,0.348,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.051,-999999,-999999,0.060,-999999,2.2;8.800,8.760,871.8,0.440,0.465,0.343,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.052,-999999,-999999,0.060,-999999,2.1;8.820,8.780,872.5,0.435,0.460,0.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.053,-999999,-999999,0.060,-999999,2.0;8.840,8.800,873.3,0.436,0.461,0.338,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.053,-999999,-999999,0.060,-999999,2.0;8.860,8.820,874.1,0.438,0.463,0.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.053,-999999,-999999,0.060,-999999,2.0;8.880,8.840,874.8,0.433,0.458,0.335,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.054,-999999,-999999,0.060,-999999,2.0;8.900,8.860,875.6,0.429,0.454,0.330,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.055,-999999,-999999,0.060,-999999,2.0;8.920,8.880,876.4,0.420,0.445,0.321,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.057,-999999,-999999,0.061,-999999,2.0;8.940,8.900,877.2,0.413,0.438,0.313,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.059,-999999,-999999,0.061,-999999,2.0;8.960,8.920,877.9,0.409,0.435,0.310,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.059,-999999,-999999,0.061,-999999,2.1;8.980,8.940,878.7,0.410,0.436,0.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.059,-999999,-999999,0.061,-999999,2.0;9.000,8.960,879.5,0.422,0.448,0.323,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.057,-999999,-999999,0.061,-999999,2.0;9.020,8.980,880.3,0.435,0.461,0.335,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.054,-999999,-999999,0.062,-999999,2.1;9.040,9.000,881.0,0.438,0.464,0.338,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.053,-999999,-999999,0.062,-999999,2.2;9.060,9.020,881.8,0.451,0.477,0.351,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.051,-999999,-999999,0.062,-999999,2.2;9.080,9.040,882.9,0.461,0.487,0.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.049,-999999,-999999,0.063,-999999,2.1;9.100,9.060,886.4,0.464,0.491,0.364,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.048,-999999,-999999,0.063,-999999,1.9;9.120,9.080,889.9,0.467,0.494,0.367,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.046,-999999,-999999,0.064,-999999,1.8;9.140,9.100,893.5,0.470,0.497,0.370,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.008,-0.044,-999999,-999999,0.065,-999999,1.7;9.160,9.120,894.7,0.479,0.506,0.379,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.008,-0.043,-999999,-999999,0.065,-999999,1.7;9.180,9.140,895.4,0.489,0.517,0.389,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.008,-0.041,-999999,-999999,0.065,-999999,1.7;9.200,9.160,896.2,0.492,0.519,0.391,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.007,-0.041,-999999,-999999,0.065,-999999,1.5;9.220,9.180,897.0,0.473,0.501,0.372,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.007,-0.044,-999999,-999999,0.065,-999999,1.4;9.240,9.200,897.7,0.458,0.485,0.356,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.008,-0.046,-999999,-999999,0.066,-999999,1.5;9.260,9.220,898.5,0.462,0.489,0.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.046,-999999,-999999,0.066,-999999,1.7;9.280,9.240,899.3,0.503,0.530,0.401,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.042,-999999,-999999,0.065,-999999,1.9;9.300,9.260,900.0,0.567,0.594,0.464,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.038,-999999,-999999,0.065,-999999,2.0;9.320,9.280,900.8,0.612,0.639,0.509,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.035,-999999,-999999,0.065,-999999,1.9;9.340,9.300,901.6,0.629,0.657,0.526,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.034,-999999,-999999,0.065,-999999,1.9;9.360,9.320,902.4,0.641,0.669,0.538,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.013,-0.033,-999999,-999999,0.065,-999999,2.0;9.380,9.340,903.2,0.671,0.698,0.568,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.013,-0.032,-999999,-999999,0.065,-999999,1.9;9.400,9.360,903.9,0.732,0.759,0.628,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.014,-0.029,-999999,-999999,0.065,-999999,1.8;9.420,9.380,904.7,0.817,0.845,0.713,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.013,-0.026,-999999,-999999,0.065,-999999,1.6;9.440,9.400,905.5,0.920,0.947,0.815,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.013,-0.025,-999999,-999999,0.064,-999999,1.6;9.460,9.420,906.3,0.939,0.965,0.833,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.025,-999999,-999999,0.063,-999999,1.4;9.480,9.440,907.0,0.888,0.915,0.782,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.028,-999999,-999999,0.063,-999999,1.3;9.500,9.460,907.8,0.802,0.828,0.696,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.031,-999999,-999999,0.063,-999999,1.2;9.520,9.480,908.6,0.781,0.807,0.674,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.034,-999999,-999999,0.062,-999999,1.2;9.540,9.500,909.3,0.843,0.869,0.736,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.033,-999999,-999999,0.061,-999999,1.1;9.560,9.520,910.1,0.937,0.963,0.829,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.030,-999999,-999999,0.060,-999999,1.2;9.580,9.540,910.9,0.906,0.931,0.797,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.033,-999999,-999999,0.059,-999999,1.1;9.600,9.560,911.7,0.754,0.779,0.645,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.041,-999999,-999999,0.059,-999999,1.1;9.620,9.580,912.5,0.686,0.710,0.576,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.046,-999999,-999999,0.059,-999999,1.3;9.640,9.600,913.2,0.855,0.880,0.746,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.036,-999999,-999999,0.059,-999999,1.2;9.660,9.620,914.0,1.016,1.041,0.906,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.030,-999999,-999999,0.059,-999999,1.3;9.680,9.640,914.8,0.987,1.012,0.877,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.032,-999999,-999999,0.058,-999999,1.2;9.700,9.660,915.5,0.859,0.884,0.748,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.037,-999999,-999999,0.059,-999999,1.1;9.720,9.680,916.3,0.842,0.867,0.731,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.038,-999999,-999999,0.059,-999999,1.0;9.740,9.700,917.1,0.871,0.896,0.760,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.037,-999999,-999999,0.059,-999999,1.1;9.760,9.720,917.8,0.893,0.918,0.782,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.035,-999999,-999999,0.059,-999999,1.2;9.780,9.740,918.6,0.957,0.982,0.845,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.033,-999999,-999999,0.059,-999999,1.3;9.800,9.760,919.4,0.959,0.984,0.847,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.033,-999999,-999999,0.059,-999999,1.2;9.820,9.780,920.2,0.865,0.890,0.753,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.038,-999999,-999999,0.059,-999999,1.3;9.840,9.800,920.9,0.781,0.806,0.669,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.042,-999999,-999999,0.060,-999999,1.3;9.860,9.820,921.7,0.767,0.792,0.655,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.043,-999999,-999999,0.060,-999999,1.3;9.880,9.840,922.5,0.749,0.775,0.637,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.044,-999999,-999999,0.060,-999999,1.4;9.900,9.860,923.3,0.787,0.813,0.675,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.042,-999999,-999999,0.060,-999999,1.5;9.920,9.880,924.0,0.851,0.877,0.739,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.038,-999999,-999999,0.061,-999999,1.3;9.940,9.900,924.8,0.845,0.871,0.732,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.040,-999999,-999999,0.060,-999999,1.1;9.960,9.920,925.6,0.862,0.887,0.748,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.039,-999999,-999999,0.060,-999999,1.1;9.980,9.940,926.3,0.908,0.933,0.794,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.036,-999999,-999999,0.061,-999999,1.2;10.000,9.960,927.1,0.883,0.909,0.770,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.037,-999999,-999999,0.061,-999999,1.4;10.020,9.980,927.9,0.795,0.821,0.681,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.013,-0.042,-999999,-999999,0.061,-999999,1.5;10.040,10.000,928.7,0.717,0.743,0.603,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.014,-0.047,-999999,-999999,0.062,-999999,1.6;10.060,10.020,929.4,0.735,0.761,0.621,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.013,-0.046,-999999,-999999,0.062,-999999,1.5;10.080,10.040,932.6,0.742,0.769,0.628,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.044,-999999,-999999,0.063,-999999,1.5;10.100,10.060,936.1,0.747,0.774,0.633,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.043,-999999,-999999,0.063,-999999,1.4;10.120,10.080,939.6,0.752,0.779,0.638,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.042,-999999,-999999,0.064,-999999,1.4;10.140,10.100,941.5,0.791,0.818,0.676,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.039,-999999,-999999,0.064,-999999,1.2;10.160,10.120,942.3,0.821,0.848,0.706,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.039,-999999,-999999,0.064,-999999,1.2;10.180,10.140,943.0,0.786,0.813,0.671,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.008,-0.040,-999999,-999999,0.064,-999999,1.1;10.200,10.160,943.8,0.700,0.727,0.585,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.008,-0.046,-999999,-999999,0.065,-999999,1.0;10.220,10.180,944.6,0.596,0.624,0.481,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.008,-0.056,-999999,-999999,0.065,-999999,1.0;10.240,10.200,945.3,0.583,0.611,0.468,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.055,-999999,-999999,0.066,-999999,1.2;10.260,10.220,946.1,0.652,0.680,0.537,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.048,-999999,-999999,0.067,-999999,1.4;10.280,10.240,946.9,0.769,0.797,0.654,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.040,-999999,-999999,0.067,-999999,1.3;10.300,10.260,947.7,0.810,0.838,0.694,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.038,-999999,-999999,0.066,-999999,1.2;10.320,10.280,948.4,0.814,0.842,0.698,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.037,-999999,-999999,0.067,-999999,1.0;10.340,10.300,949.2,0.896,0.924,0.780,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.034,-999999,-999999,0.067,-999999,1.2;10.360,10.320,950.0,0.933,0.961,0.817,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.033,-999999,-999999,0.067,-999999,1.3;10.380,10.340,950.7,0.882,0.910,0.765,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.035,-999999,-999999,0.067,-999999,1.4;10.400,10.360,951.5,0.809,0.837,0.693,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.013,-0.038,-999999,-999999,0.067,-999999,1.5;10.420,10.380,952.3,0.790,0.818,0.673,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.039,-999999,-999999,0.067,-999999,1.5;10.440,10.400,953.0,0.748,0.777,0.631,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.042,-999999,-999999,0.067,-999999,1.4;10.460,10.420,953.8,0.719,0.748,0.602,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.043,-999999,-999999,0.068,-999999,1.4;10.480,10.440,954.6,0.755,0.784,0.638,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.041,-999999,-999999,0.068,-999999,1.4;10.500,10.460,955.3,0.788,0.817,0.671,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.038,-999999,-999999,0.069,-999999,1.3;10.520,10.480,956.1,0.800,0.829,0.682,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.038,-999999,-999999,0.069,-999999,1.3;10.540,10.500,956.9,0.909,0.938,0.791,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.033,-999999,-999999,0.069,-999999,1.1;10.560,10.520,957.7,0.958,0.986,0.839,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.008,-0.032,-999999,-999999,0.068,-999999,0.8;10.580,10.540,958.4,0.897,0.926,0.779,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.008,-0.034,-999999,-999999,0.069,-999999,0.7;10.600,10.550,959.2,1.072,1.101,0.953,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.008,-0.027,-999999,-999999,0.070,-999999,0.6;10.620,10.570,960.0,1.673,1.702,1.554,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.017,-999999,-999999,0.070,-999999,0.6;10.640,10.590,960.8,2.032,2.060,1.912,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.013,-0.015,-999999,-999999,0.067,-999999,0.8;10.660,10.610,961.5,1.993,2.021,1.872,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.017,-0.016,-999999,-999999,0.066,-999999,1.1;10.680,10.630,962.3,1.722,1.749,1.600,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.023,-0.020,-999999,-999999,0.065,-999999,1.5;10.700,10.650,963.1,1.424,1.451,1.302,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.025,-0.024,-999999,-999999,0.065,-999999,1.6;10.720,10.670,963.8,1.168,1.195,1.046,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.026,-0.030,-999999,-999999,0.066,-999999,1.9;10.740,10.690,964.6,0.947,0.975,0.826,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.026,-0.036,-999999,-999999,0.067,-999999,2.2;10.760,10.710,965.4,0.768,0.796,0.646,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.022,-0.045,-999999,-999999,0.068,-999999,2.3;10.780,10.730,966.2,0.628,0.657,0.507,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.018,-0.056,-999999,-999999,0.069,-999999,2.1;10.800,10.750,966.9,0.551,0.580,0.430,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.015,-0.064,-999999,-999999,0.070,-999999,1.8;10.820,10.770,967.7,0.586,0.616,0.465,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.056,-999999,-999999,0.072,-999999,1.4;10.840,10.790,968.5,0.787,0.817,0.666,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.039,-999999,-999999,0.072,-999999,1.0;10.860,10.810,969.2,1.167,1.197,1.046,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.026,-999999,-999999,0.071,-999999,1.0;10.880,10.830,970.0,1.344,1.374,1.222,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.023,-999999,-999999,0.070,-999999,1.1;10.900,10.850,970.8,1.238,1.267,1.115,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.013,-0.025,-999999,-999999,0.070,-999999,1.1;10.920,10.870,971.5,1.140,1.169,1.017,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.016,-0.027,-999999,-999999,0.071,-999999,1.4;10.940,10.890,972.3,1.103,1.133,0.981,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.019,-0.028,-999999,-999999,0.071,-999999,1.7;10.960,10.910,973.1,1.073,1.104,0.951,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.019,-0.029,-999999,-999999,0.072,-999999,1.8;10.980,10.930,973.9,0.948,0.978,0.825,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.019,-0.035,-999999,-999999,0.071,-999999,1.8;11.000,10.950,974.6,0.852,0.882,0.729,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.019,-0.038,-999999,-999999,0.071,-999999,1.9;11.020,10.970,975.4,0.841,0.872,0.718,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.019,-0.039,-999999,-999999,0.072,-999999,2.0;11.040,10.990,976.2,0.827,0.857,0.703,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.019,-0.040,-999999,-999999,0.072,-999999,2.0;11.060,11.010,978.3,0.779,0.810,0.656,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.017,-0.041,-999999,-999999,0.073,-999999,1.9;11.080,11.030,981.4,0.749,0.780,0.626,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.014,-0.042,-999999,-999999,0.074,-999999,1.8;11.100,11.050,984.5,0.719,0.750,0.596,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.013,-0.042,-999999,-999999,0.075,-999999,1.5;11.120,11.070,987.6,0.688,0.721,0.566,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.013,-0.043,-999999,-999999,0.077,-999999,1.5;11.140,11.090,989.0,0.757,0.789,0.634,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.039,-999999,-999999,0.076,-999999,1.3;11.160,11.110,989.8,0.868,0.901,0.745,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.032,-999999,-999999,0.077,-999999,1.2;11.180,11.130,990.6,0.881,0.913,0.757,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.033,-999999,-999999,0.076,-999999,1.2;11.200,11.150,991.3,0.825,0.857,0.701,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.036,-999999,-999999,0.076,-999999,1.5;11.220,11.170,992.1,0.822,0.855,0.698,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.013,-0.035,-999999,-999999,0.077,-999999,1.5;11.240,11.190,992.9,0.846,0.879,0.722,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.014,-0.034,-999999,-999999,0.077,-999999,1.6;11.260,11.210,993.7,0.863,0.895,0.738,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.016,-0.035,-999999,-999999,0.077,-999999,1.8;11.280,11.230,994.4,0.875,0.907,0.750,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.015,-0.034,-999999,-999999,0.077,-999999,1.7;11.300,11.250,995.2,0.887,0.920,0.762,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.014,-0.033,-999999,-999999,0.077,-999999,1.6;11.320,11.270,996.0,0.914,0.947,0.789,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.013,-0.032,-999999,-999999,0.078,-999999,1.4;11.340,11.290,996.8,0.969,1.001,0.843,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.013,-0.030,-999999,-999999,0.078,-999999,1.5;11.360,11.310,997.5,0.904,0.936,0.778,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.013,-0.032,-999999,-999999,0.078,-999999,1.5;11.380,11.330,998.3,0.813,0.846,0.687,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.013,-0.036,-999999,-999999,0.079,-999999,1.5;11.400,11.350,999.1,0.737,0.770,0.611,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.039,-999999,-999999,0.080,-999999,1.4;11.420,11.370,999.8,0.725,0.758,0.599,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.041,-999999,-999999,0.079,-999999,1.4;11.440,11.390,1000.6,0.690,0.724,0.564,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.043,-999999,-999999,0.080,-999999,1.5;11.460,11.410,1001.4,0.649,0.683,0.523,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.046,-999999,-999999,0.080,-999999,1.5;11.480,11.430,1002.2,0.640,0.674,0.514,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.045,-999999,-999999,0.081,-999999,1.5;11.500,11.450,1002.9,0.683,0.717,0.557,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.041,-999999,-999999,0.082,-999999,1.4;11.520,11.470,1003.7,0.843,0.877,0.716,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.033,-999999,-999999,0.081,-999999,1.3;11.540,11.490,1004.5,1.013,1.047,0.886,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.027,-999999,-999999,0.081,-999999,1.3;11.560,11.510,1005.2,1.026,1.060,0.899,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.028,-999999,-999999,0.080,-999999,1.3;11.580,11.530,1006.0,0.931,0.965,0.803,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.014,-0.031,-999999,-999999,0.081,-999999,1.5;11.600,11.550,1006.8,0.856,0.891,0.729,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.015,-0.032,-999999,-999999,0.082,-999999,1.7;11.620,11.570,1007.5,0.855,0.890,0.728,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.017,-0.032,-999999,-999999,0.082,-999999,1.8;11.640,11.590,1008.3,0.865,0.899,0.737,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.016,-0.034,-999999,-999999,0.081,-999999,1.9;11.660,11.610,1009.1,0.805,0.839,0.677,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.015,-0.036,-999999,-999999,0.082,-999999,1.8;11.680,11.630,1009.9,0.727,0.762,0.599,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.014,-0.040,-999999,-999999,0.082,-999999,1.7;11.700,11.650,1010.6,0.695,0.730,0.567,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.014,-0.041,-999999,-999999,0.083,-999999,1.7;11.720,11.670,1011.4,0.711,0.746,0.583,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.038,-999999,-999999,0.084,-999999,1.6;11.740,11.690,1012.2,0.754,0.789,0.626,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.034,-999999,-999999,0.086,-999999,1.4;11.760,11.710,1012.9,0.740,0.776,0.612,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.037,-999999,-999999,0.085,-999999,1.3;11.780,11.730,1013.7,0.690,0.725,0.561,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.040,-999999,-999999,0.085,-999999,1.2;11.800,11.750,1014.5,0.639,0.675,0.511,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.042,-999999,-999999,0.086,-999999,1.3;11.820,11.770,1015.3,0.615,0.652,0.487,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.044,-999999,-999999,0.086,-999999,1.7;11.840,11.790,1016.0,0.650,0.686,0.521,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.042,-999999,-999999,0.086,-999999,1.7;11.860,11.810,1016.8,0.743,0.779,0.613,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.036,-999999,-999999,0.086,-999999,1.5;11.880,11.830,1017.5,0.812,0.848,0.683,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.033,-999999,-999999,0.086,-999999,1.4;11.900,11.850,1018.3,0.811,0.847,0.681,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.033,-999999,-999999,0.086,-999999,1.4;11.920,11.870,1019.1,0.793,0.829,0.663,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.034,-999999,-999999,0.086,-999999,1.2;11.940,11.890,1019.9,0.785,0.821,0.655,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.034,-999999,-999999,0.087,-999999,1.4;11.960,11.910,1020.6,0.729,0.765,0.599,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.037,-999999,-999999,0.087,-999999,1.4;11.980,11.930,1021.4,0.673,0.710,0.543,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.039,-999999,-999999,0.088,-999999,1.5;12.000,11.950,1022.2,0.615,0.652,0.485,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.043,-999999,-999999,0.089,-999999,1.6;12.020,11.970,1023.0,0.601,0.639,0.471,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.044,-999999,-999999,0.089,-999999,1.6;12.040,11.990,1023.7,0.606,0.643,0.475,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.042,-999999,-999999,0.090,-999999,1.5;12.060,12.010,1026.2,0.623,0.662,0.494,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.038,-999999,-999999,0.092,-999999,1.4;12.080,12.030,1029.7,0.650,0.690,0.521,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.009,-0.033,-999999,-999999,0.093,-999999,1.4;12.100,12.050,1033.1,0.677,0.717,0.549,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.028,-999999,-999999,0.095,-999999,1.6;12.120,12.070,1035.8,0.717,0.757,0.588,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.026,-999999,-999999,0.095,-999999,1.6;12.140,12.090,1036.5,0.740,0.780,0.611,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.025,-999999,-999999,0.095,-999999,1.5;12.160,12.110,1037.3,0.689,0.729,0.560,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.028,-999999,-999999,0.096,-999999,1.6;12.180,12.130,1038.1,0.632,0.672,0.503,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.030,-999999,-999999,0.096,-999999,1.7;12.200,12.150,1038.8,0.598,0.639,0.469,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.031,-999999,-999999,0.097,-999999,1.7;12.220,12.170,1039.6,0.610,0.651,0.481,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.012,-0.029,-999999,-999999,0.098,-999999,1.7;12.240,12.190,1040.4,0.649,0.690,0.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.027,-999999,-999999,0.098,-999999,1.6;12.260,12.210,1041.1,0.709,0.750,0.579,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.023,-999999,-999999,0.099,-999999,1.5;12.280,12.230,1041.9,0.756,0.797,0.626,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.010,-0.022,-999999,-999999,0.098,-999999,1.5;12.300,12.250,1042.7,0.741,0.783,0.611,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.011,-0.023,-999999,-999999,0.098,-999999,1.6;12.320,12.270,1043.5,0.697,0.739,0.567,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.013,-0.023,-999999,-999999,0.100,-999999,1.7;12.340,12.290,1044.2,0.692,0.735,0.563,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.014,-0.022,-999999,-999999,0.101,-999999,1.8;12.360,12.310,1045.0,0.741,0.783,0.611,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.014,-0.020,-999999,-999999,0.101,-999999,1.9;12.380,12.330,1045.8,0.771,0.814,0.641,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.015,-0.019,-999999,-999999,0.101,-999999,1.8;12.400,12.350,1046.5,0.818,0.861,0.688,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.015,-0.018,-999999,-999999,0.101,-999999,1.8;12.420,12.370,1047.3,0.894,0.937,0.764,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.015,-0.016,-999999,-999999,0.102,-999999,1.8;12.440,12.390,1048.1,0.943,0.986,0.813,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.016,-0.015,-999999,-999999,0.102,-999999,1.8;12.460,12.410,1048.9,0.929,0.972,0.798,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.014,-0.015,-999999,-999999,0.102,-999999,1.5;12.480,12.430,1049.7,0.847,0.891,0.717,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.014,-0.013,-999999,-999999,0.105,-999999,1.3;12.500,12.450,1050.4,0.966,1.011,0.837,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.024,-0.009,-999999,-999999,0.107,-999999,2.1;12.520,12.470,1051.2,1.285,1.330,1.156,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.027,-0.006,-999999,-999999,0.108,-999999,2.0;12.540,12.490,1052.0,1.389,1.432,1.257,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.024,-0.010,-999999,-999999,0.103,-999999,1.5;12.560,12.510,1052.7,1.939,1.982,1.807,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.026,-0.007,-999999,-999999,0.102,-999999,1.3;12.580,12.530,1053.5,2.582,2.627,2.452,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.027,-0.003,-999999,-999999,0.108,-999999,1.0;12.600,12.550,1054.3,2.853,2.898,2.722,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.029,-0.003,-999999,-999999,0.106,-999999,0.9;12.620,12.560,1055.1,4.208,4.250,4.074,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.031,-0.003,-999999,-999999,0.102,-999999,0.8;12.640,12.580,1055.9,5.189,5.233,5.057,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.030,-0.002,-999999,-999999,0.104,-999999,0.7;12.660,12.600,1056.7,5.335,5.375,5.198,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.031,-0.004,-999999,-999999,0.096,-999999,0.6;12.680,12.620,1057.4,5.263,5.304,5.127,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.032,-0.004,-999999,-999999,0.096,-999999,0.6;12.700,12.640,1058.2,5.080,5.121,4.944,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.033,-0.004,-999999,-999999,0.096,-999999,0.6;12.720,12.660,1059.0,4.864,4.905,4.727,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.032,-0.004,-999999,-999999,0.095,-999999,0.6;12.740,12.680,1059.7,4.760,4.800,4.622,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.035,-0.005,-999999,-999999,0.095,-999999,0.7;12.760,12.700,1060.5,4.589,4.629,4.451,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.039,-0.005,-999999,-999999,0.096,-999999,0.8;12.780,12.720,1061.3,4.292,4.333,4.155,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.041,-0.004,-999999,-999999,0.099,-999999,0.9;12.800,12.740,1062.0,3.920,3.960,3.781,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.039,-0.006,-999999,-999999,0.095,-999999,0.9;12.820,12.760,1062.8,3.777,3.817,3.639,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.038,-0.006,-999999,-999999,0.097,-999999,0.8;12.840,12.780,1063.6,4.003,4.045,3.866,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.035,-0.005,-999999,-999999,0.100,-999999,0.8;12.860,12.800,1064.3,4.357,4.400,4.221,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,5,6,-999999,-999999,0.033,-0.004,-999999,-999999,0.103,-999999,0.8;12.880,12.820,1065.1,4.373,4.410,4.231,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.033,-0.007,-999999,-999999,0.088,-999999,0.8;12.900,12.840,1065.9,4.153,4.190,4.010,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.033,-0.008,-999999,-999999,0.087,-999999,0.8;12.920,12.860,1066.7,3.955,3.993,3.813,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.033,-0.007,-999999,-999999,0.090,-999999,0.8;12.940,12.880,1067.4,3.750,3.788,3.608,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.033,-0.008,-999999,-999999,0.091,-999999,0.8;12.960,12.900,1068.2,3.507,3.546,3.365,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.033,-0.008,-999999,-999999,0.092,-999999,0.8;12.980,12.920,1069.0,3.437,3.477,3.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.033,-0.007,-999999,-999999,0.095,-999999,0.9;13.000,12.940,1069.7,3.399,3.440,3.259,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.033,-0.007,-999999,-999999,0.097,-999999,0.9;13.020,12.960,1070.5,3.213,3.254,3.073,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.034,-0.007,-999999,-999999,0.099,-999999,0.9;13.040,12.980,1072.2,3.003,3.045,2.863,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.033,-0.007,-999999,-999999,0.100,-999999,1.0;13.060,13.000,1075.8,2.967,3.010,2.828,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.033,-0.006,-999999,-999999,0.103,-999999,1.0;13.080,13.020,1079.3,2.931,2.976,2.793,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.033,-0.005,-999999,-999999,0.106,-999999,1.0;13.100,13.040,1082.6,2.904,2.949,2.766,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.029,-0.005,-999999,-999999,0.107,-999999,0.9;13.120,13.060,1083.4,2.903,2.947,2.764,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.029,-0.006,-999999,-999999,0.105,-999999,0.8;13.140,13.080,1084.1,3.158,3.203,3.020,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.031,-0.004,-999999,-999999,0.109,-999999,0.8;13.160,13.100,1084.9,3.766,3.813,3.630,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.030,-0.003,-999999,-999999,0.112,-999999,0.8;13.180,13.120,1085.7,4.014,4.061,3.877,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.029,-0.003,-999999,-999999,0.110,-999999,0.7;13.200,13.140,1086.5,4.024,4.064,3.880,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.030,-0.006,-999999,-999999,0.097,-999999,0.7;13.220,13.160,1087.2,4.049,4.090,3.906,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.033,-0.006,-999999,-999999,0.098,-999999,0.8;13.240,13.180,1088.0,4.232,4.275,4.090,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.031,-0.005,-999999,-999999,0.100,-999999,0.7;13.260,13.200,1088.8,4.496,4.539,4.354,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.031,-0.005,-999999,-999999,0.102,-999999,0.6;13.280,13.220,1089.5,4.872,4.915,4.730,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.032,-0.004,-999999,-999999,0.103,-999999,0.6;13.300,13.240,1090.3,5.301,5.344,5.159,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.033,-0.004,-999999,-999999,0.104,-999999,0.6;13.320,13.260,1091.1,5.548,5.592,5.406,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.035,-0.003,-999999,-999999,0.104,-999999,0.6;13.340,13.280,1091.9,5.549,5.592,5.406,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.038,-0.004,-999999,-999999,0.103,-999999,0.7;13.360,13.300,1092.7,5.344,5.388,5.202,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.041,-0.004,-999999,-999999,0.104,-999999,0.8;13.380,13.320,1093.4,4.873,4.916,4.730,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.044,-0.004,-999999,-999999,0.103,-999999,0.9;13.400,13.340,1094.2,4.169,4.212,4.026,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.043,-0.005,-999999,-999999,0.103,-999999,0.9;13.420,13.360,1095.0,3.517,3.561,3.374,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.042,-0.006,-999999,-999999,0.104,-999999,0.9;13.440,13.380,1095.7,3.618,3.663,3.476,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.043,-0.005,-999999,-999999,0.106,-999999,1.0;13.460,13.400,1096.5,4.029,4.076,3.888,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.045,-0.004,-999999,-999999,0.110,-999999,1.1;13.480,13.420,1097.3,4.027,4.072,3.884,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.046,-0.004,-999999,-999999,0.108,-999999,1.2;13.500,13.440,1098.0,3.599,3.642,3.454,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.046,-0.006,-999999,-999999,0.103,-999999,1.3;13.520,13.460,1098.8,3.104,3.148,2.959,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.043,-0.007,-999999,-999999,0.104,-999999,1.3;13.540,13.480,1099.6,2.732,2.777,2.588,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.039,-0.007,-999999,-999999,0.106,-999999,1.2;13.560,13.500,1100.3,2.603,2.649,2.460,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.039,-0.006,-999999,-999999,0.110,-999999,1.3;13.580,13.520,1101.1,2.617,2.665,2.476,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.041,-0.005,-999999,-999999,0.114,-999999,1.5;13.600,13.540,1101.9,2.446,2.490,2.301,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.042,-0.008,-999999,-999999,0.106,-999999,1.7;13.620,13.560,1102.7,2.184,2.228,2.038,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.037,-0.010,-999999,-999999,0.105,-999999,1.5;13.640,13.580,1103.4,1.926,1.973,1.783,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.032,-0.009,-999999,-999999,0.111,-999999,1.3;13.660,13.600,1104.2,1.906,1.956,1.765,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.028,-0.005,-999999,-999999,0.118,-999999,1.0;13.680,13.620,1105.0,2.243,2.294,2.103,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.024,-0.003,-999999,-999999,0.120,-999999,0.8;13.700,13.640,1105.7,3.092,3.141,2.950,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.021,-0.003,-999999,-999999,0.116,-999999,0.6;13.720,13.660,1106.5,3.993,4.023,3.832,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.019,-0.014,-999999,-999999,0.073,-999999,0.5;13.740,13.680,1107.3,4.363,4.387,4.196,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.019,-0.017,-999999,-999999,0.057,-999999,0.5;13.760,13.700,1108.0,4.368,4.391,4.199,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.020,-0.017,-999999,-999999,0.055,-999999,0.5;13.780,13.720,1108.8,4.259,4.284,4.092,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.022,-0.017,-999999,-999999,0.058,-999999,0.5;13.800,13.740,1109.6,4.129,4.159,3.967,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.024,-0.014,-999999,-999999,0.073,-999999,0.6;13.820,13.760,1110.4,3.917,3.949,3.757,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.027,-0.014,-999999,-999999,0.076,-999999,0.7;13.840,13.780,1111.1,3.667,3.699,3.507,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.031,-0.014,-999999,-999999,0.077,-999999,0.8;13.860,13.800,1111.9,3.352,3.384,3.191,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.033,-0.016,-999999,-999999,0.078,-999999,0.9;13.880,13.820,1112.7,3.083,3.116,2.923,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.034,-0.017,-999999,-999999,0.079,-999999,0.9;13.900,13.840,1113.5,2.965,2.999,2.805,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.032,-0.017,-999999,-999999,0.081,-999999,0.9;13.920,13.860,1114.2,3.130,3.165,2.971,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.029,-0.015,-999999,-999999,0.083,-999999,0.8;13.940,13.880,1115.0,3.552,3.589,3.394,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.027,-0.012,-999999,-999999,0.087,-999999,0.7;13.960,13.900,1115.8,3.965,4.001,3.806,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.026,-0.011,-999999,-999999,0.086,-999999,0.7;13.980,13.920,1116.5,4.196,4.223,4.028,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.025,-0.016,-999999,-999999,0.063,-999999,0.6;14.000,13.940,1117.3,4.258,4.285,4.090,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.025,-0.016,-999999,-999999,0.063,-999999,0.6;14.020,13.960,1118.1,4.209,4.236,4.041,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.025,-0.016,-999999,-999999,0.066,-999999,0.6;14.040,13.980,1120.1,4.307,4.338,4.142,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.027,-0.014,-999999,-999999,0.073,-999999,0.6;14.060,14.000,1123.7,4.500,4.533,4.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.028,-0.011,-999999,-999999,0.080,-999999,0.6;14.080,14.020,1127.3,4.692,4.729,4.533,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.029,-0.009,-999999,-999999,0.087,-999999,0.6;14.100,14.040,1130.2,4.849,4.887,4.691,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.030,-0.008,-999999,-999999,0.091,-999999,0.6;14.120,14.060,1131.0,4.782,4.819,4.622,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.031,-0.009,-999999,-999999,0.089,-999999,0.6;14.140,14.080,1131.7,4.513,4.549,4.352,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.032,-0.010,-999999,-999999,0.087,-999999,0.7;14.160,14.100,1132.5,4.237,4.275,4.077,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.033,-0.010,-999999,-999999,0.089,-999999,0.7;14.180,14.120,1133.3,4.046,4.084,3.886,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.033,-0.011,-999999,-999999,0.090,-999999,0.7;14.200,14.140,1134.0,3.928,3.966,3.769,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.032,-0.011,-999999,-999999,0.091,-999999,0.7;14.220,14.160,1134.8,3.800,3.839,3.641,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.031,-0.011,-999999,-999999,0.093,-999999,0.8;14.240,14.180,1135.6,3.607,3.646,3.448,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.030,-0.011,-999999,-999999,0.093,-999999,0.8;14.260,14.200,1136.3,3.413,3.450,3.252,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.029,-0.013,-999999,-999999,0.089,-999999,0.8;14.280,14.220,1137.1,3.363,3.400,3.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.027,-0.014,-999999,-999999,0.089,-999999,0.7;14.300,14.240,1137.9,3.372,3.410,3.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.026,-0.013,-999999,-999999,0.091,-999999,0.7;14.320,14.260,1138.7,3.405,3.443,3.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.026,-0.013,-999999,-999999,0.092,-999999,0.7;14.340,14.280,1139.4,3.381,3.419,3.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.029,-0.014,-999999,-999999,0.089,-999999,0.8;14.360,14.300,1140.2,3.236,3.271,3.071,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.031,-0.016,-999999,-999999,0.083,-999999,0.9;14.380,14.320,1141.0,3.110,3.146,2.946,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.030,-0.016,-999999,-999999,0.085,-999999,0.8;14.400,14.340,1141.7,3.137,3.167,2.966,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.029,-0.021,-999999,-999999,0.071,-999999,0.7;14.420,14.360,1142.5,3.599,3.632,3.431,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.027,-0.016,-999999,-999999,0.079,-999999,0.6;14.440,14.370,1143.3,4.450,4.484,4.282,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.026,-0.012,-999999,-999999,0.081,-999999,0.6;14.460,14.390,1144.1,5.222,5.247,5.045,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.026,-0.015,-999999,-999999,0.060,-999999,0.5;14.480,14.410,1144.8,5.555,5.578,5.376,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.027,-0.015,-999999,-999999,0.056,-999999,0.5;14.500,14.430,1145.6,5.613,5.638,5.436,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.027,-0.014,-999999,-999999,0.060,-999999,0.5;14.520,14.450,1146.4,5.464,5.491,5.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.027,-0.014,-999999,-999999,0.062,-999999,0.5;14.540,14.470,1147.2,5.222,5.248,5.045,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.030,-0.014,-999999,-999999,0.063,-999999,0.5;14.560,14.490,1147.9,5.069,5.096,4.893,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.032,-0.015,-999999,-999999,0.064,-999999,0.6;14.580,14.510,1148.7,4.996,5.023,4.820,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.034,-0.014,-999999,-999999,0.065,-999999,0.6;14.600,14.530,1149.5,4.870,4.898,4.695,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.035,-0.015,-999999,-999999,0.067,-999999,0.7;14.620,14.550,1150.2,4.589,4.617,4.414,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.036,-0.015,-999999,-999999,0.069,-999999,0.8;14.640,14.570,1151.0,4.202,4.232,4.028,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.038,-0.016,-999999,-999999,0.070,-999999,0.8;14.660,14.590,1151.8,3.742,3.772,3.568,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.039,-0.018,-999999,-999999,0.071,-999999,0.9;14.680,14.610,1152.5,3.295,3.325,3.121,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.040,-0.020,-999999,-999999,0.072,-999999,1.1;14.700,14.630,1153.3,2.923,2.954,2.749,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.041,-0.023,-999999,-999999,0.073,-999999,1.2;14.720,14.650,1154.0,2.660,2.691,2.486,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.043,-0.025,-999999,-999999,0.074,-999999,1.4;14.740,14.670,1154.8,2.538,2.571,2.365,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.042,-0.025,-999999,-999999,0.077,-999999,1.4;14.760,14.690,1155.6,2.550,2.583,2.378,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.040,-0.024,-999999,-999999,0.080,-999999,1.4;14.780,14.710,1156.4,2.624,2.659,2.453,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.037,-0.022,-999999,-999999,0.083,-999999,1.3;14.800,14.730,1157.2,2.739,2.770,2.564,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.032,-0.024,-999999,-999999,0.075,-999999,1.1;14.820,14.750,1157.9,3.016,3.040,2.833,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.028,-0.029,-999999,-999999,0.055,-999999,0.9;14.840,14.770,1158.7,3.381,3.402,3.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.025,-0.028,-999999,-999999,0.049,-999999,0.7;14.860,14.790,1159.5,3.597,3.619,3.412,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.024,-0.025,-999999,-999999,0.054,-999999,0.7;14.880,14.810,1160.3,3.679,3.699,3.491,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.023,-0.026,-999999,-999999,0.047,-999999,0.6;14.900,14.830,1161.0,3.731,3.753,3.546,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.025,-0.024,-999999,-999999,0.053,-999999,0.7;14.920,14.850,1161.8,3.767,3.790,3.582,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.027,-0.023,-999999,-999999,0.056,-999999,0.7;14.940,14.870,1162.6,3.653,3.678,3.469,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.029,-0.023,-999999,-999999,0.058,-999999,0.8;14.960,14.890,1163.3,3.369,3.394,3.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.032,-0.025,-999999,-999999,0.059,-999999,0.9;14.980,14.910,1164.1,2.952,2.977,2.768,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.034,-0.028,-999999,-999999,0.060,-999999,1.0;15.000,14.930,1164.9,2.581,2.607,2.398,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.039,-0.032,-999999,-999999,0.062,-999999,1.2;15.020,14.950,1166.2,2.255,2.285,2.075,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.045,-0.034,-999999,-999999,0.070,-999999,1.6;15.040,14.970,1169.8,2.057,2.091,1.881,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.051,-0.031,-999999,-999999,0.081,-999999,2.0;15.060,14.990,1173.4,1.858,1.897,1.687,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.056,-0.028,-999999,-999999,0.092,-999999,2.5;15.080,15.010,1177.0,1.659,1.706,1.496,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.061,-0.019,-999999,-999999,0.112,-999999,2.9;15.100,15.030,1177.8,1.789,1.845,1.634,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.064,-0.005,-999999,-999999,0.133,-999999,3.1;15.120,15.050,1178.6,2.064,2.123,1.913,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.069,0.001,-999999,-999999,0.142,-999999,3.3;15.140,15.070,1179.3,2.191,2.266,2.055,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.068,0.018,-999999,-999999,0.178,-999999,3.2;15.160,15.090,1180.1,2.238,2.362,2.150,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.070,0.071,-999999,-999999,0.294,-999999,3.3;15.180,15.110,1180.9,2.296,2.423,2.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.070,0.073,-999999,-999999,0.303,-999999,3.4;15.200,15.130,1181.6,2.206,2.316,2.104,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.069,0.057,-999999,-999999,0.262,-999999,3.4;15.220,15.150,1182.4,1.895,1.998,1.785,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.068,0.058,-999999,-999999,0.245,-999999,3.5;15.240,15.170,1183.2,1.668,1.759,1.546,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.064,0.048,-999999,-999999,0.215,-999999,3.5;15.260,15.190,1183.9,1.436,1.517,1.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.058,0.039,-999999,-999999,0.193,-999999,3.4;15.280,15.210,1184.7,1.397,1.488,1.275,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.052,0.059,-999999,-999999,0.217,-999999,3.2;15.300,15.230,1185.5,1.299,1.383,1.169,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.047,0.048,-999999,-999999,0.199,-999999,3.0;15.320,15.250,1186.2,1.391,1.456,1.243,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.041,0.011,-999999,-999999,0.157,-999999,2.7;15.340,15.270,1187.0,1.522,1.584,1.371,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.036,0.004,-999999,-999999,0.148,-999999,2.3;15.360,15.290,1187.8,1.649,1.708,1.494,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.030,-0.001,-999999,-999999,0.141,-999999,1.9;15.380,15.310,1188.5,1.711,1.764,1.550,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.026,-0.010,-999999,-999999,0.127,-999999,1.6;15.400,15.330,1189.3,1.781,1.833,1.619,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.025,-0.011,-999999,-999999,0.126,-999999,1.4;15.420,15.350,1190.1,1.816,1.870,1.655,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.025,-0.010,-999999,-999999,0.127,-999999,1.3;15.440,15.370,1190.9,1.851,1.906,1.691,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.024,-0.008,-999999,-999999,0.131,-999999,1.2;15.460,15.390,1191.6,1.909,1.963,1.748,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.024,-0.008,-999999,-999999,0.130,-999999,1.2;15.480,15.410,1192.4,1.994,2.047,1.832,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.024,-0.009,-999999,-999999,0.128,-999999,1.2;15.500,15.430,1193.2,2.045,2.099,1.883,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.027,-0.008,-999999,-999999,0.129,-999999,1.2;15.520,15.450,1194.0,2.024,2.080,1.863,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.027,-0.007,-999999,-999999,0.132,-999999,1.1;15.540,15.470,1194.7,2.189,2.245,2.029,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.026,-0.006,-999999,-999999,0.133,-999999,0.9;15.560,15.490,1195.5,2.867,2.923,2.706,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.026,-0.004,-999999,-999999,0.133,-999999,0.8;15.580,15.510,1196.3,3.981,4.030,3.813,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.028,-0.008,-999999,-999999,0.115,-999999,0.7;15.600,15.530,1197.1,4.953,4.975,4.758,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.029,-0.019,-999999,-999999,0.054,-999999,0.6;15.620,15.550,1197.9,5.640,5.669,5.451,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.031,-0.014,-999999,-999999,0.068,-999999,0.6;15.640,15.570,1198.6,6.163,6.196,5.978,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.032,-0.011,-999999,-999999,0.078,-999999,0.5;15.660,15.590,1199.4,6.576,6.611,6.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.033,-0.010,-999999,-999999,0.084,-999999,0.5;15.680,15.610,1200.2,6.974,7.012,6.793,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.035,-0.008,-999999,-999999,0.089,-999999,0.5;15.700,15.630,1201.0,7.461,7.502,7.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.038,-0.007,-999999,-999999,0.097,-999999,0.5;15.720,15.650,1201.8,8.032,8.075,7.856,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.041,-0.005,-999999,-999999,0.103,-999999,0.5;15.740,15.670,1202.5,8.551,8.596,8.377,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.045,-0.005,-999999,-999999,0.108,-999999,0.5;15.760,15.690,1203.3,8.846,8.894,8.674,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.050,-0.004,-999999,-999999,0.113,-999999,0.5;15.780,15.710,1204.1,9.026,9.076,8.856,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.055,-0.003,-999999,-999999,0.118,-999999,0.6;15.800,15.730,1204.9,9.261,9.313,9.093,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.061,-0.003,-999999,-999999,0.123,-999999,0.6;15.820,15.750,1205.7,9.624,9.677,9.456,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.067,-0.002,-999999,-999999,0.126,-999999,0.7;15.840,15.770,1206.4,10.077,10.130,9.910,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.071,-0.002,-999999,-999999,0.127,-999999,0.7;15.860,15.790,1207.2,10.192,10.246,10.025,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.075,-0.002,-999999,-999999,0.128,-999999,0.8;15.880,15.810,1208.0,9.499,9.553,9.331,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.078,-0.002,-999999,-999999,0.128,-999999,0.9;15.900,15.830,1208.7,8.072,8.126,7.905,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.084,-0.003,-999999,-999999,0.128,-999999,1.0;15.920,15.850,1209.5,6.487,6.541,6.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.093,-0.003,-999999,-999999,0.129,-999999,1.3;15.940,15.870,1210.2,4.845,4.899,4.677,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.103,-0.004,-999999,-999999,0.130,-999999,1.7;15.960,15.890,1211.0,3.601,3.656,3.433,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.114,-0.005,-999999,-999999,0.131,-999999,2.1;15.980,15.910,1211.8,2.860,2.916,2.694,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.123,-0.005,-999999,-999999,0.135,-999999,2.6;16.000,15.930,1212.6,2.433,2.491,2.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.126,-0.005,-999999,-999999,0.137,-999999,3.3;16.020,15.950,1214.4,2.173,2.231,2.008,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.122,-0.006,-999999,-999999,0.138,-999999,4.2;16.040,15.970,1216.3,1.913,1.972,1.748,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.110,-0.006,-999999,-999999,0.139,-999999,4.9;16.060,15.990,1218.1,1.653,1.714,1.490,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.101,-0.004,-999999,-999999,0.143,-999999,5.3;16.080,16.010,1219.1,1.500,1.584,1.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.094,0.037,-999999,-999999,0.201,-999999,5.3;16.100,16.030,1219.9,1.377,1.494,1.270,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.088,0.101,-999999,-999999,0.279,-999999,5.3;16.120,16.040,1220.7,1.280,1.412,1.187,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.081,0.137,-999999,-999999,0.313,-999999,5.3;16.140,16.060,1221.4,1.220,1.356,1.132,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.072,0.154,-999999,-999999,0.325,-999999,5.0;16.160,16.080,1224.6,1.172,1.325,1.100,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.064,0.194,-999999,-999999,0.364,-999999,5.0;16.180,16.100,1228.1,1.124,1.293,1.068,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.058,0.236,-999999,-999999,0.403,-999999,4.8;16.200,16.120,1231.6,1.076,1.262,1.036,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.050,0.280,-999999,-999999,0.442,-999999,4.4;16.220,16.140,1233.5,1.053,1.250,1.024,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.043,0.310,-999999,-999999,0.469,-999999,3.8;16.240,16.160,1234.3,1.068,1.272,1.045,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.037,0.318,-999999,-999999,0.484,-999999,3.3;16.260,16.180,1235.0,1.083,1.286,1.059,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.034,0.311,-999999,-999999,0.481,-999999,3.0;16.280,16.200,1235.8,1.106,1.309,1.082,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.033,0.306,-999999,-999999,0.484,-999999,2.9;16.300,16.220,1236.5,1.131,1.335,1.108,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.033,0.300,-999999,-999999,0.485,-999999,2.9;16.320,16.240,1237.3,1.159,1.361,1.134,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.035,0.291,-999999,-999999,0.482,-999999,2.9;16.340,16.260,1238.1,1.202,1.408,1.180,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.037,0.286,-999999,-999999,0.490,-999999,3.0;16.360,16.280,1238.9,1.246,1.456,1.228,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.039,0.283,-999999,-999999,0.500,-999999,3.2;16.380,16.300,1239.6,1.292,1.508,1.280,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.042,0.282,-999999,-999999,0.513,-999999,3.3;16.400,16.320,1240.4,1.331,1.548,1.320,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.044,0.276,-999999,-999999,0.518,-999999,3.4;16.420,16.340,1241.2,1.353,1.571,1.342,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.049,0.273,-999999,-999999,0.520,-999999,3.7;16.440,16.360,1241.9,1.369,1.583,1.354,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,7,-999999,-999999,0.058,0.263,-999999,-999999,0.510,-999999,4.3;16.460,16.380,1242.7,1.367,1.560,1.331,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.066,0.231,-999999,-999999,0.461,-999999,4.9;16.480,16.400,1243.5,1.363,1.532,1.302,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.069,0.191,-999999,-999999,0.403,-999999,5.2;16.500,16.420,1244.3,1.330,1.474,1.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.070,0.151,-999999,-999999,0.342,-999999,5.4;16.520,16.440,1245.1,1.256,1.396,1.166,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.066,0.154,-999999,-999999,0.333,-999999,5.2;16.540,16.460,1245.8,1.175,1.322,1.091,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.059,0.179,-999999,-999999,0.351,-999999,4.9;16.560,16.480,1246.6,1.112,1.266,1.036,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.052,0.206,-999999,-999999,0.369,-999999,4.5;16.580,16.500,1247.4,1.020,1.190,0.959,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.044,0.260,-999999,-999999,0.404,-999999,4.0;16.600,16.520,1248.2,0.963,1.138,0.907,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.036,0.289,-999999,-999999,0.417,-999999,3.4;16.620,16.540,1248.9,0.924,1.096,0.865,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.029,0.294,-999999,-999999,0.410,-999999,3.0;16.640,16.560,1249.7,0.881,1.043,0.811,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.026,0.283,-999999,-999999,0.386,-999999,2.8;16.660,16.580,1250.5,0.835,0.996,0.763,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.024,0.298,-999999,-999999,0.383,-999999,2.8;16.680,16.600,1251.2,0.784,0.940,0.708,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.023,0.305,-999999,-999999,0.372,-999999,2.8;16.700,16.620,1252.0,0.755,0.904,0.671,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.023,0.294,-999999,-999999,0.353,-999999,2.9;16.720,16.640,1252.8,0.718,0.867,0.634,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.022,0.311,-999999,-999999,0.353,-999999,2.9;16.740,16.660,1253.5,0.700,0.848,0.615,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.021,0.317,-999999,-999999,0.352,-999999,2.9;16.760,16.680,1254.3,0.706,0.852,0.619,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.021,0.309,-999999,-999999,0.348,-999999,2.9;16.780,16.700,1255.1,0.709,0.856,0.622,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.021,0.309,-999999,-999999,0.349,-999999,2.9;16.800,16.720,1255.9,0.697,0.847,0.613,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.021,0.324,-999999,-999999,0.356,-999999,2.9;16.820,16.740,1256.6,0.683,0.834,0.599,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.022,0.337,-999999,-999999,0.359,-999999,3.1;16.840,16.760,1257.4,0.683,0.833,0.598,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.023,0.332,-999999,-999999,0.356,-999999,3.2;16.860,16.780,1258.2,0.686,0.832,0.597,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.023,0.321,-999999,-999999,0.350,-999999,3.3;16.880,16.800,1258.9,0.692,0.833,0.598,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.024,0.300,-999999,-999999,0.337,-999999,3.4;16.900,16.820,1259.7,0.698,0.836,0.600,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.025,0.285,-999999,-999999,0.330,-999999,3.5;16.920,16.840,1260.5,0.696,0.833,0.597,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.026,0.279,-999999,-999999,0.325,-999999,3.7;16.940,16.860,1261.2,0.702,0.837,0.601,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.027,0.272,-999999,-999999,0.322,-999999,3.8;16.960,16.880,1262.0,0.711,0.845,0.609,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.028,0.262,-999999,-999999,0.318,-999999,3.9;16.980,16.900,1262.8,0.721,0.851,0.614,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.028,0.243,-999999,-999999,0.308,-999999,3.9;17.000,16.920,1263.6,0.720,0.848,0.611,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.028,0.236,-999999,-999999,0.303,-999999,3.9;17.020,16.940,1264.3,0.715,0.839,0.601,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.028,0.226,-999999,-999999,0.295,-999999,3.9;17.040,16.960,1265.1,0.704,0.827,0.590,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.028,0.227,-999999,-999999,0.294,-999999,3.9;17.060,16.980,1265.9,0.697,0.821,0.583,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.028,0.232,-999999,-999999,0.295,-999999,3.9;17.080,17.000,1266.7,0.700,0.824,0.586,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.028,0.229,-999999,-999999,0.294,-999999,4.0;17.100,17.020,1267.4,0.702,0.824,0.586,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.028,0.224,-999999,-999999,0.292,-999999,4.0;17.120,17.040,1268.2,0.703,0.825,0.586,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.027,0.219,-999999,-999999,0.289,-999999,3.8;17.140,17.060,1270.7,0.689,0.809,0.570,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.026,0.220,-999999,-999999,0.286,-999999,3.7;17.160,17.080,1274.3,0.665,0.784,0.545,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.025,0.226,-999999,-999999,0.284,-999999,3.6;17.180,17.100,1277.8,0.640,0.758,0.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.025,0.231,-999999,-999999,0.281,-999999,3.7;17.200,17.120,1280.3,0.626,0.745,0.505,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.026,0.240,-999999,-999999,0.283,-999999,3.6;17.220,17.140,1281.1,0.642,0.761,0.521,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.026,0.235,-999999,-999999,0.284,-999999,3.4;17.240,17.160,1281.8,0.730,0.850,0.610,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.024,0.204,-999999,-999999,0.286,-999999,3.1;17.260,17.180,1282.6,0.867,0.986,0.746,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.021,0.164,-999999,-999999,0.284,-999999,2.7;17.280,17.200,1283.4,0.967,1.071,0.831,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.019,0.104,-999999,-999999,0.248,-999999,2.4;17.300,17.220,1284.2,0.938,1.039,0.798,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.017,0.098,-999999,-999999,0.240,-999999,2.1;17.320,17.240,1284.9,0.839,0.945,0.704,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.016,0.128,-999999,-999999,0.252,-999999,1.9;17.340,17.260,1285.7,0.748,0.859,0.617,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.016,0.163,-999999,-999999,0.263,-999999,1.9;17.360,17.280,1286.5,0.696,0.811,0.569,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.016,0.195,-999999,-999999,0.274,-999999,2.1;17.380,17.300,1287.2,0.686,0.805,0.563,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.017,0.212,-999999,-999999,0.283,-999999,2.2;17.400,17.320,1288.0,0.687,0.808,0.566,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.017,0.221,-999999,-999999,0.288,-999999,2.4;17.420,17.340,1288.8,0.691,0.814,0.571,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.017,0.226,-999999,-999999,0.292,-999999,2.4;17.440,17.360,1289.5,0.694,0.820,0.577,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.017,0.237,-999999,-999999,0.300,-999999,2.4;17.460,17.380,1290.3,0.691,0.819,0.575,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.017,0.245,-999999,-999999,0.305,-999999,2.4;17.480,17.400,1291.1,0.702,0.832,0.589,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.017,0.250,-999999,-999999,0.311,-999999,2.4;17.500,17.420,1291.9,0.721,0.855,0.611,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.018,0.253,-999999,-999999,0.319,-999999,2.5;17.520,17.440,1292.6,0.732,0.868,0.624,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.019,0.253,-999999,-999999,0.322,-999999,2.6;17.540,17.460,1293.4,0.738,0.875,0.631,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.020,0.256,-999999,-999999,0.326,-999999,2.4;17.560,17.480,1294.2,0.741,0.880,0.636,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.019,0.262,-999999,-999999,0.331,-999999,1.8;17.580,17.500,1295.0,0.808,0.950,0.705,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.020,0.245,-999999,-999999,0.338,-999999,1.5;17.600,17.520,1295.7,1.296,1.441,1.196,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.021,0.151,-999999,-999999,0.345,-999999,1.2;17.620,17.540,1296.5,2.208,2.334,2.088,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.022,0.064,-999999,-999999,0.299,-999999,1.0;17.640,17.560,1297.3,3.139,3.218,2.972,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.025,0.008,-999999,-999999,0.189,-999999,0.9;17.660,17.580,1298.0,3.710,3.786,3.540,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.028,0.004,-999999,-999999,0.180,-999999,0.9;17.680,17.600,1298.8,3.946,4.024,3.777,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.032,0.005,-999999,-999999,0.185,-999999,0.9;17.700,17.620,1299.6,3.948,4.029,3.782,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.037,0.007,-999999,-999999,0.193,-999999,1.0;17.720,17.630,1300.4,3.816,3.901,3.654,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.041,0.010,-999999,-999999,0.202,-999999,1.1;17.740,17.650,1301.2,3.688,3.777,3.529,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.045,0.013,-999999,-999999,0.211,-999999,1.1;17.760,17.670,1301.9,3.681,3.773,3.526,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.045,0.015,-999999,-999999,0.219,-999999,1.1;17.780,17.690,1302.7,3.776,3.869,3.621,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.047,0.015,-999999,-999999,0.221,-999999,1.2;17.800,17.710,1303.5,3.707,3.797,3.549,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.051,0.013,-999999,-999999,0.215,-999999,1.3;17.820,17.730,1304.3,3.635,3.717,3.469,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.051,0.008,-999999,-999999,0.196,-999999,1.2;17.840,17.750,1305.0,3.822,3.899,3.651,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.042,0.005,-999999,-999999,0.185,-999999,0.9;17.860,17.770,1305.8,4.583,4.647,4.398,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.037,-0.003,-999999,-999999,0.153,-999999,0.7;17.880,17.790,1306.6,5.894,5.934,5.685,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.037,-0.013,-999999,-999999,0.095,-999999,0.6;17.900,17.810,1307.4,7.293,7.319,7.070,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.040,-0.015,-999999,-999999,0.062,-999999,0.5;17.920,17.830,1308.2,8.904,8.932,8.682,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.045,-0.012,-999999,-999999,0.067,-999999,0.5;17.940,17.850,1309.0,10.268,10.303,10.053,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.054,-0.009,-999999,-999999,0.083,-999999,0.5;17.960,17.870,1309.8,11.151,11.190,10.940,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.064,-0.007,-999999,-999999,0.092,-999999,0.6;17.980,17.890,1310.5,11.757,11.796,11.546,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.070,-0.006,-999999,-999999,0.094,-999999,0.6;18.000,17.910,1311.3,12.261,12.304,12.053,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.079,-0.006,-999999,-999999,0.102,-999999,0.6;18.020,17.930,1312.1,12.715,12.760,12.509,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.086,-0.005,-999999,-999999,0.107,-999999,0.6;18.040,17.950,1312.9,13.234,13.282,13.031,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.088,-0.004,-999999,-999999,0.113,-999999,0.6;18.060,17.970,1313.7,13.767,13.818,13.567,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.085,-0.004,-999999,-999999,0.122,-999999,0.6;18.080,17.990,1314.5,14.257,14.312,14.060,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.082,-0.003,-999999,-999999,0.131,-999999,0.5;18.100,18.010,1315.3,14.666,14.723,14.471,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.083,-0.002,-999999,-999999,0.137,-999999,0.5;18.120,18.030,1316.2,15.182,15.242,14.990,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.089,-0.002,-999999,-999999,0.143,-999999,0.6;18.140,18.050,1320.0,15.911,15.974,15.721,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.092,-0.001,-999999,-999999,0.149,-999999,0.5;18.160,18.070,1323.9,16.640,16.705,16.452,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.096,-0.001,-999999,-999999,0.155,-999999,0.5;18.180,18.090,1327.5,17.395,17.462,17.208,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.099,-0.001,-999999,-999999,0.158,-999999,0.5;18.200,18.110,1328.3,18.636,18.701,18.447,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.102,-0.001,-999999,-999999,0.154,-999999,0.5;18.220,18.130,1329.1,19.831,19.896,19.642,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.107,-0.001,-999999,-999999,0.154,-999999,0.5;18.240,18.150,1329.9,20.983,21.049,20.795,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.116,-0.001,-999999,-999999,0.158,-999999,0.5;18.260,18.170,1330.7,22.112,22.178,21.924,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.125,-0.001,-999999,-999999,0.158,-999999,0.5;18.280,18.190,1331.5,23.099,23.165,22.910,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.134,-0.001,-999999,-999999,0.158,-999999,0.6;18.300,18.210,1332.3,23.744,23.810,23.556,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.140,-0.001,-999999,-999999,0.159,-999999,0.6;18.320,18.230,1333.1,24.104,24.171,23.916,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.146,-0.001,-999999,-999999,0.159,-999999,0.6;18.340,18.250,1333.9,24.286,24.353,24.097,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.154,-0.001,-999999,-999999,0.159,-999999,0.6;18.360,18.270,1334.7,24.362,24.429,24.173,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.158,-0.001,-999999,-999999,0.160,-999999,0.6;18.380,18.290,1335.5,24.417,24.485,24.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.160,0.000,-999999,-999999,0.161,-999999,0.6;18.400,18.310,1336.3,24.474,24.542,24.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.162,0.000,-999999,-999999,0.161,-999999,0.6;18.420,18.330,1337.1,24.704,24.772,24.515,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.166,0.000,-999999,-999999,0.162,-999999,0.6;18.440,18.350,1337.9,25.082,25.149,24.892,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.168,-0.001,-999999,-999999,0.161,-999999,0.6;18.460,18.370,1338.7,25.413,25.481,25.224,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.169,0.000,-999999,-999999,0.162,-999999,0.6;18.480,18.390,1339.5,25.664,25.732,25.474,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.171,0.000,-999999,-999999,0.162,-999999,0.6;18.500,18.410,1340.4,25.802,25.871,25.613,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.173,0.000,-999999,-999999,0.162,-999999,0.6;18.520,18.430,1341.2,25.969,26.037,25.779,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.177,0.000,-999999,-999999,0.162,-999999,0.6;18.540,18.450,1342.0,26.341,26.409,26.151,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.182,0.000,-999999,-999999,0.163,-999999,0.7;18.560,18.470,1342.9,26.532,26.600,26.342,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.183,0.000,-999999,-999999,0.163,-999999,0.7;18.580,18.490,1343.8,26.332,26.401,26.142,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.182,0.000,-999999,-999999,0.164,-999999,0.7;18.600,18.510,1344.5,25.846,25.914,25.655,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.183,0.000,-999999,-999999,0.164,-999999,0.7;18.620,18.530,1345.4,25.281,25.350,25.090,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.185,0.000,-999999,-999999,0.164,-999999,0.7;18.640,18.550,1346.2,25.034,25.103,24.843,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.184,0.000,-999999,-999999,0.164,-999999,0.7;18.660,18.570,1347.0,25.028,25.097,24.837,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.181,0.000,-999999,-999999,0.165,-999999,0.7;18.680,18.590,1347.9,25.145,25.215,24.954,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.177,0.000,-999999,-999999,0.165,-999999,0.7;18.700,18.610,1348.7,25.210,25.279,25.018,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.175,0.000,-999999,-999999,0.165,-999999,0.6;18.720,18.630,1349.5,25.109,25.178,24.918,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.173,0.000,-999999,-999999,0.165,-999999,0.6;18.740,18.650,1350.4,24.996,25.066,24.805,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.174,0.000,-999999,-999999,0.165,-999999,0.6;18.760,18.670,1351.3,24.989,25.059,24.797,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.174,0.000,-999999,-999999,0.165,-999999,0.6;18.780,18.690,1352.0,25.079,25.149,24.887,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.175,0.000,-999999,-999999,0.165,-999999,0.6;18.800,18.710,1352.9,25.261,25.331,25.069,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.177,0.000,-999999,-999999,0.165,-999999,0.6;18.820,18.730,1353.7,25.393,25.462,25.200,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.177,0.000,-999999,-999999,0.166,-999999,0.6;18.840,18.750,1354.6,25.666,25.735,25.473,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.177,0.000,-999999,-999999,0.166,-999999,0.6;18.860,18.770,1355.4,26.157,26.227,25.964,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.177,0.000,-999999,-999999,0.166,-999999,0.6;18.880,18.790,1356.3,26.691,26.760,26.497,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.176,0.000,-999999,-999999,0.165,-999999,0.6;18.900,18.810,1357.1,27.162,27.232,26.968,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.175,0.000,-999999,-999999,0.166,-999999,0.6;18.920,18.830,1358.0,27.569,27.638,27.375,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.174,0.000,-999999,-999999,0.166,-999999,0.6;18.940,18.850,1358.9,27.963,28.033,27.769,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.173,0.000,-999999,-999999,0.166,-999999,0.6;18.960,18.870,1359.8,28.499,28.569,28.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.175,0.000,-999999,-999999,0.167,-999999,0.6;18.980,18.890,1360.8,29.239,29.309,29.045,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.179,0.000,-999999,-999999,0.167,-999999,0.6;19.000,18.910,1361.7,29.895,29.965,29.700,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.183,0.000,-999999,-999999,0.168,-999999,0.6;19.020,18.930,1362.7,30.450,30.520,30.255,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.184,0.000,-999999,-999999,0.168,-999999,0.6;19.040,18.950,1363.6,30.716,30.787,30.522,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.176,0.000,-999999,-999999,0.169,-999999,0.5;19.060,18.970,1364.6,30.704,30.775,30.510,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.167,0.000,-999999,-999999,0.168,-999999,0.5;19.080,18.990,1365.5,30.685,30.756,30.490,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.158,0.000,-999999,-999999,0.169,-999999,0.5;19.100,19.010,1366.5,31.059,31.130,30.864,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.153,0.000,-999999,-999999,0.169,-999999,0.4;19.120,19.030,1368.7,31.398,31.469,31.203,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.162,0.000,-999999,-999999,0.169,-999999,0.5;19.140,19.050,1372.1,31.527,31.598,31.331,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.167,0.000,-999999,-999999,0.170,-999999,0.5;19.160,19.070,1375.4,31.655,31.727,31.460,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.171,0.000,-999999,-999999,0.170,-999999,0.5;19.180,19.090,1378.8,31.784,31.856,31.588,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.174,0.000,-999999,-999999,0.170,-999999,0.5;19.200,19.110,1380.3,31.819,31.889,31.622,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.177,0.000,-999999,-999999,0.168,-999999,0.5;19.220,19.130,1381.2,31.421,31.493,31.226,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.181,0.000,-999999,-999999,0.172,-999999,0.5;19.240,19.150,1382.1,31.074,31.145,30.877,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,6,6,-999999,-999999,0.180,0.000,-999999,-999999,0.170,-999999,0.5;19.260,19.170,1383.1,30.932,31.003,30.734,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.177,0.000,-999999,-999999,0.169,-999999,0.5;19.280,19.190,1384.0,30.296,30.367,30.098,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.178,0.000,-999999,-999999,0.169,-999999,0.5;19.300,19.200,1384.9,29.194,29.264,28.996,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.178,0.000,-999999,-999999,0.168,-999999,0.6;19.320,19.220,1385.8,28.509,28.581,28.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.176,0.000,-999999,-999999,0.171,-999999,0.6;19.340,19.240,1386.6,28.087,28.158,27.889,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.175,0.000,-999999,-999999,0.171,-999999,0.6;19.360,19.260,1387.5,27.846,27.917,27.647,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.175,0.000,-999999,-999999,0.170,-999999,0.6;19.380,19.280,1388.4,27.579,27.651,27.381,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.178,0.000,-999999,-999999,0.171,-999999,0.6;19.400,19.300,1389.3,27.349,27.421,27.150,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.174,0.000,-999999,-999999,0.171,-999999,0.6;19.420,19.320,1390.1,27.124,27.197,26.926,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.173,0.000,-999999,-999999,0.172,-999999,0.6;19.440,19.340,1391.0,26.850,26.922,26.651,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.175,0.000,-999999,-999999,0.171,-999999,0.6;19.460,19.360,1391.8,26.538,26.610,26.339,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.174,0.000,-999999,-999999,0.171,-999999,0.6;19.480,19.380,1392.7,26.168,26.240,25.969,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.174,0.000,-999999,-999999,0.171,-999999,0.6;19.500,19.400,1393.5,25.822,25.893,25.621,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.173,-0.001,-999999,-999999,0.170,-999999,0.6;19.520,19.420,1394.4,25.425,25.497,25.225,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.173,-0.001,-999999,-999999,0.171,-999999,0.6;19.540,19.440,1395.2,25.223,25.295,25.023,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.172,-0.001,-999999,-999999,0.171,-999999,0.6;19.560,19.460,1396.0,24.891,24.963,24.690,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.172,-0.001,-999999,-999999,0.171,-999999,0.6;19.580,19.480,1396.8,24.577,24.650,24.377,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.172,-0.001,-999999,-999999,0.172,-999999,0.6;19.600,19.500,1397.7,24.227,24.299,24.026,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.170,-0.001,-999999,-999999,0.172,-999999,0.6;19.620,19.520,1398.5,23.991,24.063,23.790,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.165,-0.001,-999999,-999999,0.172,-999999,0.6;19.640,19.540,1399.3,23.901,23.973,23.699,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.161,-0.001,-999999,-999999,0.172,-999999,0.6;19.660,19.560,1400.1,23.840,23.913,23.639,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.159,-0.001,-999999,-999999,0.173,-999999,0.6;19.680,19.580,1400.9,23.786,23.858,23.584,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.157,-0.001,-999999,-999999,0.172,-999999,0.6;19.700,19.600,1401.7,23.782,23.855,23.580,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.156,-0.001,-999999,-999999,0.173,-999999,0.6;19.720,19.620,1402.5,23.842,23.914,23.640,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.154,-0.001,-999999,-999999,0.172,-999999,0.6;19.740,19.640,1403.4,24.037,24.109,23.834,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.153,-0.001,-999999,-999999,0.173,-999999,0.6;19.760,19.660,1404.2,24.245,24.318,24.043,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.153,-0.001,-999999,-999999,0.174,-999999,0.6;19.780,19.680,1405.0,24.276,24.349,24.073,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.156,-0.001,-999999,-999999,0.174,-999999,0.6;19.800,19.700,1405.8,24.173,24.246,23.970,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.158,-0.001,-999999,-999999,0.174,-999999,0.6;19.820,19.720,1406.7,24.113,24.186,23.910,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.161,-0.001,-999999,-999999,0.175,-999999,0.6;19.840,19.740,1407.5,24.127,24.201,23.925,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.162,-0.001,-999999,-999999,0.175,-999999,0.6;19.860,19.760,1408.3,24.115,24.188,23.912,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.164,-0.001,-999999,-999999,0.175,-999999,0.6;19.880,19.780,1409.1,24.064,24.138,23.861,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.164,-0.001,-999999,-999999,0.175,-999999,0.6;19.900,19.800,1409.9,24.015,24.089,23.812,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.165,-0.001,-999999,-999999,0.175,-999999,0.6;19.920,19.820,1410.7,23.967,24.040,23.763,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.164,-0.001,-999999,-999999,0.175,-999999,0.6;19.940,19.840,1411.5,23.960,24.033,23.756,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.163,-0.001,-999999,-999999,0.176,-999999,0.6;19.960,19.860,1412.3,24.040,24.113,23.835,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.164,-0.001,-999999,-999999,0.176,-999999,0.6;19.980,19.880,1413.2,24.189,24.263,23.985,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.164,-0.001,-999999,-999999,0.176,-999999,0.6;20.000,19.900,1414.0,24.342,24.416,24.138,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.164,-0.001,-999999,-999999,0.176,-999999,0.6;20.020,19.920,1414.8,24.555,24.629,24.350,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.158,-0.001,-999999,-999999,0.176,-999999,0.6;20.040,19.940,1415.6,24.592,24.666,24.387,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.145,-0.001,-999999,-999999,0.176,-999999,0.5;20.060,19.960,1416.4,24.403,24.477,24.198,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.131,-0.001,-999999,-999999,0.176,-999999,0.5;20.080,19.980,1417.3,24.248,24.322,24.042,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.128,-0.001,-999999,-999999,0.176,-999999,0.5;20.100,20.000,1418.2,24.213,24.286,24.006,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.132,-0.001,-999999,-999999,0.176,-999999,0.5;20.120,20.020,1422.2,23.963,24.037,23.757,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.134,-0.001,-999999,-999999,0.177,-999999,0.5;20.140,20.040,1426.1,23.714,23.788,23.508,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.133,-0.001,-999999,-999999,0.178,-999999,0.5;20.160,20.060,1429.6,23.541,23.616,23.335,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.131,-0.001,-999999,-999999,0.179,-999999,0.5;20.180,20.080,1430.4,23.609,23.683,23.402,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.128,-0.001,-999999,-999999,0.177,-999999,0.5;20.200,20.100,1431.2,23.369,23.443,23.162,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.125,-0.001,-999999,-999999,0.177,-999999,0.5;20.220,20.120,1432.0,22.948,23.022,22.741,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.122,-0.001,-999999,-999999,0.177,-999999,0.5;20.240,20.140,1432.7,22.483,22.557,22.275,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.117,-0.001,-999999,-999999,0.176,-999999,0.5;20.260,20.160,1433.5,22.164,22.238,21.956,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.113,-0.001,-999999,-999999,0.177,-999999,0.4;20.280,20.180,1434.3,22.156,22.230,21.948,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.109,-0.001,-999999,-999999,0.177,-999999,0.4;20.300,20.200,1435.0,22.192,22.267,21.984,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.108,-0.001,-999999,-999999,0.178,-999999,0.4;20.320,20.220,1435.8,22.029,22.103,21.820,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.107,-0.001,-999999,-999999,0.177,-999999,0.4;20.340,20.240,1436.6,21.621,21.696,21.413,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.107,-0.001,-999999,-999999,0.179,-999999,0.5;20.360,20.260,1437.3,21.010,21.085,20.801,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.109,-0.001,-999999,-999999,0.177,-999999,0.5;20.380,20.280,1438.1,20.408,20.483,20.199,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.110,-0.001,-999999,-999999,0.177,-999999,0.5;20.400,20.300,1438.9,19.837,19.912,19.628,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.111,-0.001,-999999,-999999,0.178,-999999,0.5;20.420,20.320,1439.6,19.163,19.238,18.954,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.111,-0.001,-999999,-999999,0.179,-999999,0.5;20.440,20.340,1440.4,18.400,18.475,18.191,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.112,-0.001,-999999,-999999,0.179,-999999,0.5;20.460,20.360,1441.2,17.853,17.927,17.642,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.115,-0.001,-999999,-999999,0.177,-999999,0.6;20.480,20.380,1442.0,17.449,17.523,17.238,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.114,-0.001,-999999,-999999,0.176,-999999,0.6;20.500,20.400,1442.7,17.248,17.323,17.037,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.113,-0.001,-999999,-999999,0.177,-999999,0.6;20.520,20.420,1443.5,17.284,17.359,17.073,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.113,-0.001,-999999,-999999,0.178,-999999,0.6;20.540,20.440,1444.3,17.557,17.633,17.347,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.112,-0.001,-999999,-999999,0.179,-999999,0.6;20.560,20.460,1445.0,18.076,18.152,17.866,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.111,-0.001,-999999,-999999,0.181,-999999,0.6;20.580,20.480,1445.8,18.663,18.739,18.452,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.113,-0.001,-999999,-999999,0.180,-999999,0.6;20.600,20.500,1446.6,19.046,19.122,18.835,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.111,-0.001,-999999,-999999,0.180,-999999,0.5;20.620,20.520,1447.4,19.435,19.511,19.224,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.112,-0.001,-999999,-999999,0.181,-999999,0.5;20.640,20.540,1448.2,20.011,20.087,19.800,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.113,-0.001,-999999,-999999,0.182,-999999,0.5;20.660,20.560,1449.0,20.628,20.704,20.416,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.117,-0.001,-999999,-999999,0.182,-999999,0.5;20.680,20.580,1449.8,21.021,21.097,20.809,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.117,-0.001,-999999,-999999,0.182,-999999,0.5;20.700,20.600,1450.6,21.448,21.525,21.236,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.119,-0.001,-999999,-999999,0.183,-999999,0.5;20.720,20.620,1451.3,21.804,21.881,21.592,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.120,-0.001,-999999,-999999,0.183,-999999,0.5;20.740,20.640,1452.1,21.963,22.040,21.751,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.119,-0.001,-999999,-999999,0.182,-999999,0.5;20.760,20.660,1453.0,21.744,21.820,21.531,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.119,-0.001,-999999,-999999,0.182,-999999,0.5;20.780,20.680,1453.7,21.392,21.468,21.179,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.120,-0.001,-999999,-999999,0.181,-999999,0.5;20.800,20.700,1454.5,20.965,21.042,20.752,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.118,-0.001,-999999,-999999,0.182,-999999,0.5;20.820,20.720,1455.3,20.171,20.247,19.957,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.117,-0.001,-999999,-999999,0.182,-999999,0.5;20.840,20.740,1456.0,19.370,19.447,19.156,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.118,-0.001,-999999,-999999,0.182,-999999,0.6;20.860,20.750,1456.8,18.477,18.553,18.263,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.116,-0.001,-999999,-999999,0.182,-999999,0.6;20.880,20.770,1457.6,17.572,17.648,17.358,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.115,-0.001,-999999,-999999,0.183,-999999,0.6;20.900,20.790,1458.4,16.752,16.828,16.537,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.112,-0.001,-999999,-999999,0.182,-999999,0.6;20.920,20.810,1459.1,16.154,16.231,15.939,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.110,-0.001,-999999,-999999,0.182,-999999,0.6;20.940,20.830,1459.9,15.798,15.874,15.583,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.113,-0.001,-999999,-999999,0.182,-999999,0.6;20.960,20.850,1460.7,15.744,15.821,15.529,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.115,-0.001,-999999,-999999,0.183,-999999,0.7;20.980,20.870,1461.4,15.555,15.632,15.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.106,-0.001,-999999,-999999,0.183,-999999,0.6;21.000,20.890,1462.2,15.597,15.674,15.382,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.102,-0.001,-999999,-999999,0.183,-999999,0.6;21.020,20.910,1463.0,15.333,15.410,15.118,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.096,-0.001,-999999,-999999,0.183,-999999,0.6;21.040,20.930,1463.7,14.821,14.897,14.604,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.089,-0.001,-999999,-999999,0.181,-999999,0.5;21.060,20.950,1464.5,14.197,14.274,13.980,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.082,-0.001,-999999,-999999,0.183,-999999,0.5;21.080,20.970,1465.2,13.730,13.807,13.513,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.079,-0.001,-999999,-999999,0.182,-999999,0.5;21.100,20.990,1467.9,13.407,13.484,13.190,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.073,-0.001,-999999,-999999,0.183,-999999,0.5;21.120,21.010,1471.5,13.155,13.232,12.938,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.074,-0.001,-999999,-999999,0.184,-999999,0.5;21.140,21.030,1475.2,12.903,12.981,12.686,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.071,-0.001,-999999,-999999,0.186,-999999,0.5;21.160,21.050,1477.4,12.811,12.890,12.595,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.073,-0.001,-999999,-999999,0.187,-999999,0.5;21.180,21.070,1478.2,12.962,13.041,12.746,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.076,-0.001,-999999,-999999,0.188,-999999,0.5;21.200,21.090,1479.0,13.209,13.287,12.992,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.080,-0.001,-999999,-999999,0.187,-999999,0.5;21.220,21.110,1479.7,13.750,13.828,13.533,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.082,-0.001,-999999,-999999,0.187,-999999,0.5;21.240,21.130,1480.5,14.490,14.569,14.273,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.086,-0.001,-999999,-999999,0.188,-999999,0.5;21.260,21.150,1481.3,15.839,15.918,15.622,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.090,-0.001,-999999,-999999,0.188,-999999,0.5;21.280,21.170,1482.1,17.757,17.836,17.539,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.094,-0.001,-999999,-999999,0.188,-999999,0.5;21.300,21.190,1482.9,19.795,19.874,19.577,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,7,-999999,-999999,0.103,-0.001,-999999,-999999,0.189,-999999,0.5;21.320,21.210,1483.7,21.608,21.687,21.390,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.109,-0.001,-999999,-999999,0.189,-999999,0.5;21.340,21.230,1484.5,23.069,23.148,22.851,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.117,-0.001,-999999,-999999,0.189,-999999,0.5;21.360,21.250,1485.3,23.902,23.981,23.684,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.125,-0.001,-999999,-999999,0.189,-999999,0.5;21.380,21.270,1486.0,23.957,24.036,23.739,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.131,-0.001,-999999,-999999,0.190,-999999,0.5;21.400,21.290,1486.8,23.714,23.794,23.496,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.135,-0.001,-999999,-999999,0.190,-999999,0.5;21.420,21.310,1487.7,23.662,23.742,23.443,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.141,-0.001,-999999,-999999,0.190,-999999,0.5;21.440,21.330,1488.5,23.810,23.889,23.591,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.144,-0.001,-999999,-999999,0.190,-999999,0.6;21.460,21.350,1489.3,24.045,24.125,23.826,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.142,-0.001,-999999,-999999,0.190,-999999,0.5;21.480,21.370,1490.0,24.106,24.186,23.887,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.139,-0.001,-999999,-999999,0.190,-999999,0.5;21.500,21.390,1490.8,23.868,23.947,23.648,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.137,-0.001,-999999,-999999,0.190,-999999,0.5;21.520,21.410,1491.7,23.720,23.801,23.501,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.133,-0.001,-999999,-999999,0.191,-999999,0.5;21.540,21.430,1492.4,23.685,23.764,23.464,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.128,-0.001,-999999,-999999,0.189,-999999,0.5;21.560,21.450,1493.2,23.752,23.832,23.532,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.128,-0.001,-999999,-999999,0.190,-999999,0.5;21.580,21.470,1494.0,23.911,23.991,23.691,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.128,-0.001,-999999,-999999,0.191,-999999,0.5;21.600,21.490,1494.8,24.053,24.134,23.833,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.131,-0.001,-999999,-999999,0.191,-999999,0.5;21.620,21.510,1495.7,24.227,24.307,24.006,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.129,-0.001,-999999,-999999,0.192,-999999,0.5;21.640,21.530,1496.5,24.288,24.368,24.067,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.129,-0.001,-999999,-999999,0.191,-999999,0.5;21.660,21.550,1497.3,24.005,24.085,23.783,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.132,-0.001,-999999,-999999,0.191,-999999,0.5;21.680,21.570,1498.1,23.642,23.722,23.420,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.131,-0.001,-999999,-999999,0.191,-999999,0.5;21.700,21.590,1498.9,23.341,23.421,23.119,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.131,-0.001,-999999,-999999,0.192,-999999,0.5;21.720,21.610,1499.7,23.199,23.279,22.977,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.131,-0.001,-999999,-999999,0.192,-999999,0.5;21.740,21.630,1500.5,22.974,23.054,22.751,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.127,-0.001,-999999,-999999,0.191,-999999,0.5;21.760,21.650,1501.3,22.472,22.552,22.249,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.127,-0.001,-999999,-999999,0.192,-999999,0.5;21.780,21.670,1502.0,21.898,21.979,21.676,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.126,-0.001,-999999,-999999,0.193,-999999,0.5;21.800,21.690,1502.8,21.408,21.489,21.186,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.122,-0.001,-999999,-999999,0.193,-999999,0.5;21.820,21.710,1503.6,21.150,21.230,20.926,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.119,-0.001,-999999,-999999,0.191,-999999,0.5;21.840,21.730,1504.4,21.061,21.141,20.837,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.121,-0.001,-999999,-999999,0.191,-999999,0.5;21.860,21.750,1505.2,20.952,21.032,20.727,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.117,-0.001,-999999,-999999,0.190,-999999,0.5;21.880,21.770,1506.0,21.083,21.161,20.857,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.113,-0.001,-999999,-999999,0.187,-999999,0.5;21.900,21.790,1506.7,20.812,20.890,20.584,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.112,-0.001,-999999,-999999,0.185,-999999,0.5;21.920,21.810,1507.5,20.411,20.492,20.187,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.111,-0.001,-999999,-999999,0.192,-999999,0.5;21.940,21.830,1508.3,19.957,20.037,19.732,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.112,-0.001,-999999,-999999,0.190,-999999,0.5;21.960,21.850,1509.0,19.628,19.708,19.402,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.114,-0.001,-999999,-999999,0.191,-999999,0.5;21.980,21.870,1509.8,19.258,19.339,19.032,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.105,-0.001,-999999,-999999,0.192,-999999,0.5;22.000,21.890,1510.6,18.791,18.872,18.566,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.104,-0.001,-999999,-999999,0.193,-999999,0.5;22.020,21.910,1511.3,18.435,18.517,18.210,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.100,-0.001,-999999,-999999,0.195,-999999,0.5;22.040,21.930,1512.1,17.860,17.942,17.635,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.097,-0.001,-999999,-999999,0.195,-999999,0.5;22.060,21.950,1512.9,17.300,17.382,17.075,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.095,-0.001,-999999,-999999,0.196,-999999,0.5;22.080,21.970,1514.2,16.840,16.922,16.615,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.096,-0.001,-999999,-999999,0.196,-999999,0.5;22.100,21.990,1517.9,16.546,16.629,16.321,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.099,-0.001,-999999,-999999,0.196,-999999,0.5;22.120,22.010,1521.5,16.252,16.335,16.027,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.100,-0.001,-999999,-999999,0.196,-999999,0.6;22.140,22.030,1525.0,15.971,16.053,15.745,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.102,-0.001,-999999,-999999,0.196,-999999,0.6;22.160,22.050,1525.8,15.930,16.012,15.703,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.101,-0.001,-999999,-999999,0.197,-999999,0.6;22.180,22.070,1526.6,15.949,16.031,15.722,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.102,-0.001,-999999,-999999,0.196,-999999,0.6;22.200,22.090,1527.3,16.028,16.111,15.802,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.103,-0.001,-999999,-999999,0.197,-999999,0.6;22.220,22.110,1528.1,16.245,16.327,16.018,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.102,-0.001,-999999,-999999,0.197,-999999,0.6;22.240,22.130,1528.9,16.413,16.496,16.186,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.102,-0.001,-999999,-999999,0.197,-999999,0.6;22.260,22.150,1529.7,16.522,16.605,16.295,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.103,-0.001,-999999,-999999,0.197,-999999,0.6;22.280,22.170,1530.5,16.538,16.620,16.310,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.100,-0.001,-999999,-999999,0.196,-999999,0.6;22.300,22.190,1531.2,16.477,16.560,16.249,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.099,-0.001,-999999,-999999,0.197,-999999,0.6;22.320,22.210,1532.0,16.351,16.433,16.122,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.099,-0.001,-999999,-999999,0.197,-999999,0.6;22.340,22.230,1532.8,16.326,16.409,16.098,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.099,-0.001,-999999,-999999,0.197,-999999,0.6;22.360,22.250,1533.6,16.339,16.422,16.110,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.100,-0.001,-999999,-999999,0.198,-999999,0.6;22.380,22.270,1534.3,16.393,16.477,16.165,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.100,-0.001,-999999,-999999,0.198,-999999,0.6;22.400,22.290,1535.1,16.523,16.606,16.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.100,-0.001,-999999,-999999,0.199,-999999,0.6;22.420,22.310,1535.9,16.697,16.780,16.468,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.101,-0.001,-999999,-999999,0.199,-999999,0.6;22.440,22.330,1536.7,16.892,16.975,16.663,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.101,-0.001,-999999,-999999,0.199,-999999,0.6;22.460,22.350,1537.5,17.090,17.173,16.860,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.104,-0.001,-999999,-999999,0.199,-999999,0.6;22.480,22.370,1538.3,17.303,17.387,17.074,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.105,-0.001,-999999,-999999,0.199,-999999,0.6;22.500,22.380,1539.0,17.498,17.582,17.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.105,-0.001,-999999,-999999,0.199,-999999,0.6;22.520,22.400,1539.8,17.579,17.663,17.349,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.106,-0.001,-999999,-999999,0.199,-999999,0.6;22.540,22.420,1540.6,17.437,17.521,17.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.107,-0.001,-999999,-999999,0.201,-999999,0.6;22.560,22.440,1541.3,17.237,17.321,17.006,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.107,-0.001,-999999,-999999,0.200,-999999,0.6;22.580,22.460,1542.1,16.973,17.057,16.743,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.107,-0.001,-999999,-999999,0.200,-999999,0.6;22.600,22.480,1542.9,16.700,16.784,16.469,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.107,-0.001,-999999,-999999,0.200,-999999,0.6;22.620,22.500,1543.7,16.464,16.548,16.233,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.101,-0.001,-999999,-999999,0.200,-999999,0.6;22.640,22.520,1544.4,16.272,16.356,16.041,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.099,-0.001,-999999,-999999,0.200,-999999,0.6;22.660,22.540,1545.2,16.043,16.127,15.811,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.096,-0.001,-999999,-999999,0.199,-999999,0.6;22.680,22.560,1546.0,15.714,15.798,15.483,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.094,-0.001,-999999,-999999,0.200,-999999,0.6;22.700,22.580,1546.7,15.188,15.272,14.956,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.093,-0.001,-999999,-999999,0.201,-999999,0.6;22.720,22.600,1547.5,14.518,14.602,14.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.091,-0.001,-999999,-999999,0.200,-999999,0.6;22.740,22.620,1548.3,13.957,14.041,13.724,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.087,-0.001,-999999,-999999,0.201,-999999,0.6;22.760,22.640,1549.0,13.438,13.522,13.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.088,-0.001,-999999,-999999,0.200,-999999,0.6;22.780,22.660,1549.8,12.958,13.042,12.725,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.085,-0.001,-999999,-999999,0.200,-999999,0.6;22.800,22.680,1550.5,12.534,12.617,12.300,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.084,-0.001,-999999,-999999,0.199,-999999,0.6;22.820,22.700,1551.3,12.130,12.214,11.897,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.082,-0.001,-999999,-999999,0.202,-999999,0.6;22.840,22.720,1552.1,11.704,11.788,11.470,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.079,-0.001,-999999,-999999,0.200,-999999,0.6;22.860,22.740,1552.8,11.378,11.462,11.144,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.075,-0.001,-999999,-999999,0.201,-999999,0.6;22.880,22.760,1553.6,10.970,11.054,10.735,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.073,-0.002,-999999,-999999,0.201,-999999,0.6;22.900,22.780,1554.4,10.657,10.741,10.422,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.067,-0.002,-999999,-999999,0.201,-999999,0.6;22.920,22.800,1555.2,10.378,10.462,10.142,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.066,-0.002,-999999,-999999,0.200,-999999,0.6;22.940,22.820,1555.9,10.260,10.345,10.025,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.063,-0.002,-999999,-999999,0.201,-999999,0.6;22.960,22.840,1556.7,10.149,10.234,9.914,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.062,-0.002,-999999,-999999,0.202,-999999,0.6;22.980,22.860,1557.4,10.076,10.161,9.841,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.062,-0.002,-999999,-999999,0.203,-999999,0.6;23.000,22.880,1558.2,10.000,10.085,9.765,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.061,-0.002,-999999,-999999,0.203,-999999,0.6;23.020,22.900,1559.0,9.959,10.045,9.724,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.060,-0.002,-999999,-999999,0.203,-999999,0.6;23.040,22.920,1559.8,9.830,9.915,9.594,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.060,-0.002,-999999,-999999,0.203,-999999,0.6;23.060,22.940,1560.7,9.660,9.745,9.424,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.059,-0.002,-999999,-999999,0.204,-999999,0.6;23.080,22.960,1564.2,9.468,9.553,9.232,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.059,-0.002,-999999,-999999,0.204,-999999,0.6;23.100,22.980,1567.6,9.275,9.361,9.039,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.057,-0.002,-999999,-999999,0.204,-999999,0.6;23.120,23.000,1571.1,9.083,9.169,8.847,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.055,-0.002,-999999,-999999,0.205,-999999,0.6;23.140,23.020,1572.6,8.868,8.954,8.631,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.053,-0.002,-999999,-999999,0.205,-999999,0.6;23.160,23.040,1573.3,8.721,8.807,8.484,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.052,-0.002,-999999,-999999,0.204,-999999,0.5;23.180,23.060,1574.1,8.624,8.710,8.387,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.051,-0.002,-999999,-999999,0.204,-999999,0.5;23.200,23.080,1574.9,8.485,8.570,8.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.049,-0.002,-999999,-999999,0.203,-999999,0.5;23.220,23.100,1575.7,8.429,8.515,8.191,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.049,-0.002,-999999,-999999,0.203,-999999,0.5;23.240,23.120,1576.4,8.368,8.454,8.130,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.049,-0.002,-999999,-999999,0.206,-999999,0.5;23.260,23.140,1577.2,8.247,8.333,8.009,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.050,-0.002,-999999,-999999,0.205,-999999,0.6;23.280,23.160,1578.0,8.284,8.370,8.046,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.051,-0.002,-999999,-999999,0.207,-999999,0.6;23.300,23.180,1578.7,7.889,7.976,7.651,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.052,-0.002,-999999,-999999,0.206,-999999,0.6;23.320,23.200,1579.5,7.668,7.755,7.430,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.053,-0.002,-999999,-999999,0.207,-999999,0.6;23.340,23.220,1580.3,7.515,7.602,7.277,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.055,-0.002,-999999,-999999,0.208,-999999,0.7;23.360,23.240,1581.0,7.373,7.460,7.135,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.052,-0.002,-999999,-999999,0.207,-999999,0.6;23.380,23.260,1581.8,7.263,7.350,7.024,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.053,-0.002,-999999,-999999,0.207,-999999,0.7;23.400,23.280,1582.6,7.148,7.235,6.910,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.054,-0.002,-999999,-999999,0.207,-999999,0.7;23.420,23.300,1583.3,6.965,7.053,6.727,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.054,-0.002,-999999,-999999,0.208,-999999,0.7;23.440,23.320,1584.1,6.803,6.891,6.564,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.053,-0.002,-999999,-999999,0.208,-999999,0.7;23.460,23.340,1584.9,6.650,6.737,6.411,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.053,-0.002,-999999,-999999,0.208,-999999,0.7;23.480,23.360,1585.7,6.491,6.579,6.252,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.051,-0.002,-999999,-999999,0.208,-999999,0.7;23.500,23.380,1586.4,6.351,6.438,6.111,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.050,-0.003,-999999,-999999,0.208,-999999,0.7;23.520,23.400,1587.2,6.244,6.331,6.004,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.050,-0.003,-999999,-999999,0.209,-999999,0.7;23.540,23.420,1588.0,6.141,6.229,5.901,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.048,-0.003,-999999,-999999,0.208,-999999,0.7;23.560,23.440,1588.7,6.084,6.171,5.843,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.047,-0.003,-999999,-999999,0.209,-999999,0.7;23.580,23.460,1589.5,6.028,6.116,5.788,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.046,-0.003,-999999,-999999,0.209,-999999,0.7;23.600,23.480,1590.3,5.923,6.010,5.682,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.045,-0.003,-999999,-999999,0.209,-999999,0.7;23.620,23.500,1591.0,5.788,5.876,5.547,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.045,-0.003,-999999,-999999,0.209,-999999,0.7;23.640,23.520,1591.8,5.661,5.748,5.419,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.045,-0.003,-999999,-999999,0.209,-999999,0.7;23.660,23.540,1592.6,5.560,5.648,5.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.044,-0.003,-999999,-999999,0.209,-999999,0.7;23.680,23.560,1593.3,5.468,5.556,5.226,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.043,-0.003,-999999,-999999,0.209,-999999,0.7;23.700,23.580,1594.1,5.376,5.464,5.134,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.043,-0.003,-999999,-999999,0.210,-999999,0.7;23.720,23.600,1594.9,5.364,5.453,5.122,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.042,-0.003,-999999,-999999,0.210,-999999,0.7;23.740,23.620,1595.7,5.333,5.421,5.090,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.042,-0.003,-999999,-999999,0.210,-999999,0.7;23.760,23.640,1596.4,5.320,5.408,5.077,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.041,-0.003,-999999,-999999,0.210,-999999,0.7;23.780,23.660,1597.2,5.277,5.365,5.034,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.041,-0.003,-999999,-999999,0.211,-999999,0.7;23.800,23.680,1598.0,5.243,5.332,5.000,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.041,-0.003,-999999,-999999,0.211,-999999,0.7;23.820,23.700,1598.7,5.196,5.285,4.953,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.040,-0.003,-999999,-999999,0.211,-999999,0.7;23.840,23.720,1599.5,5.169,5.258,4.926,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.041,-0.003,-999999,-999999,0.211,-999999,0.7;23.860,23.740,1600.3,5.171,5.260,4.928,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.041,-0.003,-999999,-999999,0.212,-999999,0.7;23.880,23.760,1601.0,5.173,5.262,4.929,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.041,-0.003,-999999,-999999,0.212,-999999,0.7;23.900,23.780,1601.8,5.205,5.294,4.961,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.041,-0.003,-999999,-999999,0.212,-999999,0.7;23.920,23.800,1602.6,5.258,5.348,5.014,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.042,-0.003,-999999,-999999,0.212,-999999,0.8;23.940,23.820,1603.3,5.306,5.395,5.062,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.042,-0.003,-999999,-999999,0.213,-999999,0.8;23.960,23.840,1604.1,5.310,5.400,5.066,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.042,-0.003,-999999,-999999,0.213,-999999,0.7;23.980,23.860,1604.9,5.272,5.361,5.027,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.041,-0.003,-999999,-999999,0.213,-999999,0.7;24.000,23.880,1605.7,5.247,5.337,5.002,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.041,-0.003,-999999,-999999,0.214,-999999,0.7;24.020,23.900,1606.4,5.233,5.322,4.988,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.040,-0.003,-999999,-999999,0.214,-999999,0.7;24.040,23.920,1607.2,5.204,5.294,4.959,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.040,-0.003,-999999,-999999,0.214,-999999,0.7;24.060,23.940,1609.6,5.200,5.290,4.955,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.040,-0.003,-999999,-999999,0.214,-999999,0.7;24.080,23.960,1613.2,5.204,5.294,4.959,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.040,-0.003,-999999,-999999,0.215,-999999,0.7;24.100,23.980,1616.7,5.209,5.299,4.963,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.040,-0.003,-999999,-999999,0.215,-999999,0.7;24.120,24.000,1619.3,5.221,5.311,4.975,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.040,-0.003,-999999,-999999,0.215,-999999,0.7;24.140,24.020,1620.0,5.176,5.267,4.931,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.040,-0.003,-999999,-999999,0.215,-999999,0.7;24.160,24.040,1620.8,5.092,5.182,4.846,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.041,-0.003,-999999,-999999,0.215,-999999,0.7;24.180,24.060,1621.6,5.049,5.139,4.802,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.041,-0.003,-999999,-999999,0.216,-999999,0.7;24.200,24.080,1622.4,5.003,5.093,4.756,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.040,-0.003,-999999,-999999,0.216,-999999,0.7;24.220,24.100,1623.1,4.968,5.059,4.722,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.040,-0.003,-999999,-999999,0.216,-999999,0.7;24.240,24.120,1623.9,4.960,5.051,4.713,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.039,-0.003,-999999,-999999,0.216,-999999,0.7;24.260,24.140,1624.7,4.949,5.040,4.702,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.039,-0.003,-999999,-999999,0.216,-999999,0.7;24.280,24.160,1625.5,4.969,5.060,4.722,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.038,-0.003,-999999,-999999,0.216,-999999,0.7;24.300,24.180,1626.2,4.922,5.012,4.674,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.037,-0.003,-999999,-999999,0.216,-999999,0.7;24.320,24.190,1627.0,4.887,4.978,4.639,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.036,-0.003,-999999,-999999,0.216,-999999,0.7;24.340,24.210,1627.7,4.842,4.933,4.594,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.039,-0.003,-999999,-999999,0.217,-999999,0.8;24.360,24.230,1628.5,4.831,4.922,4.583,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.037,-0.003,-999999,-999999,0.216,-999999,0.7;24.380,24.250,1629.3,4.916,5.007,4.667,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.037,-0.003,-999999,-999999,0.217,-999999,0.7;24.400,24.270,1630.0,4.880,4.972,4.632,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.036,-0.003,-999999,-999999,0.217,-999999,0.7;24.420,24.290,1630.8,4.665,4.757,4.416,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.036,-0.004,-999999,-999999,0.217,-999999,0.7;24.440,24.310,1631.6,4.605,4.696,4.356,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.036,-0.004,-999999,-999999,0.218,-999999,0.7;24.460,24.330,1632.4,4.587,4.679,4.338,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.036,-0.004,-999999,-999999,0.218,-999999,0.7;24.480,24.350,1633.2,4.624,4.716,4.375,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.032,-0.003,-999999,-999999,0.218,-999999,0.6;24.500,24.370,1633.9,4.681,4.773,4.432,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.032,-0.003,-999999,-999999,0.219,-999999,0.6;24.520,24.390,1634.7,4.737,4.829,4.488,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.032,-0.003,-999999,-999999,0.219,-999999,0.6;24.540,24.410,1635.5,4.790,4.882,4.540,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.032,-0.003,-999999,-999999,0.219,-999999,0.6;24.560,24.430,1636.2,4.796,4.888,4.546,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.032,-0.003,-999999,-999999,0.219,-999999,0.6;24.580,24.450,1637.0,4.794,4.887,4.544,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.033,-0.003,-999999,-999999,0.220,-999999,0.6;24.600,24.470,1637.8,4.840,4.933,4.590,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.033,-0.003,-999999,-999999,0.220,-999999,0.6;24.620,24.490,1638.5,4.879,4.971,4.629,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.034,-0.003,-999999,-999999,0.220,-999999,0.7;24.640,24.510,1639.3,4.903,4.995,4.652,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.035,-0.003,-999999,-999999,0.221,-999999,0.7;24.660,24.530,1640.1,4.926,5.019,4.675,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.035,-0.003,-999999,-999999,0.221,-999999,0.7;24.680,24.550,1640.9,4.934,5.027,4.683,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.035,-0.003,-999999,-999999,0.221,-999999,0.7;24.700,24.570,1641.7,4.958,5.051,4.707,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.035,-0.003,-999999,-999999,0.221,-999999,0.7;24.720,24.590,1642.4,4.965,5.058,4.713,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.036,-0.003,-999999,-999999,0.221,-999999,0.7;24.740,24.610,1643.2,4.949,5.042,4.697,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.037,-0.003,-999999,-999999,0.221,-999999,0.7;24.760,24.630,1644.0,4.984,5.077,4.732,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.037,-0.003,-999999,-999999,0.222,-999999,0.7;24.780,24.650,1644.7,5.024,5.117,4.772,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.038,-0.003,-999999,-999999,0.222,-999999,0.7;24.800,24.670,1645.5,5.083,5.176,4.831,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.038,-0.003,-999999,-999999,0.222,-999999,0.7;24.820,24.690,1646.3,5.040,5.133,4.787,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.038,-0.003,-999999,-999999,0.222,-999999,0.7;24.840,24.710,1647.1,5.035,5.129,4.783,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.038,-0.003,-999999,-999999,0.222,-999999,0.7;24.860,24.730,1647.8,5.034,5.127,4.781,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.038,-0.003,-999999,-999999,0.223,-999999,0.7;24.880,24.750,1648.6,4.987,5.080,4.734,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.038,-0.003,-999999,-999999,0.223,-999999,0.7;24.900,24.770,1649.4,4.986,5.080,4.733,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.038,-0.003,-999999,-999999,0.223,-999999,0.7;24.920,24.790,1651.9,4.982,5.076,4.729,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.038,-0.003,-999999,-999999,0.223,-999999,0.7;24.940,24.810,1661.1,4.990,5.084,4.737,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.037,-0.003,-999999,-999999,0.223,-999999,0.7;24.960,24.830,1670.4,4.999,5.092,4.745,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.037,-0.003,-999999,-999999,0.223,-999999,0.7;24.980,24.850,1675.7,5.022,5.116,4.768,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.037,-0.003,-999999,-999999,0.224,-999999,0.7;25.000,24.870,1677.1,5.037,5.131,4.783,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.037,-0.003,-999999,-999999,0.224,-999999,0.7;25.020,24.890,1678.4,5.015,5.109,4.761,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.037,-0.003,-999999,-999999,0.224,-999999,0.7;25.040,24.910,1679.6,4.979,5.073,4.725,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.036,-0.003,-999999,-999999,0.224,-999999,0.7;25.060,24.930,1680.9,4.916,5.010,4.661,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.036,-0.003,-999999,-999999,0.225,-999999,0.7;25.080,24.950,1682.2,4.864,4.958,4.609,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,0.036,-0.003,-999999,-999999,0.225,-999999,0.7;25.100,24.970,1683.4,4.800,4.894,4.545,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,-999999,-0.003,-999999,-999999,0.225,-999999,-999999;25.120,24.990,1684.7,4.747,4.842,4.492,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,-999999,-0.003,-999999,-999999,0.225,-999999,-999999;25.140,25.010,1685.9,4.724,4.819,4.469,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,-999999,-0.003,-999999,-999999,0.225,-999999,-999999;25.160,25.030,1687.6,4.764,4.859,4.508,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,-999999,-0.003,-999999,-999999,0.225,-999999,-999999;25.180,25.050,1689.3,4.823,4.918,4.567,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,-999999,-0.003,-999999,-999999,0.226,-999999,-999999;25.190,25.060,1690.5,4.863,4.958,4.607,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,6,6,-999999,-999999,-999999,-0.003,-999999,-999999,-999999,-999999,-999999;jajaneejajajajajajaneeneeneeneeneeneeneejajajaneeneejajaneeneejaneeja2023-06-01T13:45:22+02:00voltooid2023-06-01T13:45:22+02:00neeneeneenee \ No newline at end of file diff --git a/tests/cpts/xml/CPT000000217402.xml b/tests/cpts/xml/CPT000000217402.xml new file mode 100644 index 0000000..d80759f --- /dev/null +++ b/tests/cpts/xml/CPT000000217402.xml @@ -0,0 +1 @@ +dispatch-2025-01-10T17:08:23+01:00CPT00000021740230124359IMBROpubliekeTaakinfrastructuurLand2023-04-17ISO22476D1nee51.964487240 4.379010368RDNAPTRANS201885712.120 442265.2592022-12-12RTKGPS5tot10cmmaaiveld-0.906NAP2022-12-12RTKGPS4tot10cmnee2022-12-20elektrischContinuklasse2einddiepte0.0025.090Fugro Cone Penetrometer MkIICP15-CF75SN2-P1E1M4-V1-S1/1701-27571510440.5887198951.0-0.041-0.083110.0020.0012022-12-11T08:18:21+01:002022-12-11T08:18:21+01:000.000,0.000,110.5,0.797,0.797,0.797,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.020,0.020,111.8,1.029,1.029,1.029,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.040,0.040,112.9,1.448,1.448,1.447,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.060,0.060,114.1,2.857,2.857,2.856,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,0,2,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.080,0.080,115.2,1.439,1.439,1.437,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.001,0.000,-999999,-999999,-999999,-999999,0.0;0.100,0.100,116.3,1.750,1.750,1.749,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.003,0.000,-999999,-999999,-999999,-999999,0.1;0.120,0.120,117.4,0.938,0.938,0.936,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,0.1;0.140,0.140,118.6,1.411,1.411,1.409,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,0.3;0.160,0.160,119.7,2.741,2.741,2.739,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,1.5;0.180,0.180,120.9,3.117,3.117,3.114,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,1.1;0.200,0.200,122.0,3.891,3.891,3.888,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,0.2;0.220,0.220,123.2,5.320,5.320,5.316,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,2,5,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,0.2;0.240,0.240,124.3,7.841,7.841,7.838,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,2,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,0.1;0.260,0.260,125.4,6.213,6.213,6.209,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,5,-999999,-999999,0.086,0.000,-999999,-999999,-999999,-999999,1.5;0.280,0.280,126.7,9.267,9.267,9.263,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,1,6,-999999,-999999,0.069,0.000,-999999,-999999,-999999,-999999,0.9;0.300,0.300,131.5,10.683,10.683,10.679,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,6,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,0.3;0.320,0.320,136.2,12.099,12.099,12.095,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,6,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,0.2;0.340,0.340,139.9,11.925,11.925,11.920,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,-1,7,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,0.3;0.360,0.360,141.4,11.217,11.217,11.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,0.2;0.380,0.380,142.8,13.986,13.986,13.981,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,0.1;0.400,0.400,144.1,14.484,14.484,14.478,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.104,0.000,-999999,-999999,-999999,-999999,0.8;0.420,0.420,146.9,14.397,14.397,14.392,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,1,2,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,0.3;0.440,0.440,153.2,16.088,16.088,16.082,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,1,2,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,0.2;0.460,0.460,159.6,17.779,17.779,17.773,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,1,2,-999999,-999999,0.092,0.000,-999999,-999999,-999999,-999999,0.5;0.480,0.480,164.3,15.981,15.981,15.974,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,1,2,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,0.5;0.500,0.500,165.5,17.688,17.688,17.681,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.069,0.000,-999999,-999999,-999999,-999999,0.3;0.520,0.520,166.6,23.148,23.148,23.141,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.082,0.000,-999999,-999999,-999999,-999999,0.3;0.540,0.540,167.7,24.673,24.673,24.666,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.103,0.000,-999999,-999999,-999999,-999999,0.4;0.560,0.560,168.9,25.882,25.882,25.874,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,0.4;0.580,0.580,170.0,27.666,27.666,27.657,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.111,0.000,-999999,-999999,-999999,-999999,0.4;0.600,0.600,171.2,27.274,27.274,27.266,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.100,0.000,-999999,-999999,-999999,-999999,0.3;0.620,0.620,172.3,25.742,25.742,25.733,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.106,0.000,-999999,-999999,-999999,-999999,0.3;0.640,0.640,173.4,27.328,27.328,27.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.121,0.000,-999999,-999999,-999999,-999999,0.4;0.660,0.660,174.5,26.747,26.747,26.737,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.130,0.000,-999999,-999999,-999999,-999999,0.4;0.680,0.680,175.7,27.278,27.278,27.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.121,0.000,-999999,-999999,-999999,-999999,0.4;0.700,0.700,176.8,30.000,30.000,29.990,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.113,0.000,-999999,-999999,-999999,-999999,0.3;0.720,0.720,177.9,28.895,28.895,28.885,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.123,0.000,-999999,-999999,-999999,-999999,0.4;0.740,0.740,179.1,29.661,29.661,29.650,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.142,0.000,-999999,-999999,-999999,-999999,0.4;0.760,0.760,180.2,31.231,31.231,31.220,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.148,0.000,-999999,-999999,-999999,-999999,0.4;0.780,0.780,181.3,31.435,31.435,31.424,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.153,0.000,-999999,-999999,-999999,-999999,0.4;0.800,0.800,182.4,31.876,31.876,31.864,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.141,0.000,-999999,-999999,-999999,-999999,0.4;0.820,0.820,183.6,32.337,32.337,32.325,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,0.3;0.840,0.840,184.8,33.445,33.445,33.433,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.075,0.000,-999999,-999999,-999999,-999999,0.2;0.860,0.860,185.9,35.918,35.918,35.906,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.091,0.000,-999999,-999999,-999999,-999999,0.2;0.880,0.880,187.2,38.115,38.115,38.102,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.132,0.000,-999999,-999999,-999999,-999999,0.3;0.900,0.900,191.3,38.665,38.665,38.652,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.147,0.000,-999999,-999999,-999999,-999999,0.3;0.920,0.920,195.4,39.214,39.214,39.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.198,0.000,-999999,-999999,-999999,-999999,0.4;0.940,0.940,198.1,41.369,41.369,41.356,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.216,0.000,-999999,-999999,-999999,-999999,0.5;0.960,0.960,199.4,42.826,42.826,42.812,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.234,0.000,-999999,-999999,-999999,-999999,0.5;0.980,0.980,200.7,43.332,43.332,43.318,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.227,0.000,-999999,-999999,-999999,-999999,0.5;1.000,1.000,201.9,42.498,42.498,42.484,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.258,0.000,-999999,-999999,-999999,-999999,0.6;1.020,1.020,203.3,42.555,42.555,42.540,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.272,0.000,-999999,-999999,-999999,-999999,0.6;1.040,1.040,204.6,42.411,42.411,42.397,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.294,0.000,-999999,-999999,-999999,-999999,0.7;1.060,1.060,205.8,41.060,41.060,41.045,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.315,0.000,-999999,-999999,-999999,-999999,0.7;1.080,1.080,207.1,39.330,39.330,39.315,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.329,0.000,-999999,-999999,-999999,-999999,0.8;1.100,1.100,208.2,38.287,38.287,38.271,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.350,0.000,-999999,-999999,-999999,-999999,0.9;1.120,1.120,209.4,37.182,37.182,37.166,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.363,0.000,-999999,-999999,-999999,-999999,0.9;1.140,1.140,210.6,35.957,35.957,35.941,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.361,0.000,-999999,-999999,-999999,-999999,0.9;1.160,1.160,211.8,35.267,35.267,35.251,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.388,0.000,-999999,-999999,-999999,-999999,1.0;1.180,1.180,212.9,34.829,34.829,34.813,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.397,0.000,-999999,-999999,-999999,-999999,1.1;1.200,1.200,214.1,34.136,34.136,34.119,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.388,0.000,-999999,-999999,-999999,-999999,1.1;1.220,1.220,215.3,33.602,33.602,33.585,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.385,0.000,-999999,-999999,-999999,-999999,1.1;1.240,1.240,216.4,32.904,32.904,32.887,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.393,0.000,-999999,-999999,-999999,-999999,1.1;1.260,1.260,217.6,32.411,32.411,32.394,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.395,0.000,-999999,-999999,-999999,-999999,1.2;1.280,1.280,218.8,32.107,32.107,32.089,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.373,0.000,-999999,-999999,-999999,-999999,1.1;1.300,1.300,219.9,31.293,31.293,31.274,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.353,0.000,-999999,-999999,-999999,-999999,1.1;1.320,1.320,221.1,30.856,30.856,30.838,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.334,0.000,-999999,-999999,-999999,-999999,1.0;1.340,1.340,222.3,30.348,30.348,30.330,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.318,0.000,-999999,-999999,-999999,-999999,1.0;1.360,1.360,223.4,30.641,30.641,30.622,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.269,0.000,-999999,-999999,-999999,-999999,0.8;1.380,1.380,224.5,29.780,29.780,29.760,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.221,0.000,-999999,-999999,-999999,-999999,0.7;1.400,1.400,225.7,28.755,28.755,28.735,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.209,0.000,-999999,-999999,-999999,-999999,0.7;1.420,1.420,226.8,28.303,28.303,28.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.235,0.000,-999999,-999999,-999999,-999999,0.8;1.440,1.440,232.9,27.294,27.294,27.274,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.266,0.000,-999999,-999999,-999999,-999999,0.9;1.460,1.460,240.3,26.007,26.007,25.986,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.263,0.000,-999999,-999999,-999999,-999999,0.9;1.480,1.480,244.6,25.914,25.914,25.893,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.279,0.000,-999999,-999999,-999999,-999999,1.0;1.500,1.500,245.7,25.524,25.524,25.503,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.288,0.000,-999999,-999999,-999999,-999999,1.1;1.520,1.520,246.8,25.257,25.257,25.236,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.286,0.000,-999999,-999999,-999999,-999999,1.1;1.540,1.540,247.9,24.909,24.909,24.888,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.294,0.000,-999999,-999999,-999999,-999999,1.1;1.560,1.560,249.0,24.694,24.694,24.672,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.306,0.000,-999999,-999999,-999999,-999999,1.2;1.580,1.580,250.1,24.384,24.384,24.362,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.309,0.000,-999999,-999999,-999999,-999999,1.2;1.600,1.600,251.2,23.821,23.821,23.799,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.299,0.000,-999999,-999999,-999999,-999999,1.2;1.620,1.620,252.4,23.261,23.261,23.238,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.294,0.000,-999999,-999999,-999999,-999999,1.2;1.640,1.640,253.5,22.759,22.759,22.736,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.286,0.000,-999999,-999999,-999999,-999999,1.2;1.660,1.660,254.6,22.250,22.250,22.226,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.283,0.000,-999999,-999999,-999999,-999999,1.2;1.680,1.680,255.7,21.833,21.833,21.809,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.278,0.000,-999999,-999999,-999999,-999999,1.2;1.700,1.700,256.8,21.102,21.102,21.078,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.269,0.000,-999999,-999999,-999999,-999999,1.2;1.720,1.720,257.9,19.935,19.935,19.911,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.263,0.000,-999999,-999999,-999999,-999999,1.3;1.740,1.740,259.0,18.808,18.808,18.783,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.262,0.000,-999999,-999999,-999999,-999999,1.3;1.760,1.760,260.1,18.137,18.137,18.113,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.259,0.000,-999999,-999999,-999999,-999999,1.3;1.780,1.780,261.2,17.835,17.835,17.810,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.253,0.000,-999999,-999999,-999999,-999999,1.4;1.800,1.800,262.3,17.252,17.252,17.227,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.244,0.000,-999999,-999999,-999999,-999999,1.4;1.820,1.820,263.4,16.423,16.423,16.398,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.236,0.000,-999999,-999999,-999999,-999999,1.4;1.840,1.840,264.6,16.351,16.351,16.325,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.228,0.000,-999999,-999999,-999999,-999999,1.3;1.860,1.860,265.7,15.890,15.890,15.864,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.221,0.000,-999999,-999999,-999999,-999999,1.3;1.880,1.880,266.8,15.311,15.311,15.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.217,0.000,-999999,-999999,-999999,-999999,1.4;1.900,1.900,267.9,14.793,14.793,14.766,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.213,0.000,-999999,-999999,-999999,-999999,1.4;1.920,1.920,269.0,14.237,14.237,14.210,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.205,0.000,-999999,-999999,-999999,-999999,1.4;1.940,1.940,270.1,13.405,13.405,13.378,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.193,0.000,-999999,-999999,-999999,-999999,1.4;1.960,1.960,271.2,12.471,12.471,12.444,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.186,0.000,-999999,-999999,-999999,-999999,1.4;1.980,1.980,272.3,11.869,11.869,11.841,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.171,0.000,-999999,-999999,-999999,-999999,1.3;2.000,2.000,273.4,11.248,11.248,11.220,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.154,0.000,-999999,-999999,-999999,-999999,1.3;2.020,2.020,274.5,10.698,10.698,10.670,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.138,0.000,-999999,-999999,-999999,-999999,1.2;2.040,2.040,275.6,10.098,10.098,10.070,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,1.2;2.060,2.060,277.2,9.386,9.386,9.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.133,0.000,-999999,-999999,-999999,-999999,1.3;2.080,2.080,280.7,8.423,8.423,8.394,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.130,0.000,-999999,-999999,-999999,-999999,1.5;2.100,2.100,284.1,7.461,7.461,7.432,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.126,0.000,-999999,-999999,-999999,-999999,1.6;2.120,2.120,286.2,6.797,6.797,6.768,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.120,0.000,-999999,-999999,-999999,-999999,1.8;2.140,2.140,287.3,6.241,6.241,6.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,1.8;2.160,2.160,288.4,5.607,5.607,5.577,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.104,0.000,-999999,-999999,-999999,-999999,1.8;2.180,2.180,289.5,4.849,4.849,4.819,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.096,0.000,-999999,-999999,-999999,-999999,1.9;2.200,2.200,290.6,4.150,4.150,4.119,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.087,0.000,-999999,-999999,-999999,-999999,2.0;2.220,2.220,291.7,3.425,3.425,3.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.082,0.000,-999999,-999999,-999999,-999999,2.2;2.240,2.240,292.8,2.825,2.825,2.794,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.079,0.000,-999999,-999999,-999999,-999999,2.5;2.260,2.260,293.9,2.225,2.225,2.193,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.079,0.000,-999999,-999999,-999999,-999999,3.0;2.280,2.280,295.1,1.750,1.750,1.718,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.079,0.000,-999999,-999999,-999999,-999999,3.7;2.300,2.300,296.1,1.447,1.447,1.415,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.079,0.000,-999999,-999999,-999999,-999999,4.5;2.320,2.320,297.3,1.213,1.213,1.181,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.073,0.000,-999999,-999999,-999999,-999999,5.0;2.340,2.340,298.4,1.045,1.045,1.012,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,5.2;2.360,2.360,299.4,0.930,0.930,0.897,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,4.9;2.380,2.380,300.6,0.838,0.838,0.804,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,4.8;2.400,2.400,301.7,0.760,0.760,0.726,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,4.8;2.420,2.420,302.8,0.734,0.734,0.700,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,4.8;2.440,2.440,303.9,0.729,0.729,0.695,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,4.8;2.460,2.460,305.6,0.728,0.728,0.693,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,3.5;2.480,2.480,307.9,0.723,0.723,0.688,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,4.8;2.500,2.500,310.2,0.718,0.718,0.683,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,5.5;2.520,2.520,312.5,0.713,0.713,0.677,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,6.1;2.540,2.540,314.7,0.634,0.634,0.598,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,6.6;2.560,2.560,315.8,0.624,0.624,0.588,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,6.8;2.580,2.580,316.9,0.620,0.620,0.584,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,6.7;2.600,2.600,318.1,0.620,0.620,0.583,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,6.4;2.620,2.620,319.2,0.633,0.633,0.596,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,6.4;2.640,2.640,320.2,0.648,0.648,0.611,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,6.3;2.660,2.660,321.4,0.673,0.673,0.636,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,6.6;2.680,2.680,322.4,0.704,0.704,0.667,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,6.9;2.700,2.700,323.6,0.729,0.729,0.691,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,7.4;2.720,2.720,324.7,0.752,0.752,0.714,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,7.8;2.740,2.740,325.8,0.768,0.768,0.730,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.061,0.000,-999999,-999999,-999999,-999999,8.2;2.760,2.760,326.9,0.763,0.763,0.725,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.066,0.000,-999999,-999999,-999999,-999999,8.9;2.780,2.780,328.0,0.739,0.739,0.700,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.069,0.000,-999999,-999999,-999999,-999999,9.5;2.800,2.800,329.1,0.707,0.707,0.668,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.070,0.000,-999999,-999999,-999999,-999999,9.9;2.820,2.820,330.2,0.694,0.694,0.654,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.070,0.000,-999999,-999999,-999999,-999999,10.0;2.840,2.840,331.3,0.664,0.664,0.625,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.068,0.000,-999999,-999999,-999999,-999999,10.1;2.860,2.860,332.4,0.636,0.636,0.596,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.066,0.000,-999999,-999999,-999999,-999999,10.2;2.880,2.880,333.6,0.615,0.615,0.575,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.065,0.000,-999999,-999999,-999999,-999999,10.6;2.900,2.900,334.7,0.582,0.582,0.542,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,10.7;2.920,2.920,335.8,0.555,0.555,0.514,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,10.8;2.940,2.940,336.9,0.534,0.534,0.493,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.061,0.000,-999999,-999999,-999999,-999999,11.0;2.960,2.960,338.0,0.513,0.513,0.471,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.060,0.000,-999999,-999999,-999999,-999999,11.1;2.980,2.980,339.1,0.504,0.504,0.462,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,10.9;3.000,3.000,340.2,0.493,0.493,0.451,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,10.5;3.020,3.020,342.0,0.471,0.471,0.429,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,10.6;3.040,3.040,345.1,0.449,0.449,0.406,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,10.7;3.060,3.060,348.3,0.427,0.427,0.384,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,10.6;3.080,3.080,349.6,0.433,0.433,0.390,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,10.4;3.100,3.100,350.7,0.425,0.425,0.382,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,10.3;3.120,3.120,351.8,0.431,0.431,0.387,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,10.6;3.140,3.140,352.9,0.459,0.459,0.415,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,10.9;3.160,3.160,354.0,0.483,0.483,0.439,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.054,0.000,-999999,-999999,-999999,-999999,11.2;3.180,3.180,355.1,0.505,0.505,0.461,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,11.4;3.200,3.200,356.2,0.544,0.544,0.499,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.058,0.000,-999999,-999999,-999999,-999999,11.7;3.220,3.220,357.3,0.547,0.547,0.502,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.059,0.000,-999999,-999999,-999999,-999999,11.8;3.240,3.240,358.4,0.503,0.503,0.458,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.059,0.000,-999999,-999999,-999999,-999999,12.2;3.260,3.260,359.6,0.468,0.468,0.422,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.058,0.000,-999999,-999999,-999999,-999999,12.1;3.280,3.280,360.7,0.437,0.437,0.391,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,11.9;3.300,3.300,361.9,0.411,0.411,0.365,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,11.3;3.320,3.320,363.0,0.410,0.410,0.364,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,10.7;3.340,3.340,364.2,0.402,0.402,0.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,10.4;3.360,3.360,365.3,0.388,0.388,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,10.0;3.380,3.380,366.4,0.375,0.375,0.328,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,9.8;3.400,3.400,367.6,0.359,0.359,0.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,9.7;3.420,3.420,368.8,0.351,0.351,0.303,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,9.6;3.440,3.440,369.9,0.377,0.377,0.328,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,9.7;3.460,3.460,372.4,0.392,0.392,0.344,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,10.0;3.480,3.480,376.2,0.383,0.383,0.335,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,9.2;3.500,3.500,379.9,0.375,0.375,0.326,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,7.2;3.520,3.520,381.4,0.365,0.365,0.316,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,5.5;3.540,3.540,382.6,0.448,0.448,0.398,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,5.4;3.560,3.560,383.7,0.827,0.827,0.777,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,6.1;3.580,3.580,384.8,1.120,1.120,1.070,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.054,0.000,-999999,-999999,-999999,-999999,6.8;3.600,3.600,385.9,1.153,1.153,1.102,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,7.0;3.620,3.620,387.0,1.040,1.040,0.989,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.059,0.000,-999999,-999999,-999999,-999999,7.3;3.640,3.640,388.1,0.712,0.712,0.661,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.061,0.000,-999999,-999999,-999999,-999999,7.9;3.660,3.660,389.2,0.503,0.503,0.452,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,9.0;3.680,3.680,390.3,0.445,0.445,0.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.059,0.000,-999999,-999999,-999999,-999999,9.7;3.700,3.700,391.4,0.433,0.433,0.381,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,10.7;3.720,3.720,392.7,0.416,0.416,0.364,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,11.1;3.740,3.740,393.8,0.420,0.420,0.368,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,11.3;3.760,3.760,395.0,0.413,0.413,0.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,11.7;3.780,3.780,396.1,0.410,0.410,0.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,12.2;3.800,3.800,397.3,0.404,0.404,0.350,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,12.5;3.820,3.820,398.5,0.403,0.403,0.350,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,13.3;3.840,3.840,399.7,0.405,0.405,0.351,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.054,0.000,-999999,-999999,-999999,-999999,13.6;3.860,3.860,400.9,0.392,0.392,0.338,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,13.8;3.880,3.880,402.3,0.374,0.374,0.320,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,14.0;3.900,3.900,403.6,0.376,0.376,0.321,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,13.5;3.920,3.920,405.0,0.403,0.403,0.348,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,13.0;3.940,3.940,406.4,0.466,0.466,0.411,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,12.4;3.960,3.960,407.8,0.487,0.487,0.432,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,11.8;3.980,3.980,409.2,0.457,0.457,0.402,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,11.3;4.000,4.000,410.6,0.405,0.405,0.349,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,10.8;4.020,4.020,411.8,0.382,0.382,0.326,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,10.7;4.040,4.040,412.9,0.351,0.351,0.295,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,10.6;4.060,4.060,414.1,0.325,0.325,0.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,10.9;4.080,4.080,415.4,0.335,0.335,0.278,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,11.3;4.100,4.100,418.2,0.335,0.335,0.277,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,12.0;4.120,4.120,421.2,0.332,0.332,0.274,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,12.5;4.140,4.140,423.8,0.327,0.327,0.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,12.6;4.160,4.160,425.3,0.311,0.311,0.252,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,12.9;4.180,4.180,426.8,0.296,0.296,0.238,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,12.9;4.200,4.200,427.9,0.298,0.298,0.239,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,12.6;4.220,4.220,429.1,0.270,0.270,0.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,12.3;4.240,4.240,430.2,0.249,0.249,0.190,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,11.9;4.260,4.260,431.3,0.231,0.231,0.171,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,11.7;4.280,4.280,432.4,0.218,0.218,0.158,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,11.8;4.300,4.300,433.5,0.212,0.212,0.152,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,12.0;4.320,4.320,434.9,0.216,0.216,0.155,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,12.4;4.340,4.340,436.1,0.227,0.227,0.167,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,12.7;4.360,4.360,437.4,0.239,0.239,0.178,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,13.2;4.380,4.380,438.7,0.256,0.256,0.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,13.7;4.400,4.400,440.0,0.260,0.260,0.198,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,14.3;4.420,4.420,441.3,0.264,0.264,0.202,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,14.9;4.440,4.440,442.5,0.267,0.267,0.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,14.9;4.460,4.460,444.5,0.269,0.269,0.206,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,14.8;4.480,4.480,448.5,0.282,0.282,0.220,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,14.6;4.500,4.500,452.6,0.296,0.296,0.233,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,14.5;4.520,4.520,455.5,0.303,0.303,0.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,14.3;4.540,4.540,456.6,0.295,0.295,0.232,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,14.0;4.560,4.560,457.7,0.291,0.291,0.227,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,13.9;4.580,4.580,458.9,0.292,0.292,0.228,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,13.7;4.600,4.600,460.0,0.288,0.288,0.223,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,13.5;4.620,4.620,461.1,0.286,0.286,0.221,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,13.1;4.640,4.640,462.2,0.288,0.288,0.223,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,12.9;4.660,4.660,463.3,0.292,0.292,0.227,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,12.9;4.680,4.680,464.5,0.311,0.311,0.246,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,12.9;4.700,4.700,465.6,0.323,0.323,0.257,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,12.7;4.720,4.720,466.7,0.306,0.306,0.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,12.3;4.740,4.740,467.8,0.286,0.286,0.220,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,11.9;4.760,4.760,468.9,0.271,0.271,0.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,11.2;4.780,4.780,470.1,0.253,0.253,0.186,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,10.3;4.800,4.800,471.7,0.233,0.233,0.166,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,9.3;4.820,4.820,473.2,0.230,0.230,0.162,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,8.5;4.840,4.840,474.7,0.237,0.237,0.170,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,8.4;4.860,4.860,476.5,0.253,0.253,0.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,8.7;4.880,4.880,478.3,0.284,0.284,0.215,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,9.0;4.900,4.900,480.1,0.326,0.326,0.257,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,9.8;4.920,4.920,481.8,0.352,0.352,0.284,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,10.2;4.940,4.940,483.7,0.357,0.357,0.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,10.0;4.960,4.960,485.5,0.350,0.350,0.280,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,9.7;4.980,4.980,486.6,0.344,0.344,0.274,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,9.4;5.000,5.000,487.7,0.320,0.320,0.250,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,8.9;5.020,5.020,489.2,0.306,0.306,0.236,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,8.2;5.040,5.040,491.9,0.298,0.298,0.227,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,7.5;5.060,5.060,494.6,0.290,0.290,0.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,6.7;5.080,5.080,496.8,0.280,0.280,0.209,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,6.3;5.100,5.100,497.9,0.277,0.277,0.206,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,5.7;5.120,5.120,499.1,0.282,0.282,0.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,5.2;5.140,5.140,500.2,0.273,0.273,0.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,4.8;5.160,5.160,501.4,0.260,0.260,0.187,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,4.5;5.180,5.180,502.6,0.257,0.257,0.184,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,4.4;5.200,5.200,503.8,0.256,0.256,0.184,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,4.3;5.220,5.220,505.1,0.268,0.268,0.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,4.4;5.240,5.240,506.3,0.283,0.283,0.210,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,4.6;5.260,5.260,507.5,0.299,0.299,0.226,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,4.7;5.280,5.280,508.6,0.324,0.324,0.250,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,4.7;5.300,5.300,509.7,0.336,0.336,0.261,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,4.7;5.320,5.320,510.9,0.346,0.346,0.271,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,5.1;5.340,5.340,512.0,0.358,0.358,0.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,5.7;5.360,5.360,513.1,0.367,0.367,0.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,5.8;5.380,5.380,514.3,0.388,0.388,0.313,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,5.9;5.400,5.400,515.3,0.401,0.401,0.325,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,6.2;5.420,5.420,516.4,0.399,0.399,0.323,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,6.5;5.440,5.440,517.6,0.394,0.394,0.318,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,6.8;5.460,5.460,519.0,0.385,0.385,0.309,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,7.0;5.480,5.480,522.2,0.363,0.363,0.286,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,7.0;5.500,5.500,525.3,0.340,0.340,0.263,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,7.0;5.520,5.520,528.5,0.317,0.317,0.239,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,7.1;5.540,5.540,529.6,0.286,0.286,0.208,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,6.7;5.560,5.560,530.8,0.261,0.261,0.184,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,5.9;5.580,5.580,531.9,0.252,0.252,0.174,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,5.1;5.600,5.600,533.0,0.257,0.257,0.178,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,4.7;5.620,5.620,534.1,0.268,0.268,0.189,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,4.1;5.640,5.640,535.2,0.280,0.280,0.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,3.8;5.660,5.660,536.3,0.299,0.299,0.220,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,3.6;5.680,5.680,537.4,0.314,0.314,0.235,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,3.4;5.700,5.700,538.6,0.348,0.348,0.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,3.2;5.720,5.720,539.7,0.389,0.389,0.309,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.9;5.740,5.740,540.8,0.399,0.399,0.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.7;5.760,5.760,541.8,0.390,0.390,0.309,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.0;5.780,5.780,542.9,0.376,0.376,0.295,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,3.0;5.800,5.800,544.1,0.388,0.388,0.307,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,2.6;5.820,5.820,545.2,0.475,0.475,0.394,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.1;5.840,5.840,546.7,0.600,0.600,0.518,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.7;5.860,5.860,547.8,0.622,0.622,0.540,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.5;5.880,5.880,548.9,0.552,0.552,0.469,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.5;5.900,5.900,550.0,0.434,0.434,0.351,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.6;5.920,5.920,551.1,0.330,0.330,0.248,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.9;5.940,5.940,552.4,0.267,0.267,0.183,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,2.0;5.960,5.960,553.6,0.258,0.258,0.175,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,2.4;5.980,5.980,554.8,0.263,0.263,0.179,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,2.5;6.000,6.000,556.1,0.251,0.251,0.167,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.7;6.020,6.020,557.3,0.257,0.257,0.173,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.0;6.040,6.040,558.6,0.255,0.255,0.171,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.5;6.060,6.060,559.8,0.287,0.287,0.202,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.3;6.080,6.080,562.2,0.404,0.404,0.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,2.7;6.100,6.100,565.1,0.541,0.541,0.455,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.7;6.120,6.120,567.7,0.695,0.695,0.610,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.1;6.140,6.140,568.8,0.904,0.904,0.818,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.0;6.160,6.160,569.9,1.025,1.025,0.939,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.1;6.180,6.180,571.1,0.996,0.996,0.909,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,1.4;6.200,6.200,572.1,0.880,0.880,0.793,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,1.7;6.220,6.220,573.2,0.728,0.728,0.641,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,1.6;6.240,6.240,574.3,0.593,0.593,0.506,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,1.8;6.260,6.260,575.4,0.526,0.526,0.438,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.2;6.280,6.280,576.6,0.480,0.480,0.392,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.3;6.300,6.300,577.7,0.470,0.470,0.382,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,1.9;6.320,6.320,578.8,0.591,0.591,0.502,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.6;6.340,6.340,579.9,0.780,0.780,0.691,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,1.7;6.360,6.360,581.0,0.773,0.773,0.684,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,2.2;6.380,6.380,582.1,0.649,0.649,0.560,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.6;6.400,6.400,583.2,0.515,0.515,0.426,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.7;6.420,6.420,584.3,0.401,0.401,0.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.8;6.440,6.440,585.4,0.302,0.302,0.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.9;6.460,6.460,586.8,0.264,0.264,0.173,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.1;6.480,6.480,590.0,0.254,0.254,0.163,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,2.9;6.500,6.500,593.1,0.244,0.244,0.153,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,2.3;6.520,6.520,595.8,0.239,0.239,0.148,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,2.0;6.540,6.540,596.9,0.255,0.255,0.164,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.8;6.560,6.560,598.0,0.283,0.283,0.191,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.7;6.580,6.580,599.1,0.328,0.328,0.235,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.6;6.600,6.600,600.2,0.311,0.311,0.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.6;6.620,6.620,601.3,0.272,0.272,0.180,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.5;6.640,6.640,602.4,0.260,0.260,0.167,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.6;6.660,6.660,603.6,0.254,0.254,0.161,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.6;6.680,6.680,604.6,0.246,0.246,0.152,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.7;6.700,6.700,605.7,0.250,0.250,0.156,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.7;6.720,6.720,606.8,0.242,0.242,0.148,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.6;6.740,6.740,607.9,0.245,0.245,0.150,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.7;6.760,6.760,609.1,0.242,0.242,0.147,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.7;6.780,6.780,610.2,0.239,0.239,0.144,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.8;6.800,6.800,611.3,0.253,0.253,0.158,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,2.0;6.820,6.820,612.4,0.267,0.267,0.172,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.9;6.840,6.840,613.5,0.283,0.283,0.187,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.6;6.860,6.860,614.6,0.288,0.288,0.192,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.6;6.880,6.880,615.7,0.273,0.273,0.177,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.7;6.900,6.900,616.9,0.257,0.257,0.160,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.7;6.920,6.920,618.0,0.256,0.256,0.159,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.8;6.940,6.940,619.2,0.256,0.256,0.158,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.8;6.960,6.960,620.4,0.256,0.256,0.158,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.8;6.980,6.980,621.8,0.260,0.260,0.163,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.8;7.000,7.000,626.8,0.262,0.262,0.164,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.9;7.020,7.020,631.8,0.264,0.264,0.166,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,2.0;7.040,7.040,635.4,0.266,0.266,0.168,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,2.0;7.060,7.060,636.5,0.265,0.265,0.167,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,2.0;7.080,7.080,637.6,0.262,0.262,0.163,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.9;7.100,7.100,638.7,0.265,0.265,0.165,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.9;7.120,7.120,639.8,0.265,0.265,0.165,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.9;7.140,7.140,640.9,0.263,0.263,0.163,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.8;7.160,7.160,642.0,0.264,0.264,0.163,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.8;7.180,7.180,643.1,0.264,0.264,0.163,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.8;7.200,7.200,644.2,0.268,0.268,0.167,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.9;7.220,7.220,645.3,0.277,0.277,0.176,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.9;7.240,7.240,646.4,0.283,0.283,0.182,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.9;7.260,7.260,647.5,0.282,0.282,0.180,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.9;7.280,7.280,648.7,0.281,0.281,0.179,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,2.0;7.300,7.300,649.8,0.284,0.284,0.182,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,2.0;7.320,7.320,650.9,0.290,0.290,0.188,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,2.1;7.340,7.340,652.0,0.295,0.295,0.192,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,2.1;7.360,7.360,653.1,0.299,0.299,0.196,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,2.1;7.380,7.380,654.2,0.299,0.299,0.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,2.2;7.400,7.400,655.3,0.291,0.291,0.188,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,2.2;7.420,7.420,656.4,0.287,0.287,0.183,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,2.2;7.440,7.440,657.5,0.280,0.280,0.176,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,2.1;7.460,7.460,660.9,0.286,0.286,0.182,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,2.1;7.480,7.480,664.3,0.293,0.293,0.188,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,2.1;7.500,7.500,667.7,0.299,0.299,0.194,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,2.2;7.520,7.520,668.9,0.303,0.303,0.198,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,2.2;7.540,7.540,670.1,0.307,0.307,0.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,2.3;7.560,7.560,671.2,0.301,0.301,0.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,2.3;7.580,7.580,672.3,0.289,0.289,0.183,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.4;7.600,7.600,673.4,0.293,0.293,0.187,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,2.4;7.620,7.620,674.5,0.305,0.305,0.198,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,2.3;7.640,7.640,675.6,0.331,0.331,0.224,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.4;7.660,7.660,676.8,0.326,0.326,0.218,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.4;7.680,7.680,677.8,0.336,0.336,0.228,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,2.6;7.700,7.700,678.9,0.343,0.343,0.235,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,2.6;7.720,7.720,680.1,0.348,0.348,0.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,2.5;7.740,7.740,681.2,0.350,0.350,0.242,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,2.6;7.760,7.760,682.3,0.348,0.348,0.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.7;7.780,7.780,683.4,0.357,0.357,0.248,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.7;7.800,7.800,684.5,0.375,0.375,0.266,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.8;7.820,7.820,685.6,0.394,0.394,0.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.0;7.840,7.840,686.8,0.416,0.416,0.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,3.2;7.860,7.860,688.0,0.437,0.437,0.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.4;7.880,7.880,689.1,0.454,0.454,0.344,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.6;7.900,7.900,690.2,0.471,0.471,0.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.7;7.920,7.920,691.3,0.479,0.479,0.369,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.8;7.940,7.940,692.4,0.498,0.498,0.387,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.9;7.960,7.960,693.6,0.510,0.510,0.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,4.0;7.980,7.980,694.6,0.514,0.514,0.403,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.0;8.000,8.000,695.8,0.523,0.523,0.411,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,4.0;8.020,8.020,696.8,0.568,0.568,0.456,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,4.3;8.040,8.040,697.9,0.589,0.589,0.477,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,4.5;8.060,8.060,699.1,0.569,0.569,0.456,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,4.7;8.080,8.080,700.2,0.564,0.564,0.451,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,5.0;8.100,8.100,702.4,0.549,0.549,0.435,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,5.5;8.120,8.120,705.4,0.533,0.533,0.419,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,6.2;8.140,8.140,708.4,0.516,0.516,0.403,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,6.7;8.160,8.160,709.5,0.488,0.488,0.374,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,6.8;8.180,8.180,710.6,0.459,0.459,0.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,6.7;8.200,8.200,711.7,0.430,0.430,0.316,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,6.2;8.220,8.220,712.8,0.407,0.407,0.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,5.6;8.240,8.240,714.0,0.392,0.392,0.276,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,4.9;8.260,8.260,715.1,0.381,0.381,0.266,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,4.1;8.280,8.280,716.2,0.369,0.369,0.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.8;8.300,8.300,717.3,0.364,0.364,0.248,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.6;8.320,8.320,718.4,0.365,0.365,0.248,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,3.5;8.340,8.340,719.8,0.362,0.362,0.245,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.4;8.360,8.360,721.2,0.357,0.357,0.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.3;8.380,8.380,722.5,0.354,0.354,0.237,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.3;8.400,8.400,723.6,0.353,0.353,0.235,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.3;8.420,8.420,724.7,0.353,0.353,0.235,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.3;8.440,8.440,725.8,0.355,0.355,0.237,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,3.2;8.460,8.460,727.8,0.360,0.360,0.241,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.2;8.480,8.480,731.0,0.372,0.372,0.253,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.2;8.500,8.500,734.2,0.383,0.383,0.264,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,3.0;8.520,8.520,736.5,0.379,0.379,0.260,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.9;8.540,8.540,737.6,0.365,0.365,0.246,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,2.9;8.560,8.560,738.7,0.370,0.370,0.250,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,3.3;8.580,8.580,739.8,0.401,0.401,0.281,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.0;8.600,8.600,740.9,0.417,0.417,0.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.7;8.620,8.620,742.1,0.411,0.411,0.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.6;8.640,8.640,743.2,0.382,0.382,0.261,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.0;8.660,8.660,744.3,0.403,0.403,0.282,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.7;8.680,8.680,745.4,0.425,0.425,0.304,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,2.7;8.700,8.700,746.6,0.442,0.442,0.320,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.2;8.720,8.720,747.7,0.417,0.417,0.295,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.0;8.740,8.740,748.8,0.445,0.445,0.322,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.2;8.760,8.760,749.9,0.506,0.506,0.383,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.1;8.780,8.780,751.0,0.799,0.799,0.676,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,1.2;8.800,8.800,752.1,1.404,1.404,1.280,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,1.2;8.820,8.820,753.3,1.641,1.641,1.518,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,1.4;8.840,8.840,754.4,1.476,1.476,1.352,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.3;8.860,8.860,755.5,1.215,1.215,1.090,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,1.4;8.880,8.880,756.6,1.064,1.064,0.939,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,1.3;8.900,8.900,757.8,1.096,1.096,0.972,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,1.6;8.920,8.920,758.9,1.218,1.218,1.093,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,1.6;8.940,8.940,760.0,1.345,1.345,1.220,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,1.5;8.960,8.960,761.2,1.612,1.612,1.486,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,1.6;8.980,8.980,762.3,1.753,1.753,1.627,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,1.7;9.000,9.000,763.4,1.584,1.584,1.458,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,1.7;9.020,9.020,764.7,1.395,1.395,1.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,1.7;9.040,9.040,765.8,1.526,1.526,1.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,1.6;9.060,9.060,768.4,1.825,1.825,1.699,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,1.6;9.080,9.080,771.3,2.155,2.155,2.028,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,1.6;9.100,9.100,773.8,2.407,2.407,2.280,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.6;9.120,9.120,774.8,2.382,2.382,2.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.5;9.140,9.140,775.9,2.378,2.378,2.250,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.6;9.160,9.160,777.1,2.389,2.389,2.261,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,1.7;9.180,9.180,778.2,2.379,2.379,2.251,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,1.7;9.200,9.200,779.3,2.316,2.316,2.187,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,1.6;9.220,9.220,780.5,2.306,2.306,2.177,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,1.5;9.240,9.240,781.7,2.508,2.508,2.379,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,1.5;9.260,9.260,782.8,2.773,2.773,2.643,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,1.5;9.280,9.280,784.1,2.929,2.929,2.799,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,1.5;9.300,9.300,785.3,2.910,2.910,2.780,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,1.5;9.320,9.320,786.4,2.835,2.835,2.705,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,1.5;9.340,9.340,787.6,2.670,2.670,2.539,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,1.6;9.360,9.360,789.1,2.354,2.354,2.223,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,1.7;9.380,9.380,790.2,2.293,2.293,2.162,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,1.7;9.400,9.400,791.3,2.122,2.122,1.990,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,1.7;9.420,9.420,792.4,1.995,1.995,1.863,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.7;9.440,9.440,793.5,1.893,1.893,1.761,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.8;9.460,9.460,796.5,1.912,1.912,1.779,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.9;9.480,9.480,801.0,1.896,1.896,1.764,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,2.0;9.500,9.500,805.6,1.881,1.881,1.748,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,2.3;9.520,9.520,807.4,1.641,1.641,1.508,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,2.5;9.540,9.540,808.4,1.372,1.372,1.239,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,2.4;9.560,9.560,809.6,1.234,1.234,1.100,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,2.1;9.580,9.580,810.6,1.161,1.161,1.027,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,2.0;9.600,9.600,811.8,1.321,1.321,1.187,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,1.7;9.620,9.620,812.8,1.581,1.581,1.446,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,1.6;9.640,9.640,813.9,2.103,2.103,1.968,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,1.7;9.660,9.660,815.1,2.358,2.358,2.223,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,1.7;9.680,9.680,816.2,2.151,2.151,2.015,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,1.6;9.700,9.700,817.4,1.904,1.904,1.768,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,1.6;9.720,9.720,818.7,1.789,1.789,1.653,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,1.8;9.740,9.740,819.7,1.672,1.672,1.535,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,2.1;9.760,9.760,820.9,1.327,1.327,1.191,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,2.4;9.780,9.780,822.0,0.990,0.990,0.853,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,2.6;9.800,9.800,823.1,0.735,0.735,0.598,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,2.7;9.820,9.820,824.2,0.626,0.626,0.488,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.9;9.840,9.840,825.3,0.536,0.536,0.398,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,3.2;9.860,9.860,826.4,0.474,0.474,0.336,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.1;9.880,9.880,827.5,0.424,0.424,0.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.7;9.900,9.900,828.6,0.446,0.446,0.307,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,2.4;9.920,9.920,829.7,0.465,0.465,0.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.8;9.940,9.940,830.8,0.479,0.479,0.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.3;9.960,9.960,831.9,0.528,0.528,0.389,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.4;9.980,9.980,833.0,0.708,0.708,0.568,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,1.6;10.000,10.000,834.1,1.010,1.010,0.870,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,1.7;10.020,10.020,835.3,1.210,1.210,1.070,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.9;10.040,10.040,837.4,1.173,1.173,1.032,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,2.1;10.060,10.060,839.7,1.113,1.113,0.972,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,2.0;10.080,10.080,841.9,1.053,1.053,0.912,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,1.5;10.100,10.100,844.2,0.993,0.993,0.852,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,1.1;10.120,10.120,846.4,0.933,0.933,0.792,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,1.0;10.140,10.140,848.4,1.202,1.202,1.061,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,0.8;10.160,10.160,849.5,2.532,2.532,2.390,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,0.9;10.180,10.180,850.6,2.896,2.896,2.754,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,1.2;10.200,10.200,851.7,2.448,2.448,2.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,1.6;10.220,10.220,852.8,2.005,2.005,1.862,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.8;10.240,10.240,853.9,1.710,1.710,1.567,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.8;10.260,10.260,855.0,1.522,1.522,1.378,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,1.8;10.280,10.280,856.1,1.548,1.548,1.404,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.9;10.300,10.300,857.2,1.817,1.817,1.673,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,1.6;10.320,10.320,858.3,2.216,2.216,2.071,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,1.5;10.340,10.340,859.4,2.490,2.490,2.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,1.2;10.360,10.360,860.6,2.779,2.779,2.634,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,1.2;10.380,10.380,861.7,3.334,3.334,3.188,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.1;10.400,10.400,862.8,3.796,3.796,3.650,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.0;10.420,10.420,863.8,4.074,4.074,3.928,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,1.0;10.440,10.440,865.0,3.983,3.983,3.837,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,0.9;10.460,10.460,867.6,3.758,3.758,3.612,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.0;10.480,10.480,871.5,3.522,3.522,3.375,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.0;10.500,10.500,875.1,3.287,3.287,3.140,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.1;10.520,10.520,876.2,3.083,3.083,2.936,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.2;10.540,10.540,877.3,2.912,2.912,2.765,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.1;10.560,10.560,878.4,2.838,2.838,2.691,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.1;10.580,10.580,879.5,2.849,2.849,2.701,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.2;10.600,10.600,880.6,2.822,2.822,2.673,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.3;10.620,10.620,881.7,2.665,2.665,2.516,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,1.4;10.640,10.640,882.8,2.512,2.512,2.363,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.4;10.660,10.660,883.9,2.466,2.466,2.316,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.2;10.680,10.680,885.0,2.548,2.548,2.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,1.2;10.700,10.700,886.1,2.825,2.825,2.675,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.1;10.720,10.720,887.2,3.276,3.276,3.126,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.1;10.740,10.740,888.3,3.607,3.607,3.457,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,1.0;10.760,10.760,889.5,3.728,3.728,3.577,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,1.0;10.780,10.780,890.7,3.760,3.760,3.609,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,0.9;10.800,10.800,891.8,3.753,3.753,3.602,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,0.9;10.820,10.820,892.9,3.763,3.763,3.611,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,0.9;10.840,10.840,894.2,3.821,3.821,3.669,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,0.9;10.860,10.860,895.4,3.896,3.896,3.744,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.0;10.880,10.880,896.7,3.903,3.903,3.750,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.0;10.900,10.900,897.8,3.850,3.850,3.698,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.0;10.920,10.920,899.1,3.781,3.781,3.628,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,1.0;10.940,10.940,900.2,3.711,3.711,3.558,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.0;10.960,10.960,901.4,3.646,3.646,3.492,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.0;10.980,10.980,902.5,3.567,3.567,3.414,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.0;11.000,11.000,903.6,3.538,3.538,3.384,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.0;11.020,11.020,904.7,3.547,3.547,3.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,0.9;11.040,11.040,906.1,3.528,3.528,3.373,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,0.9;11.060,11.060,907.2,3.478,3.478,3.324,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,1.0;11.080,11.080,908.4,3.386,3.386,3.231,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.0;11.100,11.100,912.0,3.357,3.357,3.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.1;11.120,11.120,915.8,3.331,3.331,3.175,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.0;11.140,11.140,917.4,3.411,3.411,3.255,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.0;11.160,11.160,918.4,3.529,3.529,3.372,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.0;11.180,11.180,919.6,3.614,3.614,3.458,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.0;11.200,11.200,920.7,3.710,3.710,3.553,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,1.1;11.220,11.220,921.8,3.720,3.720,3.562,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,1.1;11.240,11.240,922.9,3.691,3.691,3.534,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,1.1;11.260,11.260,924.1,3.753,3.753,3.595,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,1.0;11.280,11.280,925.2,3.880,3.880,3.722,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,1.0;11.300,11.300,926.3,4.031,4.031,3.873,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.0;11.320,11.320,927.4,4.001,4.001,3.843,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.0;11.340,11.340,928.5,3.773,3.773,3.614,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.0;11.360,11.360,929.6,3.568,3.568,3.409,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.0;11.380,11.380,930.7,3.398,3.398,3.239,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.0;11.400,11.400,931.9,3.345,3.345,3.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.0;11.420,11.420,933.2,3.377,3.377,3.218,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,1.0;11.440,11.440,934.2,3.472,3.472,3.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.0;11.460,11.460,935.3,3.609,3.609,3.449,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,1.1;11.480,11.480,939.4,3.577,3.577,3.416,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,1.3;11.500,11.500,944.1,3.513,3.513,3.352,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,1.4;11.520,11.520,948.2,3.424,3.424,3.262,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,1.3;11.540,11.540,949.2,3.297,3.297,3.136,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.058,0.000,-999999,-999999,-999999,-999999,1.2;11.560,11.560,950.3,3.676,3.676,3.514,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.058,0.000,-999999,-999999,-999999,-999999,1.0;11.580,11.580,951.4,5.296,5.296,5.134,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,1.0;11.600,11.600,952.6,7.508,7.508,7.346,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.069,0.000,-999999,-999999,-999999,-999999,0.9;11.620,11.620,953.7,9.576,9.576,9.414,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.075,0.000,-999999,-999999,-999999,-999999,0.8;11.640,11.640,954.8,11.067,11.067,10.904,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.082,0.000,-999999,-999999,-999999,-999999,0.8;11.660,11.660,955.9,12.095,12.095,11.932,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.089,0.000,-999999,-999999,-999999,-999999,0.7;11.680,11.680,956.9,12.809,12.809,12.646,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.097,0.000,-999999,-999999,-999999,-999999,0.7;11.700,11.700,958.1,13.436,13.436,13.272,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.107,0.000,-999999,-999999,-999999,-999999,0.8;11.720,11.720,959.3,13.843,13.843,13.679,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.114,0.000,-999999,-999999,-999999,-999999,0.8;11.740,11.740,960.4,14.380,14.380,14.215,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,0.8;11.760,11.760,961.5,14.797,14.797,14.632,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.124,0.000,-999999,-999999,-999999,-999999,0.8;11.780,11.780,962.6,14.914,14.914,14.749,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.127,0.000,-999999,-999999,-999999,-999999,0.8;11.800,11.800,963.7,15.147,15.147,14.982,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.130,0.000,-999999,-999999,-999999,-999999,0.8;11.820,11.820,964.8,15.525,15.525,15.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,0.8;11.840,11.840,965.9,15.828,15.828,15.662,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,0.8;11.860,11.860,967.0,15.976,15.976,15.810,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.138,0.000,-999999,-999999,-999999,-999999,0.8;11.880,11.880,968.1,15.862,15.862,15.695,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.140,0.000,-999999,-999999,-999999,-999999,0.9;11.900,11.900,969.2,15.358,15.358,15.192,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.142,0.000,-999999,-999999,-999999,-999999,0.9;11.920,11.920,970.3,14.830,14.830,14.663,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.143,0.000,-999999,-999999,-999999,-999999,0.9;11.940,11.940,971.4,14.459,14.459,14.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.143,0.000,-999999,-999999,-999999,-999999,0.9;11.960,11.960,972.6,14.376,14.376,14.208,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.142,0.000,-999999,-999999,-999999,-999999,0.9;11.980,11.980,973.7,14.379,14.379,14.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.141,0.000,-999999,-999999,-999999,-999999,0.9;12.000,12.000,974.8,14.209,14.209,14.041,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.138,0.000,-999999,-999999,-999999,-999999,0.9;12.020,12.020,975.9,13.949,13.949,13.781,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.134,0.000,-999999,-999999,-999999,-999999,0.9;12.040,12.040,977.1,13.730,13.730,13.562,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.122,0.000,-999999,-999999,-999999,-999999,0.8;12.060,12.060,978.1,13.649,13.649,13.480,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,0.7;12.080,12.080,979.2,13.616,13.616,13.446,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,0.8;12.100,12.100,980.3,13.620,13.620,13.451,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.115,0.000,-999999,-999999,-999999,-999999,0.8;12.120,12.120,983.1,13.424,13.424,13.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,0.8;12.140,12.140,986.2,13.189,13.189,13.019,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,0.8;12.160,12.160,988.4,13.014,13.014,12.844,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,0.9;12.180,12.180,989.6,12.802,12.802,12.631,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,0.9;12.200,12.200,990.6,12.600,12.600,12.430,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,0.9;12.220,12.220,991.7,12.525,12.525,12.354,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.117,0.000,-999999,-999999,-999999,-999999,0.9;12.240,12.240,992.8,12.429,12.429,12.258,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.115,0.000,-999999,-999999,-999999,-999999,0.9;12.260,12.260,993.9,12.197,12.197,12.025,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.113,0.000,-999999,-999999,-999999,-999999,0.9;12.280,12.280,995.1,11.859,11.859,11.687,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.111,0.000,-999999,-999999,-999999,-999999,0.9;12.300,12.300,996.2,11.527,11.527,11.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.9;12.320,12.320,997.3,11.224,11.224,11.051,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.107,0.000,-999999,-999999,-999999,-999999,0.9;12.340,12.340,998.3,11.079,11.079,10.906,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.103,0.000,-999999,-999999,-999999,-999999,0.8;12.360,12.360,999.5,11.213,11.213,11.040,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.099,0.000,-999999,-999999,-999999,-999999,0.8;12.380,12.380,1000.6,11.487,11.487,11.314,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.096,0.000,-999999,-999999,-999999,-999999,0.8;12.400,12.400,1001.7,11.650,11.650,11.476,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.093,0.000,-999999,-999999,-999999,-999999,0.8;12.420,12.420,1002.8,11.686,11.686,11.512,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.086,0.000,-999999,-999999,-999999,-999999,0.7;12.440,12.440,1003.9,11.737,11.737,11.563,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.079,0.000,-999999,-999999,-999999,-999999,0.6;12.460,12.460,1005.1,11.865,11.865,11.691,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.084,0.000,-999999,-999999,-999999,-999999,0.7;12.480,12.480,1006.4,11.883,11.883,11.708,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.088,0.000,-999999,-999999,-999999,-999999,0.7;12.500,12.500,1010.8,11.588,11.588,11.413,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.091,0.000,-999999,-999999,-999999,-999999,0.7;12.520,12.520,1015.2,11.294,11.294,11.119,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,0.8;12.540,12.540,1017.7,11.122,11.122,10.947,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.098,0.000,-999999,-999999,-999999,-999999,0.9;12.560,12.560,1018.8,10.821,10.821,10.645,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.100,0.000,-999999,-999999,-999999,-999999,0.9;12.580,12.580,1019.9,10.478,10.478,10.301,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.101,0.000,-999999,-999999,-999999,-999999,0.9;12.600,12.600,1021.1,10.071,10.071,9.894,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.099,0.000,-999999,-999999,-999999,-999999,0.9;12.620,12.620,1022.3,9.618,9.618,9.442,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.098,0.000,-999999,-999999,-999999,-999999,0.9;12.640,12.640,1023.6,9.310,9.310,9.133,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.096,0.000,-999999,-999999,-999999,-999999,1.0;12.660,12.660,1025.1,9.078,9.078,8.901,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.093,0.000,-999999,-999999,-999999,-999999,1.0;12.680,12.680,1026.4,8.831,8.831,8.653,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.090,0.000,-999999,-999999,-999999,-999999,1.0;12.700,12.700,1027.5,8.430,8.430,8.252,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.087,0.000,-999999,-999999,-999999,-999999,1.0;12.720,12.720,1028.6,7.924,7.924,7.746,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.082,0.000,-999999,-999999,-999999,-999999,1.0;12.740,12.740,1029.7,7.440,7.440,7.261,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.078,0.000,-999999,-999999,-999999,-999999,1.0;12.760,12.760,1030.8,6.989,6.989,6.810,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.073,0.000,-999999,-999999,-999999,-999999,1.0;12.780,12.780,1032.1,6.523,6.523,6.344,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.069,0.000,-999999,-999999,-999999,-999999,1.0;12.800,12.800,1033.2,6.166,6.166,5.987,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.064,0.000,-999999,-999999,-999999,-999999,1.0;12.820,12.820,1034.2,5.765,5.765,5.586,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.060,0.000,-999999,-999999,-999999,-999999,1.0;12.840,12.840,1035.3,5.343,5.343,5.163,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,1.0;12.860,12.860,1036.4,4.911,4.911,4.731,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,1.0;12.880,12.880,1037.5,4.440,4.440,4.260,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,1.0;12.900,12.900,1038.6,3.951,3.951,3.770,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,1.0;12.920,12.920,1039.8,3.459,3.459,3.278,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,1.1;12.940,12.940,1041.2,3.055,3.055,2.874,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,1.2;12.960,12.960,1042.3,2.839,2.839,2.657,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,1.3;12.980,12.980,1043.4,2.653,2.653,2.471,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,1.4;13.000,13.000,1044.6,2.587,2.587,2.405,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,1.5;13.020,13.020,1045.8,2.672,2.672,2.489,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,1.4;13.040,13.040,1047.1,2.872,2.872,2.690,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,1.3;13.060,13.060,1048.6,3.114,3.114,2.931,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.2;13.080,13.080,1050.1,3.435,3.435,3.252,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.1;13.100,13.100,1051.3,3.714,3.714,3.530,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,1.0;13.120,13.120,1053.2,3.985,3.985,3.801,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,0.9;13.140,13.140,1056.0,4.225,4.225,4.041,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,0.8;13.160,13.160,1058.8,4.466,4.466,4.282,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,0.8;13.180,13.180,1060.6,4.756,4.756,4.572,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,0.7;13.200,13.200,1061.7,5.073,5.073,4.889,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,0.7;13.220,13.220,1063.5,5.283,5.283,5.098,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,0.8;13.240,13.240,1067.6,5.366,5.366,5.181,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,0.8;13.260,13.260,1071.7,5.450,5.450,5.264,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,0.9;13.280,13.280,1074.1,5.471,5.471,5.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,1.0;13.300,13.300,1075.2,5.370,5.370,5.184,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,1.0;13.320,13.320,1076.3,5.175,5.175,4.989,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.058,0.000,-999999,-999999,-999999,-999999,1.1;13.340,13.340,1077.4,4.883,4.883,4.696,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.058,0.000,-999999,-999999,-999999,-999999,1.2;13.360,13.360,1078.4,4.552,4.552,4.365,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,1.2;13.380,13.380,1079.6,4.188,4.188,4.001,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,1.3;13.400,13.400,1080.7,3.840,3.840,3.652,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,1.3;13.420,13.420,1081.7,3.549,3.549,3.362,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,1.4;13.440,13.440,1082.8,3.312,3.312,3.124,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,1.4;13.460,13.460,1083.9,3.136,3.136,2.948,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,1.4;13.480,13.480,1085.0,2.905,2.905,2.717,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,1.5;13.500,13.500,1086.1,2.588,2.588,2.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,1.8;13.520,13.520,1088.9,2.199,2.199,2.010,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,2.1;13.540,13.540,1093.0,1.857,1.857,1.668,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,2.0;13.560,13.560,1097.0,1.515,1.515,1.326,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,2.1;13.580,13.580,1098.1,1.512,1.512,1.322,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,1.9;13.600,13.600,1099.2,1.842,1.842,1.651,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,1.6;13.620,13.620,1100.3,2.692,2.692,2.501,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,1.4;13.640,13.640,1101.4,3.319,3.319,3.128,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.3;13.660,13.660,1102.5,3.619,3.619,3.428,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.1;13.680,13.680,1103.6,3.940,3.940,3.748,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.0;13.700,13.700,1104.7,4.096,4.096,3.905,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.0;13.720,13.720,1105.8,4.035,4.035,3.843,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,0.9;13.740,13.740,1107.1,3.874,3.874,3.682,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.0;13.760,13.760,1108.1,3.788,3.788,3.595,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,1.1;13.780,13.780,1109.2,3.582,3.582,3.389,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,1.2;13.800,13.800,1110.3,3.333,3.333,3.139,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,1.3;13.820,13.820,1111.4,3.021,3.021,2.828,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,1.5;13.840,13.840,1112.5,2.711,2.711,2.517,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,1.8;13.860,13.860,1113.6,2.430,2.430,2.236,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,2.1;13.880,13.880,1114.7,2.130,2.130,1.936,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.061,0.000,-999999,-999999,-999999,-999999,2.8;13.900,13.900,1115.8,1.799,1.799,1.604,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,3.3;13.920,13.920,1116.8,1.466,1.466,1.272,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.059,0.000,-999999,-999999,-999999,-999999,3.7;13.940,13.940,1118.0,1.129,1.129,0.934,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,4.1;13.960,13.960,1119.1,0.918,0.918,0.722,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.054,0.000,-999999,-999999,-999999,-999999,4.5;13.980,13.980,1120.2,0.839,0.839,0.643,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.054,0.000,-999999,-999999,-999999,-999999,4.9;14.000,14.000,1121.3,0.868,0.868,0.672,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,4.9;14.020,14.020,1122.4,0.972,0.972,0.776,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,4.1;14.040,14.040,1123.5,1.018,1.018,0.821,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,3.6;14.060,14.060,1124.6,1.409,1.409,1.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,3.1;14.080,14.080,1125.7,2.158,2.158,1.961,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,2.7;14.100,14.100,1126.8,3.197,3.197,2.999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,1.9;14.120,14.120,1129.8,3.818,3.818,3.621,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,1.5;14.140,14.140,1133.2,4.344,4.344,4.146,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,1.3;14.160,14.160,1136.6,4.837,4.837,4.639,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,1.3;14.180,14.180,1137.7,4.610,4.610,4.412,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,1.4;14.200,14.200,1138.8,4.155,4.155,3.956,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,1.7;14.220,14.220,1139.8,3.505,3.505,3.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.071,0.000,-999999,-999999,-999999,-999999,2.1;14.240,14.240,1140.9,2.712,2.712,2.512,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.079,0.000,-999999,-999999,-999999,-999999,2.7;14.260,14.260,1142.1,2.021,2.021,1.822,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.082,0.000,-999999,-999999,-999999,-999999,3.3;14.280,14.280,1143.1,1.557,1.557,1.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.082,0.000,-999999,-999999,-999999,-999999,4.1;14.300,14.300,1144.2,1.237,1.237,1.037,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.079,0.000,-999999,-999999,-999999,-999999,5.0;14.320,14.320,1145.3,0.975,0.975,0.775,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.078,0.000,-999999,-999999,-999999,-999999,6.3;14.340,14.340,1146.4,0.802,0.802,0.601,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.074,0.000,-999999,-999999,-999999,-999999,7.4;14.360,14.360,1147.5,0.699,0.699,0.498,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.067,0.000,-999999,-999999,-999999,-999999,7.9;14.380,14.380,1148.6,0.649,0.649,0.448,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.058,0.000,-999999,-999999,-999999,-999999,8.0;14.400,14.400,1149.7,0.607,0.607,0.405,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,7.4;14.420,14.420,1150.8,0.561,0.561,0.359,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,6.7;14.440,14.440,1151.9,0.507,0.507,0.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,6.0;14.460,14.460,1153.0,0.460,0.460,0.258,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,5.3;14.480,14.480,1154.1,0.439,0.439,0.236,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,4.7;14.500,14.500,1156.7,0.434,0.434,0.232,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.4;14.520,14.520,1160.2,0.433,0.433,0.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,4.0;14.540,14.540,1163.6,0.431,0.431,0.227,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.8;14.560,14.560,1165.7,0.430,0.430,0.226,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.9;14.580,14.580,1166.8,0.412,0.412,0.208,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.8;14.600,14.600,1167.9,0.398,0.398,0.193,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.8;14.620,14.620,1168.9,0.395,0.395,0.191,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.9;14.640,14.640,1170.1,0.390,0.390,0.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.8;14.660,14.660,1171.2,0.387,0.387,0.182,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.8;14.680,14.680,1172.3,0.390,0.390,0.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.8;14.700,14.700,1173.3,0.391,0.391,0.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.9;14.720,14.720,1174.4,0.393,0.393,0.187,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.9;14.740,14.740,1175.5,0.405,0.405,0.198,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.9;14.760,14.760,1176.6,0.411,0.411,0.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.9;14.780,14.780,1177.7,0.409,0.409,0.202,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.9;14.800,14.800,1178.8,0.402,0.402,0.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.9;14.820,14.820,1179.9,0.392,0.392,0.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.9;14.840,14.840,1181.0,0.382,0.382,0.174,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.9;14.860,14.860,1182.1,0.378,0.378,0.170,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.9;14.880,14.880,1183.2,0.379,0.379,0.171,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.9;14.900,14.900,1184.3,0.382,0.382,0.173,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.9;14.920,14.920,1185.4,0.380,0.380,0.171,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.9;14.940,14.940,1186.5,0.377,0.377,0.168,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.9;14.960,14.960,1187.6,0.373,0.373,0.164,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.9;14.980,14.980,1188.7,0.371,0.371,0.161,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.9;15.000,15.000,1189.8,0.370,0.370,0.160,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.9;15.020,15.020,1190.8,0.370,0.370,0.159,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.9;15.040,15.040,1191.9,0.367,0.367,0.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.8;15.060,15.060,1193.0,0.363,0.363,0.153,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.8;15.080,15.080,1194.1,0.362,0.362,0.151,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.8;15.100,15.100,1195.4,0.365,0.365,0.154,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.8;15.120,15.120,1198.4,0.364,0.364,0.153,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.9;15.140,15.140,1201.3,0.364,0.364,0.152,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.9;15.160,15.160,1203.8,0.363,0.363,0.151,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.9;15.180,15.180,1204.9,0.364,0.364,0.151,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.9;15.200,15.200,1206.0,0.367,0.367,0.154,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.9;15.220,15.220,1207.1,0.366,0.366,0.153,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.9;15.240,15.240,1208.2,0.363,0.363,0.149,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.9;15.260,15.260,1209.3,0.363,0.363,0.149,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.9;15.280,15.280,1210.3,0.366,0.366,0.152,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.8;15.300,15.300,1211.4,0.371,0.371,0.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.8;15.320,15.320,1212.6,0.379,0.379,0.164,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.8;15.340,15.340,1213.7,0.390,0.390,0.176,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.9;15.360,15.360,1214.8,0.400,0.400,0.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.3;15.380,15.380,1215.9,0.418,0.418,0.202,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,1.9;15.400,15.400,1217.0,0.453,0.453,0.238,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,1.5;15.420,15.420,1218.1,0.986,0.986,0.771,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,1.4;15.440,15.440,1219.2,2.307,2.307,2.091,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,1.3;15.460,15.460,1220.3,3.543,3.543,3.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,1.2;15.480,15.480,1221.4,3.863,3.863,3.646,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,1.3;15.500,15.500,1223.8,3.479,3.479,3.262,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.3;15.520,15.520,1227.3,3.002,3.002,2.785,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,1.5;15.540,15.540,1230.9,2.526,2.526,2.308,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,2.0;15.560,15.560,1233.1,2.051,2.051,1.834,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,3.0;15.580,15.580,1234.2,1.614,1.614,1.396,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,3.5;15.600,15.600,1235.3,1.304,1.304,1.085,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,3.4;15.620,15.620,1236.4,1.092,1.092,0.873,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,2.7;15.640,15.640,1237.5,0.972,0.972,0.754,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,2.7;15.660,15.660,1238.6,0.928,0.928,0.709,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,2.3;15.680,15.680,1239.7,1.165,1.165,0.945,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,2.0;15.700,15.700,1241.0,1.433,1.433,1.214,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,1.9;15.720,15.720,1242.5,1.499,1.499,1.279,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,1.6;15.740,15.740,1243.8,1.516,1.516,1.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,1.5;15.760,15.760,1245.0,1.514,1.514,1.293,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,1.4;15.780,15.780,1246.2,1.489,1.489,1.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,1.9;15.800,15.800,1247.4,1.489,1.489,1.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,2.5;15.820,15.820,1248.6,1.362,1.362,1.141,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,3.0;15.840,15.840,1249.9,1.123,1.123,0.901,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,3.3;15.860,15.860,1251.0,0.950,0.950,0.728,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,3.6;15.880,15.880,1252.1,0.785,0.785,0.563,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,4.2;15.900,15.900,1253.2,0.702,0.702,0.479,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,4.9;15.920,15.920,1254.4,0.680,0.680,0.457,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,5.4;15.940,15.940,1255.8,0.674,0.674,0.451,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,5.6;15.960,15.960,1257.2,0.698,0.698,0.475,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,5.7;15.980,15.980,1258.5,0.735,0.735,0.512,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,6.2;16.000,16.000,1259.7,0.775,0.775,0.551,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,6.8;16.020,16.020,1260.9,0.787,0.787,0.562,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,7.1;16.040,16.040,1262.2,0.770,0.770,0.545,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.054,0.000,-999999,-999999,-999999,-999999,7.2;16.060,16.060,1263.3,0.772,0.772,0.548,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,7.4;16.080,16.080,1264.4,0.730,0.730,0.505,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,7.5;16.100,16.100,1265.5,0.691,0.691,0.466,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,7.6;16.120,16.120,1266.6,0.658,0.658,0.433,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,7.4;16.140,16.140,1269.0,0.660,0.660,0.434,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,7.1;16.160,16.160,1272.1,0.676,0.676,0.450,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,7.0;16.180,16.180,1275.2,0.693,0.693,0.466,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,6.9;16.200,16.200,1276.9,0.686,0.686,0.459,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,6.8;16.220,16.220,1278.4,0.717,0.717,0.490,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,7.0;16.240,16.240,1279.8,0.738,0.738,0.511,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,7.4;16.260,16.260,1281.3,0.772,0.772,0.544,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.060,0.000,-999999,-999999,-999999,-999999,7.9;16.280,16.280,1282.8,0.808,0.808,0.580,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,8.1;16.300,16.300,1284.3,0.832,0.832,0.604,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.065,0.000,-999999,-999999,-999999,-999999,8.2;16.320,16.320,1285.6,0.819,0.819,0.591,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.065,0.000,-999999,-999999,-999999,-999999,8.1;16.340,16.340,1286.9,0.799,0.799,0.570,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.061,0.000,-999999,-999999,-999999,-999999,7.7;16.360,16.360,1288.2,0.783,0.783,0.554,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,7.9;16.380,16.380,1289.6,0.762,0.762,0.533,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,7.5;16.400,16.400,1290.9,0.748,0.748,0.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,7.1;16.420,16.420,1292.3,0.721,0.721,0.491,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,6.7;16.440,16.440,1293.8,0.669,0.669,0.439,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,6.4;16.460,16.460,1294.9,0.661,0.661,0.431,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,6.1;16.480,16.480,1296.0,0.614,0.614,0.384,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,5.7;16.500,16.500,1297.5,0.575,0.575,0.344,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,5.4;16.520,16.520,1302.1,0.550,0.550,0.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,5.0;16.540,16.540,1306.7,0.525,0.525,0.293,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,4.6;16.560,16.560,1309.5,0.504,0.504,0.273,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,4.4;16.580,16.580,1310.6,0.506,0.506,0.274,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.1;16.600,16.600,1311.7,0.511,0.511,0.278,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.8;16.620,16.620,1312.8,0.506,0.506,0.273,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.7;16.640,16.640,1313.9,0.491,0.491,0.258,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.7;16.660,16.660,1315.1,0.475,0.475,0.242,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.9;16.680,16.680,1316.2,0.460,0.460,0.227,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.8;16.700,16.700,1317.3,0.450,0.450,0.217,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.8;16.720,16.720,1318.7,0.428,0.428,0.193,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.6;16.740,16.740,1319.9,0.420,0.420,0.186,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.6;16.760,16.760,1320.9,0.423,0.423,0.188,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.5;16.780,16.780,1322.0,0.412,0.412,0.177,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.3;16.800,16.800,1323.2,0.398,0.398,0.163,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,3.2;16.820,16.820,1324.2,0.392,0.392,0.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.3;16.840,16.840,1325.3,0.401,0.401,0.165,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.3;16.860,16.860,1326.5,0.415,0.415,0.179,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.4;16.880,16.880,1327.8,0.420,0.420,0.184,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.3;16.900,16.900,1329.1,0.417,0.417,0.180,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,3.1;16.920,16.920,1330.4,0.416,0.416,0.179,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,3.1;16.940,16.940,1331.6,0.423,0.423,0.186,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.3;16.960,16.960,1332.9,0.422,0.422,0.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.3;16.980,16.980,1334.2,0.429,0.429,0.192,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.9;17.000,17.000,1335.3,0.445,0.445,0.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,2.7;17.020,17.020,1336.5,0.491,0.491,0.253,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.1;17.040,17.040,1337.7,0.706,0.706,0.468,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,1.6;17.060,17.060,1338.8,1.075,1.075,0.836,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,1.4;17.080,17.080,1340.0,1.357,1.357,1.118,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,1.2;17.100,17.100,1341.2,1.410,1.410,1.171,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,1.2;17.120,17.120,1342.4,1.322,1.322,1.083,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.4;17.140,17.140,1345.6,1.195,1.195,0.955,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.0;17.160,17.160,1349.1,1.070,1.070,0.829,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,2.3;17.180,17.180,1351.5,0.919,0.919,0.679,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,2.6;17.200,17.200,1352.6,0.778,0.778,0.538,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,3.0;17.220,17.220,1353.7,0.898,0.898,0.657,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,2.5;17.240,17.240,1354.8,1.116,1.116,0.875,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,1.9;17.260,17.260,1355.8,1.272,1.272,1.030,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,1.7;17.280,17.280,1356.9,1.449,1.449,1.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,1.5;17.300,17.300,1358.0,1.594,1.594,1.352,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.2;17.320,17.320,1359.2,1.574,1.574,1.331,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,1.5;17.340,17.340,1360.3,1.366,1.366,1.124,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,1.9;17.360,17.360,1361.5,1.127,1.127,0.884,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.0;17.380,17.380,1362.8,0.887,0.887,0.643,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.3;17.400,17.400,1364.0,0.704,0.704,0.460,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.6;17.420,17.420,1365.2,0.621,0.621,0.378,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,2.7;17.440,17.440,1366.3,0.563,0.563,0.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.5;17.460,17.460,1367.4,0.539,0.539,0.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.4;17.480,17.480,1368.6,0.534,0.534,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,2.6;17.500,17.500,1370.2,0.541,0.541,0.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,2.5;17.520,17.520,1374.5,0.581,0.581,0.336,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,2.4;17.540,17.540,1378.8,0.621,0.621,0.375,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,2.5;17.560,17.560,1380.6,0.761,0.761,0.515,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,2.4;17.580,17.580,1381.8,0.880,0.880,0.634,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,2.5;17.600,17.600,1383.0,0.779,0.779,0.533,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,2.5;17.620,17.620,1384.2,0.563,0.563,0.317,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,2.4;17.640,17.640,1385.3,0.479,0.479,0.232,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.3;17.660,17.660,1386.4,0.450,0.450,0.203,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,2.2;17.680,17.680,1387.4,0.460,0.460,0.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.6;17.700,17.700,1388.6,0.488,0.488,0.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.9;17.720,17.720,1389.6,0.528,0.528,0.280,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,1.6;17.740,17.740,1390.7,0.582,0.582,0.334,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.0;17.760,17.760,1391.8,0.942,0.942,0.693,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,0.8;17.780,17.780,1392.9,2.760,2.760,2.511,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,0.8;17.800,17.800,1394.1,5.603,5.603,5.353,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,0.8;17.820,17.820,1395.1,7.348,7.348,7.098,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,0.8;17.840,17.840,1396.2,8.445,8.445,8.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.059,0.000,-999999,-999999,-999999,-999999,0.8;17.860,17.860,1397.3,9.160,9.160,8.910,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.071,0.000,-999999,-999999,-999999,-999999,0.8;17.880,17.880,1398.4,9.744,9.744,9.493,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.082,0.000,-999999,-999999,-999999,-999999,0.8;17.900,17.900,1399.6,10.263,10.263,10.013,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.088,0.000,-999999,-999999,-999999,-999999,0.8;17.920,17.920,1400.6,10.621,10.621,10.371,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,0.9;17.940,17.940,1401.8,10.913,10.913,10.662,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.100,0.000,-999999,-999999,-999999,-999999,0.9;17.960,17.960,1402.9,11.192,11.192,10.940,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,0.9;17.980,17.980,1404.0,11.471,11.471,11.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,0.9;18.000,18.000,1405.1,11.774,11.774,11.522,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.112,0.000,-999999,-999999,-999999,-999999,0.9;18.020,18.020,1406.3,12.013,12.013,11.761,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.115,0.000,-999999,-999999,-999999,-999999,0.9;18.040,18.040,1407.5,12.121,12.121,11.868,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,0.9;18.060,18.060,1408.6,12.472,12.472,12.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.103,0.000,-999999,-999999,-999999,-999999,0.8;18.080,18.080,1409.7,12.894,12.894,12.641,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.101,0.000,-999999,-999999,-999999,-999999,0.8;18.100,18.100,1410.9,13.355,13.355,13.102,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,0.8;18.120,18.120,1413.1,13.622,13.622,13.368,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.117,0.000,-999999,-999999,-999999,-999999,0.8;18.140,18.140,1416.6,13.684,13.684,13.430,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.123,0.000,-999999,-999999,-999999,-999999,0.9;18.160,18.160,1420.1,13.747,13.747,13.492,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.129,0.000,-999999,-999999,-999999,-999999,0.9;18.180,18.180,1421.4,14.273,14.273,14.018,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.134,0.000,-999999,-999999,-999999,-999999,0.9;18.200,18.200,1422.6,14.642,14.642,14.387,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.139,0.000,-999999,-999999,-999999,-999999,0.9;18.220,18.220,1423.7,14.950,14.950,14.694,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.144,0.000,-999999,-999999,-999999,-999999,0.9;18.240,18.240,1424.7,15.180,15.180,14.925,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.147,0.000,-999999,-999999,-999999,-999999,0.9;18.260,18.260,1425.8,15.381,15.381,15.126,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.148,0.000,-999999,-999999,-999999,-999999,0.9;18.280,18.280,1426.9,15.599,15.599,15.343,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.150,0.000,-999999,-999999,-999999,-999999,0.9;18.300,18.300,1428.0,16.032,16.032,15.775,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.155,0.000,-999999,-999999,-999999,-999999,0.9;18.320,18.320,1429.1,16.624,16.624,16.368,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.160,0.000,-999999,-999999,-999999,-999999,0.9;18.340,18.340,1430.2,17.254,17.254,16.997,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.165,0.000,-999999,-999999,-999999,-999999,0.9;18.360,18.360,1431.5,17.838,17.838,17.581,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.169,0.000,-999999,-999999,-999999,-999999,0.9;18.380,18.380,1432.6,18.404,18.404,18.146,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.175,0.000,-999999,-999999,-999999,-999999,0.9;18.400,18.400,1433.7,19.186,19.186,18.929,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.179,0.000,-999999,-999999,-999999,-999999,0.9;18.420,18.420,1434.8,20.142,20.142,19.885,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.175,0.000,-999999,-999999,-999999,-999999,0.8;18.440,18.440,1435.9,21.095,21.095,20.836,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.162,0.000,-999999,-999999,-999999,-999999,0.7;18.460,18.460,1437.0,21.995,21.995,21.736,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.149,0.000,-999999,-999999,-999999,-999999,0.7;18.480,18.480,1438.1,22.782,22.782,22.524,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.163,0.000,-999999,-999999,-999999,-999999,0.7;18.500,18.500,1439.6,23.423,23.423,23.164,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.177,0.000,-999999,-999999,-999999,-999999,0.7;18.520,18.520,1443.6,23.516,23.516,23.257,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.187,0.000,-999999,-999999,-999999,-999999,0.7;18.540,18.540,1447.5,23.609,23.609,23.350,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.196,0.000,-999999,-999999,-999999,-999999,0.8;18.560,18.560,1450.1,24.401,24.401,24.141,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.202,0.000,-999999,-999999,-999999,-999999,0.8;18.580,18.580,1451.2,25.321,25.321,25.061,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.208,0.000,-999999,-999999,-999999,-999999,0.8;18.600,18.600,1452.3,26.210,26.210,25.950,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.218,0.000,-999999,-999999,-999999,-999999,0.8;18.620,18.620,1453.4,26.987,26.987,26.726,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.230,0.000,-999999,-999999,-999999,-999999,0.8;18.640,18.640,1454.5,27.657,27.657,27.396,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.239,0.000,-999999,-999999,-999999,-999999,0.8;18.660,18.660,1455.6,27.678,27.678,27.417,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.248,0.000,-999999,-999999,-999999,-999999,0.9;18.680,18.680,1456.7,27.484,27.484,27.222,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.257,0.000,-999999,-999999,-999999,-999999,0.9;18.700,18.700,1457.8,27.359,27.359,27.097,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.266,0.000,-999999,-999999,-999999,-999999,0.9;18.720,18.720,1458.9,27.494,27.494,27.232,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.272,0.000,-999999,-999999,-999999,-999999,0.9;18.740,18.740,1460.0,27.896,27.896,27.634,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.278,0.000,-999999,-999999,-999999,-999999,1.0;18.760,18.760,1461.1,28.162,28.162,27.900,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.284,0.000,-999999,-999999,-999999,-999999,1.0;18.780,18.780,1462.2,28.165,28.165,27.902,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.288,0.000,-999999,-999999,-999999,-999999,1.0;18.800,18.800,1463.3,28.216,28.216,27.953,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.291,0.000,-999999,-999999,-999999,-999999,1.0;18.820,18.820,1464.4,28.318,28.318,28.055,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.298,0.000,-999999,-999999,-999999,-999999,1.0;18.840,18.840,1465.6,28.095,28.095,27.831,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.302,0.000,-999999,-999999,-999999,-999999,1.0;18.860,18.860,1466.7,27.765,27.765,27.501,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.307,0.000,-999999,-999999,-999999,-999999,1.1;18.880,18.880,1467.8,27.306,27.306,27.042,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.311,0.000,-999999,-999999,-999999,-999999,1.1;18.900,18.900,1468.9,26.671,26.671,26.406,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.311,0.000,-999999,-999999,-999999,-999999,1.1;18.920,18.920,1470.0,26.125,26.125,25.860,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.308,0.000,-999999,-999999,-999999,-999999,1.1;18.940,18.940,1471.1,25.738,25.738,25.473,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.305,0.000,-999999,-999999,-999999,-999999,1.1;18.960,18.960,1472.2,25.499,25.499,25.234,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.297,0.000,-999999,-999999,-999999,-999999,1.1;18.980,18.980,1473.3,25.425,25.425,25.160,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.289,0.000,-999999,-999999,-999999,-999999,1.1;19.000,19.000,1474.4,25.634,25.634,25.368,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.285,0.000,-999999,-999999,-999999,-999999,1.1;19.020,19.020,1475.5,25.986,25.986,25.720,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.284,0.000,-999999,-999999,-999999,-999999,1.1;19.040,19.040,1476.7,26.051,26.051,25.784,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.261,0.000,-999999,-999999,-999999,-999999,1.0;19.060,19.060,1477.8,25.683,25.683,25.416,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.235,0.000,-999999,-999999,-999999,-999999,0.9;19.080,19.080,1479.1,24.701,24.701,24.433,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.226,0.000,-999999,-999999,-999999,-999999,0.9;19.100,19.100,1480.5,23.753,23.753,23.485,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.238,0.000,-999999,-999999,-999999,-999999,0.9;19.120,19.120,1483.3,22.839,22.839,22.572,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.244,0.000,-999999,-999999,-999999,-999999,1.0;19.140,19.140,1487.3,21.826,21.826,21.559,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.251,0.000,-999999,-999999,-999999,-999999,1.0;19.160,19.160,1490.3,21.683,21.683,21.415,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.254,0.000,-999999,-999999,-999999,-999999,1.1;19.180,19.180,1491.4,22.385,22.385,22.116,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.248,0.000,-999999,-999999,-999999,-999999,1.1;19.200,19.200,1492.5,22.584,22.584,22.315,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.243,0.000,-999999,-999999,-999999,-999999,1.0;19.220,19.220,1493.6,22.521,22.521,22.252,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.241,0.000,-999999,-999999,-999999,-999999,1.0;19.240,19.240,1494.7,22.198,22.198,21.929,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.235,0.000,-999999,-999999,-999999,-999999,1.0;19.260,19.260,1495.8,21.995,21.995,21.726,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.228,0.000,-999999,-999999,-999999,-999999,1.0;19.280,19.280,1496.9,22.007,22.007,21.737,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.218,0.000,-999999,-999999,-999999,-999999,0.9;19.300,19.300,1498.0,22.174,22.174,21.904,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.211,0.000,-999999,-999999,-999999,-999999,0.9;19.320,19.320,1499.1,22.261,22.261,21.990,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.210,0.000,-999999,-999999,-999999,-999999,0.9;19.340,19.340,1500.2,22.058,22.058,21.787,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.208,0.000,-999999,-999999,-999999,-999999,0.9;19.360,19.360,1501.4,21.464,21.464,21.193,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.207,0.000,-999999,-999999,-999999,-999999,0.9;19.380,19.380,1502.5,20.937,20.937,20.665,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.208,0.000,-999999,-999999,-999999,-999999,0.9;19.400,19.400,1503.6,20.598,20.598,20.326,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.211,0.000,-999999,-999999,-999999,-999999,1.0;19.420,19.420,1504.7,20.275,20.275,20.003,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.211,0.000,-999999,-999999,-999999,-999999,1.0;19.440,19.440,1505.7,19.984,19.984,19.712,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.208,0.000,-999999,-999999,-999999,-999999,1.0;19.460,19.460,1506.8,19.655,19.655,19.383,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.200,0.000,-999999,-999999,-999999,-999999,1.0;19.480,19.480,1507.9,19.362,19.362,19.089,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.187,0.000,-999999,-999999,-999999,-999999,0.9;19.500,19.500,1509.0,19.067,19.067,18.794,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.173,0.000,-999999,-999999,-999999,-999999,0.8;19.520,19.520,1510.1,18.837,18.837,18.564,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.175,0.000,-999999,-999999,-999999,-999999,0.9;19.540,19.540,1511.6,18.646,18.646,18.372,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.173,0.000,-999999,-999999,-999999,-999999,0.9;19.560,19.560,1515.6,18.369,18.369,18.095,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.170,0.000,-999999,-999999,-999999,-999999,0.9;19.580,19.580,1519.5,18.092,18.092,17.817,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.167,0.000,-999999,-999999,-999999,-999999,0.8;19.600,19.600,1522.1,18.226,18.226,17.952,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.163,0.000,-999999,-999999,-999999,-999999,0.8;19.620,19.620,1523.1,18.472,18.472,18.197,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.163,0.000,-999999,-999999,-999999,-999999,0.8;19.640,19.640,1524.2,18.622,18.622,18.347,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.160,0.000,-999999,-999999,-999999,-999999,0.8;19.660,19.660,1525.3,18.727,18.727,18.452,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.163,0.000,-999999,-999999,-999999,-999999,0.8;19.680,19.680,1526.4,18.797,18.797,18.521,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.161,0.000,-999999,-999999,-999999,-999999,0.8;19.700,19.700,1527.5,18.998,18.998,18.722,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.162,0.000,-999999,-999999,-999999,-999999,0.8;19.720,19.720,1528.6,19.231,19.231,18.955,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.162,0.000,-999999,-999999,-999999,-999999,0.8;19.740,19.740,1529.7,19.498,19.498,19.221,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.164,0.000,-999999,-999999,-999999,-999999,0.8;19.760,19.760,1530.8,19.486,19.486,19.210,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.166,0.000,-999999,-999999,-999999,-999999,0.8;19.780,19.780,1531.8,19.351,19.351,19.074,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.174,0.000,-999999,-999999,-999999,-999999,0.9;19.800,19.800,1532.9,19.243,19.243,18.966,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.178,0.000,-999999,-999999,-999999,-999999,0.9;19.820,19.820,1534.0,19.193,19.193,18.916,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.181,0.000,-999999,-999999,-999999,-999999,0.9;19.840,19.840,1535.1,19.227,19.227,18.950,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.184,0.000,-999999,-999999,-999999,-999999,0.9;19.860,19.860,1536.3,19.141,19.141,18.863,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.186,0.000,-999999,-999999,-999999,-999999,0.9;19.880,19.880,1537.4,19.145,19.145,18.867,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.189,0.000,-999999,-999999,-999999,-999999,0.9;19.900,19.900,1538.6,19.120,19.120,18.842,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.194,0.000,-999999,-999999,-999999,-999999,1.0;19.920,19.920,1539.7,19.110,19.110,18.832,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.197,0.000,-999999,-999999,-999999,-999999,1.0;19.940,19.940,1540.8,19.004,19.004,18.724,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.199,0.000,-999999,-999999,-999999,-999999,1.0;19.960,19.960,1541.9,18.771,18.771,18.492,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.199,0.000,-999999,-999999,-999999,-999999,1.0;19.980,19.980,1543.0,18.530,18.530,18.251,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.199,0.000,-999999,-999999,-999999,-999999,1.0;20.000,20.000,1544.1,18.245,18.245,17.965,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.197,0.000,-999999,-999999,-999999,-999999,1.0;20.020,20.020,1545.2,17.999,17.999,17.718,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.194,0.000,-999999,-999999,-999999,-999999,1.0;20.040,20.040,1546.3,17.800,17.800,17.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.190,0.000,-999999,-999999,-999999,-999999,1.0;20.060,20.060,1547.4,17.625,17.625,17.344,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.185,0.000,-999999,-999999,-999999,-999999,1.0;20.080,20.080,1548.6,17.530,17.530,17.249,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.181,0.000,-999999,-999999,-999999,-999999,1.0;20.100,20.100,1549.6,17.508,17.508,17.226,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.171,0.000,-999999,-999999,-999999,-999999,0.9;20.120,20.120,1550.7,17.680,17.680,17.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.156,0.000,-999999,-999999,-999999,-999999,0.8;20.140,20.140,1551.8,18.158,18.158,17.876,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.143,0.000,-999999,-999999,-999999,-999999,0.7;20.160,20.160,1552.9,19.047,19.047,18.764,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.150,0.000,-999999,-999999,-999999,-999999,0.8;20.180,20.180,1554.3,20.045,20.045,19.762,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.156,0.000,-999999,-999999,-999999,-999999,0.8;20.200,20.200,1557.5,20.324,20.324,20.042,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.162,0.000,-999999,-999999,-999999,-999999,0.8;20.220,20.220,1560.7,20.604,20.604,20.321,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.171,0.000,-999999,-999999,-999999,-999999,0.8;20.240,20.240,1562.3,21.619,21.619,21.336,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.181,0.000,-999999,-999999,-999999,-999999,0.8;20.260,20.260,1563.4,22.231,22.231,21.947,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.193,0.000,-999999,-999999,-999999,-999999,0.8;20.280,20.280,1564.5,22.664,22.664,22.381,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.206,0.000,-999999,-999999,-999999,-999999,0.9;20.300,20.300,1565.6,23.046,23.046,22.761,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.217,0.000,-999999,-999999,-999999,-999999,0.9;20.320,20.320,1566.7,23.581,23.581,23.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.225,0.000,-999999,-999999,-999999,-999999,0.9;20.340,20.340,1567.8,24.243,24.243,23.959,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.230,0.000,-999999,-999999,-999999,-999999,0.9;20.360,20.360,1568.9,25.099,25.099,24.814,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.235,0.000,-999999,-999999,-999999,-999999,0.9;20.380,20.380,1570.0,26.199,26.199,25.914,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.238,0.000,-999999,-999999,-999999,-999999,0.9;20.400,20.400,1571.1,27.221,27.221,26.935,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.243,0.000,-999999,-999999,-999999,-999999,0.9;20.420,20.420,1572.2,28.152,28.152,27.866,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.245,0.000,-999999,-999999,-999999,-999999,0.8;20.440,20.440,1573.3,28.804,28.804,28.518,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.252,0.000,-999999,-999999,-999999,-999999,0.9;20.460,20.460,1574.4,29.107,29.107,28.821,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.256,0.000,-999999,-999999,-999999,-999999,0.9;20.480,20.480,1575.6,28.978,28.978,28.691,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.259,0.000,-999999,-999999,-999999,-999999,0.9;20.500,20.500,1576.7,28.781,28.781,28.494,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.255,0.000,-999999,-999999,-999999,-999999,0.8;20.520,20.520,1577.9,28.221,28.221,27.934,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.237,0.000,-999999,-999999,-999999,-999999,0.8;20.540,20.540,1579.0,27.800,27.800,27.513,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.221,0.000,-999999,-999999,-999999,-999999,0.7;20.560,20.560,1580.1,27.504,27.504,27.216,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.226,0.000,-999999,-999999,-999999,-999999,0.8;20.580,20.580,1582.5,26.862,26.862,26.574,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.231,0.000,-999999,-999999,-999999,-999999,0.8;20.600,20.600,1588.3,25.849,25.849,25.561,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.232,0.000,-999999,-999999,-999999,-999999,0.8;20.620,20.620,1594.1,24.836,24.836,24.548,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.225,0.000,-999999,-999999,-999999,-999999,0.8;20.640,20.640,1595.9,24.713,24.713,24.424,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.225,0.000,-999999,-999999,-999999,-999999,0.9;20.660,20.660,1597.0,23.863,23.863,23.574,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.223,0.000,-999999,-999999,-999999,-999999,0.9;20.680,20.680,1598.1,23.196,23.196,22.907,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.211,0.000,-999999,-999999,-999999,-999999,0.8;20.700,20.700,1599.2,22.951,22.951,22.662,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.207,0.000,-999999,-999999,-999999,-999999,0.8;20.720,20.720,1600.3,22.972,22.972,22.682,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.195,0.000,-999999,-999999,-999999,-999999,0.8;20.740,20.740,1601.3,22.766,22.766,22.475,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.186,0.000,-999999,-999999,-999999,-999999,0.7;20.760,20.760,1602.4,23.092,23.092,22.802,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.182,0.000,-999999,-999999,-999999,-999999,0.7;20.780,20.780,1603.6,23.520,23.520,23.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.176,0.000,-999999,-999999,-999999,-999999,0.7;20.800,20.800,1604.6,24.112,24.112,23.821,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.168,0.000,-999999,-999999,-999999,-999999,0.7;20.820,20.820,1605.7,24.416,24.416,24.124,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.164,0.000,-999999,-999999,-999999,-999999,0.6;20.840,20.840,1606.8,24.306,24.306,24.015,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.166,0.000,-999999,-999999,-999999,-999999,0.7;20.860,20.860,1607.9,23.592,23.592,23.300,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.170,0.000,-999999,-999999,-999999,-999999,0.7;20.880,20.880,1608.9,22.906,22.906,22.614,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.171,0.000,-999999,-999999,-999999,-999999,0.7;20.900,20.900,1610.0,22.267,22.267,21.975,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.173,0.000,-999999,-999999,-999999,-999999,0.7;20.920,20.920,1611.1,21.884,21.884,21.591,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.169,0.000,-999999,-999999,-999999,-999999,0.7;20.940,20.940,1612.2,21.791,21.791,21.498,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.167,0.000,-999999,-999999,-999999,-999999,0.7;20.960,20.960,1613.3,22.101,22.101,21.807,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.166,0.000,-999999,-999999,-999999,-999999,0.7;20.980,20.980,1614.7,22.627,22.627,22.334,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.166,0.000,-999999,-999999,-999999,-999999,0.7;21.000,21.000,1616.0,23.303,23.303,23.009,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.168,0.000,-999999,-999999,-999999,-999999,0.7;21.020,21.020,1617.3,24.080,24.080,23.786,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.172,0.000,-999999,-999999,-999999,-999999,0.7;21.040,21.040,1618.3,24.732,24.732,24.438,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.180,0.000,-999999,-999999,-999999,-999999,0.7;21.060,21.060,1619.4,24.650,24.650,24.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.184,0.000,-999999,-999999,-999999,-999999,0.7;21.080,21.080,1620.5,23.728,23.728,23.433,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.185,0.000,-999999,-999999,-999999,-999999,0.8;21.100,21.100,1621.6,22.389,22.389,22.093,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.176,0.000,-999999,-999999,-999999,-999999,0.7;21.120,21.120,1622.7,20.988,20.988,20.693,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.167,0.000,-999999,-999999,-999999,-999999,0.7;21.140,21.140,1623.7,20.058,20.058,19.762,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.166,0.000,-999999,-999999,-999999,-999999,0.7;21.160,21.160,1624.8,19.446,19.446,19.150,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.167,0.000,-999999,-999999,-999999,-999999,0.8;21.180,21.180,1627.9,19.031,19.031,18.734,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.167,0.000,-999999,-999999,-999999,-999999,0.8;21.200,21.200,1631.5,18.632,18.632,18.336,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.162,0.000,-999999,-999999,-999999,-999999,0.8;21.220,21.220,1634.7,18.364,18.364,18.067,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.156,0.000,-999999,-999999,-999999,-999999,0.8;21.240,21.240,1635.8,18.734,18.734,18.437,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.148,0.000,-999999,-999999,-999999,-999999,0.7;21.260,21.260,1636.9,19.081,19.081,18.784,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.144,0.000,-999999,-999999,-999999,-999999,0.7;21.280,21.280,1638.0,19.634,19.634,19.336,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.142,0.000,-999999,-999999,-999999,-999999,0.7;21.300,21.300,1639.1,20.213,20.213,19.915,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,0.6;21.320,21.320,1640.2,20.639,20.639,20.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,0.6;21.340,21.340,1641.3,20.540,20.540,20.241,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.135,0.000,-999999,-999999,-999999,-999999,0.6;21.360,21.360,1643.1,19.288,19.288,18.989,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.143,0.000,-999999,-999999,-999999,-999999,0.7;21.380,21.380,1644.3,19.652,19.652,19.353,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.146,0.000,-999999,-999999,-999999,-999999,0.7;21.400,21.400,1645.4,19.495,19.495,19.196,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.149,0.000,-999999,-999999,-999999,-999999,0.7;21.420,21.420,1646.4,19.661,19.661,19.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.147,0.000,-999999,-999999,-999999,-999999,0.7;21.440,21.440,1647.6,19.844,19.844,19.544,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.153,0.000,-999999,-999999,-999999,-999999,0.7;21.460,21.460,1648.7,20.411,20.411,20.110,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.157,0.000,-999999,-999999,-999999,-999999,0.7;21.480,21.480,1649.8,21.169,21.169,20.868,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.162,0.000,-999999,-999999,-999999,-999999,0.7;21.500,21.500,1650.9,21.968,21.968,21.667,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.165,0.000,-999999,-999999,-999999,-999999,0.7;21.520,21.520,1651.9,22.745,22.745,22.443,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.159,0.000,-999999,-999999,-999999,-999999,0.7;21.540,21.540,1653.1,23.657,23.657,23.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.153,0.000,-999999,-999999,-999999,-999999,0.6;21.560,21.560,1654.1,24.871,24.871,24.570,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.148,0.000,-999999,-999999,-999999,-999999,0.6;21.580,21.580,1655.3,26.402,26.402,26.100,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.158,0.000,-999999,-999999,-999999,-999999,0.6;21.600,21.600,1657.3,27.481,27.481,27.179,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.174,0.000,-999999,-999999,-999999,-999999,0.6;21.620,21.620,1661.2,27.726,27.726,27.423,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.186,0.000,-999999,-999999,-999999,-999999,0.6;21.640,21.640,1665.0,27.971,27.971,27.668,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.197,0.000,-999999,-999999,-999999,-999999,0.7;21.660,21.660,1666.8,28.585,28.585,28.282,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.204,0.000,-999999,-999999,-999999,-999999,0.7;21.680,21.680,1667.9,28.130,28.130,27.826,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.208,0.000,-999999,-999999,-999999,-999999,0.7;21.700,21.700,1669.0,27.118,27.118,26.814,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.208,0.000,-999999,-999999,-999999,-999999,0.8;21.720,21.720,1670.1,25.341,25.341,25.037,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.211,0.000,-999999,-999999,-999999,-999999,0.8;21.740,21.740,1671.2,23.333,23.333,23.028,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.209,0.000,-999999,-999999,-999999,-999999,0.8;21.760,21.760,1672.2,21.630,21.630,21.325,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.202,0.000,-999999,-999999,-999999,-999999,0.8;21.780,21.780,1673.3,20.452,20.452,20.147,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.194,0.000,-999999,-999999,-999999,-999999,0.8;21.800,21.800,1674.4,19.686,19.686,19.381,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.188,0.000,-999999,-999999,-999999,-999999,0.9;21.820,21.820,1675.5,19.350,19.350,19.044,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.181,0.000,-999999,-999999,-999999,-999999,0.8;21.840,21.840,1676.6,19.373,19.373,19.067,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.179,0.000,-999999,-999999,-999999,-999999,0.8;21.860,21.860,1677.7,19.643,19.643,19.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.178,0.000,-999999,-999999,-999999,-999999,0.8;21.880,21.880,1678.8,20.014,20.014,19.707,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.177,0.000,-999999,-999999,-999999,-999999,0.8;21.900,21.900,1679.9,20.287,20.287,19.981,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.180,0.000,-999999,-999999,-999999,-999999,0.9;21.920,21.920,1680.9,20.481,20.481,20.174,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.183,0.000,-999999,-999999,-999999,-999999,0.9;21.940,21.940,1682.1,20.380,20.380,20.073,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.186,0.000,-999999,-999999,-999999,-999999,0.9;21.960,21.960,1683.2,19.972,19.972,19.664,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.184,0.000,-999999,-999999,-999999,-999999,0.9;21.980,21.980,1684.3,18.952,18.952,18.644,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.180,0.000,-999999,-999999,-999999,-999999,0.9;22.000,22.000,1685.3,17.682,17.682,17.374,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.175,0.000,-999999,-999999,-999999,-999999,0.9;22.020,22.020,1686.4,16.373,16.373,16.065,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.172,0.000,-999999,-999999,-999999,-999999,1.0;22.040,22.040,1687.6,15.448,15.448,15.140,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.165,0.000,-999999,-999999,-999999,-999999,1.0;22.060,22.060,1688.7,14.777,14.777,14.468,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.160,0.000,-999999,-999999,-999999,-999999,1.0;22.080,22.080,1689.8,14.412,14.412,14.103,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.151,0.000,-999999,-999999,-999999,-999999,1.0;22.100,22.100,1690.9,14.111,14.111,13.801,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.143,0.000,-999999,-999999,-999999,-999999,0.9;22.120,22.120,1692.0,13.967,13.967,13.657,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.134,0.000,-999999,-999999,-999999,-999999,0.9;22.140,22.140,1693.1,14.129,14.129,13.819,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.121,0.000,-999999,-999999,-999999,-999999,0.8;22.160,22.160,1694.2,14.628,14.628,14.317,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.7;22.180,22.180,1695.3,15.358,15.358,15.048,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.111,0.000,-999999,-999999,-999999,-999999,0.7;22.200,22.200,1696.4,16.114,16.114,15.803,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.127,0.000,-999999,-999999,-999999,-999999,0.8;22.220,22.220,1700.1,16.258,16.258,15.947,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.126,0.000,-999999,-999999,-999999,-999999,0.7;22.240,22.240,1704.0,16.325,16.325,16.014,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.129,0.000,-999999,-999999,-999999,-999999,0.7;22.260,22.260,1705.1,17.671,17.671,17.359,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.132,0.000,-999999,-999999,-999999,-999999,0.7;22.280,22.280,1706.2,17.856,17.856,17.544,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.134,0.000,-999999,-999999,-999999,-999999,0.7;22.300,22.300,1707.3,17.918,17.918,17.606,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,0.7;22.320,22.320,1708.3,17.835,17.835,17.522,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.147,0.000,-999999,-999999,-999999,-999999,0.8;22.340,22.340,1709.4,17.973,17.973,17.660,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.139,0.000,-999999,-999999,-999999,-999999,0.7;22.360,22.360,1710.5,18.377,18.377,18.064,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.144,0.000,-999999,-999999,-999999,-999999,0.7;22.380,22.380,1711.6,18.875,18.875,18.561,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.151,0.000,-999999,-999999,-999999,-999999,0.7;22.400,22.400,1712.7,19.298,19.298,18.984,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.158,0.000,-999999,-999999,-999999,-999999,0.8;22.420,22.420,1713.8,19.825,19.825,19.512,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.165,0.000,-999999,-999999,-999999,-999999,0.8;22.440,22.440,1714.9,20.665,20.665,20.350,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.175,0.000,-999999,-999999,-999999,-999999,0.8;22.460,22.460,1716.0,21.939,21.939,21.624,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.185,0.000,-999999,-999999,-999999,-999999,0.8;22.480,22.480,1717.1,23.594,23.594,23.279,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.192,0.000,-999999,-999999,-999999,-999999,0.7;22.500,22.500,1718.2,25.520,25.520,25.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.201,0.000,-999999,-999999,-999999,-999999,0.7;22.520,22.520,1719.3,27.608,27.608,27.293,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.207,0.000,-999999,-999999,-999999,-999999,0.7;22.540,22.540,1720.4,29.901,29.901,29.585,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.229,0.000,-999999,-999999,-999999,-999999,0.7;22.560,22.560,1721.6,32.283,32.283,31.967,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.225,0.000,-999999,-999999,-999999,-999999,0.7;22.580,22.580,1722.9,34.460,34.460,34.144,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.216,0.000,-999999,-999999,-999999,-999999,0.6;22.600,22.600,1724.1,35.670,35.670,35.354,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.208,0.000,-999999,-999999,-999999,-999999,0.6;22.620,22.620,1725.4,35.686,35.686,35.370,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.222,0.000,-999999,-999999,-999999,-999999,0.6;22.640,22.640,1728.9,35.219,35.219,34.902,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.242,0.000,-999999,-999999,-999999,-999999,0.6;22.660,22.660,1734.8,34.529,34.529,34.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.261,0.000,-999999,-999999,-999999,-999999,0.7;22.680,22.680,1740.7,33.838,33.838,33.521,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.279,0.000,-999999,-999999,-999999,-999999,0.8;22.700,22.700,1744.9,33.356,33.356,33.038,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.285,0.000,-999999,-999999,-999999,-999999,0.8;22.720,22.720,1746.1,33.009,33.009,32.690,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.301,0.000,-999999,-999999,-999999,-999999,0.9;22.740,22.740,1747.3,32.347,32.347,32.029,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.307,0.000,-999999,-999999,-999999,-999999,0.9;22.760,22.760,1748.5,31.294,31.294,30.975,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.311,0.000,-999999,-999999,-999999,-999999,0.9;22.780,22.780,1749.6,30.492,30.492,30.173,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.303,0.000,-999999,-999999,-999999,-999999,0.9;22.800,22.800,1750.8,29.599,29.599,29.280,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.296,0.000,-999999,-999999,-999999,-999999,0.9;22.820,22.820,1751.9,29.354,29.354,29.034,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.296,0.000,-999999,-999999,-999999,-999999,0.9;22.840,22.840,1753.1,29.634,29.634,29.314,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.300,0.000,-999999,-999999,-999999,-999999,0.9;22.860,22.860,1754.3,30.134,30.134,29.814,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.291,0.000,-999999,-999999,-999999,-999999,0.9;22.880,22.880,1755.5,30.810,30.810,30.489,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.279,0.000,-999999,-999999,-999999,-999999,0.9;22.900,22.900,1756.7,31.419,31.419,31.099,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.280,0.000,-999999,-999999,-999999,-999999,0.9;22.920,22.920,1757.9,31.811,31.811,31.490,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.288,0.000,-999999,-999999,-999999,-999999,0.9;22.940,22.940,1759.1,31.706,31.706,31.385,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.299,0.000,-999999,-999999,-999999,-999999,0.9;22.960,22.960,1760.2,31.023,31.023,30.702,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.296,0.000,-999999,-999999,-999999,-999999,0.9;22.980,22.980,1761.4,29.619,29.619,29.298,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.294,0.000,-999999,-999999,-999999,-999999,1.0;23.000,23.000,1762.5,27.692,27.692,27.370,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.284,0.000,-999999,-999999,-999999,-999999,1.0;23.020,23.020,1763.6,25.650,25.650,25.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.277,0.000,-999999,-999999,-999999,-999999,1.0;23.040,23.040,1764.8,23.985,23.985,23.662,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.267,0.000,-999999,-999999,-999999,-999999,1.0;23.060,23.060,1765.9,22.691,22.691,22.368,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.256,0.000,-999999,-999999,-999999,-999999,1.0;23.080,23.080,1767.0,21.706,21.706,21.383,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.245,0.000,-999999,-999999,-999999,-999999,1.0;23.100,23.100,1768.1,20.858,20.858,20.534,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.238,0.000,-999999,-999999,-999999,-999999,1.1;23.120,23.120,1769.2,20.214,20.214,19.891,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.230,0.000,-999999,-999999,-999999,-999999,1.1;23.140,23.140,1770.3,19.654,19.654,19.330,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.227,0.000,-999999,-999999,-999999,-999999,1.1;23.160,23.160,1771.3,19.233,19.233,18.908,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.208,0.000,-999999,-999999,-999999,-999999,1.0;23.180,23.180,1772.4,18.850,18.850,18.525,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.189,0.000,-999999,-999999,-999999,-999999,0.9;23.200,23.200,1773.5,18.524,18.524,18.199,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.177,0.000,-999999,-999999,-999999,-999999,0.9;23.220,23.220,1774.6,18.198,18.198,17.873,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.178,0.000,-999999,-999999,-999999,-999999,0.9;23.240,23.240,1777.3,17.896,17.896,17.570,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.181,0.000,-999999,-999999,-999999,-999999,0.9;23.260,23.260,1780.7,17.581,17.581,17.256,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.185,0.000,-999999,-999999,-999999,-999999,1.0;23.280,23.280,1784.1,17.287,17.287,16.961,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.187,0.000,-999999,-999999,-999999,-999999,1.0;23.300,23.300,1785.2,17.287,17.287,16.961,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.187,0.000,-999999,-999999,-999999,-999999,1.0;23.320,23.320,1786.3,17.244,17.244,16.918,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.186,0.000,-999999,-999999,-999999,-999999,1.0;23.340,23.340,1787.3,17.418,17.418,17.091,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.188,0.000,-999999,-999999,-999999,-999999,1.0;23.360,23.360,1788.4,17.745,17.745,17.418,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.188,0.000,-999999,-999999,-999999,-999999,1.0;23.380,23.380,1789.5,18.060,18.060,17.733,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.183,0.000,-999999,-999999,-999999,-999999,1.0;23.400,23.400,1790.6,18.255,18.255,17.927,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.179,0.000,-999999,-999999,-999999,-999999,0.9;23.420,23.420,1791.7,18.361,18.361,18.033,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.179,0.000,-999999,-999999,-999999,-999999,1.0;23.440,23.440,1792.7,18.325,18.325,17.997,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.179,0.000,-999999,-999999,-999999,-999999,1.0;23.460,23.460,1793.8,17.923,17.923,17.595,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.180,0.000,-999999,-999999,-999999,-999999,1.0;23.480,23.480,1794.9,17.077,17.077,16.749,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.179,0.000,-999999,-999999,-999999,-999999,1.0;23.500,23.500,1796.0,16.106,16.106,15.777,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.176,0.000,-999999,-999999,-999999,-999999,1.0;23.520,23.520,1797.1,15.246,15.246,14.917,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.171,0.000,-999999,-999999,-999999,-999999,1.0;23.540,23.540,1798.1,14.622,14.622,14.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.166,0.000,-999999,-999999,-999999,-999999,1.1;23.560,23.560,1799.2,14.129,14.129,13.799,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.160,0.000,-999999,-999999,-999999,-999999,1.1;23.580,23.580,1800.3,13.768,13.768,13.438,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.153,0.000,-999999,-999999,-999999,-999999,1.0;23.600,23.600,1801.4,13.553,13.553,13.222,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.144,0.000,-999999,-999999,-999999,-999999,1.0;23.620,23.620,1802.5,13.428,13.428,13.098,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,0.9;23.640,23.640,1803.7,13.332,13.332,13.001,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.133,0.000,-999999,-999999,-999999,-999999,0.9;23.660,23.660,1805.8,13.234,13.234,12.902,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.132,0.000,-999999,-999999,-999999,-999999,0.9;23.680,23.680,1809.9,13.179,13.179,12.847,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.130,0.000,-999999,-999999,-999999,-999999,0.9;23.700,23.700,1814.1,13.123,13.123,12.792,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.131,0.000,-999999,-999999,-999999,-999999,0.9;23.720,23.720,1817.3,13.105,13.105,12.773,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.135,0.000,-999999,-999999,-999999,-999999,1.0;23.740,23.740,1818.4,13.185,13.185,12.853,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.135,0.000,-999999,-999999,-999999,-999999,1.0;23.760,23.760,1819.5,13.229,13.229,12.896,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,1.0;23.780,23.780,1820.6,13.218,13.218,12.885,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,1.0;23.800,23.800,1821.7,13.186,13.186,12.853,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,1.0;23.820,23.820,1822.8,13.171,13.171,12.837,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,1.0;23.840,23.840,1823.8,13.123,13.123,12.789,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.135,0.000,-999999,-999999,-999999,-999999,1.0;23.860,23.860,1824.9,13.051,13.051,12.717,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.134,0.000,-999999,-999999,-999999,-999999,1.0;23.880,23.880,1826.0,12.963,12.963,12.629,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.134,0.000,-999999,-999999,-999999,-999999,1.0;23.900,23.900,1827.1,12.893,12.893,12.558,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.134,0.000,-999999,-999999,-999999,-999999,1.0;23.920,23.920,1828.2,12.849,12.849,12.514,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.135,0.000,-999999,-999999,-999999,-999999,1.0;23.940,23.940,1829.3,12.874,12.874,12.539,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.134,0.000,-999999,-999999,-999999,-999999,1.0;23.960,23.960,1830.3,12.916,12.916,12.581,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.134,0.000,-999999,-999999,-999999,-999999,1.0;23.980,23.980,1831.4,13.000,13.000,12.664,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,1.0;24.000,24.000,1832.5,13.111,13.111,12.775,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,1.0;24.020,24.020,1833.6,13.206,13.206,12.869,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,1.0;24.040,24.040,1834.7,13.293,13.293,12.956,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,1.0;24.060,24.060,1835.7,13.404,13.404,13.067,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,1.0;24.080,24.080,1836.8,13.576,13.576,13.239,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,1.0;24.100,24.100,1837.9,13.761,13.761,13.423,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,1.0;24.120,24.120,1839.0,13.882,13.882,13.544,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.138,0.000,-999999,-999999,-999999,-999999,1.0;24.140,24.140,1840.1,13.934,13.934,13.596,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.139,0.000,-999999,-999999,-999999,-999999,1.0;24.160,24.160,1841.2,14.015,14.015,13.677,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.140,0.000,-999999,-999999,-999999,-999999,0.9;24.180,24.180,1842.2,14.177,14.177,13.839,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.140,0.000,-999999,-999999,-999999,-999999,0.9;24.200,24.200,1843.3,14.384,14.384,14.045,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.133,0.000,-999999,-999999,-999999,-999999,0.9;24.220,24.220,1844.4,14.584,14.584,14.245,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.125,0.000,-999999,-999999,-999999,-999999,0.8;24.240,24.240,1845.5,14.807,14.807,14.468,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.125,0.000,-999999,-999999,-999999,-999999,0.8;24.260,24.260,1846.6,15.124,15.124,14.784,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.130,0.000,-999999,-999999,-999999,-999999,0.8;24.280,24.280,1849.1,15.374,15.374,15.035,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.134,0.000,-999999,-999999,-999999,-999999,0.8;24.300,24.300,1852.7,15.528,15.528,15.188,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.138,0.000,-999999,-999999,-999999,-999999,0.8;24.320,24.320,1855.7,15.862,15.862,15.522,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.142,0.000,-999999,-999999,-999999,-999999,0.8;24.340,24.340,1856.8,16.747,16.747,16.406,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.147,0.000,-999999,-999999,-999999,-999999,0.8;24.360,24.360,1857.9,17.453,17.453,17.112,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.153,0.000,-999999,-999999,-999999,-999999,0.8;24.380,24.380,1859.0,18.010,18.010,17.668,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.158,0.000,-999999,-999999,-999999,-999999,0.8;24.400,24.400,1860.1,18.524,18.524,18.183,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.165,0.000,-999999,-999999,-999999,-999999,0.8;24.420,24.420,1861.1,19.149,19.149,18.808,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.175,0.000,-999999,-999999,-999999,-999999,0.8;24.440,24.440,1862.2,20.196,20.196,19.854,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.184,0.000,-999999,-999999,-999999,-999999,0.8;24.460,24.460,1863.3,21.775,21.775,21.433,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.192,0.000,-999999,-999999,-999999,-999999,0.8;24.480,24.480,1864.4,23.671,23.671,23.329,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.202,0.000,-999999,-999999,-999999,-999999,0.8;24.500,24.500,1865.5,25.453,25.453,25.110,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.215,0.000,-999999,-999999,-999999,-999999,0.8;24.520,24.520,1866.6,27.207,27.207,26.864,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.226,0.000,-999999,-999999,-999999,-999999,0.8;24.540,24.540,1867.7,28.436,28.436,28.093,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.239,0.000,-999999,-999999,-999999,-999999,0.8;24.560,24.560,1868.8,29.137,29.137,28.793,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.252,0.000,-999999,-999999,-999999,-999999,0.8;24.580,24.580,1869.9,29.447,29.447,29.103,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.260,0.000,-999999,-999999,-999999,-999999,0.9;24.600,24.600,1871.0,29.640,29.640,29.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.267,0.000,-999999,-999999,-999999,-999999,0.9;24.620,24.620,1872.1,29.770,29.770,29.425,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.251,0.000,-999999,-999999,-999999,-999999,0.8;24.640,24.640,1873.2,29.695,29.695,29.350,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.236,0.000,-999999,-999999,-999999,-999999,0.8;24.660,24.660,1874.3,29.243,29.243,28.898,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.224,0.000,-999999,-999999,-999999,-999999,0.7;24.680,24.680,1875.4,28.339,28.339,27.993,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.236,0.000,-999999,-999999,-999999,-999999,0.8;24.700,24.700,1879.4,26.972,26.972,26.627,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.247,0.000,-999999,-999999,-999999,-999999,0.9;24.720,24.720,1883.6,25.581,25.581,25.235,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.253,0.000,-999999,-999999,-999999,-999999,0.9;24.740,24.740,1886.5,25.218,25.218,24.871,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.255,0.000,-999999,-999999,-999999,-999999,1.0;24.760,24.760,1887.6,24.393,24.393,24.046,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.253,0.000,-999999,-999999,-999999,-999999,1.0;24.780,24.780,1888.7,23.252,23.252,22.905,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.246,0.000,-999999,-999999,-999999,-999999,1.0;24.800,24.800,1889.8,22.072,22.072,21.725,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.242,0.000,-999999,-999999,-999999,-999999,1.0;24.820,24.820,1890.8,20.691,20.691,20.344,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.231,0.000,-999999,-999999,-999999,-999999,1.1;24.840,24.840,1891.9,18.918,18.918,18.570,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.219,0.000,-999999,-999999,-999999,-999999,1.1;24.860,24.860,1893.0,17.132,17.132,16.784,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.207,0.000,-999999,-999999,-999999,-999999,1.1;24.880,24.880,1894.1,15.602,15.602,15.253,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.191,0.000,-999999,-999999,-999999,-999999,1.1;24.900,24.900,1895.2,14.333,14.333,13.984,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.176,0.000,-999999,-999999,-999999,-999999,1.1;24.920,24.920,1896.2,13.378,13.378,13.030,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.161,0.000,-999999,-999999,-999999,-999999,1.1;24.940,24.940,1897.3,12.642,12.642,12.293,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.148,0.000,-999999,-999999,-999999,-999999,1.1;24.960,24.960,1898.4,12.073,12.073,11.723,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.144,0.000,-999999,-999999,-999999,-999999,1.1;24.980,24.980,1899.4,11.659,11.659,11.310,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.128,0.000,-999999,-999999,-999999,-999999,1.0;25.000,25.000,1900.6,11.315,11.315,10.965,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.113,0.000,-999999,-999999,-999999,-999999,0.9;25.020,25.020,1901.6,11.103,11.103,10.753,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;25.040,25.040,1902.7,10.597,10.597,10.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;25.060,25.060,1903.8,10.393,10.393,10.042,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;25.080,25.080,1904.8,10.167,10.167,9.816,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;25.090,25.090,1906.0,9.910,9.910,9.558,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;jajaneejajajajajajaneeneeneeneeneeneeneejajajaneeneejajaneeneeneeneeja2023-06-01T13:45:33+02:00voltooid2023-06-01T13:45:33+02:00neeneeneenee \ No newline at end of file diff --git a/tests/cpts/xml/CPT000000217406.xml b/tests/cpts/xml/CPT000000217406.xml new file mode 100644 index 0000000..42f8c1e --- /dev/null +++ b/tests/cpts/xml/CPT000000217406.xml @@ -0,0 +1 @@ +dispatch-2025-01-10T17:08:38+01:00CPT00000021740630124359IMBROpubliekeTaakinfrastructuurLand2023-04-17ISO22476D1nee51.961036012 4.380857057RDNAPTRANS201885833.711 441879.5502022-12-12RTKGPS5tot10cmmaaiveld-0.787NAP2022-12-12RTKGPS4tot10cmnee2022-12-20elektrischContinuklasse2einddiepte0.0025.015Fugro Cone Penetrometer MkIICP15-CF75SN2-P1E1M4-V1-S1/1701-27571510440.5887198951.0-0.064-0.07610-0.001-0.0012022-12-11T10:11:30+01:002022-12-11T10:11:30+01:000.000,0.000,105.5,0.115,0.115,0.115,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.020,0.020,107.1,0.511,0.511,0.511,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.040,0.040,108.3,0.527,0.527,0.526,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.060,0.060,110.9,0.698,0.698,0.697,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.080,0.080,113.7,0.769,0.769,0.768,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.100,0.100,115.9,1.430,1.430,1.428,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.003,0.000,-999999,-999999,-999999,-999999,0.3;0.120,0.120,117.0,0.900,0.900,0.898,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.003,0.000,-999999,-999999,-999999,-999999,0.2;0.140,0.140,119.6,1.567,1.567,1.565,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,0.2;0.160,0.160,122.4,2.351,2.351,2.349,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,0.7;0.180,0.180,125.1,3.004,3.004,3.002,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,0.3;0.200,0.200,126.2,1.972,1.972,1.970,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,0.3;0.220,0.220,127.3,5.112,5.112,5.109,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,1,2,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,0.5;0.240,0.240,128.4,3.354,3.354,3.351,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,0.1;0.260,0.260,129.5,8.082,8.082,8.079,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,2,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,0.2;0.280,0.280,130.6,5.927,5.927,5.923,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,1,3,-999999,-999999,0.054,0.000,-999999,-999999,-999999,-999999,0.7;0.300,0.300,131.7,8.403,8.403,8.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,2,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,0.5;0.320,0.320,132.8,9.487,9.487,9.482,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,2,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,0.2;0.340,0.340,133.9,11.140,11.140,11.136,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,2,-999999,-999999,0.073,0.000,-999999,-999999,-999999,-999999,0.6;0.360,0.360,135.0,14.792,14.792,14.787,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,2,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,0.3;0.380,0.380,136.1,14.275,14.275,14.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,4,-999999,-999999,0.054,0.000,-999999,-999999,-999999,-999999,0.4;0.400,0.400,137.1,14.106,14.106,14.101,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,1,4,-999999,-999999,0.065,0.000,-999999,-999999,-999999,-999999,0.4;0.420,0.420,138.2,12.707,12.707,12.702,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,2,6,-999999,-999999,0.090,0.000,-999999,-999999,-999999,-999999,0.6;0.440,0.440,139.3,14.272,14.272,14.265,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,2,3,-999999,-999999,0.096,0.000,-999999,-999999,-999999,-999999,0.6;0.460,0.460,141.8,17.321,17.321,17.315,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,2,-999999,-999999,0.111,0.000,-999999,-999999,-999999,-999999,0.7;0.480,0.480,146.4,17.137,17.137,17.130,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,2,2,-999999,-999999,0.133,0.000,-999999,-999999,-999999,-999999,0.7;0.500,0.500,150.6,17.037,17.037,17.030,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,2,3,-999999,-999999,0.148,0.000,-999999,-999999,-999999,-999999,0.7;0.520,0.520,151.8,18.472,18.472,18.465,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,2,-999999,-999999,0.176,0.000,-999999,-999999,-999999,-999999,0.7;0.540,0.540,152.9,25.500,25.500,25.493,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,2,2,-999999,-999999,0.175,0.000,-999999,-999999,-999999,-999999,0.7;0.560,0.560,154.0,27.920,27.920,27.912,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,2,-999999,-999999,0.155,0.000,-999999,-999999,-999999,-999999,0.6;0.580,0.580,155.1,27.980,27.980,27.972,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,2,-999999,-999999,0.161,0.000,-999999,-999999,-999999,-999999,0.6;0.600,0.600,156.3,29.830,29.830,29.821,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,3,-999999,-999999,0.209,0.000,-999999,-999999,-999999,-999999,0.7;0.620,0.620,157.4,30.795,30.795,30.786,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,3,-999999,-999999,0.193,0.000,-999999,-999999,-999999,-999999,0.6;0.640,0.640,158.5,29.280,29.280,29.271,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,3,3,-999999,-999999,0.202,0.000,-999999,-999999,-999999,-999999,0.6;0.660,0.660,159.7,30.246,30.246,30.237,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,3,-999999,-999999,0.184,0.000,-999999,-999999,-999999,-999999,0.6;0.680,0.680,160.8,31.020,31.020,31.011,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,3,3,-999999,-999999,0.200,0.000,-999999,-999999,-999999,-999999,0.6;0.700,0.700,161.9,31.042,31.042,31.032,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,3,3,-999999,-999999,0.222,0.000,-999999,-999999,-999999,-999999,0.7;0.720,0.720,163.0,30.634,30.634,30.624,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,3,3,-999999,-999999,0.209,0.000,-999999,-999999,-999999,-999999,0.6;0.740,0.740,164.1,31.865,31.865,31.855,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,3,3,-999999,-999999,0.194,0.000,-999999,-999999,-999999,-999999,0.6;0.760,0.760,165.2,32.078,32.078,32.067,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,3,3,-999999,-999999,0.206,0.000,-999999,-999999,-999999,-999999,0.6;0.780,0.780,166.3,31.697,31.697,31.686,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,3,3,-999999,-999999,0.204,0.000,-999999,-999999,-999999,-999999,0.6;0.800,0.800,167.4,32.512,32.512,32.501,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,3,3,-999999,-999999,0.229,0.000,-999999,-999999,-999999,-999999,0.7;0.820,0.820,168.6,33.627,33.627,33.616,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,3,3,-999999,-999999,0.245,0.000,-999999,-999999,-999999,-999999,0.7;0.840,0.840,169.7,33.317,33.317,33.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,3,3,-999999,-999999,0.237,0.000,-999999,-999999,-999999,-999999,0.7;0.860,0.860,170.7,32.581,32.581,32.569,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,3,3,-999999,-999999,0.254,0.000,-999999,-999999,-999999,-999999,0.7;0.880,0.880,171.8,31.086,31.086,31.074,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,3,3,-999999,-999999,0.269,0.000,-999999,-999999,-999999,-999999,0.8;0.900,0.900,172.9,31.008,31.008,30.996,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.294,0.000,-999999,-999999,-999999,-999999,0.9;0.920,0.920,174.0,30.542,30.542,30.529,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.292,0.000,-999999,-999999,-999999,-999999,0.9;0.940,0.940,175.1,30.082,30.082,30.069,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.269,0.000,-999999,-999999,-999999,-999999,0.8;0.960,0.960,176.1,29.617,29.617,29.603,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.234,0.000,-999999,-999999,-999999,-999999,0.7;0.980,0.980,177.2,29.441,29.441,29.427,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.200,0.000,-999999,-999999,-999999,-999999,0.6;1.000,1.000,178.3,29.337,29.337,29.323,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.201,0.000,-999999,-999999,-999999,-999999,0.6;1.020,1.020,179.4,29.545,29.545,29.531,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.209,0.000,-999999,-999999,-999999,-999999,0.7;1.040,1.040,182.9,28.875,28.875,28.861,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.211,0.000,-999999,-999999,-999999,-999999,0.7;1.060,1.060,186.6,28.099,28.099,28.084,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.209,0.000,-999999,-999999,-999999,-999999,0.7;1.080,1.080,189.1,28.277,28.277,28.262,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.199,0.000,-999999,-999999,-999999,-999999,0.6;1.100,1.100,190.3,29.088,29.088,29.073,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.190,0.000,-999999,-999999,-999999,-999999,0.6;1.120,1.120,191.4,29.804,29.804,29.788,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.184,0.000,-999999,-999999,-999999,-999999,0.6;1.140,1.140,192.6,29.999,29.999,29.983,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.200,0.000,-999999,-999999,-999999,-999999,0.6;1.160,1.160,193.7,30.528,30.528,30.511,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.179,0.000,-999999,-999999,-999999,-999999,0.5;1.180,1.180,194.9,30.836,30.836,30.820,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.173,0.000,-999999,-999999,-999999,-999999,0.5;1.200,1.200,196.1,31.283,31.283,31.266,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.230,0.000,-999999,-999999,-999999,-999999,0.7;1.220,1.220,197.2,30.475,30.475,30.458,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.232,0.000,-999999,-999999,-999999,-999999,0.7;1.240,1.240,198.4,30.842,30.842,30.825,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.264,0.000,-999999,-999999,-999999,-999999,0.8;1.260,1.260,199.5,30.069,30.069,30.051,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.268,0.000,-999999,-999999,-999999,-999999,0.9;1.280,1.280,200.7,27.573,27.573,27.555,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.255,0.000,-999999,-999999,-999999,-999999,0.9;1.300,1.300,201.8,26.302,26.302,26.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.278,0.000,-999999,-999999,-999999,-999999,1.0;1.320,1.320,202.9,25.027,25.027,25.009,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.252,0.000,-999999,-999999,-999999,-999999,0.9;1.340,1.340,204.1,24.569,24.569,24.550,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.237,0.000,-999999,-999999,-999999,-999999,0.9;1.360,1.360,205.3,23.760,23.760,23.741,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.202,0.000,-999999,-999999,-999999,-999999,0.8;1.380,1.380,206.4,22.590,22.590,22.571,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.181,0.000,-999999,-999999,-999999,-999999,0.7;1.400,1.400,207.6,22.282,22.282,22.263,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.160,0.000,-999999,-999999,-999999,-999999,0.6;1.420,1.420,208.7,22.002,22.002,21.983,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.145,0.000,-999999,-999999,-999999,-999999,0.6;1.440,1.440,209.8,21.497,21.497,21.477,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.161,0.000,-999999,-999999,-999999,-999999,0.7;1.460,1.460,213.1,20.279,20.279,20.259,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.157,0.000,-999999,-999999,-999999,-999999,0.7;1.480,1.480,216.9,18.958,18.958,18.937,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.152,0.000,-999999,-999999,-999999,-999999,0.7;1.500,1.500,220.7,17.637,17.637,17.616,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.151,0.000,-999999,-999999,-999999,-999999,0.8;1.520,1.520,222.3,16.956,16.956,16.935,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.151,0.000,-999999,-999999,-999999,-999999,0.9;1.540,1.540,223.4,16.402,16.402,16.380,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.153,0.000,-999999,-999999,-999999,-999999,0.9;1.560,1.560,224.5,15.558,15.558,15.536,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.154,0.000,-999999,-999999,-999999,-999999,0.9;1.580,1.580,225.6,14.755,14.755,14.733,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.151,0.000,-999999,-999999,-999999,-999999,1.0;1.600,1.600,226.6,13.971,13.971,13.949,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.149,0.000,-999999,-999999,-999999,-999999,1.0;1.620,1.620,227.7,13.194,13.194,13.171,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.146,0.000,-999999,-999999,-999999,-999999,1.0;1.640,1.640,228.8,12.433,12.433,12.410,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.141,0.000,-999999,-999999,-999999,-999999,1.1;1.660,1.660,229.9,11.591,11.591,11.568,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,1.1;1.680,1.680,231.0,10.754,10.754,10.730,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.132,0.000,-999999,-999999,-999999,-999999,1.2;1.700,1.700,232.1,9.887,9.887,9.863,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.128,0.000,-999999,-999999,-999999,-999999,1.2;1.720,1.720,233.1,9.073,9.073,9.049,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.121,0.000,-999999,-999999,-999999,-999999,1.2;1.740,1.740,234.2,8.262,8.262,8.238,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.113,0.000,-999999,-999999,-999999,-999999,1.3;1.760,1.760,235.3,7.569,7.569,7.544,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,1.3;1.780,1.780,236.3,6.863,6.863,6.839,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.096,0.000,-999999,-999999,-999999,-999999,1.3;1.800,1.800,237.4,6.261,6.261,6.236,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.086,0.000,-999999,-999999,-999999,-999999,1.3;1.820,1.820,238.5,5.637,5.637,5.611,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.078,0.000,-999999,-999999,-999999,-999999,1.3;1.840,1.840,239.6,4.932,4.932,4.906,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.071,0.000,-999999,-999999,-999999,-999999,1.3;1.860,1.860,240.6,4.170,4.170,4.144,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.065,0.000,-999999,-999999,-999999,-999999,1.5;1.880,1.880,241.7,3.431,3.431,3.405,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,1.7;1.900,1.900,242.8,2.709,2.709,2.683,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.061,0.000,-999999,-999999,-999999,-999999,1.9;1.920,1.920,243.8,2.181,2.181,2.154,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.060,0.000,-999999,-999999,-999999,-999999,2.2;1.940,1.940,244.9,1.786,1.786,1.758,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.058,0.000,-999999,-999999,-999999,-999999,2.7;1.960,1.960,246.0,1.518,1.518,1.490,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,3.0;1.980,1.980,247.1,1.334,1.334,1.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,3.1;2.000,2.000,248.1,1.187,1.187,1.159,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,3.1;2.020,2.020,249.2,1.048,1.048,1.020,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,3.1;2.040,2.040,250.2,0.930,0.930,0.902,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,3.0;2.060,2.060,252.9,0.851,0.851,0.822,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,2.8;2.080,2.080,256.0,0.784,0.784,0.755,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,2.7;2.100,2.100,259.1,0.720,0.720,0.691,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,2.6;2.120,2.120,260.1,0.701,0.701,0.672,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.6;2.140,2.140,261.2,0.695,0.695,0.665,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.5;2.160,2.160,262.3,0.675,0.675,0.645,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.5;2.180,2.180,263.4,0.657,0.657,0.627,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,3.1;2.200,2.200,264.4,0.650,0.650,0.619,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,4.1;2.220,2.220,265.5,0.707,0.707,0.676,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,4.8;2.240,2.240,266.6,0.737,0.737,0.706,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,5.1;2.260,2.260,267.7,0.819,0.819,0.787,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,5.5;2.280,2.280,268.7,0.856,0.856,0.824,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,5.6;2.300,2.300,269.8,0.874,0.874,0.842,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,5.6;2.320,2.320,270.9,0.916,0.916,0.884,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,5.7;2.340,2.340,272.0,0.878,0.878,0.845,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,5.9;2.360,2.360,273.1,0.865,0.865,0.832,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,6.3;2.380,2.380,274.1,0.849,0.849,0.815,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.054,0.000,-999999,-999999,-999999,-999999,6.6;2.400,2.400,275.2,0.795,0.795,0.762,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.054,0.000,-999999,-999999,-999999,-999999,6.7;2.420,2.420,276.3,0.720,0.720,0.687,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,6.9;2.440,2.440,277.3,0.654,0.654,0.620,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,7.1;2.460,2.460,278.4,0.577,0.577,0.543,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,7.8;2.480,2.480,282.3,0.520,0.520,0.485,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,8.2;2.500,2.500,286.3,0.463,0.463,0.428,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,8.3;2.520,2.520,289.7,0.412,0.412,0.377,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,8.1;2.540,2.540,290.8,0.379,0.379,0.344,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,7.8;2.560,2.560,291.8,0.369,0.369,0.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,7.0;2.580,2.580,292.9,0.364,0.364,0.328,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,6.0;2.600,2.600,294.0,0.357,0.357,0.321,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,5.4;2.620,2.620,295.1,0.364,0.364,0.328,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,5.2;2.640,2.640,296.2,0.368,0.368,0.331,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,5.5;2.660,2.660,297.2,0.375,0.375,0.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,5.8;2.680,2.680,298.3,0.386,0.386,0.348,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,5.9;2.700,2.700,299.4,0.396,0.396,0.358,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,5.9;2.720,2.720,300.5,0.396,0.396,0.358,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,6.1;2.740,2.740,301.6,0.367,0.367,0.329,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,6.3;2.760,2.760,302.6,0.351,0.351,0.313,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,6.6;2.780,2.780,303.7,0.353,0.353,0.314,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,7.1;2.800,2.800,304.8,0.344,0.344,0.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,7.3;2.820,2.820,305.8,0.339,0.339,0.300,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,7.4;2.840,2.840,306.9,0.340,0.340,0.300,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,7.5;2.860,2.860,308.0,0.333,0.333,0.293,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,7.3;2.880,2.880,309.1,0.330,0.330,0.290,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,7.0;2.900,2.900,310.2,0.335,0.335,0.295,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,6.4;2.920,2.920,311.3,0.354,0.354,0.313,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,6.4;2.940,2.940,312.3,0.417,0.417,0.376,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,7.2;2.960,2.960,313.4,0.531,0.531,0.490,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,8.2;2.980,2.980,314.5,0.635,0.635,0.593,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,8.9;3.000,3.000,315.6,0.696,0.696,0.654,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.060,0.000,-999999,-999999,-999999,-999999,10.1;3.020,3.020,316.6,0.658,0.658,0.615,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.066,0.000,-999999,-999999,-999999,-999999,10.5;3.040,3.040,317.7,0.668,0.668,0.625,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.071,0.000,-999999,-999999,-999999,-999999,10.8;3.060,3.060,318.8,0.679,0.679,0.636,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.076,0.000,-999999,-999999,-999999,-999999,11.2;3.080,3.080,319.8,0.691,0.691,0.648,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.074,0.000,-999999,-999999,-999999,-999999,10.7;3.100,3.100,321.8,0.743,0.743,0.700,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.068,0.000,-999999,-999999,-999999,-999999,10.2;3.120,3.120,325.0,0.703,0.703,0.659,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,9.6;3.140,3.140,328.2,0.663,0.663,0.619,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.060,0.000,-999999,-999999,-999999,-999999,9.1;3.160,3.160,330.2,0.600,0.600,0.556,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,8.7;3.180,3.180,331.3,0.615,0.615,0.571,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,8.6;3.200,3.200,332.3,0.641,0.641,0.597,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,8.6;3.220,3.220,333.4,0.661,0.661,0.616,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,8.8;3.240,3.240,334.4,0.652,0.652,0.606,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.059,0.000,-999999,-999999,-999999,-999999,9.4;3.260,3.260,335.6,0.625,0.625,0.579,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,10.0;3.280,3.280,336.7,0.606,0.606,0.560,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.066,0.000,-999999,-999999,-999999,-999999,10.7;3.300,3.300,337.7,0.597,0.597,0.550,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.066,0.000,-999999,-999999,-999999,-999999,11.1;3.320,3.320,338.8,0.583,0.583,0.537,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.065,0.000,-999999,-999999,-999999,-999999,11.3;3.340,3.340,339.9,0.559,0.559,0.512,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,11.3;3.360,3.360,340.9,0.521,0.521,0.474,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.058,0.000,-999999,-999999,-999999,-999999,11.0;3.380,3.380,342.1,0.481,0.481,0.433,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,10.6;3.400,3.400,343.1,0.445,0.445,0.397,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,10.1;3.420,3.420,344.2,0.407,0.407,0.359,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,9.6;3.440,3.440,345.3,0.385,0.385,0.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,9.0;3.460,3.450,346.3,0.367,0.367,0.318,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,8.4;3.480,3.470,347.4,0.353,0.353,0.304,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,8.2;3.500,3.490,351.3,0.341,0.341,0.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,7.8;3.520,3.510,355.2,0.331,0.331,0.281,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,7.6;3.540,3.530,359.1,0.320,0.320,0.270,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,7.4;3.560,3.550,360.2,0.312,0.312,0.262,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,7.2;3.580,3.570,361.2,0.308,0.308,0.258,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,6.8;3.600,3.590,362.3,0.310,0.310,0.260,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,6.6;3.620,3.610,363.4,0.300,0.300,0.249,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,6.5;3.640,3.630,364.4,0.292,0.292,0.241,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,6.6;3.660,3.650,365.5,0.295,0.295,0.243,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,6.6;3.680,3.670,366.6,0.296,0.296,0.245,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,6.6;3.700,3.690,367.7,0.285,0.285,0.234,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,6.6;3.720,3.710,368.8,0.275,0.275,0.223,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,6.6;3.740,3.730,369.9,0.268,0.268,0.216,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,6.5;3.760,3.750,371.0,0.262,0.262,0.210,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,6.5;3.780,3.770,372.0,0.260,0.260,0.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,6.5;3.800,3.790,373.1,0.254,0.254,0.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,6.5;3.820,3.810,374.2,0.252,0.252,0.198,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,6.6;3.840,3.830,375.2,0.256,0.256,0.203,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,6.5;3.860,3.850,376.3,0.274,0.274,0.220,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,6.8;3.880,3.870,377.4,0.289,0.289,0.235,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,7.0;3.900,3.890,378.5,0.301,0.301,0.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,7.3;3.920,3.910,379.6,0.299,0.299,0.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,7.2;3.940,3.930,380.7,0.283,0.283,0.228,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,7.1;3.960,3.950,381.7,0.269,0.269,0.213,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,7.0;3.980,3.970,382.8,0.255,0.255,0.200,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,7.0;4.000,3.990,383.9,0.250,0.250,0.194,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,7.0;4.020,4.010,384.9,0.251,0.251,0.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,7.0;4.040,4.030,386.0,0.258,0.258,0.202,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,6.9;4.060,4.050,387.1,0.259,0.259,0.203,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,6.9;4.080,4.070,388.2,0.256,0.256,0.199,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,7.0;4.100,4.090,389.3,0.249,0.249,0.191,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,6.8;4.120,4.110,391.0,0.249,0.249,0.191,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,6.7;4.140,4.130,394.5,0.257,0.257,0.199,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,6.7;4.160,4.150,397.9,0.265,0.265,0.206,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,7.0;4.180,4.170,400.1,0.277,0.277,0.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,7.4;4.200,4.190,401.2,0.298,0.298,0.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,8.0;4.220,4.210,402.3,0.324,0.324,0.265,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,8.9;4.240,4.230,403.3,0.353,0.353,0.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,10.0;4.260,4.250,404.4,0.387,0.387,0.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,10.6;4.280,4.270,405.5,0.402,0.402,0.342,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,11.2;4.300,4.290,406.6,0.411,0.411,0.351,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,11.5;4.320,4.310,407.7,0.404,0.404,0.344,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,11.6;4.340,4.330,408.8,0.402,0.402,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,11.8;4.360,4.350,409.8,0.396,0.396,0.335,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,12.1;4.380,4.370,410.9,0.392,0.392,0.330,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,12.2;4.400,4.390,412.0,0.394,0.394,0.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,12.2;4.420,4.410,413.1,0.395,0.395,0.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,12.4;4.440,4.430,414.2,0.391,0.391,0.328,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,12.6;4.460,4.450,415.2,0.385,0.385,0.323,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,12.6;4.480,4.470,416.3,0.383,0.383,0.321,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,12.5;4.500,4.490,420.2,0.390,0.390,0.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,12.3;4.520,4.510,424.8,0.398,0.398,0.335,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,12.1;4.540,4.530,428.7,0.404,0.404,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,11.9;4.560,4.550,429.8,0.409,0.409,0.346,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,11.7;4.580,4.570,430.8,0.416,0.416,0.352,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,11.6;4.600,4.590,431.9,0.424,0.424,0.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,11.7;4.620,4.610,433.0,0.433,0.433,0.368,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,11.6;4.640,4.630,434.1,0.442,0.442,0.377,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,11.5;4.660,4.650,435.2,0.451,0.451,0.386,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,11.4;4.680,4.670,436.3,0.461,0.461,0.396,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,11.3;4.700,4.690,437.3,0.475,0.475,0.409,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,11.3;4.720,4.710,438.4,0.477,0.477,0.411,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,11.2;4.740,4.730,439.5,0.460,0.460,0.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,11.0;4.760,4.750,440.6,0.426,0.426,0.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,10.5;4.780,4.770,441.7,0.391,0.391,0.324,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,10.0;4.800,4.790,442.7,0.351,0.351,0.284,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,9.3;4.820,4.810,443.8,0.321,0.321,0.253,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,8.5;4.840,4.830,444.9,0.297,0.297,0.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,7.5;4.860,4.850,445.9,0.280,0.280,0.213,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,6.5;4.880,4.870,447.1,0.271,0.271,0.203,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,5.8;4.900,4.890,448.1,0.270,0.270,0.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,5.6;4.920,4.910,449.2,0.277,0.277,0.208,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,5.8;4.940,4.930,450.3,0.289,0.289,0.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,5.9;4.960,4.950,451.4,0.300,0.300,0.231,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,6.0;4.980,4.970,452.4,0.307,0.307,0.237,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,6.0;5.000,4.990,453.5,0.307,0.307,0.237,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,6.2;5.020,5.010,454.6,0.322,0.322,0.252,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,6.4;5.040,5.030,455.7,0.354,0.354,0.284,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,6.6;5.060,5.050,456.7,0.387,0.387,0.317,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,6.8;5.080,5.070,457.8,0.408,0.408,0.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,6.9;5.100,5.090,458.9,0.412,0.412,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,6.9;5.120,5.110,461.8,0.417,0.417,0.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,6.8;5.140,5.130,465.0,0.423,0.423,0.351,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,6.9;5.160,5.150,467.4,0.429,0.429,0.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,6.9;5.180,5.170,468.5,0.432,0.432,0.359,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,7.1;5.200,5.190,469.6,0.407,0.407,0.335,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,7.2;5.220,5.210,470.6,0.395,0.395,0.322,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,7.1;5.240,5.230,471.7,0.398,0.398,0.325,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,7.0;5.260,5.250,472.8,0.391,0.391,0.318,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,6.8;5.280,5.270,473.9,0.363,0.363,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,6.5;5.300,5.290,474.9,0.367,0.367,0.293,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,6.1;5.320,5.310,476.1,0.373,0.373,0.299,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,5.7;5.340,5.330,477.1,0.357,0.357,0.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,5.9;5.360,5.350,478.2,0.329,0.329,0.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,6.1;5.380,5.370,479.3,0.306,0.306,0.231,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,5.9;5.400,5.390,480.3,0.300,0.300,0.224,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,5.6;5.420,5.410,481.4,0.291,0.291,0.215,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,5.5;5.440,5.430,482.5,0.270,0.270,0.194,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,5.4;5.460,5.450,483.6,0.266,0.266,0.190,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,5.4;5.480,5.470,484.6,0.270,0.270,0.193,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,5.1;5.500,5.490,486.4,0.291,0.291,0.214,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,4.4;5.520,5.510,490.9,0.349,0.349,0.272,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.7;5.540,5.530,495.4,0.407,0.407,0.330,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.4;5.560,5.550,497.3,0.457,0.457,0.379,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.1;5.580,5.570,498.4,0.492,0.492,0.414,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.8;5.600,5.590,499.4,0.515,0.515,0.436,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.6;5.620,5.610,500.5,0.574,0.574,0.496,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,2.5;5.640,5.630,501.6,0.572,0.572,0.493,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,2.3;5.660,5.650,502.7,0.564,0.564,0.485,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.2;5.680,5.670,503.8,0.590,0.590,0.511,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.1;5.700,5.690,504.8,0.635,0.635,0.556,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,1.7;5.720,5.710,505.9,0.756,0.756,0.676,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,1.4;5.740,5.730,507.0,0.919,0.919,0.839,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,1.4;5.760,5.750,508.1,1.011,1.011,0.930,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,1.3;5.780,5.770,509.1,1.092,1.092,1.011,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,1.2;5.800,5.790,510.2,1.216,1.216,1.135,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,1.3;5.820,5.810,511.3,1.321,1.321,1.239,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.3;5.840,5.830,512.3,1.393,1.393,1.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,1.4;5.860,5.850,513.4,1.427,1.427,1.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,1.4;5.880,5.870,514.5,1.448,1.448,1.365,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,1.4;5.900,5.890,515.6,1.470,1.470,1.387,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,1.5;5.920,5.910,516.7,1.439,1.439,1.356,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,1.5;5.940,5.930,517.7,1.387,1.387,1.304,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,1.5;5.960,5.950,518.8,1.350,1.350,1.266,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,1.4;5.980,5.970,519.9,1.353,1.353,1.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,1.5;6.000,5.990,520.9,1.348,1.348,1.264,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,1.5;6.020,6.010,522.0,1.353,1.353,1.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,1.5;6.040,6.030,523.1,1.321,1.321,1.237,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,1.5;6.060,6.050,524.2,1.313,1.313,1.228,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,1.4;6.080,6.070,525.2,1.393,1.393,1.308,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,1.4;6.100,6.090,526.3,1.468,1.468,1.383,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,1.6;6.120,6.110,529.1,1.370,1.370,1.284,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,1.8;6.140,6.130,532.4,1.245,1.245,1.160,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,1.9;6.160,6.150,534.9,1.122,1.122,1.036,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,1.7;6.180,6.170,535.9,1.087,1.087,1.001,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,1.6;6.200,6.190,537.0,1.183,1.183,1.096,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,1.5;6.220,6.210,538.1,1.289,1.289,1.202,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,1.4;6.240,6.230,539.2,1.272,1.272,1.184,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.4;6.260,6.250,540.2,1.193,1.193,1.106,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.4;6.280,6.270,541.3,1.125,1.125,1.037,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.4;6.300,6.290,542.4,1.073,1.073,0.985,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.5;6.320,6.310,543.5,1.028,1.028,0.940,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,1.7;6.340,6.330,544.6,0.970,0.970,0.881,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,1.9;6.360,6.350,545.7,0.905,0.905,0.816,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,1.9;6.380,6.370,546.7,0.888,0.888,0.798,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.7;6.400,6.390,547.8,0.914,0.914,0.824,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,1.6;6.420,6.410,548.9,0.931,0.931,0.842,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,1.6;6.440,6.430,549.9,0.885,0.885,0.795,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,1.6;6.460,6.450,551.1,0.803,0.803,0.713,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,1.5;6.480,6.470,552.1,0.728,0.728,0.637,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,1.6;6.500,6.490,553.6,0.661,0.661,0.570,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,1.9;6.520,6.510,557.7,0.638,0.638,0.547,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,1.9;6.540,6.530,561.8,0.615,0.615,0.524,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,1.8;6.560,6.550,564.5,0.622,0.622,0.530,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,1.7;6.580,6.570,565.6,0.640,0.640,0.548,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.6;6.600,6.590,566.6,0.631,0.631,0.538,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.7;6.620,6.610,567.7,0.612,0.612,0.520,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.6;6.640,6.630,568.8,0.573,0.573,0.480,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.4;6.660,6.650,569.9,0.544,0.544,0.451,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.5;6.680,6.670,570.9,0.518,0.518,0.425,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.8;6.700,6.690,572.0,0.493,0.493,0.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.9;6.720,6.710,573.1,0.434,0.434,0.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.0;6.740,6.730,574.2,0.448,0.448,0.354,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.7;6.760,6.750,575.3,0.535,0.535,0.440,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.8;6.780,6.770,576.4,0.562,0.562,0.467,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.8;6.800,6.790,577.4,0.532,0.532,0.437,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.8;6.820,6.810,578.5,0.500,0.500,0.405,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.7;6.840,6.830,579.6,0.532,0.532,0.437,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.7;6.860,6.850,580.7,0.597,0.597,0.501,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.8;6.880,6.870,581.7,0.607,0.607,0.511,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.8;6.900,6.890,582.8,0.573,0.573,0.477,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.8;6.920,6.910,583.9,0.531,0.531,0.435,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.7;6.940,6.930,585.0,0.480,0.480,0.383,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.9;6.960,6.950,586.1,0.408,0.408,0.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.2;6.980,6.970,587.1,0.372,0.372,0.274,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.4;7.000,6.990,588.2,0.374,0.374,0.276,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.5;7.020,7.010,589.3,0.386,0.386,0.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.4;7.040,7.030,590.4,0.413,0.413,0.315,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.3;7.060,7.050,591.4,0.452,0.452,0.354,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,2.1;7.080,7.070,592.5,0.474,0.474,0.375,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.9;7.100,7.090,593.6,0.439,0.439,0.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.9;7.120,7.110,595.6,0.409,0.409,0.309,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.9;7.140,7.130,598.4,0.383,0.383,0.284,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.0;7.160,7.150,601.1,0.358,0.358,0.258,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.1;7.180,7.170,603.1,0.345,0.345,0.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.1;7.200,7.190,604.1,0.350,0.350,0.250,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.2;7.220,7.210,605.2,0.351,0.351,0.250,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.3;7.240,7.230,606.2,0.360,0.360,0.259,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.3;7.260,7.250,607.3,0.373,0.373,0.271,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.3;7.280,7.270,608.4,0.369,0.369,0.267,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,2.5;7.300,7.290,609.5,0.363,0.363,0.261,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.8;7.320,7.310,610.6,0.368,0.368,0.265,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.8;7.340,7.330,611.7,0.385,0.385,0.282,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.8;7.360,7.350,612.7,0.386,0.386,0.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.9;7.380,7.370,613.8,0.364,0.364,0.261,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.9;7.400,7.390,614.9,0.358,0.358,0.255,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.9;7.420,7.410,616.0,0.351,0.351,0.248,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.8;7.440,7.430,617.1,0.353,0.353,0.249,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.8;7.460,7.450,618.1,0.353,0.353,0.249,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.9;7.480,7.470,619.2,0.355,0.355,0.250,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,3.1;7.500,7.490,622.3,0.373,0.373,0.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.9;7.520,7.510,626.1,0.393,0.393,0.287,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.8;7.540,7.530,629.9,0.412,0.412,0.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.8;7.560,7.550,631.4,0.378,0.378,0.273,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,3.0;7.580,7.570,632.6,0.367,0.367,0.261,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,3.0;7.600,7.590,633.7,0.363,0.363,0.257,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.1;7.620,7.610,634.8,0.369,0.369,0.263,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,3.0;7.640,7.630,635.9,0.363,0.363,0.256,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,3.0;7.660,7.650,637.1,0.371,0.371,0.264,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,3.0;7.680,7.670,638.2,0.375,0.375,0.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.0;7.700,7.690,639.3,0.371,0.371,0.263,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.1;7.720,7.710,640.4,0.381,0.381,0.273,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.2;7.740,7.730,641.6,0.391,0.391,0.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.0;7.760,7.750,642.7,0.401,0.401,0.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.0;7.780,7.770,643.8,0.406,0.406,0.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,3.1;7.800,7.790,644.9,0.404,0.404,0.295,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,3.1;7.820,7.810,646.1,0.425,0.425,0.316,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.2;7.840,7.830,647.2,0.440,0.440,0.330,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.4;7.860,7.850,648.3,0.446,0.446,0.336,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.6;7.880,7.870,649.4,0.450,0.450,0.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.6;7.900,7.890,650.6,0.453,0.453,0.343,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.8;7.920,7.910,651.7,0.453,0.453,0.342,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.8;7.940,7.930,652.8,0.448,0.448,0.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,4.0;7.960,7.950,653.9,0.455,0.455,0.344,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,4.1;7.980,7.970,655.1,0.457,0.457,0.346,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,4.0;8.000,7.990,656.2,0.461,0.461,0.349,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,4.0;8.020,8.010,657.3,0.459,0.459,0.347,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,4.0;8.040,8.030,658.4,0.448,0.448,0.336,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,4.2;8.060,8.050,659.6,0.446,0.446,0.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,4.3;8.080,8.070,660.7,0.458,0.458,0.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,4.3;8.100,8.090,661.8,0.484,0.484,0.370,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,4.2;8.120,8.110,663.8,0.508,0.508,0.395,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.2;8.140,8.130,667.5,0.534,0.534,0.420,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,4.4;8.160,8.150,671.1,0.557,0.557,0.443,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,4.7;8.180,8.170,672.4,0.521,0.521,0.407,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,4.9;8.200,8.190,673.8,0.506,0.506,0.391,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,5.0;8.220,8.210,675.1,0.488,0.488,0.373,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,5.1;8.240,8.230,676.6,0.469,0.469,0.353,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,5.0;8.260,8.250,677.9,0.461,0.461,0.346,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,4.9;8.280,8.270,679.4,0.467,0.467,0.351,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,4.7;8.300,8.290,680.7,0.472,0.472,0.356,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,4.6;8.320,8.310,682.1,0.472,0.472,0.356,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.3;8.340,8.330,683.6,0.483,0.483,0.367,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,4.2;8.360,8.350,684.9,0.480,0.480,0.363,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,4.2;8.380,8.370,686.3,0.473,0.473,0.356,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,4.1;8.400,8.390,687.7,0.473,0.473,0.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,4.1;8.420,8.410,689.1,0.484,0.484,0.367,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.1;8.440,8.430,690.4,0.494,0.494,0.376,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.1;8.460,8.450,691.9,0.541,0.541,0.423,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.1;8.480,8.470,693.2,0.539,0.539,0.421,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.1;8.500,8.490,695.5,0.512,0.512,0.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.1;8.520,8.510,699.9,0.512,0.512,0.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.0;8.540,8.530,704.3,0.513,0.513,0.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,3.9;8.560,8.550,705.9,0.512,0.512,0.392,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.7;8.580,8.570,707.0,0.505,0.505,0.385,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.6;8.600,8.590,708.1,0.501,0.501,0.381,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.5;8.620,8.610,709.2,0.489,0.489,0.369,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.5;8.640,8.630,710.2,0.490,0.490,0.369,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.4;8.660,8.650,711.3,0.490,0.490,0.369,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.4;8.680,8.670,712.4,0.487,0.487,0.366,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.3;8.700,8.690,713.5,0.486,0.486,0.364,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.4;8.720,8.710,714.6,0.484,0.484,0.362,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.3;8.740,8.730,715.7,0.473,0.473,0.351,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.3;8.760,8.750,716.7,0.459,0.459,0.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.3;8.780,8.770,717.8,0.446,0.446,0.323,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.2;8.800,8.790,718.9,0.440,0.440,0.317,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.2;8.820,8.810,720.0,0.435,0.435,0.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.1;8.840,8.830,721.1,0.434,0.434,0.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.3;8.860,8.850,722.1,0.443,0.443,0.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.1;8.880,8.870,723.2,0.446,0.446,0.322,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,3.0;8.900,8.890,724.3,0.453,0.453,0.328,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,3.0;8.920,8.910,725.4,0.433,0.433,0.309,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,2.9;8.940,8.930,726.4,0.426,0.426,0.301,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,2.8;8.960,8.950,727.6,0.421,0.421,0.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,2.9;8.980,8.970,728.6,0.421,0.421,0.295,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,2.9;9.000,8.990,729.7,0.425,0.425,0.299,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,2.7;9.020,9.010,730.8,0.432,0.432,0.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,2.7;9.040,9.030,731.8,0.446,0.446,0.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,2.9;9.060,9.050,732.9,0.463,0.463,0.336,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,2.8;9.080,9.070,734.0,0.487,0.487,0.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,2.8;9.100,9.090,735.1,0.476,0.476,0.349,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.9;9.120,9.110,736.5,0.478,0.478,0.351,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.1;9.140,9.130,739.8,0.580,0.580,0.452,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,2.8;9.160,9.150,743.2,0.681,0.681,0.553,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.8;9.180,9.170,745.6,0.757,0.757,0.628,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,2.2;9.200,9.190,746.8,0.767,0.767,0.639,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,2.3;9.220,9.210,748.0,0.813,0.813,0.684,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.1;9.240,9.230,749.3,0.940,0.940,0.811,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.0;9.260,9.250,750.4,1.109,1.109,0.980,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,1.9;9.280,9.270,751.7,1.150,1.150,1.020,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,1.9;9.300,9.290,752.9,1.164,1.164,1.034,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,2.0;9.320,9.310,754.2,1.086,1.086,0.956,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,2.0;9.340,9.330,755.4,0.990,0.990,0.860,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,1.8;9.360,9.350,756.6,0.870,0.870,0.740,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,1.9;9.380,9.370,757.9,0.974,0.974,0.843,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,1.8;9.400,9.390,759.1,1.340,1.340,1.208,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,1.9;9.420,9.410,760.3,1.456,1.456,1.324,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,1.8;9.440,9.430,761.6,1.210,1.210,1.078,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,1.7;9.460,9.450,762.8,1.123,1.123,0.991,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,1.6;9.480,9.470,764.0,1.373,1.373,1.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,1.4;9.500,9.490,766.9,1.491,1.491,1.359,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,1.9;9.520,9.510,770.8,1.410,1.410,1.277,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,2.3;9.540,9.530,774.7,1.328,1.328,1.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,2.6;9.560,9.550,776.4,1.056,1.056,0.922,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,2.5;9.580,9.570,777.4,0.817,0.817,0.683,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,2.2;9.600,9.590,778.6,0.668,0.668,0.534,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,2.3;9.620,9.610,779.6,0.845,0.845,0.711,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,2.1;9.640,9.630,780.7,1.260,1.260,1.126,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,2.1;9.660,9.650,781.8,1.415,1.415,1.280,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,1.8;9.680,9.670,782.9,1.367,1.367,1.232,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,1.6;9.700,9.690,784.0,1.389,1.389,1.253,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,1.4;9.720,9.710,785.1,1.739,1.739,1.604,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,1.3;9.740,9.730,786.1,2.099,2.099,1.963,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,1.4;9.760,9.750,787.2,2.222,2.222,2.085,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,1.4;9.780,9.770,788.3,2.113,2.113,1.976,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,1.4;9.800,9.790,789.4,1.835,1.835,1.698,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,1.6;9.820,9.810,790.4,1.497,1.497,1.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,1.9;9.840,9.830,791.5,1.193,1.193,1.055,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,2.2;9.860,9.850,792.6,1.051,1.051,0.913,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,2.1;9.880,9.870,793.6,1.080,1.080,0.942,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,2.0;9.900,9.890,794.7,1.133,1.133,0.994,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,2.0;9.920,9.910,795.8,1.128,1.128,0.989,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,1.8;9.940,9.930,796.9,1.191,1.191,1.052,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,1.6;9.960,9.950,798.0,1.309,1.309,1.169,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,1.7;9.980,9.970,799.1,1.357,1.357,1.217,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,1.9;10.000,9.990,800.2,1.282,1.282,1.142,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,2.0;10.020,10.010,801.2,1.197,1.197,1.057,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,2.1;10.040,10.030,802.3,1.148,1.148,1.008,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,2.5;10.060,10.050,803.4,1.090,1.090,0.949,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,2.8;10.080,10.070,804.4,0.919,0.919,0.778,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,3.2;10.100,10.090,805.5,0.772,0.772,0.631,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,3.5;10.120,10.110,806.6,0.648,0.648,0.507,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,3.4;10.140,10.130,809.6,0.691,0.691,0.549,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,2.8;10.160,10.150,812.5,0.734,0.734,0.592,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.7;10.180,10.170,815.2,0.794,0.794,0.652,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,3.1;10.200,10.190,816.3,1.010,1.010,0.868,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,3.0;10.220,10.210,817.3,0.997,0.997,0.854,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.7;10.240,10.230,818.4,0.812,0.812,0.668,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,2.2;10.260,10.250,819.5,0.610,0.610,0.467,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,2.0;10.280,10.270,820.6,0.751,0.751,0.608,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,1.8;10.300,10.290,821.7,1.253,1.253,1.109,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,1.6;10.320,10.310,822.8,1.713,1.713,1.569,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,1.4;10.340,10.330,823.8,1.712,1.712,1.567,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,1.5;10.360,10.350,824.9,1.493,1.493,1.348,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,1.7;10.380,10.370,826.0,1.268,1.268,1.123,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,2.0;10.400,10.390,827.1,1.075,1.075,0.930,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,2.3;10.420,10.410,828.2,0.969,0.969,0.823,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,2.4;10.440,10.430,829.2,0.987,0.987,0.841,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,2.2;10.460,10.450,830.3,1.113,1.113,0.966,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,2.1;10.480,10.470,831.4,1.277,1.277,1.130,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,2.0;10.500,10.490,832.5,1.606,1.606,1.459,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,1.8;10.520,10.510,837.5,1.691,1.691,1.544,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,1.9;10.540,10.530,842.7,1.764,1.764,1.617,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,2.1;10.560,10.550,845.4,1.603,1.603,1.455,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,2.3;10.580,10.570,846.8,1.342,1.342,1.194,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,2.3;10.600,10.590,848.2,1.179,1.179,1.031,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,2.6;10.620,10.610,849.6,1.097,1.097,0.948,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,2.8;10.640,10.630,851.1,1.011,1.011,0.863,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,2.9;10.660,10.650,852.4,0.932,0.932,0.783,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,2.6;10.680,10.670,853.9,0.910,0.910,0.761,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,2.1;10.700,10.690,855.3,1.017,1.017,0.867,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,1.7;10.720,10.710,856.7,1.280,1.280,1.130,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,1.5;10.740,10.730,858.1,1.485,1.485,1.335,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,1.6;10.760,10.750,859.6,1.477,1.477,1.326,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,1.8;10.780,10.770,861.0,1.336,1.336,1.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,2.0;10.800,10.790,862.4,1.158,1.158,1.007,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,2.3;10.820,10.810,863.8,1.068,1.068,0.917,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,2.4;10.840,10.830,865.2,1.010,1.010,0.859,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,2.4;10.860,10.850,866.6,1.015,1.015,0.863,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,2.2;10.880,10.860,868.1,1.111,1.111,0.959,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,2.0;10.900,10.880,869.3,1.190,1.190,1.037,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,1.9;10.920,10.900,870.4,1.213,1.213,1.060,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,1.9;10.940,10.920,871.5,1.204,1.204,1.051,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.0;10.960,10.940,872.6,1.168,1.168,1.015,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,1.7;10.980,10.960,873.7,1.073,1.073,0.919,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,1.8;11.000,10.980,874.7,1.116,1.116,0.962,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,1.9;11.020,11.000,875.8,1.276,1.276,1.122,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,2.1;11.040,11.020,876.9,1.349,1.349,1.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,2.4;11.060,11.040,877.9,1.194,1.194,1.039,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,2.4;11.080,11.060,879.0,1.022,1.022,0.867,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,2.3;11.100,11.080,880.1,0.941,0.941,0.786,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,2.1;11.120,11.100,881.2,0.960,0.960,0.805,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,2.5;11.140,11.120,882.7,1.014,1.014,0.858,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,2.5;11.160,11.140,885.9,1.118,1.118,0.962,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,2.4;11.180,11.160,889.2,1.222,1.222,1.066,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,2.3;11.200,11.180,891.1,1.178,1.178,1.021,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,2.4;11.220,11.200,892.2,1.087,1.087,0.930,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,2.5;11.240,11.220,893.3,1.049,1.049,0.892,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,2.7;11.260,11.240,894.4,0.942,0.942,0.785,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,2.7;11.280,11.260,895.4,0.821,0.821,0.663,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,2.9;11.300,11.280,896.5,0.720,0.720,0.562,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,2.7;11.320,11.300,897.6,0.742,0.742,0.583,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.7;11.340,11.320,898.7,0.792,0.792,0.634,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,2.7;11.360,11.340,899.8,0.811,0.811,0.652,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.2;11.380,11.360,900.8,0.882,0.882,0.723,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.1;11.400,11.380,901.9,0.904,0.904,0.744,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,2.5;11.420,11.400,903.0,0.898,0.898,0.738,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,2.4;11.440,11.420,904.1,0.901,0.901,0.741,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,2.3;11.460,11.440,905.2,0.951,0.951,0.791,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,2.2;11.480,11.460,906.2,1.096,1.096,0.936,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,2.1;11.500,11.480,909.2,1.165,1.165,1.004,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,2.6;11.520,11.500,912.7,1.162,1.162,1.001,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,2.8;11.540,11.520,916.3,1.159,1.159,0.998,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,2.7;11.560,11.540,918.2,1.047,1.047,0.886,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,2.2;11.580,11.560,919.3,1.051,1.051,0.889,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,1.9;11.600,11.580,920.4,1.332,1.332,1.170,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,2.0;11.620,11.600,921.6,1.688,1.688,1.525,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,2.0;11.640,11.620,922.7,1.731,1.731,1.568,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,2.0;11.660,11.640,923.8,1.542,1.542,1.379,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,2.4;11.680,11.660,924.9,1.353,1.353,1.190,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,2.6;11.700,11.680,926.1,1.074,1.074,0.911,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,2.7;11.720,11.700,927.1,0.856,0.856,0.692,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,2.7;11.740,11.720,928.3,0.711,0.711,0.547,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,3.2;11.760,11.740,929.4,0.722,0.722,0.558,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,3.3;11.780,11.760,930.5,0.813,0.813,0.648,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,3.0;11.800,11.780,931.6,0.845,0.845,0.680,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,2.6;11.820,11.800,932.7,0.838,0.838,0.673,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,2.5;11.840,11.820,933.8,0.829,0.829,0.664,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,2.8;11.860,11.840,934.9,0.806,0.806,0.640,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,2.8;11.880,11.860,936.1,0.774,0.774,0.608,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,3.1;11.900,11.880,937.2,0.702,0.702,0.535,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,3.1;11.920,11.900,938.3,0.598,0.598,0.432,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,2.7;11.940,11.920,939.4,0.589,0.589,0.422,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.6;11.960,11.940,940.5,0.665,0.665,0.498,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,2.8;11.980,11.960,941.6,0.763,0.763,0.595,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.7;12.000,11.980,942.7,0.832,0.832,0.664,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,2.4;12.020,12.000,943.8,0.741,0.741,0.573,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,2.2;12.040,12.020,944.9,0.669,0.669,0.500,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,2.6;12.060,12.040,946.0,0.730,0.730,0.562,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.9;12.080,12.060,947.1,0.866,0.866,0.697,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,3.3;12.100,12.080,948.2,0.920,0.920,0.751,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,3.2;12.120,12.100,951.1,0.856,0.856,0.687,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.9;12.140,12.120,954.9,0.773,0.773,0.603,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,2.8;12.160,12.140,958.6,0.690,0.690,0.520,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,3.2;12.180,12.160,959.6,0.650,0.650,0.479,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,3.4;12.200,12.180,960.7,0.644,0.644,0.473,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,2.9;12.220,12.200,961.8,0.682,0.682,0.512,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,3.0;12.240,12.220,962.8,0.696,0.696,0.525,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,3.0;12.260,12.240,963.9,0.704,0.704,0.533,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,1.9;12.280,12.260,965.0,0.714,0.714,0.543,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,1.7;12.300,12.280,966.1,0.718,0.718,0.546,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,1.7;12.320,12.300,967.2,1.368,1.368,1.196,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,2.5;12.340,12.320,968.3,1.909,1.909,1.737,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,2.7;12.360,12.340,969.3,1.930,1.930,1.757,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,2.0;12.380,12.360,970.4,1.608,1.608,1.435,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,1.6;12.400,12.380,971.5,1.474,1.474,1.300,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,1.2;12.420,12.400,972.6,2.103,2.103,1.930,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,1.1;12.440,12.420,973.7,3.950,3.950,3.776,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.1;12.460,12.440,974.8,5.732,5.732,5.558,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,1.0;12.480,12.460,975.9,6.338,6.338,6.163,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,1.0;12.500,12.480,978.1,5.827,5.827,5.653,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,1.1;12.520,12.500,982.3,4.986,4.986,4.811,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.061,0.000,-999999,-999999,-999999,-999999,1.3;12.540,12.520,986.4,4.145,4.145,3.970,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.071,0.000,-999999,-999999,-999999,-999999,1.8;12.560,12.540,988.7,3.239,3.239,3.063,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.079,0.000,-999999,-999999,-999999,-999999,2.5;12.580,12.560,989.7,2.427,2.427,2.251,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.081,0.000,-999999,-999999,-999999,-999999,3.2;12.600,12.580,990.8,1.911,1.911,1.735,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.074,0.000,-999999,-999999,-999999,-999999,3.1;12.620,12.600,991.9,1.523,1.523,1.347,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.064,0.000,-999999,-999999,-999999,-999999,2.9;12.640,12.620,993.0,1.327,1.327,1.151,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,3.3;12.660,12.640,994.1,1.347,1.347,1.170,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.059,0.000,-999999,-999999,-999999,-999999,3.4;12.680,12.660,995.1,1.588,1.588,1.411,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,2.8;12.700,12.680,996.2,1.767,1.767,1.589,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,2.0;12.720,12.700,997.3,1.938,1.938,1.760,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.8;12.740,12.720,998.4,2.201,2.201,2.023,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,1.4;12.760,12.740,999.4,2.578,2.578,2.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,1.2;12.780,12.760,1000.6,2.856,2.856,2.678,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.5;12.800,12.780,1001.6,2.732,2.732,2.553,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,1.7;12.820,12.800,1002.7,2.348,2.348,2.169,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,1.8;12.840,12.820,1003.7,1.963,1.963,1.783,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,1.7;12.860,12.840,1004.8,1.782,1.782,1.602,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.6;12.880,12.860,1005.9,1.749,1.749,1.569,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.4;12.900,12.880,1007.0,2.308,2.308,2.128,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.3;12.920,12.900,1008.1,3.093,3.093,2.912,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.1;12.940,12.920,1009.2,3.866,3.866,3.685,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.1;12.960,12.940,1010.2,4.370,4.370,4.189,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.0;12.980,12.960,1011.3,4.667,4.667,4.486,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.0;13.000,12.980,1012.4,4.716,4.716,4.534,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,1.0;13.020,13.000,1013.5,4.251,4.251,4.069,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,1.2;13.040,13.020,1014.6,3.653,3.653,3.471,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,1.3;13.060,13.040,1015.6,3.094,3.094,2.912,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,1.4;13.080,13.060,1016.7,2.692,2.692,2.509,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,1.4;13.100,13.080,1017.8,2.566,2.566,2.383,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,1.4;13.120,13.100,1019.5,2.830,2.830,2.647,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,1.2;13.140,13.120,1022.9,3.418,3.418,3.235,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,1.1;13.160,13.140,1026.3,4.007,4.007,3.823,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,1.1;13.180,13.160,1027.5,4.760,4.760,4.576,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,1.0;13.200,13.180,1028.6,5.113,5.113,4.928,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,1.0;13.220,13.200,1029.7,5.019,5.019,4.834,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,1.0;13.240,13.220,1030.7,4.646,4.646,4.461,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,0.9;13.260,13.240,1031.8,4.517,4.517,4.332,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,0.9;13.280,13.260,1032.9,4.725,4.725,4.540,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,1.0;13.300,13.280,1034.0,4.652,4.652,4.466,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,1.0;13.320,13.300,1035.1,4.139,4.139,3.952,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,1.0;13.340,13.320,1036.2,3.702,3.702,3.515,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.0;13.360,13.340,1037.3,3.430,3.430,3.243,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.0;13.380,13.360,1038.3,3.263,3.263,3.076,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.0;13.400,13.380,1039.4,3.001,3.001,2.814,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.2;13.420,13.400,1040.5,2.712,2.712,2.524,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.3;13.440,13.420,1041.6,2.413,2.413,2.225,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,1.4;13.460,13.440,1042.6,2.088,2.088,1.900,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,1.4;13.480,13.460,1043.7,1.830,1.830,1.642,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,1.4;13.500,13.480,1044.8,1.637,1.637,1.448,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.8;13.520,13.500,1048.2,1.397,1.397,1.208,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,2.2;13.540,13.520,1052.2,1.153,1.153,0.963,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,2.6;13.560,13.540,1056.1,0.914,0.914,0.724,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,3.0;13.580,13.560,1057.1,0.776,0.776,0.587,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,3.4;13.600,13.580,1058.2,0.711,0.711,0.521,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,3.3;13.620,13.600,1059.3,0.660,0.660,0.470,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.9;13.640,13.620,1060.4,0.621,0.621,0.430,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,2.8;13.660,13.640,1061.4,0.662,0.662,0.471,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.2;13.680,13.660,1062.5,0.726,0.726,0.535,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,1.7;13.700,13.680,1063.6,0.909,0.909,0.717,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,1.4;13.720,13.700,1064.7,1.354,1.354,1.162,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,1.3;13.740,13.720,1065.8,1.788,1.788,1.596,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,1.4;13.760,13.740,1066.9,1.980,1.980,1.788,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,1.6;13.780,13.760,1067.9,1.818,1.818,1.625,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,1.5;13.800,13.780,1069.1,1.619,1.619,1.426,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,1.2;13.820,13.800,1070.1,1.596,1.596,1.403,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,1.1;13.840,13.820,1071.2,1.938,1.938,1.745,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,1.0;13.860,13.840,1072.3,2.793,2.793,2.599,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,0.9;13.880,13.860,1073.3,3.741,3.741,3.547,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,0.9;13.900,13.880,1074.4,4.179,4.179,3.985,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,0.9;13.920,13.900,1075.5,4.181,4.181,3.986,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,0.8;13.940,13.920,1076.6,4.152,4.152,3.957,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,0.8;13.960,13.940,1077.7,3.981,3.981,3.786,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,0.9;13.980,13.960,1078.8,3.833,3.833,3.637,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,0.9;14.000,13.980,1079.9,3.916,3.916,3.720,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,0.9;14.020,14.000,1081.0,4.034,4.034,3.838,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.0;14.040,14.020,1082.1,4.013,4.013,3.816,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,0.9;14.060,14.040,1083.1,3.815,3.815,3.618,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.0;14.080,14.060,1084.2,3.527,3.527,3.331,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.0;14.100,14.080,1085.3,3.203,3.203,3.006,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,1.0;14.120,14.100,1086.3,2.940,2.940,2.743,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.0;14.140,14.120,1087.4,2.774,2.774,2.576,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.1;14.160,14.140,1090.7,2.655,2.655,2.457,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.2;14.180,14.160,1094.1,2.536,2.536,2.338,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,1.3;14.200,14.180,1096.3,2.453,2.453,2.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,1.3;14.220,14.200,1097.5,2.425,2.425,2.227,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.4;14.240,14.220,1098.8,2.422,2.422,2.223,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.5;14.260,14.240,1100.0,2.305,2.305,2.106,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.6;14.280,14.260,1101.3,2.099,2.099,1.899,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,1.3;14.300,14.280,1102.5,1.834,1.834,1.634,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,1.1;14.320,14.300,1103.8,2.002,2.002,1.802,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,1.2;14.340,14.320,1105.1,2.477,2.477,2.276,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,1.1;14.360,14.340,1106.3,2.960,2.960,2.760,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,1.0;14.380,14.360,1107.6,3.095,3.095,2.894,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,1.0;14.400,14.380,1108.8,3.137,3.137,2.935,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,1.0;14.420,14.400,1110.1,3.291,3.291,3.089,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,1.0;14.440,14.420,1111.3,3.285,3.285,3.083,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,1.0;14.460,14.440,1112.6,3.106,3.106,2.904,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,1.1;14.480,14.460,1113.8,2.797,2.797,2.594,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,1.1;14.500,14.480,1114.9,2.445,2.445,2.243,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,1.2;14.520,14.500,1119.1,2.278,2.278,2.075,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,1.3;14.540,14.520,1123.7,2.130,2.130,1.927,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,1.3;14.560,14.540,1126.9,2.037,2.037,1.834,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,1.4;14.580,14.560,1128.1,2.046,2.046,1.842,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,1.4;14.600,14.580,1129.3,1.974,1.974,1.770,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,1.4;14.620,14.600,1130.5,1.890,1.890,1.686,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,1.4;14.640,14.620,1131.7,1.811,1.811,1.606,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,1.3;14.660,14.640,1132.9,1.817,1.817,1.613,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,1.4;14.680,14.660,1134.1,1.918,1.918,1.713,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,1.3;14.700,14.680,1135.3,1.967,1.967,1.761,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,1.2;14.720,14.700,1136.4,2.161,2.161,1.955,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,1.2;14.740,14.720,1137.7,2.680,2.680,2.474,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,1.1;14.760,14.740,1138.8,3.275,3.275,3.069,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,1.0;14.780,14.760,1140.1,3.787,3.787,3.580,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,1.0;14.800,14.780,1141.3,3.931,3.931,3.724,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,1.0;14.820,14.800,1142.4,3.940,3.940,3.733,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,0.9;14.840,14.820,1143.6,3.884,3.884,3.676,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,0.9;14.860,14.840,1144.8,3.728,3.728,3.520,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,0.9;14.880,14.860,1145.9,3.467,3.467,3.259,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.0;14.900,14.880,1147.1,3.161,3.161,2.953,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,1.1;14.920,14.900,1148.3,2.818,2.818,2.609,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.2;14.940,14.920,1149.6,2.481,2.481,2.272,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.4;14.960,14.940,1150.7,2.247,2.247,2.038,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.6;14.980,14.960,1151.9,2.110,2.110,1.900,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,1.8;15.000,14.980,1153.1,2.014,2.014,1.804,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,2.0;15.020,15.000,1154.3,1.907,1.907,1.697,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,2.2;15.040,15.020,1155.4,1.760,1.760,1.550,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,2.3;15.060,15.040,1156.6,1.632,1.632,1.422,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,2.4;15.080,15.060,1157.8,1.577,1.577,1.366,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,2.4;15.100,15.080,1159.0,1.595,1.595,1.384,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,2.5;15.120,15.100,1160.2,1.569,1.569,1.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,2.2;15.140,15.120,1161.9,1.936,1.936,1.724,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,1.8;15.160,15.140,1165.1,2.912,2.912,2.700,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,1.5;15.180,15.160,1168.2,3.889,3.889,3.677,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,1.2;15.200,15.180,1169.8,4.697,4.697,4.484,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,1.0;15.220,15.200,1170.9,4.987,4.987,4.774,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,0.9;15.240,15.220,1171.9,5.146,5.146,4.933,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,0.9;15.260,15.240,1173.1,5.355,5.355,5.142,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,0.9;15.280,15.260,1174.1,5.567,5.567,5.354,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,0.8;15.300,15.280,1175.2,5.692,5.692,5.479,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,0.8;15.320,15.300,1176.3,5.782,5.782,5.568,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,0.8;15.340,15.320,1177.4,5.857,5.857,5.642,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,0.8;15.360,15.340,1178.5,5.870,5.870,5.655,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.054,0.000,-999999,-999999,-999999,-999999,0.9;15.380,15.360,1179.6,5.863,5.863,5.648,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,0.9;15.400,15.380,1180.7,5.852,5.852,5.637,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.058,0.000,-999999,-999999,-999999,-999999,0.9;15.420,15.400,1181.7,5.864,5.864,5.649,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,0.9;15.440,15.420,1182.8,5.884,5.884,5.668,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.054,0.000,-999999,-999999,-999999,-999999,0.9;15.460,15.440,1183.9,5.933,5.933,5.717,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,0.8;15.480,15.460,1185.0,6.020,6.020,5.804,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,0.8;15.500,15.480,1187.5,6.067,6.067,5.850,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,0.8;15.520,15.500,1191.4,6.085,6.085,5.868,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,0.8;15.540,15.520,1195.4,6.103,6.103,5.886,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,0.8;15.560,15.540,1196.9,6.197,6.197,5.980,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,0.8;15.580,15.560,1198.0,6.363,6.363,6.145,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,0.8;15.600,15.580,1199.1,6.629,6.629,6.411,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.054,0.000,-999999,-999999,-999999,-999999,0.8;15.620,15.600,1200.2,6.716,6.716,6.498,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,0.8;15.640,15.620,1201.2,6.698,6.698,6.480,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,0.8;15.660,15.640,1202.3,6.654,6.654,6.435,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,0.8;15.680,15.660,1203.4,6.646,6.646,6.427,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,0.8;15.700,15.680,1204.5,6.731,6.731,6.512,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,0.8;15.720,15.700,1205.6,6.985,6.985,6.765,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.060,0.000,-999999,-999999,-999999,-999999,0.8;15.740,15.720,1206.7,7.410,7.410,7.190,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,0.8;15.760,15.740,1207.7,7.846,7.846,7.626,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.065,0.000,-999999,-999999,-999999,-999999,0.8;15.780,15.760,1208.8,8.013,8.013,7.792,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.069,0.000,-999999,-999999,-999999,-999999,0.9;15.800,15.780,1209.9,7.930,7.930,7.709,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.074,0.000,-999999,-999999,-999999,-999999,0.9;15.820,15.800,1211.0,7.708,7.708,7.487,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.079,0.000,-999999,-999999,-999999,-999999,1.0;15.840,15.820,1212.1,7.308,7.308,7.087,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.082,0.000,-999999,-999999,-999999,-999999,1.1;15.860,15.840,1213.2,6.787,6.787,6.565,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.085,0.000,-999999,-999999,-999999,-999999,1.2;15.880,15.860,1214.2,6.214,6.214,5.992,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.087,0.000,-999999,-999999,-999999,-999999,1.4;15.900,15.880,1215.3,5.381,5.381,5.159,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.091,0.000,-999999,-999999,-999999,-999999,1.6;15.920,15.900,1216.4,4.377,4.377,4.154,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.097,0.000,-999999,-999999,-999999,-999999,2.0;15.940,15.920,1217.5,3.408,3.408,3.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.100,0.000,-999999,-999999,-999999,-999999,2.5;15.960,15.940,1218.6,2.616,2.616,2.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.107,0.000,-999999,-999999,-999999,-999999,3.3;15.980,15.960,1219.6,2.089,2.089,1.865,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.114,0.000,-999999,-999999,-999999,-999999,4.2;16.000,15.980,1220.7,1.708,1.708,1.485,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.117,0.000,-999999,-999999,-999999,-999999,5.3;16.020,16.000,1221.8,1.515,1.515,1.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.111,0.000,-999999,-999999,-999999,-999999,5.9;16.040,16.020,1222.8,1.361,1.361,1.137,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.099,0.000,-999999,-999999,-999999,-999999,6.1;16.060,16.040,1223.9,1.219,1.219,0.995,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.087,0.000,-999999,-999999,-999999,-999999,6.2;16.080,16.060,1225.0,1.051,1.051,0.826,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.079,0.000,-999999,-999999,-999999,-999999,6.3;16.100,16.080,1226.2,0.984,0.984,0.759,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.074,0.000,-999999,-999999,-999999,-999999,6.5;16.120,16.100,1229.6,0.953,0.953,0.728,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.069,0.000,-999999,-999999,-999999,-999999,6.7;16.140,16.120,1233.1,0.922,0.922,0.696,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,6.7;16.160,16.140,1235.5,0.897,0.897,0.671,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,6.9;16.180,16.160,1236.6,0.877,0.877,0.651,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.065,0.000,-999999,-999999,-999999,-999999,7.5;16.200,16.180,1237.8,0.861,0.861,0.634,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.067,0.000,-999999,-999999,-999999,-999999,7.8;16.220,16.200,1238.9,0.834,0.834,0.607,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.066,0.000,-999999,-999999,-999999,-999999,7.9;16.240,16.220,1240.1,0.793,0.793,0.566,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,7.8;16.260,16.240,1241.3,0.747,0.747,0.520,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.058,0.000,-999999,-999999,-999999,-999999,7.7;16.280,16.260,1242.4,0.707,0.707,0.480,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,7.4;16.300,16.280,1243.6,0.651,0.651,0.423,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,6.7;16.320,16.300,1244.7,0.623,0.623,0.395,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,5.9;16.340,16.320,1245.9,0.590,0.590,0.362,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,5.1;16.360,16.340,1247.1,0.569,0.569,0.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,4.5;16.380,16.360,1248.2,0.569,0.569,0.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,4.0;16.400,16.380,1249.3,0.561,0.561,0.332,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,3.5;16.420,16.400,1250.5,0.552,0.552,0.322,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.4;16.440,16.420,1251.6,0.534,0.534,0.304,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.4;16.460,16.440,1252.8,0.516,0.516,0.286,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.5;16.480,16.460,1253.9,0.512,0.512,0.281,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.5;16.500,16.480,1255.2,0.502,0.502,0.271,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.5;16.520,16.500,1259.5,0.494,0.494,0.263,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.4;16.540,16.520,1263.7,0.486,0.486,0.255,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.5;16.560,16.540,1266.9,0.480,0.480,0.249,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.7;16.580,16.560,1268.0,0.486,0.486,0.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.8;16.600,16.580,1269.1,0.498,0.498,0.266,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.9;16.620,16.600,1270.2,0.495,0.495,0.263,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,4.1;16.640,16.620,1271.2,0.481,0.481,0.249,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.3;16.660,16.640,1272.3,0.477,0.477,0.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.4;16.680,16.660,1273.4,0.468,0.468,0.235,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.4;16.700,16.680,1274.5,0.463,0.463,0.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,4.2;16.720,16.700,1275.6,0.457,0.457,0.223,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,4.3;16.740,16.720,1276.6,0.458,0.458,0.224,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.3;16.760,16.740,1277.7,0.463,0.463,0.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,4.3;16.780,16.760,1278.8,0.471,0.471,0.236,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,4.2;16.800,16.780,1279.9,0.477,0.477,0.242,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.3;16.820,16.800,1280.9,0.486,0.486,0.251,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,4.5;16.840,16.820,1282.0,0.489,0.489,0.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,4.6;16.860,16.840,1283.1,0.497,0.497,0.261,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,4.6;16.880,16.860,1284.2,0.497,0.497,0.261,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,4.6;16.900,16.880,1285.3,0.486,0.486,0.249,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,4.4;16.920,16.900,1286.4,0.473,0.473,0.237,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.3;16.940,16.920,1287.4,0.481,0.481,0.245,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.3;16.960,16.940,1288.6,0.472,0.472,0.235,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.3;16.980,16.960,1289.6,0.471,0.471,0.234,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,4.1;17.000,16.980,1290.7,0.478,0.478,0.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,4.0;17.020,17.000,1291.8,0.474,0.474,0.236,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.8;17.040,17.020,1292.8,0.470,0.470,0.232,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.7;17.060,17.040,1293.9,0.468,0.468,0.230,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.6;17.080,17.060,1295.0,0.462,0.462,0.223,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.4;17.100,17.080,1296.1,0.456,0.456,0.217,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.2;17.120,17.100,1299.1,0.456,0.456,0.217,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.1;17.140,17.120,1302.0,0.456,0.456,0.216,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.9;17.160,17.140,1305.0,0.456,0.456,0.216,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,2.7;17.180,17.160,1306.1,0.473,0.473,0.233,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,2.6;17.200,17.180,1307.2,0.507,0.507,0.266,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.6;17.220,17.200,1308.2,0.550,0.550,0.310,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.8;17.240,17.220,1309.3,0.571,0.571,0.330,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,2.9;17.260,17.240,1310.4,0.591,0.591,0.350,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.0;17.280,17.260,1311.5,0.594,0.594,0.352,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.0;17.300,17.280,1312.6,0.584,0.584,0.342,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.2;17.320,17.300,1313.7,0.569,0.569,0.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.1;17.340,17.320,1314.7,0.566,0.566,0.323,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.1;17.360,17.340,1315.8,0.558,0.558,0.315,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.1;17.380,17.360,1316.9,0.549,0.549,0.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,2.7;17.400,17.380,1318.0,0.539,0.539,0.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,2.7;17.420,17.400,1319.1,0.595,0.595,0.352,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,2.6;17.440,17.420,1320.2,0.708,0.708,0.465,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.6;17.460,17.440,1321.2,0.802,0.802,0.558,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.7;17.480,17.460,1322.3,0.784,0.784,0.540,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.7;17.500,17.480,1323.4,0.674,0.674,0.429,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,2.8;17.520,17.500,1325.7,0.668,0.668,0.423,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.9;17.540,17.520,1329.4,0.741,0.741,0.496,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,3.1;17.560,17.540,1333.1,0.815,0.815,0.569,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.9;17.580,17.560,1335.6,0.857,0.857,0.612,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.7;17.600,17.580,1336.6,0.833,0.833,0.586,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.7;17.620,17.600,1337.7,0.823,0.823,0.576,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,2.9;17.640,17.620,1338.8,0.851,0.851,0.604,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,3.1;17.660,17.640,1339.9,0.874,0.874,0.627,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,2.6;17.680,17.660,1340.9,0.889,0.889,0.642,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,1.7;17.700,17.680,1342.0,1.172,1.172,0.925,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,1.2;17.720,17.700,1343.1,2.305,2.305,2.057,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,1.0;17.740,17.720,1344.2,4.069,4.069,3.821,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,0.9;17.760,17.740,1345.3,5.215,5.215,4.966,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,0.8;17.780,17.760,1346.4,5.876,5.876,5.628,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,0.8;17.800,17.780,1347.5,6.443,6.443,6.194,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,0.7;17.820,17.800,1348.6,7.058,7.058,6.809,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,0.8;17.840,17.820,1349.6,7.648,7.648,7.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,0.8;17.860,17.840,1350.7,8.204,8.204,7.955,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.069,0.000,-999999,-999999,-999999,-999999,0.8;17.880,17.860,1351.8,8.718,8.718,8.468,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,3,-999999,-999999,0.076,0.000,-999999,-999999,-999999,-999999,0.8;17.900,17.880,1352.9,9.197,9.197,8.947,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.082,0.000,-999999,-999999,-999999,-999999,0.9;17.920,17.900,1354.0,9.532,9.532,9.282,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,3,-999999,-999999,0.088,0.000,-999999,-999999,-999999,-999999,0.9;17.940,17.920,1355.1,9.808,9.808,9.557,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,3,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,0.9;17.960,17.940,1356.2,10.037,10.037,9.786,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,3,-999999,-999999,0.099,0.000,-999999,-999999,-999999,-999999,1.0;17.980,17.960,1357.2,10.205,10.205,9.954,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,3,-999999,-999999,0.104,0.000,-999999,-999999,-999999,-999999,1.0;18.000,17.980,1358.3,10.428,10.428,10.176,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,1.0;18.020,18.000,1359.4,10.659,10.659,10.407,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,3,-999999,-999999,0.113,0.000,-999999,-999999,-999999,-999999,1.0;18.040,18.020,1360.5,10.851,10.851,10.598,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,3,-999999,-999999,0.117,0.000,-999999,-999999,-999999,-999999,1.0;18.060,18.040,1361.6,10.946,10.946,10.693,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,1.0;18.080,18.060,1362.7,10.945,10.945,10.693,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.116,0.000,-999999,-999999,-999999,-999999,1.0;18.100,18.080,1363.7,10.900,10.900,10.647,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.113,0.000,-999999,-999999,-999999,-999999,1.0;18.120,18.100,1364.8,10.867,10.867,10.614,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.115,0.000,-999999,-999999,-999999,-999999,1.0;18.140,18.120,1365.9,10.895,10.895,10.642,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.117,0.000,-999999,-999999,-999999,-999999,1.0;18.160,18.140,1368.6,10.946,10.946,10.692,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,1.0;18.180,18.160,1371.5,10.996,10.996,10.742,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,1.0;18.200,18.180,1374.2,11.070,11.070,10.816,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,1.0;18.220,18.200,1375.2,11.242,11.242,10.987,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,1.0;18.240,18.220,1376.3,11.352,11.352,11.097,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,1.0;18.260,18.240,1377.4,11.505,11.505,11.250,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,1.0;18.280,18.260,1378.5,11.641,11.641,11.385,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,1.0;18.300,18.280,1379.6,11.739,11.739,11.483,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,1.0;18.320,18.300,1380.7,11.836,11.836,11.580,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,1.0;18.340,18.320,1381.7,11.925,11.925,11.668,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.120,0.000,-999999,-999999,-999999,-999999,1.0;18.360,18.340,1382.8,11.972,11.972,11.715,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.121,0.000,-999999,-999999,-999999,-999999,1.0;18.380,18.360,1383.9,11.973,11.973,11.716,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,3,-999999,-999999,0.121,0.000,-999999,-999999,-999999,-999999,1.0;18.400,18.380,1385.0,11.883,11.883,11.625,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,3,-999999,-999999,0.120,0.000,-999999,-999999,-999999,-999999,1.0;18.420,18.400,1386.1,11.807,11.807,11.549,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.120,0.000,-999999,-999999,-999999,-999999,1.0;18.440,18.410,1387.1,11.733,11.733,11.476,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.120,0.000,-999999,-999999,-999999,-999999,1.0;18.460,18.430,1388.2,11.682,11.682,11.424,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.115,0.000,-999999,-999999,-999999,-999999,0.9;18.480,18.450,1389.3,11.631,11.631,11.373,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,0.9;18.500,18.470,1390.4,11.577,11.577,11.318,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.106,0.000,-999999,-999999,-999999,-999999,0.9;18.520,18.490,1391.5,11.554,11.554,11.295,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,0.9;18.540,18.510,1394.0,11.499,11.499,11.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.9;18.560,18.530,1398.1,11.439,11.439,11.179,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,0.9;18.580,18.550,1402.2,11.378,11.378,11.119,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.112,0.000,-999999,-999999,-999999,-999999,0.9;18.600,18.570,1403.9,11.527,11.527,11.267,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.112,0.000,-999999,-999999,-999999,-999999,0.9;18.620,18.590,1405.1,11.631,11.631,11.371,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.112,0.000,-999999,-999999,-999999,-999999,0.9;18.640,18.610,1406.3,11.727,11.727,11.467,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,3,-999999,-999999,0.114,0.000,-999999,-999999,-999999,-999999,0.9;18.660,18.630,1407.5,11.852,11.852,11.591,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.115,0.000,-999999,-999999,-999999,-999999,0.9;18.680,18.650,1408.7,12.119,12.119,11.858,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,0.9;18.700,18.670,1409.9,12.477,12.477,12.216,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,3,-999999,-999999,0.121,0.000,-999999,-999999,-999999,-999999,0.9;18.720,18.690,1411.1,12.793,12.793,12.532,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,3,-999999,-999999,0.122,0.000,-999999,-999999,-999999,-999999,0.9;18.740,18.710,1412.3,12.954,12.954,12.692,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.124,0.000,-999999,-999999,-999999,-999999,0.9;18.760,18.730,1413.5,12.966,12.966,12.703,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.127,0.000,-999999,-999999,-999999,-999999,0.9;18.780,18.750,1414.7,13.012,13.012,12.750,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.128,0.000,-999999,-999999,-999999,-999999,0.9;18.800,18.770,1415.8,13.243,13.243,12.980,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.129,0.000,-999999,-999999,-999999,-999999,0.9;18.820,18.790,1416.9,13.555,13.555,13.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.130,0.000,-999999,-999999,-999999,-999999,0.9;18.840,18.810,1417.9,13.949,13.949,13.686,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.131,0.000,-999999,-999999,-999999,-999999,0.9;18.860,18.830,1419.0,14.312,14.312,14.048,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.133,0.000,-999999,-999999,-999999,-999999,0.9;18.880,18.850,1420.1,14.523,14.523,14.259,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,0.9;18.900,18.870,1421.2,14.627,14.627,14.363,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.140,0.000,-999999,-999999,-999999,-999999,0.9;18.920,18.890,1422.3,14.655,14.655,14.391,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.146,0.000,-999999,-999999,-999999,-999999,1.0;18.940,18.910,1423.3,14.658,14.658,14.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.151,0.000,-999999,-999999,-999999,-999999,1.0;18.960,18.930,1424.4,14.558,14.558,14.293,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.156,0.000,-999999,-999999,-999999,-999999,1.0;18.980,18.950,1425.5,14.391,14.391,14.126,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.161,0.000,-999999,-999999,-999999,-999999,1.1;19.000,18.970,1426.6,14.247,14.247,13.982,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.166,0.000,-999999,-999999,-999999,-999999,1.1;19.020,18.990,1427.7,14.114,14.114,13.848,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.169,0.000,-999999,-999999,-999999,-999999,1.2;19.040,19.010,1428.8,13.948,13.948,13.682,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.170,0.000,-999999,-999999,-999999,-999999,1.2;19.060,19.030,1429.8,13.676,13.676,13.409,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.169,0.000,-999999,-999999,-999999,-999999,1.2;19.080,19.050,1430.9,13.317,13.317,13.051,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.161,0.000,-999999,-999999,-999999,-999999,1.1;19.100,19.070,1432.0,13.007,13.007,12.740,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.153,0.000,-999999,-999999,-999999,-999999,1.1;19.120,19.090,1433.1,12.833,12.833,12.566,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.151,0.000,-999999,-999999,-999999,-999999,1.1;19.140,19.110,1434.2,12.719,12.719,12.451,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.152,0.000,-999999,-999999,-999999,-999999,1.1;19.160,19.130,1436.5,12.597,12.597,12.329,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.149,0.000,-999999,-999999,-999999,-999999,1.1;19.180,19.150,1439.7,12.436,12.436,12.168,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.147,0.000,-999999,-999999,-999999,-999999,1.1;19.200,19.170,1442.6,12.324,12.324,12.055,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.145,0.000,-999999,-999999,-999999,-999999,1.1;19.220,19.190,1443.7,12.517,12.517,12.248,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.143,0.000,-999999,-999999,-999999,-999999,1.1;19.240,19.210,1444.8,12.604,12.604,12.335,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.141,0.000,-999999,-999999,-999999,-999999,1.0;19.260,19.230,1445.8,12.757,12.757,12.488,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.141,0.000,-999999,-999999,-999999,-999999,1.0;19.280,19.250,1446.9,13.064,13.064,12.795,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.140,0.000,-999999,-999999,-999999,-999999,1.0;19.300,19.270,1448.0,13.548,13.548,13.278,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.142,0.000,-999999,-999999,-999999,-999999,1.0;19.320,19.290,1449.1,14.115,14.115,13.845,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.145,0.000,-999999,-999999,-999999,-999999,1.0;19.340,19.310,1450.2,14.722,14.722,14.452,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.146,0.000,-999999,-999999,-999999,-999999,0.9;19.360,19.330,1451.3,15.524,15.524,15.253,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.149,0.000,-999999,-999999,-999999,-999999,0.9;19.380,19.350,1452.4,16.581,16.581,16.310,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.155,0.000,-999999,-999999,-999999,-999999,0.9;19.400,19.370,1453.5,17.847,17.847,17.576,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.162,0.000,-999999,-999999,-999999,-999999,0.9;19.420,19.390,1454.6,19.075,19.075,18.803,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.171,0.000,-999999,-999999,-999999,-999999,0.9;19.440,19.410,1455.7,20.094,20.094,19.822,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.181,0.000,-999999,-999999,-999999,-999999,0.9;19.460,19.430,1456.7,20.862,20.862,20.590,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.176,0.000,-999999,-999999,-999999,-999999,0.8;19.480,19.450,1457.8,21.689,21.689,21.417,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.169,0.000,-999999,-999999,-999999,-999999,0.8;19.500,19.470,1458.9,22.337,22.337,22.065,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.174,0.000,-999999,-999999,-999999,-999999,0.8;19.520,19.490,1460.0,22.860,22.860,22.587,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.196,0.000,-999999,-999999,-999999,-999999,0.8;19.540,19.510,1462.7,22.766,22.766,22.493,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.214,0.000,-999999,-999999,-999999,-999999,0.9;19.560,19.530,1467.1,22.349,22.349,22.076,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.231,0.000,-999999,-999999,-999999,-999999,1.0;19.580,19.550,1471.1,22.152,22.152,21.878,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.244,0.000,-999999,-999999,-999999,-999999,1.0;19.600,19.570,1472.2,23.316,23.316,23.042,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.256,0.000,-999999,-999999,-999999,-999999,1.0;19.620,19.590,1473.3,23.751,23.751,23.477,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.266,0.000,-999999,-999999,-999999,-999999,1.1;19.640,19.610,1474.3,24.169,24.169,23.894,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.273,0.000,-999999,-999999,-999999,-999999,1.1;19.660,19.630,1475.4,24.594,24.594,24.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.276,0.000,-999999,-999999,-999999,-999999,1.1;19.680,19.650,1476.5,24.912,24.912,24.637,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.274,0.000,-999999,-999999,-999999,-999999,1.1;19.700,19.670,1477.6,25.055,25.055,24.780,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.271,0.000,-999999,-999999,-999999,-999999,1.0;19.720,19.690,1478.7,25.085,25.085,24.809,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.271,0.000,-999999,-999999,-999999,-999999,1.0;19.740,19.710,1479.8,24.988,24.988,24.712,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.264,0.000,-999999,-999999,-999999,-999999,1.0;19.760,19.730,1480.9,24.826,24.826,24.550,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.257,0.000,-999999,-999999,-999999,-999999,1.0;19.780,19.750,1481.9,24.838,24.838,24.561,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.248,0.000,-999999,-999999,-999999,-999999,1.0;19.800,19.770,1483.0,24.804,24.804,24.527,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.235,0.000,-999999,-999999,-999999,-999999,0.9;19.820,19.790,1484.1,24.645,24.645,24.368,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.232,0.000,-999999,-999999,-999999,-999999,0.9;19.840,19.810,1485.2,24.296,24.296,24.019,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.225,0.000,-999999,-999999,-999999,-999999,0.9;19.860,19.830,1486.3,24.031,24.031,23.754,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.214,0.000,-999999,-999999,-999999,-999999,0.8;19.880,19.850,1487.3,23.942,23.942,23.664,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.208,0.000,-999999,-999999,-999999,-999999,0.8;19.900,19.870,1488.4,23.750,23.750,23.472,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.200,0.000,-999999,-999999,-999999,-999999,0.8;19.920,19.890,1489.5,23.832,23.832,23.553,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.196,0.000,-999999,-999999,-999999,-999999,0.8;19.940,19.910,1490.6,23.811,23.811,23.532,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.196,0.000,-999999,-999999,-999999,-999999,0.8;19.960,19.930,1491.7,23.839,23.839,23.560,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.187,0.000,-999999,-999999,-999999,-999999,0.7;19.980,19.950,1492.8,24.011,24.011,23.732,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.180,0.000,-999999,-999999,-999999,-999999,0.7;20.000,19.970,1493.9,24.167,24.167,23.887,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.180,0.000,-999999,-999999,-999999,-999999,0.7;20.020,19.990,1494.9,24.435,24.435,24.155,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.188,0.000,-999999,-999999,-999999,-999999,0.7;20.040,20.010,1496.0,24.662,24.662,24.382,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.195,0.000,-999999,-999999,-999999,-999999,0.8;20.060,20.030,1497.1,24.500,24.500,24.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.197,0.000,-999999,-999999,-999999,-999999,0.8;20.080,20.050,1498.2,23.886,23.886,23.605,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.193,0.000,-999999,-999999,-999999,-999999,0.8;20.100,20.070,1499.3,22.886,22.886,22.605,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.187,0.000,-999999,-999999,-999999,-999999,0.8;20.120,20.090,1500.3,22.270,22.270,21.989,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.180,0.000,-999999,-999999,-999999,-999999,0.7;20.140,20.110,1501.4,21.833,21.833,21.551,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.181,0.000,-999999,-999999,-999999,-999999,0.8;20.160,20.130,1502.5,21.396,21.396,21.114,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.182,0.000,-999999,-999999,-999999,-999999,0.8;20.180,20.150,1506.0,20.867,20.867,20.585,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.173,0.000,-999999,-999999,-999999,-999999,0.8;20.200,20.170,1509.4,20.338,20.338,20.055,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.165,0.000,-999999,-999999,-999999,-999999,0.8;20.220,20.190,1512.0,20.106,20.106,19.823,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.161,0.000,-999999,-999999,-999999,-999999,0.8;20.240,20.210,1513.2,19.808,19.808,19.525,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.157,0.000,-999999,-999999,-999999,-999999,0.7;20.260,20.230,1514.4,19.485,19.485,19.202,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.155,0.000,-999999,-999999,-999999,-999999,0.7;20.280,20.250,1515.6,19.259,19.259,18.976,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.155,0.000,-999999,-999999,-999999,-999999,0.7;20.300,20.270,1516.8,19.011,19.011,18.727,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.148,0.000,-999999,-999999,-999999,-999999,0.7;20.320,20.290,1518.0,18.992,18.992,18.708,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.143,0.000,-999999,-999999,-999999,-999999,0.7;20.340,20.310,1519.2,18.904,18.904,18.620,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.143,0.000,-999999,-999999,-999999,-999999,0.7;20.360,20.330,1520.4,18.751,18.751,18.466,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,0.7;20.380,20.350,1521.6,18.491,18.491,18.206,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.134,0.000,-999999,-999999,-999999,-999999,0.7;20.400,20.370,1522.8,18.331,18.331,18.046,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.129,0.000,-999999,-999999,-999999,-999999,0.6;20.420,20.390,1524.1,18.434,18.434,18.148,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.121,0.000,-999999,-999999,-999999,-999999,0.6;20.440,20.410,1525.3,18.728,18.728,18.443,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.113,0.000,-999999,-999999,-999999,-999999,0.5;20.460,20.430,1526.4,19.185,19.185,18.899,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.5;20.480,20.450,1527.6,19.775,19.775,19.488,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,0.5;20.500,20.470,1528.9,20.138,20.138,19.851,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,0.5;20.520,20.490,1530.1,20.086,20.086,19.799,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.107,0.000,-999999,-999999,-999999,-999999,0.5;20.540,20.510,1531.3,19.523,19.523,19.236,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.106,0.000,-999999,-999999,-999999,-999999,0.5;20.560,20.530,1532.5,18.849,18.849,18.562,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.112,0.000,-999999,-999999,-999999,-999999,0.5;20.580,20.550,1533.9,18.441,18.441,18.153,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.117,0.000,-999999,-999999,-999999,-999999,0.6;20.600,20.570,1538.4,18.147,18.147,17.859,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.124,0.000,-999999,-999999,-999999,-999999,0.6;20.620,20.590,1542.8,17.854,17.854,17.566,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.129,0.000,-999999,-999999,-999999,-999999,0.7;20.640,20.610,1546.1,17.652,17.652,17.363,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.140,0.000,-999999,-999999,-999999,-999999,0.7;20.660,20.630,1547.4,17.544,17.544,17.256,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.138,0.000,-999999,-999999,-999999,-999999,0.7;20.680,20.650,1548.8,17.258,17.258,16.969,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,0.7;20.700,20.670,1550.2,17.096,17.096,16.806,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,0.7;20.720,20.690,1551.5,16.703,16.703,16.413,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.131,0.000,-999999,-999999,-999999,-999999,0.7;20.740,20.710,1552.9,16.413,16.413,16.123,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.132,0.000,-999999,-999999,-999999,-999999,0.7;20.760,20.730,1554.3,16.248,16.248,15.958,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.132,0.000,-999999,-999999,-999999,-999999,0.8;20.780,20.750,1555.6,16.026,16.026,15.736,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.131,0.000,-999999,-999999,-999999,-999999,0.8;20.800,20.770,1557.0,15.817,15.817,15.526,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.129,0.000,-999999,-999999,-999999,-999999,0.8;20.820,20.790,1558.4,15.582,15.582,15.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.130,0.000,-999999,-999999,-999999,-999999,0.8;20.840,20.810,1559.8,15.328,15.328,15.036,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.133,0.000,-999999,-999999,-999999,-999999,0.8;20.860,20.830,1561.1,15.057,15.057,14.766,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.131,0.000,-999999,-999999,-999999,-999999,0.8;20.880,20.850,1562.5,14.722,14.722,14.430,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.130,0.000,-999999,-999999,-999999,-999999,0.8;20.900,20.870,1563.9,14.464,14.464,14.172,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.131,0.000,-999999,-999999,-999999,-999999,0.8;20.920,20.890,1565.2,14.259,14.259,13.967,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.129,0.000,-999999,-999999,-999999,-999999,0.8;20.940,20.910,1566.6,14.050,14.050,13.757,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.128,0.000,-999999,-999999,-999999,-999999,0.9;20.960,20.930,1567.9,13.899,13.899,13.606,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.125,0.000,-999999,-999999,-999999,-999999,0.8;20.980,20.950,1569.3,13.779,13.779,13.486,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.124,0.000,-999999,-999999,-999999,-999999,0.8;21.000,20.970,1570.7,13.677,13.677,13.384,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.123,0.000,-999999,-999999,-999999,-999999,0.8;21.020,20.990,1572.1,13.577,13.577,13.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.121,0.000,-999999,-999999,-999999,-999999,0.8;21.040,21.010,1573.4,13.480,13.480,13.186,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.120,0.000,-999999,-999999,-999999,-999999,0.8;21.060,21.030,1574.8,13.355,13.355,13.061,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,0.8;21.080,21.050,1576.1,13.276,13.276,12.982,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,0.8;21.100,21.070,1577.5,13.230,13.230,12.935,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,0.8;21.120,21.090,1578.9,13.223,13.223,12.928,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,0.8;21.140,21.110,1580.0,13.251,13.251,12.956,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.114,0.000,-999999,-999999,-999999,-999999,0.8;21.160,21.130,1581.1,13.212,13.212,12.917,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.111,0.000,-999999,-999999,-999999,-999999,0.8;21.180,21.150,1582.1,13.185,13.185,12.889,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.8;21.200,21.170,1583.2,13.187,13.187,12.891,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.8;21.220,21.190,1586.0,13.082,13.082,12.785,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.8;21.240,21.210,1589.2,12.958,12.958,12.661,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,0.8;21.260,21.230,1592.5,12.834,12.834,12.537,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.8;21.280,21.250,1593.6,12.893,12.893,12.596,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.8;21.300,21.270,1594.7,12.953,12.953,12.655,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.8;21.320,21.290,1595.7,12.957,12.957,12.659,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.111,0.000,-999999,-999999,-999999,-999999,0.8;21.340,21.310,1596.8,12.864,12.864,12.566,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.111,0.000,-999999,-999999,-999999,-999999,0.8;21.360,21.330,1597.9,12.693,12.693,12.394,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.111,0.000,-999999,-999999,-999999,-999999,0.8;21.380,21.350,1599.0,12.477,12.477,12.178,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.111,0.000,-999999,-999999,-999999,-999999,0.8;21.400,21.370,1600.1,12.175,12.175,11.875,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.8;21.420,21.390,1601.2,11.866,11.866,11.566,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.107,0.000,-999999,-999999,-999999,-999999,0.8;21.440,21.410,1602.2,11.648,11.648,11.348,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.106,0.000,-999999,-999999,-999999,-999999,0.8;21.460,21.430,1603.3,11.477,11.477,11.177,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,0.9;21.480,21.450,1604.4,11.374,11.374,11.074,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.103,0.000,-999999,-999999,-999999,-999999,0.8;21.500,21.470,1605.4,11.318,11.318,11.018,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.100,0.000,-999999,-999999,-999999,-999999,0.8;21.520,21.490,1606.5,11.280,11.280,10.979,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.096,0.000,-999999,-999999,-999999,-999999,0.8;21.540,21.510,1607.6,11.200,11.200,10.899,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.092,0.000,-999999,-999999,-999999,-999999,0.8;21.560,21.530,1608.7,11.185,11.185,10.884,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.089,0.000,-999999,-999999,-999999,-999999,0.7;21.580,21.550,1609.8,11.190,11.190,10.888,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.090,0.000,-999999,-999999,-999999,-999999,0.8;21.600,21.570,1611.9,11.158,11.158,10.856,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.090,0.000,-999999,-999999,-999999,-999999,0.8;21.620,21.590,1616.5,11.069,11.069,10.767,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.091,0.000,-999999,-999999,-999999,-999999,0.8;21.640,21.610,1621.0,10.981,10.981,10.678,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.091,0.000,-999999,-999999,-999999,-999999,0.8;21.660,21.630,1622.5,11.065,11.065,10.762,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.093,0.000,-999999,-999999,-999999,-999999,0.8;21.680,21.650,1623.5,11.162,11.162,10.859,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,0.8;21.700,21.670,1624.6,11.340,11.340,11.037,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.095,0.000,-999999,-999999,-999999,-999999,0.8;21.720,21.690,1625.7,11.502,11.502,11.198,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.096,0.000,-999999,-999999,-999999,-999999,0.8;21.740,21.710,1626.8,11.708,11.708,11.404,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.096,0.000,-999999,-999999,-999999,-999999,0.8;21.760,21.730,1627.8,12.025,12.025,11.721,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.097,0.000,-999999,-999999,-999999,-999999,0.7;21.780,21.750,1628.9,12.541,12.541,12.236,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.097,0.000,-999999,-999999,-999999,-999999,0.7;21.800,21.770,1630.1,13.244,13.244,12.940,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.101,0.000,-999999,-999999,-999999,-999999,0.7;21.820,21.790,1631.1,13.837,13.837,13.532,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.104,0.000,-999999,-999999,-999999,-999999,0.7;21.840,21.810,1632.2,14.309,14.309,14.004,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,0.7;21.860,21.830,1633.3,14.738,14.738,14.432,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.117,0.000,-999999,-999999,-999999,-999999,0.8;21.880,21.850,1634.3,15.044,15.044,14.738,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,0.8;21.900,21.870,1635.4,15.310,15.310,15.004,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,3,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,0.7;21.920,21.890,1636.5,15.283,15.283,14.977,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,0.7;21.940,21.910,1637.6,15.166,15.166,14.859,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.122,0.000,-999999,-999999,-999999,-999999,0.7;21.960,21.930,1638.7,15.397,15.397,15.090,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.128,0.000,-999999,-999999,-999999,-999999,0.7;21.980,21.950,1639.7,16.062,16.062,15.754,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.130,0.000,-999999,-999999,-999999,-999999,0.7;22.000,21.970,1640.8,17.313,17.313,17.005,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.133,0.000,-999999,-999999,-999999,-999999,0.7;22.020,21.990,1641.9,18.390,18.390,18.082,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,0.8;22.040,22.010,1643.0,18.421,18.421,18.112,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.142,0.000,-999999,-999999,-999999,-999999,0.8;22.060,22.030,1644.1,17.999,17.999,17.691,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.145,0.000,-999999,-999999,-999999,-999999,0.8;22.080,22.050,1645.2,17.749,17.749,17.440,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.148,0.000,-999999,-999999,-999999,-999999,0.8;22.100,22.070,1646.2,17.616,17.616,17.307,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.149,0.000,-999999,-999999,-999999,-999999,0.8;22.120,22.090,1647.3,17.063,17.063,16.754,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.147,0.000,-999999,-999999,-999999,-999999,0.8;22.140,22.110,1648.4,16.118,16.118,15.809,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.141,0.000,-999999,-999999,-999999,-999999,0.8;22.160,22.130,1649.4,14.956,14.956,14.646,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.135,0.000,-999999,-999999,-999999,-999999,0.8;22.180,22.150,1650.5,14.073,14.073,13.763,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.131,0.000,-999999,-999999,-999999,-999999,0.8;22.200,22.170,1651.6,13.265,13.265,12.955,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.125,0.000,-999999,-999999,-999999,-999999,0.8;22.220,22.190,1654.0,12.713,12.713,12.402,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.121,0.000,-999999,-999999,-999999,-999999,0.9;22.240,22.210,1657.4,12.193,12.193,11.882,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.116,0.000,-999999,-999999,-999999,-999999,0.9;22.260,22.230,1660.6,11.722,11.722,11.411,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.111,0.000,-999999,-999999,-999999,-999999,0.9;22.280,22.250,1661.7,11.643,11.643,11.332,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.106,0.000,-999999,-999999,-999999,-999999,0.8;22.300,22.270,1662.8,11.581,11.581,11.270,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.101,0.000,-999999,-999999,-999999,-999999,0.8;22.320,22.290,1663.9,11.609,11.609,11.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.101,0.000,-999999,-999999,-999999,-999999,0.8;22.340,22.310,1664.9,11.856,11.856,11.544,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.100,0.000,-999999,-999999,-999999,-999999,0.8;22.360,22.330,1666.0,12.366,12.366,12.053,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.103,0.000,-999999,-999999,-999999,-999999,0.8;22.380,22.350,1667.1,12.932,12.932,12.619,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.103,0.000,-999999,-999999,-999999,-999999,0.8;22.400,22.370,1668.2,13.495,13.495,13.182,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.103,0.000,-999999,-999999,-999999,-999999,0.7;22.420,22.390,1669.3,13.972,13.972,13.658,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,0.7;22.440,22.410,1670.4,14.049,14.049,13.736,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.106,0.000,-999999,-999999,-999999,-999999,0.8;22.460,22.430,1671.4,13.498,13.498,13.183,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,0.8;22.480,22.450,1672.5,12.806,12.806,12.492,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.104,0.000,-999999,-999999,-999999,-999999,0.8;22.500,22.470,1673.6,12.030,12.030,11.716,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.101,0.000,-999999,-999999,-999999,-999999,0.8;22.520,22.490,1674.7,11.585,11.585,11.270,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.097,0.000,-999999,-999999,-999999,-999999,0.8;22.540,22.510,1675.7,11.365,11.365,11.050,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.092,0.000,-999999,-999999,-999999,-999999,0.7;22.560,22.530,1676.8,11.277,11.277,10.962,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.087,0.000,-999999,-999999,-999999,-999999,0.7;22.580,22.550,1677.9,11.271,11.271,10.956,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.081,0.000,-999999,-999999,-999999,-999999,0.7;22.600,22.570,1678.9,11.455,11.455,11.139,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.072,0.000,-999999,-999999,-999999,-999999,0.6;22.620,22.590,1681.6,11.742,11.742,11.426,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.066,0.000,-999999,-999999,-999999,-999999,0.5;22.640,22.610,1685.7,11.921,11.921,11.605,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.064,0.000,-999999,-999999,-999999,-999999,0.5;22.660,22.630,1689.9,12.101,12.101,11.784,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,0.5;22.680,22.650,1691.4,12.222,12.222,11.905,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,0.5;22.700,22.670,1692.5,12.308,12.308,11.991,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.067,0.000,-999999,-999999,-999999,-999999,0.5;22.720,22.690,1693.6,12.418,12.418,12.100,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.073,0.000,-999999,-999999,-999999,-999999,0.5;22.740,22.710,1694.7,12.610,12.610,12.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.078,0.000,-999999,-999999,-999999,-999999,0.6;22.760,22.730,1695.7,12.835,12.835,12.516,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.085,0.000,-999999,-999999,-999999,-999999,0.6;22.780,22.750,1696.8,13.204,13.204,12.886,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.093,0.000,-999999,-999999,-999999,-999999,0.7;22.800,22.770,1697.9,13.722,13.722,13.403,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.100,0.000,-999999,-999999,-999999,-999999,0.7;22.820,22.790,1699.0,14.260,14.260,13.941,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,0.7;22.840,22.810,1700.1,14.487,14.487,14.168,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.107,0.000,-999999,-999999,-999999,-999999,0.7;22.860,22.830,1701.2,14.266,14.266,13.947,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.111,0.000,-999999,-999999,-999999,-999999,0.8;22.880,22.850,1702.2,13.734,13.734,13.414,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.114,0.000,-999999,-999999,-999999,-999999,0.8;22.900,22.870,1703.3,13.234,13.234,12.914,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.115,0.000,-999999,-999999,-999999,-999999,0.8;22.920,22.890,1704.4,12.859,12.859,12.539,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.114,0.000,-999999,-999999,-999999,-999999,0.8;22.940,22.910,1705.4,12.639,12.639,12.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.113,0.000,-999999,-999999,-999999,-999999,0.8;22.960,22.930,1706.5,12.615,12.615,12.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.112,0.000,-999999,-999999,-999999,-999999,0.8;22.980,22.950,1707.6,12.723,12.723,12.402,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,3,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.8;23.000,22.970,1708.7,12.920,12.920,12.599,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.107,0.000,-999999,-999999,-999999,-999999,0.8;23.020,22.990,1709.7,13.185,13.185,12.863,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,0.8;23.040,23.010,1710.8,13.426,13.426,13.104,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.104,0.000,-999999,-999999,-999999,-999999,0.7;23.060,23.030,1711.9,13.602,13.602,13.280,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,0.7;23.080,23.050,1713.0,13.715,13.715,13.392,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.106,0.000,-999999,-999999,-999999,-999999,0.8;23.100,23.070,1714.1,13.449,13.449,13.126,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.107,0.000,-999999,-999999,-999999,-999999,0.8;23.120,23.090,1715.1,13.037,13.037,12.713,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,0.8;23.140,23.110,1716.2,12.648,12.648,12.325,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.8;23.160,23.130,1717.3,12.484,12.484,12.160,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,0.8;23.180,23.150,1718.3,12.491,12.491,12.167,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,0.8;23.200,23.170,1719.4,12.633,12.633,12.308,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.102,0.000,-999999,-999999,-999999,-999999,0.7;23.220,23.190,1720.5,12.994,12.994,12.669,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.101,0.000,-999999,-999999,-999999,-999999,0.7;23.240,23.210,1721.8,13.725,13.725,13.400,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.101,0.000,-999999,-999999,-999999,-999999,0.7;23.260,23.230,1725.0,14.501,14.501,14.176,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.102,0.000,-999999,-999999,-999999,-999999,0.7;23.280,23.250,1728.1,15.278,15.278,14.952,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.104,0.000,-999999,-999999,-999999,-999999,0.6;23.300,23.270,1730.8,16.149,16.149,15.824,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,0.6;23.320,23.290,1731.8,17.201,17.201,16.875,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.117,0.000,-999999,-999999,-999999,-999999,0.6;23.340,23.310,1732.9,18.003,18.003,17.677,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.125,0.000,-999999,-999999,-999999,-999999,0.7;23.360,23.330,1734.0,18.439,18.439,18.112,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.133,0.000,-999999,-999999,-999999,-999999,0.7;23.380,23.350,1735.1,18.567,18.567,18.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.139,0.000,-999999,-999999,-999999,-999999,0.7;23.400,23.370,1736.2,18.579,18.579,18.251,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.144,0.000,-999999,-999999,-999999,-999999,0.7;23.420,23.390,1737.3,18.617,18.617,18.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.149,0.000,-999999,-999999,-999999,-999999,0.7;23.440,23.410,1738.3,18.832,18.832,18.505,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.152,0.000,-999999,-999999,-999999,-999999,0.8;23.460,23.430,1739.4,19.072,19.072,18.744,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.154,0.000,-999999,-999999,-999999,-999999,0.8;23.480,23.450,1740.5,19.089,19.089,18.760,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.155,0.000,-999999,-999999,-999999,-999999,0.8;23.500,23.470,1741.6,19.008,19.008,18.679,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.154,0.000,-999999,-999999,-999999,-999999,0.8;23.520,23.490,1742.7,19.071,19.071,18.742,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.155,0.000,-999999,-999999,-999999,-999999,0.8;23.540,23.510,1743.8,19.308,19.308,18.979,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.155,0.000,-999999,-999999,-999999,-999999,0.8;23.560,23.530,1744.8,19.536,19.536,19.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.149,0.000,-999999,-999999,-999999,-999999,0.7;23.580,23.550,1745.9,19.502,19.502,19.173,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.140,0.000,-999999,-999999,-999999,-999999,0.7;23.600,23.570,1747.0,19.080,19.080,18.750,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.131,0.000,-999999,-999999,-999999,-999999,0.6;23.620,23.590,1748.1,18.541,18.541,18.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.134,0.000,-999999,-999999,-999999,-999999,0.7;23.640,23.610,1749.7,18.162,18.162,17.831,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.134,0.000,-999999,-999999,-999999,-999999,0.7;23.660,23.630,1754.6,17.757,17.757,17.426,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.133,0.000,-999999,-999999,-999999,-999999,0.7;23.680,23.650,1759.5,17.352,17.352,17.021,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.132,0.000,-999999,-999999,-999999,-999999,0.7;23.700,23.670,1761.8,17.326,17.326,16.994,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.129,0.000,-999999,-999999,-999999,-999999,0.7;23.720,23.690,1762.9,17.110,17.110,16.778,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.128,0.000,-999999,-999999,-999999,-999999,0.7;23.740,23.710,1763.9,16.889,16.889,16.557,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.125,0.000,-999999,-999999,-999999,-999999,0.7;23.760,23.730,1765.0,16.909,16.909,16.577,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.123,0.000,-999999,-999999,-999999,-999999,0.7;23.780,23.750,1766.1,17.170,17.170,16.838,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.124,0.000,-999999,-999999,-999999,-999999,0.7;23.800,23.770,1767.2,17.192,17.192,16.859,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.123,0.000,-999999,-999999,-999999,-999999,0.7;23.820,23.790,1768.3,17.151,17.151,16.818,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.123,0.000,-999999,-999999,-999999,-999999,0.7;23.840,23.810,1769.3,17.078,17.078,16.745,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.124,0.000,-999999,-999999,-999999,-999999,0.7;23.860,23.830,1770.4,16.983,16.983,16.649,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.122,0.000,-999999,-999999,-999999,-999999,0.7;23.880,23.850,1771.5,16.853,16.853,16.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.120,0.000,-999999,-999999,-999999,-999999,0.7;23.900,23.870,1772.6,16.526,16.526,16.192,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,0.7;23.920,23.890,1773.7,16.138,16.138,15.803,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,0.7;23.940,23.910,1774.7,15.898,15.898,15.563,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.117,0.000,-999999,-999999,-999999,-999999,0.7;23.960,23.930,1775.8,15.847,15.847,15.512,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.114,0.000,-999999,-999999,-999999,-999999,0.6;23.980,23.950,1776.9,15.994,15.994,15.659,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,0.6;24.000,23.970,1777.9,16.465,16.465,16.130,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,0.6;24.020,23.990,1779.1,16.849,16.849,16.513,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.106,0.000,-999999,-999999,-999999,-999999,0.6;24.040,24.010,1780.1,17.241,17.241,16.904,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,3,3,-999999,-999999,0.107,0.000,-999999,-999999,-999999,-999999,0.6;24.060,24.030,1781.2,17.592,17.592,17.255,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.112,0.000,-999999,-999999,-999999,-999999,0.6;24.080,24.050,1782.3,17.870,17.870,17.533,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.124,0.000,-999999,-999999,-999999,-999999,0.6;24.100,24.070,1783.4,18.454,18.454,18.117,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.132,0.000,-999999,-999999,-999999,-999999,0.6;24.120,24.090,1784.5,19.273,19.273,18.936,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.133,0.000,-999999,-999999,-999999,-999999,0.6;24.140,24.110,1785.6,20.389,20.389,20.052,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.133,0.000,-999999,-999999,-999999,-999999,0.6;24.160,24.130,1786.7,22.151,22.151,21.813,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,0.6;24.180,24.150,1787.8,24.348,24.348,24.010,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.145,0.000,-999999,-999999,-999999,-999999,0.6;24.200,24.170,1788.9,26.495,26.495,26.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.142,0.000,-999999,-999999,-999999,-999999,0.5;24.220,24.190,1789.9,28.199,28.199,27.860,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.139,0.000,-999999,-999999,-999999,-999999,0.5;24.240,24.210,1791.1,29.122,29.122,28.783,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.141,0.000,-999999,-999999,-999999,-999999,0.5;24.260,24.230,1792.1,29.698,29.698,29.359,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.163,0.000,-999999,-999999,-999999,-999999,0.5;24.280,24.250,1794.8,29.912,29.912,29.572,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.180,0.000,-999999,-999999,-999999,-999999,0.6;24.300,24.270,1798.2,29.928,29.928,29.588,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.192,0.000,-999999,-999999,-999999,-999999,0.6;24.320,24.290,1801.6,30.039,30.039,29.699,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.207,0.000,-999999,-999999,-999999,-999999,0.6;24.340,24.310,1802.7,31.585,31.585,31.245,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.209,0.000,-999999,-999999,-999999,-999999,0.6;24.360,24.330,1803.9,33.172,33.172,32.831,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.224,0.000,-999999,-999999,-999999,-999999,0.6;24.380,24.350,1805.1,34.647,34.647,34.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.241,0.000,-999999,-999999,-999999,-999999,0.6;24.400,24.370,1806.4,35.993,35.993,35.652,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.258,0.000,-999999,-999999,-999999,-999999,0.7;24.420,24.390,1807.8,37.252,37.252,36.911,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.269,0.000,-999999,-999999,-999999,-999999,0.7;24.440,24.410,1809.1,38.505,38.505,38.163,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.288,0.000,-999999,-999999,-999999,-999999,0.7;24.460,24.430,1810.6,39.717,39.717,39.375,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.304,0.000,-999999,-999999,-999999,-999999,0.7;24.480,24.450,1812.2,40.843,40.843,40.501,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.323,0.000,-999999,-999999,-999999,-999999,0.7;24.500,24.470,1813.8,41.927,41.927,41.584,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.333,0.000,-999999,-999999,-999999,-999999,0.8;24.520,24.490,1815.4,42.799,42.799,42.456,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.349,0.000,-999999,-999999,-999999,-999999,0.8;24.540,24.510,1817.2,43.502,43.502,43.159,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.358,0.000,-999999,-999999,-999999,-999999,0.8;24.560,24.530,1819.0,44.162,44.162,43.819,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.363,0.000,-999999,-999999,-999999,-999999,0.8;24.580,24.550,1820.8,44.662,44.662,44.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.348,0.000,-999999,-999999,-999999,-999999,0.7;24.600,24.570,1822.8,44.838,44.838,44.495,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.332,0.000,-999999,-999999,-999999,-999999,0.7;24.620,24.590,1824.7,44.689,44.689,44.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.320,0.000,-999999,-999999,-999999,-999999,0.7;24.640,24.610,1826.7,44.184,44.184,43.839,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.329,0.000,-999999,-999999,-999999,-999999,0.7;24.660,24.630,1833.3,43.211,43.211,42.866,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.337,0.000,-999999,-999999,-999999,-999999,0.7;24.680,24.650,1840.3,42.225,42.225,41.880,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.350,0.000,-999999,-999999,-999999,-999999,0.8;24.700,24.670,1847.3,41.239,41.239,40.894,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.361,0.000,-999999,-999999,-999999,-999999,0.8;24.720,24.690,1853.4,40.268,40.268,39.923,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.366,0.000,-999999,-999999,-999999,-999999,0.9;24.740,24.710,1860.4,39.101,39.101,38.756,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.369,0.000,-999999,-999999,-999999,-999999,1.0;24.760,24.730,1862.8,36.863,36.863,36.517,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.361,0.000,-999999,-999999,-999999,-999999,1.0;24.780,24.750,1864.1,34.170,34.170,33.824,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.352,0.000,-999999,-999999,-999999,-999999,1.0;24.800,24.770,1865.3,31.216,31.216,30.869,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.334,0.000,-999999,-999999,-999999,-999999,1.0;24.820,24.790,1866.5,28.653,28.653,28.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.315,0.000,-999999,-999999,-999999,-999999,1.0;24.840,24.810,1867.6,26.950,26.950,26.603,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.295,0.000,-999999,-999999,-999999,-999999,1.0;24.860,24.830,1868.7,25.884,25.884,25.536,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.269,0.000,-999999,-999999,-999999,-999999,0.9;24.880,24.850,1869.8,25.240,25.240,24.892,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.248,0.000,-999999,-999999,-999999,-999999,0.9;24.900,24.870,1870.9,24.553,24.553,24.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.235,0.000,-999999,-999999,-999999,-999999,0.9;24.920,24.890,1872.0,23.947,23.947,23.598,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.218,0.000,-999999,-999999,-999999,-999999,0.8;24.940,24.910,1873.1,23.527,23.527,23.179,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.204,0.000,-999999,-999999,-999999,-999999,0.8;24.960,24.930,1874.1,23.167,23.167,22.818,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,0.192,0.000,-999999,-999999,-999999,-999999,0.8;24.980,24.950,1875.2,22.653,22.653,22.304,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;25.000,24.970,1876.3,22.206,22.206,21.857,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;25.020,24.990,1877.4,21.871,21.871,21.521,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;25.040,25.010,1878.4,21.323,21.323,20.973,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;25.050,25.020,1879.0,20.743,20.743,20.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,3,3,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;jajaneejajajajajajaneeneeneeneeneeneeneejajajaneeneejajaneeneeneeneeja2023-06-01T13:45:37+02:00voltooid2023-06-01T13:45:37+02:00neeneeneenee \ No newline at end of file diff --git a/tests/cpts/xml/CPT000000217408.xml b/tests/cpts/xml/CPT000000217408.xml new file mode 100644 index 0000000..233f172 --- /dev/null +++ b/tests/cpts/xml/CPT000000217408.xml @@ -0,0 +1 @@ +dispatch-2025-01-10T17:08:46+01:00CPT00000021740830124359IMBROpubliekeTaakinfrastructuurLand2023-04-17ISO22476D1nee51.963590395 4.379426650RDNAPTRANS201885739.344 442165.0882022-12-12RTKGPS5tot10cmmaaiveld-0.810NAP2022-12-12RTKGPS4tot10cmnee2022-12-20elektrischContinuklasse2einddiepte0.0025.046Fugro Cone Penetrometer MkIICP15-CF75SN2-P1E1M4-V1-S1/1701-34701510440.5887198951.00.016-0.03011-0.003-0.0032022-12-11T11:52:57+01:002022-12-11T11:52:57+01:000.000,0.000,105.5,0.051,0.051,0.051,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.020,0.020,109.3,0.084,0.084,0.084,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.040,0.040,111.4,0.174,0.174,0.174,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.060,0.060,113.4,2.112,2.112,2.112,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.080,0.080,115.2,2.022,2.022,2.020,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,1,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,0.2;0.100,0.100,123.6,2.484,2.484,2.482,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,0.4;0.120,0.120,133.0,4.049,4.049,4.047,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,0.4;0.140,0.140,135.3,4.084,4.084,4.082,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,0.6;0.160,0.160,137.3,1.565,1.565,1.563,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,0.6;0.180,0.180,139.2,3.336,3.336,3.334,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,0.6;0.200,0.200,141.1,6.498,6.498,6.495,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,0.9;0.220,0.220,143.1,10.259,10.259,10.256,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,0.3;0.240,0.240,145.0,8.309,8.309,8.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,0.2;0.260,0.260,146.9,7.457,7.457,7.453,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,0,2,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,0.4;0.280,0.280,148.8,10.364,10.364,10.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,0.3;0.300,0.300,150.8,14.479,14.479,14.475,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.070,0.000,-999999,-999999,-999999,-999999,0.5;0.320,0.320,152.8,15.269,15.269,15.264,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.086,0.000,-999999,-999999,-999999,-999999,0.5;0.340,0.340,155.9,15.896,15.896,15.892,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,0.1;0.360,0.360,173.5,19.951,19.951,19.946,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,0.2;0.380,0.380,185.3,20.340,20.340,20.335,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,2,-999999,-999999,0.066,0.000,-999999,-999999,-999999,-999999,0.3;0.400,0.400,188.5,23.293,23.293,23.287,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.130,0.000,-999999,-999999,-999999,-999999,0.6;0.420,0.420,191.4,22.296,22.296,22.290,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,2,-999999,-999999,0.074,0.000,-999999,-999999,-999999,-999999,0.3;0.440,0.440,194.3,24.049,24.049,24.043,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,0,2,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,0.6;0.460,0.460,196.9,20.499,20.499,20.493,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,1,2,-999999,-999999,0.091,0.000,-999999,-999999,-999999,-999999,0.4;0.480,0.480,199.5,21.596,21.596,21.590,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,0,2,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,0.1;0.500,0.500,202.0,23.072,23.072,23.065,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.160,0.000,-999999,-999999,-999999,-999999,0.6;0.520,0.520,204.5,21.844,21.844,21.837,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.117,0.000,-999999,-999999,-999999,-999999,0.4;0.540,0.540,206.9,24.893,24.893,24.886,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,1,-999999,-999999,0.151,0.000,-999999,-999999,-999999,-999999,0.5;0.560,0.560,209.4,27.214,27.214,27.206,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,2,-999999,-999999,0.173,0.000,-999999,-999999,-999999,-999999,0.6;0.580,0.580,211.8,29.020,29.020,29.012,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,0,2,-999999,-999999,0.238,0.000,-999999,-999999,-999999,-999999,0.8;0.600,0.600,214.1,34.029,34.029,34.021,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.199,0.000,-999999,-999999,-999999,-999999,0.6;0.620,0.620,216.3,36.215,36.215,36.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.208,0.000,-999999,-999999,-999999,-999999,0.6;0.640,0.640,218.1,35.940,35.940,35.931,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.211,0.000,-999999,-999999,-999999,-999999,0.6;0.660,0.660,219.5,34.880,34.880,34.870,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.256,0.000,-999999,-999999,-999999,-999999,0.7;0.680,0.680,220.9,35.630,35.630,35.621,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.215,0.000,-999999,-999999,-999999,-999999,0.6;0.700,0.700,222.1,36.416,36.416,36.406,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.228,0.000,-999999,-999999,-999999,-999999,0.6;0.720,0.720,223.3,35.482,35.482,35.472,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.225,0.000,-999999,-999999,-999999,-999999,0.6;0.740,0.740,224.5,33.850,33.850,33.840,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.235,0.000,-999999,-999999,-999999,-999999,0.6;0.760,0.760,225.8,34.146,34.146,34.135,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.245,0.000,-999999,-999999,-999999,-999999,0.7;0.780,0.780,226.9,33.657,33.657,33.646,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.255,0.000,-999999,-999999,-999999,-999999,0.7;0.800,0.800,228.2,33.214,33.214,33.203,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.217,0.000,-999999,-999999,-999999,-999999,0.6;0.820,0.820,229.4,33.632,33.632,33.621,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.223,0.000,-999999,-999999,-999999,-999999,0.6;0.840,0.840,230.6,34.588,34.588,34.576,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.215,0.000,-999999,-999999,-999999,-999999,0.6;0.860,0.860,231.8,34.662,34.662,34.650,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.206,0.000,-999999,-999999,-999999,-999999,0.6;0.880,0.880,233.0,34.256,34.256,34.243,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.222,0.000,-999999,-999999,-999999,-999999,0.6;0.900,0.900,234.2,33.630,33.630,33.617,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.243,0.000,-999999,-999999,-999999,-999999,0.7;0.920,0.920,235.4,33.459,33.459,33.446,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.260,0.000,-999999,-999999,-999999,-999999,0.7;0.940,0.940,236.6,33.291,33.291,33.278,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.280,0.000,-999999,-999999,-999999,-999999,0.8;0.960,0.960,237.7,32.543,32.543,32.530,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.307,0.000,-999999,-999999,-999999,-999999,0.9;0.980,0.980,238.9,31.701,31.701,31.688,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.322,0.000,-999999,-999999,-999999,-999999,1.0;1.000,1.000,240.1,31.278,31.278,31.264,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.346,0.000,-999999,-999999,-999999,-999999,1.1;1.020,1.020,241.3,30.508,30.508,30.493,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.301,0.000,-999999,-999999,-999999,-999999,0.9;1.040,1.040,242.6,28.843,28.843,28.829,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.253,0.000,-999999,-999999,-999999,-999999,0.8;1.060,1.060,244.1,27.816,27.816,27.801,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.241,0.000,-999999,-999999,-999999,-999999,0.8;1.080,1.080,245.4,27.029,27.029,27.014,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.255,0.000,-999999,-999999,-999999,-999999,0.8;1.100,1.100,249.5,26.352,26.352,26.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.267,0.000,-999999,-999999,-999999,-999999,0.9;1.120,1.120,255.3,25.667,25.667,25.651,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.261,0.000,-999999,-999999,-999999,-999999,0.9;1.140,1.140,260.2,25.238,25.238,25.222,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.263,0.000,-999999,-999999,-999999,-999999,0.9;1.160,1.160,260.9,25.787,25.787,25.771,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.264,0.000,-999999,-999999,-999999,-999999,1.0;1.180,1.180,261.7,26.189,26.189,26.172,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.264,0.000,-999999,-999999,-999999,-999999,0.9;1.200,1.200,262.5,26.764,26.764,26.748,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.265,0.000,-999999,-999999,-999999,-999999,0.9;1.220,1.220,263.3,27.203,27.203,27.186,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.264,0.000,-999999,-999999,-999999,-999999,0.9;1.240,1.240,264.1,27.808,27.808,27.791,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.261,0.000,-999999,-999999,-999999,-999999,0.9;1.260,1.260,264.9,28.431,28.431,28.414,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.256,0.000,-999999,-999999,-999999,-999999,0.8;1.280,1.280,265.7,29.179,29.179,29.161,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.250,0.000,-999999,-999999,-999999,-999999,0.8;1.300,1.300,266.5,30.161,30.161,30.143,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.237,0.000,-999999,-999999,-999999,-999999,0.7;1.320,1.320,267.4,30.746,30.746,30.728,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.271,0.000,-999999,-999999,-999999,-999999,0.8;1.340,1.340,268.2,31.408,31.408,31.390,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.278,0.000,-999999,-999999,-999999,-999999,0.9;1.360,1.360,269.0,32.365,32.365,32.346,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.286,0.000,-999999,-999999,-999999,-999999,0.9;1.380,1.380,269.8,31.912,31.912,31.893,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.317,0.000,-999999,-999999,-999999,-999999,1.0;1.400,1.400,270.7,31.022,31.022,31.002,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.339,0.000,-999999,-999999,-999999,-999999,1.0;1.420,1.420,271.5,30.609,30.609,30.589,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.358,0.000,-999999,-999999,-999999,-999999,1.1;1.440,1.440,272.3,30.229,30.229,30.209,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.368,0.000,-999999,-999999,-999999,-999999,1.2;1.460,1.460,273.1,29.293,29.293,29.273,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.358,0.000,-999999,-999999,-999999,-999999,1.2;1.480,1.480,273.9,28.389,28.389,28.368,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.349,0.000,-999999,-999999,-999999,-999999,1.2;1.500,1.500,274.7,27.859,27.859,27.838,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.363,0.000,-999999,-999999,-999999,-999999,1.2;1.520,1.520,275.5,27.561,27.561,27.539,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.365,0.000,-999999,-999999,-999999,-999999,1.3;1.540,1.540,276.3,27.434,27.434,27.413,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.352,0.000,-999999,-999999,-999999,-999999,1.2;1.560,1.560,277.1,27.206,27.206,27.184,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.336,0.000,-999999,-999999,-999999,-999999,1.2;1.580,1.580,277.9,26.953,26.953,26.931,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.334,0.000,-999999,-999999,-999999,-999999,1.2;1.600,1.600,278.7,26.757,26.757,26.734,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.333,0.000,-999999,-999999,-999999,-999999,1.2;1.620,1.620,279.5,26.503,26.503,26.480,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.330,0.000,-999999,-999999,-999999,-999999,1.2;1.640,1.640,280.3,26.245,26.245,26.222,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.323,0.000,-999999,-999999,-999999,-999999,1.2;1.660,1.660,281.0,25.908,25.908,25.884,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.315,0.000,-999999,-999999,-999999,-999999,1.2;1.680,1.680,281.8,25.094,25.094,25.071,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.306,0.000,-999999,-999999,-999999,-999999,1.2;1.700,1.700,282.6,24.358,24.358,24.334,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.301,0.000,-999999,-999999,-999999,-999999,1.2;1.720,1.720,283.4,23.554,23.554,23.530,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.301,0.000,-999999,-999999,-999999,-999999,1.2;1.740,1.740,284.1,22.749,22.749,22.724,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.294,0.000,-999999,-999999,-999999,-999999,1.2;1.760,1.760,284.9,22.198,22.198,22.173,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.284,0.000,-999999,-999999,-999999,-999999,1.2;1.780,1.780,285.7,21.639,21.639,21.615,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,3,-999999,-999999,0.272,0.000,-999999,-999999,-999999,-999999,1.2;1.800,1.800,286.4,20.813,20.813,20.788,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.263,0.000,-999999,-999999,-999999,-999999,1.2;1.820,1.820,287.2,19.665,19.665,19.639,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.255,0.000,-999999,-999999,-999999,-999999,1.2;1.840,1.840,287.9,18.649,18.649,18.623,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.248,0.000,-999999,-999999,-999999,-999999,1.2;1.860,1.860,288.7,17.804,17.804,17.778,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.241,0.000,-999999,-999999,-999999,-999999,1.3;1.880,1.880,289.5,17.026,17.026,16.999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.234,0.000,-999999,-999999,-999999,-999999,1.3;1.900,1.900,290.2,16.052,16.052,16.026,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,1,4,-999999,-999999,0.227,0.000,-999999,-999999,-999999,-999999,1.3;1.920,1.920,291.0,15.206,15.206,15.179,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.218,0.000,-999999,-999999,-999999,-999999,1.3;1.940,1.940,291.7,14.787,14.787,14.760,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.212,0.000,-999999,-999999,-999999,-999999,1.3;1.960,1.960,292.5,14.442,14.442,14.415,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.205,0.000,-999999,-999999,-999999,-999999,1.4;1.980,1.980,293.3,13.700,13.700,13.672,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.200,0.000,-999999,-999999,-999999,-999999,1.4;2.000,2.000,294.0,12.874,12.874,12.846,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.188,0.000,-999999,-999999,-999999,-999999,1.4;2.020,2.020,294.8,12.033,12.033,12.004,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.169,0.000,-999999,-999999,-999999,-999999,1.3;2.040,2.040,295.5,11.333,11.333,11.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.150,0.000,-999999,-999999,-999999,-999999,1.2;2.060,2.060,296.3,10.698,10.698,10.669,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.135,0.000,-999999,-999999,-999999,-999999,1.1;2.080,2.080,297.2,10.093,10.093,10.064,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.134,0.000,-999999,-999999,-999999,-999999,1.2;2.100,2.100,300.6,9.476,9.476,9.447,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.132,0.000,-999999,-999999,-999999,-999999,1.2;2.120,2.120,304.0,8.859,8.859,8.829,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.130,0.000,-999999,-999999,-999999,-999999,1.3;2.140,2.140,307.5,8.241,8.241,8.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.127,0.000,-999999,-999999,-999999,-999999,1.4;2.160,2.160,308.7,7.838,7.838,7.808,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.124,0.000,-999999,-999999,-999999,-999999,1.5;2.180,2.180,309.4,7.467,7.467,7.436,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.121,0.000,-999999,-999999,-999999,-999999,1.6;2.200,2.200,310.2,7.060,7.060,7.029,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,1.6;2.220,2.220,311.0,6.611,6.611,6.579,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.113,0.000,-999999,-999999,-999999,-999999,1.6;2.240,2.240,311.7,6.113,6.113,6.082,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.107,0.000,-999999,-999999,-999999,-999999,1.6;2.260,2.260,312.5,5.603,5.603,5.572,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.101,0.000,-999999,-999999,-999999,-999999,1.7;2.280,2.280,313.3,5.113,5.113,5.081,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.095,0.000,-999999,-999999,-999999,-999999,1.7;2.300,2.300,314.0,4.601,4.601,4.569,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.089,0.000,-999999,-999999,-999999,-999999,1.8;2.320,2.320,314.8,4.119,4.119,4.086,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.084,0.000,-999999,-999999,-999999,-999999,1.9;2.340,2.340,315.5,3.634,3.634,3.601,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.080,0.000,-999999,-999999,-999999,-999999,2.0;2.360,2.360,316.3,3.129,3.129,3.096,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.078,0.000,-999999,-999999,-999999,-999999,2.3;2.380,2.380,317.1,2.618,2.618,2.585,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.079,0.000,-999999,-999999,-999999,-999999,2.7;2.400,2.400,317.8,2.132,2.132,2.099,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.081,0.000,-999999,-999999,-999999,-999999,3.2;2.420,2.420,318.6,1.705,1.705,1.671,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.081,0.000,-999999,-999999,-999999,-999999,3.8;2.440,2.440,319.4,1.379,1.379,1.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.074,0.000,-999999,-999999,-999999,-999999,4.2;2.460,2.460,320.2,1.142,1.142,1.108,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.064,0.000,-999999,-999999,-999999,-999999,4.4;2.480,2.480,320.9,0.967,0.967,0.933,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,4.3;2.500,2.500,321.7,0.853,0.853,0.818,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,4.0;2.520,2.520,322.5,0.788,0.788,0.753,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,3.8;2.540,2.540,323.2,0.745,0.745,0.710,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,3.4;2.560,2.560,324.0,0.708,0.708,0.672,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.9;2.580,2.580,324.8,0.680,0.680,0.644,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,3.1;2.600,2.600,325.5,0.661,0.661,0.624,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,3.7;2.620,2.620,326.3,0.672,0.672,0.635,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,4.1;2.640,2.640,327.1,0.697,0.697,0.660,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,4.3;2.660,2.660,327.8,0.725,0.725,0.688,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,4.4;2.680,2.680,328.6,0.743,0.743,0.706,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,4.8;2.700,2.700,329.4,0.742,0.742,0.704,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,5.2;2.720,2.720,330.1,0.724,0.724,0.686,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,5.5;2.740,2.740,330.9,0.713,0.713,0.675,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,5.7;2.760,2.760,331.7,0.696,0.696,0.657,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,5.9;2.780,2.780,332.5,0.673,0.673,0.634,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,6.0;2.800,2.800,333.2,0.649,0.649,0.610,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,6.1;2.820,2.820,334.0,0.625,0.625,0.586,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,6.3;2.840,2.840,334.7,0.605,0.605,0.565,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,6.6;2.860,2.860,335.5,0.582,0.582,0.542,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,6.8;2.880,2.880,336.3,0.557,0.557,0.517,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,7.1;2.900,2.900,337.0,0.530,0.530,0.489,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,7.2;2.920,2.920,337.8,0.524,0.524,0.483,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,7.3;2.940,2.940,338.6,0.540,0.540,0.499,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,7.4;2.960,2.960,339.4,0.567,0.567,0.525,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,7.8;2.980,2.980,340.1,0.566,0.566,0.524,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,8.4;3.000,3.000,340.9,0.558,0.558,0.516,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,8.8;3.020,3.010,341.7,0.569,0.569,0.527,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,9.1;3.040,3.030,342.4,0.580,0.580,0.538,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.054,0.000,-999999,-999999,-999999,-999999,9.5;3.060,3.050,343.2,0.584,0.584,0.541,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,9.6;3.080,3.070,345.5,0.573,0.573,0.530,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,9.9;3.100,3.090,348.9,0.555,0.555,0.511,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,10.0;3.120,3.110,352.3,0.537,0.537,0.493,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,9.8;3.140,3.130,354.8,0.520,0.520,0.476,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,9.6;3.160,3.150,355.5,0.508,0.508,0.464,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,9.6;3.180,3.170,356.3,0.506,0.506,0.462,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,9.4;3.200,3.190,357.1,0.502,0.502,0.457,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,9.5;3.220,3.210,357.8,0.490,0.490,0.445,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,9.8;3.240,3.230,358.6,0.486,0.486,0.440,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,10.4;3.260,3.250,359.4,0.513,0.513,0.468,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.058,0.000,-999999,-999999,-999999,-999999,11.4;3.280,3.270,360.1,0.517,0.517,0.471,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.061,0.000,-999999,-999999,-999999,-999999,12.2;3.300,3.290,360.9,0.510,0.510,0.464,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,12.9;3.320,3.310,361.7,0.493,0.493,0.447,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.064,0.000,-999999,-999999,-999999,-999999,13.4;3.340,3.330,362.5,0.450,0.450,0.403,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,13.5;3.360,3.350,363.2,0.424,0.424,0.377,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.061,0.000,-999999,-999999,-999999,-999999,13.5;3.380,3.370,364.0,0.401,0.401,0.354,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.058,0.000,-999999,-999999,-999999,-999999,13.2;3.400,3.390,364.8,0.395,0.395,0.348,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,12.9;3.420,3.410,365.5,0.414,0.414,0.366,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,13.2;3.440,3.430,366.3,0.447,0.447,0.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,13.1;3.460,3.450,367.1,0.475,0.475,0.426,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,12.9;3.480,3.470,367.8,0.468,0.468,0.419,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,12.2;3.500,3.490,368.6,0.435,0.435,0.386,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,11.7;3.520,3.510,369.4,0.415,0.415,0.365,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,11.0;3.540,3.530,370.2,0.420,0.420,0.371,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,10.1;3.560,3.550,370.9,0.463,0.463,0.414,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,9.8;3.580,3.570,371.7,0.541,0.541,0.491,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,9.6;3.600,3.590,372.5,0.616,0.616,0.566,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,9.8;3.620,3.610,373.2,0.656,0.656,0.605,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,10.5;3.640,3.630,374.0,0.676,0.676,0.625,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.068,0.000,-999999,-999999,-999999,-999999,10.8;3.660,3.650,374.8,0.687,0.687,0.636,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.072,0.000,-999999,-999999,-999999,-999999,10.7;3.680,3.670,375.5,0.707,0.707,0.656,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.074,0.000,-999999,-999999,-999999,-999999,10.1;3.700,3.690,376.3,0.703,0.703,0.651,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.075,0.000,-999999,-999999,-999999,-999999,9.4;3.720,3.710,377.1,0.771,0.771,0.719,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.074,0.000,-999999,-999999,-999999,-999999,8.3;3.740,3.730,377.8,1.007,1.007,0.955,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.074,0.000,-999999,-999999,-999999,-999999,7.3;3.760,3.750,378.7,1.225,1.225,1.172,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.080,0.000,-999999,-999999,-999999,-999999,7.1;3.780,3.770,379.4,1.459,1.459,1.406,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.085,0.000,-999999,-999999,-999999,-999999,7.2;3.800,3.790,380.2,1.544,1.544,1.491,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.091,0.000,-999999,-999999,-999999,-999999,7.4;3.820,3.810,380.9,1.523,1.523,1.470,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.096,0.000,-999999,-999999,-999999,-999999,7.8;3.840,3.830,381.7,1.206,1.206,1.152,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.096,0.000,-999999,-999999,-999999,-999999,8.0;3.860,3.850,382.5,0.957,0.957,0.903,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.095,0.000,-999999,-999999,-999999,-999999,8.5;3.880,3.870,383.2,0.812,0.812,0.758,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.095,0.000,-999999,-999999,-999999,-999999,9.3;3.900,3.890,384.0,0.715,0.715,0.660,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.095,0.000,-999999,-999999,-999999,-999999,10.4;3.920,3.910,384.8,0.701,0.701,0.646,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.092,0.000,-999999,-999999,-999999,-999999,11.4;3.940,3.930,385.5,0.697,0.697,0.642,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.090,0.000,-999999,-999999,-999999,-999999,12.2;3.960,3.950,386.3,0.687,0.687,0.631,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.086,0.000,-999999,-999999,-999999,-999999,12.6;3.980,3.970,387.1,0.655,0.655,0.599,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.085,0.000,-999999,-999999,-999999,-999999,12.9;4.000,3.990,387.8,0.617,0.617,0.561,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.085,0.000,-999999,-999999,-999999,-999999,13.3;4.020,4.010,388.6,0.574,0.574,0.518,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.085,0.000,-999999,-999999,-999999,-999999,13.8;4.040,4.030,389.4,0.532,0.532,0.476,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.084,0.000,-999999,-999999,-999999,-999999,14.0;4.060,4.050,390.7,0.504,0.504,0.447,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.080,0.000,-999999,-999999,-999999,-999999,14.1;4.080,4.070,394.1,0.497,0.497,0.440,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.077,0.000,-999999,-999999,-999999,-999999,14.4;4.100,4.090,397.6,0.490,0.490,0.433,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.074,0.000,-999999,-999999,-999999,-999999,14.3;4.120,4.110,401.0,0.483,0.483,0.426,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.068,0.000,-999999,-999999,-999999,-999999,13.9;4.140,4.130,401.8,0.487,0.487,0.429,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,13.3;4.160,4.150,402.5,0.482,0.482,0.424,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.059,0.000,-999999,-999999,-999999,-999999,12.5;4.180,4.170,403.3,0.457,0.457,0.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,11.9;4.200,4.190,404.1,0.437,0.437,0.378,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,11.6;4.220,4.210,404.8,0.434,0.434,0.375,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,11.1;4.240,4.230,405.6,0.393,0.393,0.334,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,11.0;4.260,4.250,406.4,0.363,0.363,0.303,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,11.2;4.280,4.270,407.2,0.337,0.337,0.277,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,11.6;4.300,4.290,407.9,0.333,0.333,0.272,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,12.1;4.320,4.310,408.7,0.330,0.330,0.270,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,12.8;4.340,4.330,409.5,0.325,0.325,0.264,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,13.1;4.360,4.350,410.2,0.316,0.316,0.255,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,13.3;4.380,4.370,411.0,0.304,0.304,0.242,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,13.3;4.400,4.390,411.8,0.298,0.298,0.236,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,13.0;4.420,4.410,412.5,0.291,0.291,0.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,12.3;4.440,4.430,413.3,0.276,0.276,0.214,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,12.0;4.460,4.450,414.1,0.259,0.259,0.196,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,12.4;4.480,4.470,414.8,0.252,0.252,0.189,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,12.9;4.500,4.490,415.6,0.258,0.258,0.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,13.8;4.520,4.510,416.4,0.271,0.271,0.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,14.8;4.540,4.530,417.1,0.277,0.277,0.214,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,15.9;4.560,4.550,417.9,0.280,0.280,0.216,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,16.9;4.580,4.570,418.7,0.280,0.280,0.216,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,17.5;4.600,4.590,419.5,0.282,0.282,0.218,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,17.5;4.620,4.610,420.2,0.281,0.281,0.216,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,17.5;4.640,4.630,421.0,0.283,0.283,0.218,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,17.4;4.660,4.650,421.8,0.280,0.280,0.215,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,17.3;4.680,4.670,422.5,0.285,0.285,0.220,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,17.2;4.700,4.690,423.3,0.295,0.295,0.230,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,17.1;4.720,4.710,424.1,0.304,0.304,0.238,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,16.9;4.740,4.730,424.8,0.311,0.311,0.245,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,16.8;4.760,4.750,425.6,0.317,0.317,0.250,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,16.7;4.780,4.770,426.4,0.316,0.316,0.249,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,16.5;4.800,4.790,427.2,0.300,0.300,0.233,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,16.3;4.820,4.810,427.9,0.278,0.278,0.210,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,16.2;4.840,4.830,428.7,0.261,0.261,0.194,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,16.0;4.860,4.850,429.5,0.246,0.246,0.178,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,15.7;4.880,4.870,430.2,0.232,0.232,0.164,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,15.2;4.900,4.890,431.0,0.214,0.214,0.145,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,14.7;4.920,4.910,431.8,0.193,0.193,0.124,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,14.2;4.940,4.930,432.5,0.185,0.185,0.116,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,13.7;4.960,4.950,433.3,0.187,0.187,0.117,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,13.3;4.980,4.970,434.1,0.184,0.184,0.114,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,13.2;5.000,4.990,434.8,0.177,0.177,0.107,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,13.1;5.020,5.010,435.6,0.167,0.167,0.097,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,12.9;5.040,5.030,436.4,0.164,0.164,0.094,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,12.9;5.060,5.050,439.2,0.165,0.165,0.095,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,12.7;5.080,5.070,442.5,0.166,0.166,0.095,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,12.5;5.100,5.090,445.8,0.167,0.167,0.096,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,12.1;5.120,5.110,447.9,0.170,0.170,0.099,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,11.4;5.140,5.130,448.7,0.177,0.177,0.105,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,10.7;5.160,5.150,449.5,0.175,0.175,0.103,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,10.2;5.180,5.170,450.2,0.175,0.175,0.103,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,9.8;5.200,5.190,451.0,0.177,0.177,0.104,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,9.2;5.220,5.210,451.8,0.177,0.177,0.104,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,8.6;5.240,5.230,452.5,0.177,0.177,0.104,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,8.2;5.260,5.250,453.3,0.177,0.177,0.104,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,7.9;5.280,5.270,454.1,0.181,0.181,0.107,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,7.9;5.300,5.290,454.8,0.189,0.189,0.115,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,8.0;5.320,5.310,455.6,0.197,0.197,0.122,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,8.0;5.340,5.330,456.4,0.201,0.201,0.127,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,8.0;5.360,5.350,457.1,0.203,0.203,0.128,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,8.0;5.380,5.370,457.9,0.201,0.201,0.126,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,7.9;5.400,5.390,458.7,0.204,0.204,0.128,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,7.8;5.420,5.410,459.5,0.204,0.204,0.129,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,7.7;5.440,5.430,460.2,0.204,0.204,0.128,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,7.7;5.460,5.450,461.0,0.207,0.207,0.131,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,7.6;5.480,5.470,461.8,0.205,0.205,0.129,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,7.5;5.500,5.490,462.5,0.205,0.205,0.129,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,7.5;5.520,5.510,463.3,0.207,0.207,0.130,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,7.6;5.540,5.530,464.1,0.213,0.213,0.135,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,7.8;5.560,5.550,464.9,0.223,0.223,0.145,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,7.8;5.580,5.570,465.6,0.231,0.231,0.153,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,7.8;5.600,5.590,466.4,0.230,0.230,0.152,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,7.8;5.620,5.610,467.2,0.227,0.227,0.149,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,7.7;5.640,5.630,467.9,0.224,0.224,0.145,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,7.9;5.660,5.650,468.7,0.222,0.222,0.143,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,7.8;5.680,5.670,469.5,0.219,0.219,0.140,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,7.7;5.700,5.690,470.3,0.221,0.221,0.141,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,7.6;5.720,5.710,471.0,0.225,0.225,0.145,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,7.7;5.740,5.730,471.8,0.227,0.227,0.147,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,7.5;5.760,5.750,472.5,0.234,0.234,0.154,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,7.4;5.780,5.770,473.3,0.247,0.247,0.167,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,7.5;5.800,5.790,474.1,0.249,0.249,0.168,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,7.6;5.820,5.810,474.9,0.256,0.256,0.175,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,7.7;5.840,5.830,475.6,0.266,0.266,0.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,7.6;5.860,5.850,476.4,0.276,0.276,0.194,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,7.5;5.880,5.870,477.2,0.281,0.281,0.199,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,7.5;5.900,5.890,478.0,0.284,0.284,0.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,7.5;5.920,5.910,478.7,0.291,0.291,0.208,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,7.4;5.940,5.930,479.5,0.299,0.299,0.216,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,7.3;5.960,5.950,480.3,0.311,0.311,0.228,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,7.4;5.980,5.970,481.0,0.329,0.329,0.245,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,7.6;6.000,5.990,481.8,0.350,0.350,0.267,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,7.8;6.020,6.010,482.6,0.370,0.370,0.286,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,7.9;6.040,6.030,483.3,0.373,0.373,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,8.1;6.060,6.050,486.2,0.359,0.359,0.274,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,8.4;6.080,6.070,489.6,0.342,0.342,0.257,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,8.7;6.100,6.090,493.0,0.324,0.324,0.239,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,9.2;6.120,6.110,494.9,0.303,0.303,0.217,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,9.5;6.140,6.130,495.7,0.271,0.271,0.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,8.8;6.160,6.150,496.5,0.249,0.249,0.163,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,7.9;6.180,6.170,497.2,0.223,0.223,0.137,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,7.1;6.200,6.190,498.0,0.200,0.200,0.113,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,6.5;6.220,6.210,498.8,0.206,0.206,0.119,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,6.0;6.240,6.230,499.5,0.213,0.213,0.125,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,5.6;6.260,6.250,500.3,0.220,0.220,0.132,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,5.2;6.280,6.270,501.1,0.230,0.230,0.142,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,5.2;6.300,6.290,501.8,0.241,0.241,0.153,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,5.2;6.320,6.310,502.6,0.244,0.244,0.156,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,5.1;6.340,6.330,503.4,0.243,0.243,0.155,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,5.1;6.360,6.350,504.2,0.242,0.242,0.153,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,5.1;6.380,6.370,504.9,0.237,0.237,0.148,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,5.0;6.400,6.390,505.7,0.237,0.237,0.148,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,4.9;6.420,6.410,506.5,0.232,0.232,0.143,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,4.8;6.440,6.430,507.3,0.229,0.229,0.139,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,4.7;6.460,6.450,508.0,0.230,0.230,0.140,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,4.8;6.480,6.470,508.8,0.231,0.231,0.141,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,4.6;6.500,6.490,509.5,0.233,0.233,0.142,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,4.2;6.520,6.510,510.3,0.237,0.237,0.146,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,4.1;6.540,6.530,511.1,0.249,0.249,0.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,4.3;6.560,6.550,511.9,0.271,0.271,0.179,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,4.2;6.580,6.570,512.7,0.289,0.289,0.197,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,4.1;6.600,6.590,513.4,0.296,0.296,0.204,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,4.1;6.620,6.610,514.2,0.288,0.288,0.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,4.0;6.640,6.630,515.0,0.290,0.290,0.198,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.7;6.660,6.640,515.7,0.315,0.315,0.222,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,3.3;6.680,6.660,516.5,0.339,0.339,0.246,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.7;6.700,6.680,517.3,0.376,0.376,0.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.5;6.720,6.700,518.0,0.495,0.495,0.401,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.2;6.740,6.720,518.8,0.672,0.672,0.578,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.1;6.760,6.740,519.6,0.721,0.721,0.627,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,2.3;6.780,6.760,520.3,0.646,0.646,0.551,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.5;6.800,6.780,521.1,0.519,0.519,0.424,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.0;6.820,6.800,521.9,0.415,0.415,0.320,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.2;6.840,6.820,522.7,0.317,0.317,0.222,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.6;6.860,6.840,523.4,0.255,0.255,0.159,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.8;6.880,6.860,524.2,0.232,0.232,0.136,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,4.0;6.900,6.880,525.0,0.232,0.232,0.135,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,3.9;6.920,6.900,525.7,0.237,0.237,0.140,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.7;6.940,6.920,526.5,0.235,0.235,0.138,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.5;6.960,6.940,527.3,0.230,0.230,0.133,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.5;6.980,6.960,528.0,0.234,0.234,0.137,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.5;7.000,6.980,528.8,0.230,0.230,0.132,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.5;7.020,7.000,529.6,0.234,0.234,0.136,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.5;7.040,7.020,531.5,0.237,0.237,0.139,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.6;7.060,7.040,535.0,0.242,0.242,0.143,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.6;7.080,7.060,538.4,0.247,0.247,0.148,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.6;7.100,7.080,541.2,0.249,0.249,0.150,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.6;7.120,7.100,542.0,0.248,0.248,0.149,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.7;7.140,7.120,542.7,0.246,0.246,0.146,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.6;7.160,7.140,543.5,0.247,0.247,0.147,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.5;7.180,7.160,544.3,0.247,0.247,0.147,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.4;7.200,7.180,545.0,0.244,0.244,0.143,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.3;7.220,7.200,545.8,0.240,0.240,0.139,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.2;7.240,7.220,546.6,0.240,0.240,0.139,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.2;7.260,7.240,547.3,0.247,0.247,0.146,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.2;7.280,7.260,548.1,0.249,0.249,0.147,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.2;7.300,7.280,548.9,0.249,0.249,0.147,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.2;7.320,7.300,549.7,0.248,0.248,0.146,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.2;7.340,7.320,550.4,0.247,0.247,0.144,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.2;7.360,7.340,551.2,0.250,0.250,0.147,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.3;7.380,7.360,552.0,0.258,0.258,0.155,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.2;7.400,7.380,552.7,0.263,0.263,0.160,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.1;7.420,7.400,553.5,0.266,0.266,0.162,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,3.1;7.440,7.420,554.3,0.267,0.267,0.163,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.2;7.460,7.440,555.0,0.269,0.269,0.165,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.3;7.480,7.460,555.8,0.287,0.287,0.182,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.2;7.500,7.480,556.6,0.308,0.308,0.203,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.1;7.520,7.500,557.3,0.300,0.300,0.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.9;7.540,7.520,558.1,0.279,0.279,0.173,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.8;7.560,7.540,558.9,0.263,0.263,0.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.8;7.580,7.560,559.7,0.259,0.259,0.153,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.8;7.600,7.580,560.5,0.264,0.264,0.158,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.8;7.620,7.600,561.2,0.273,0.273,0.166,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.8;7.640,7.620,562.0,0.286,0.286,0.180,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.8;7.660,7.640,562.8,0.294,0.294,0.187,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.9;7.680,7.660,563.5,0.297,0.297,0.190,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.0;7.700,7.680,564.3,0.299,0.299,0.191,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.0;7.720,7.700,565.1,0.303,0.303,0.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.1;7.740,7.720,565.8,0.303,0.303,0.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.1;7.760,7.740,566.6,0.299,0.299,0.191,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.0;7.780,7.760,567.4,0.320,0.320,0.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,3.1;7.800,7.780,568.2,0.315,0.315,0.206,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,3.2;7.820,7.800,568.9,0.308,0.308,0.198,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,3.1;7.840,7.820,569.7,0.310,0.310,0.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,3.0;7.860,7.840,570.5,0.333,0.333,0.223,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,3.0;7.880,7.860,571.2,0.325,0.325,0.215,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,3.1;7.900,7.880,572.0,0.325,0.325,0.214,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,3.1;7.920,7.900,572.8,0.329,0.329,0.218,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,3.1;7.940,7.920,573.5,0.328,0.328,0.217,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,3.1;7.960,7.940,574.3,0.324,0.324,0.213,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,3.1;7.980,7.960,575.1,0.323,0.323,0.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,3.1;8.000,7.980,575.8,0.333,0.333,0.221,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,3.1;8.020,8.000,577.0,0.350,0.350,0.237,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,3.0;8.040,8.020,580.3,0.378,0.378,0.265,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,3.0;8.060,8.040,583.7,0.406,0.406,0.293,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,3.2;8.080,8.060,587.0,0.434,0.434,0.321,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.4;8.100,8.080,588.2,0.473,0.473,0.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.6;8.120,8.100,589.0,0.498,0.498,0.384,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,4.6;8.140,8.120,589.7,0.527,0.527,0.413,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,6.0;8.160,8.140,590.5,0.563,0.563,0.449,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,6.9;8.180,8.160,591.3,0.627,0.627,0.513,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,7.6;8.200,8.180,592.0,0.694,0.694,0.579,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,8.0;8.220,8.200,592.8,0.725,0.725,0.610,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,8.4;8.240,8.220,593.6,0.723,0.723,0.607,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,8.6;8.260,8.240,594.3,0.685,0.685,0.570,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,8.4;8.280,8.260,595.1,0.649,0.649,0.534,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,8.0;8.300,8.280,595.9,0.605,0.605,0.489,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,7.7;8.320,8.300,596.7,0.556,0.556,0.440,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,7.3;8.340,8.320,597.5,0.515,0.515,0.398,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,6.7;8.360,8.340,598.2,0.487,0.487,0.370,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,6.1;8.380,8.360,599.0,0.450,0.450,0.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,5.5;8.400,8.380,599.8,0.422,0.422,0.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,4.9;8.420,8.400,600.5,0.404,0.404,0.286,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,4.5;8.440,8.420,601.3,0.398,0.398,0.280,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.9;8.460,8.440,602.1,0.394,0.394,0.276,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.4;8.480,8.460,602.8,0.398,0.398,0.279,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,3.1;8.500,8.480,603.6,0.405,0.405,0.287,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.0;8.520,8.500,604.4,0.410,0.410,0.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,2.9;8.540,8.520,605.2,0.409,0.409,0.290,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,2.9;8.560,8.540,606.0,0.409,0.409,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,2.8;8.580,8.560,606.7,0.411,0.411,0.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,2.8;8.600,8.580,607.5,0.409,0.409,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.7;8.620,8.600,608.3,0.407,0.407,0.287,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.7;8.640,8.620,609.0,0.409,0.409,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.7;8.660,8.640,609.8,0.408,0.408,0.287,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.6;8.680,8.660,610.6,0.410,0.410,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.5;8.700,8.680,611.3,0.412,0.412,0.290,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.6;8.720,8.700,612.1,0.406,0.406,0.284,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.6;8.740,8.720,612.9,0.403,0.403,0.281,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.5;8.760,8.740,613.7,0.406,0.406,0.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.6;8.780,8.760,614.4,0.412,0.412,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.5;8.800,8.780,615.2,0.419,0.419,0.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.5;8.820,8.800,616.0,0.417,0.417,0.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.5;8.840,8.820,616.8,0.413,0.413,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.5;8.860,8.840,617.5,0.405,0.405,0.281,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.4;8.880,8.860,618.3,0.416,0.416,0.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.4;8.900,8.880,619.1,0.435,0.435,0.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,2.9;8.920,8.900,619.8,0.479,0.479,0.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,2.8;8.940,8.920,620.6,0.537,0.537,0.412,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.9;8.960,8.940,621.4,0.561,0.561,0.436,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.0;8.980,8.960,622.2,0.539,0.539,0.414,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.2;9.000,8.980,622.9,0.534,0.534,0.409,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.3;9.020,9.000,624.4,0.642,0.642,0.516,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.8;9.040,9.020,627.8,0.825,0.825,0.699,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.2;9.060,9.040,631.2,1.008,1.008,0.881,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.0;9.080,9.060,634.5,1.198,1.198,1.071,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,1.7;9.100,9.080,635.3,1.413,1.413,1.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.4;9.120,9.100,636.0,1.260,1.260,1.132,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,1.5;9.140,9.120,636.8,1.066,1.066,0.938,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,1.3;9.160,9.140,637.6,1.278,1.278,1.150,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.2;9.180,9.160,638.4,1.729,1.729,1.601,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,1.6;9.200,9.180,639.2,1.540,1.540,1.411,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,2.1;9.220,9.200,639.9,1.169,1.169,1.040,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,2.3;9.240,9.220,640.7,0.918,0.918,0.789,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,2.2;9.260,9.240,641.5,0.721,0.721,0.592,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,2.1;9.280,9.260,642.2,0.622,0.622,0.492,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,2.0;9.300,9.280,643.0,0.588,0.588,0.458,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,1.9;9.320,9.300,643.8,0.963,0.963,0.833,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.5;9.340,9.320,644.6,1.549,1.549,1.419,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,1.3;9.360,9.340,645.3,1.821,1.821,1.690,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,1.4;9.380,9.360,646.1,1.706,1.706,1.575,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,1.4;9.400,9.380,646.9,1.474,1.474,1.343,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,1.5;9.420,9.400,647.7,1.336,1.336,1.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,1.7;9.440,9.420,648.4,1.280,1.280,1.149,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,1.8;9.460,9.440,649.2,1.257,1.257,1.125,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,2.0;9.480,9.460,650.0,1.213,1.213,1.081,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,2.2;9.500,9.480,650.7,1.114,1.114,0.982,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,2.2;9.520,9.500,651.5,0.949,0.949,0.816,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,2.5;9.540,9.520,652.3,0.896,0.896,0.763,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,2.3;9.560,9.540,653.0,0.898,0.898,0.764,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,2.4;9.580,9.560,653.8,1.069,1.069,0.935,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,2.6;9.600,9.580,654.6,1.035,1.035,0.901,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.2;9.620,9.600,655.3,0.905,0.905,0.770,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,1.7;9.640,9.620,656.1,0.955,0.955,0.820,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,1.3;9.660,9.640,656.9,1.514,1.514,1.379,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,1.2;9.680,9.660,657.7,2.420,2.420,2.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,1.1;9.700,9.680,658.5,2.685,2.685,2.549,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,1.3;9.720,9.700,659.2,2.469,2.469,2.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,1.3;9.740,9.720,660.0,2.218,2.218,2.082,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,1.4;9.760,9.740,660.8,2.018,2.018,1.881,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,1.6;9.780,9.760,661.5,1.792,1.792,1.655,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.9;9.800,9.780,662.3,1.531,1.531,1.394,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,2.1;9.820,9.800,663.1,1.298,1.298,1.161,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,2.3;9.840,9.820,663.8,1.149,1.149,1.011,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,2.4;9.860,9.840,664.6,1.059,1.059,0.922,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,2.3;9.880,9.860,665.4,1.005,1.005,0.867,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,2.3;9.900,9.880,666.2,1.076,1.076,0.938,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,2.2;9.920,9.900,666.9,1.213,1.213,1.074,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,2.1;9.940,9.920,667.7,1.229,1.229,1.090,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,2.0;9.960,9.940,668.5,1.150,1.150,1.011,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,2.0;9.980,9.960,669.2,1.213,1.213,1.073,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,1.9;10.000,9.980,670.0,1.436,1.436,1.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,2.0;10.020,10.000,673.0,1.568,1.568,1.428,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,1.7;10.040,10.020,676.0,1.700,1.700,1.560,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,1.6;10.060,10.040,679.0,1.833,1.833,1.692,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,1.4;10.080,10.060,681.6,2.001,2.001,1.861,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,1.3;10.100,10.080,682.4,2.207,2.207,2.066,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,1.5;10.120,10.100,683.2,2.041,2.041,1.900,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,1.6;10.140,10.120,683.9,1.811,1.811,1.670,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,1.7;10.160,10.140,684.7,1.585,1.585,1.443,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,1.8;10.180,10.160,685.5,1.371,1.371,1.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,1.9;10.200,10.180,686.2,1.191,1.191,1.049,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,1.9;10.220,10.200,687.0,1.013,1.013,0.871,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,1.9;10.240,10.220,687.8,0.852,0.852,0.709,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,1.7;10.260,10.240,688.5,0.743,0.743,0.600,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,1.6;10.280,10.260,689.3,0.730,0.730,0.586,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.7;10.300,10.280,690.1,0.881,0.881,0.737,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.7;10.320,10.300,690.9,1.088,1.088,0.944,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.7;10.340,10.320,691.7,1.220,1.220,1.075,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,1.8;10.360,10.340,692.4,1.236,1.236,1.092,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,1.9;10.380,10.360,693.2,1.231,1.231,1.086,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,1.9;10.400,10.380,694.0,1.232,1.232,1.086,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,1.8;10.420,10.390,694.7,1.260,1.260,1.114,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,1.7;10.440,10.410,695.5,1.499,1.499,1.353,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,1.6;10.460,10.430,696.3,1.783,1.783,1.637,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,1.6;10.480,10.450,697.1,1.915,1.915,1.768,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,1.6;10.500,10.470,697.8,1.895,1.895,1.748,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,1.5;10.520,10.490,698.6,1.836,1.836,1.690,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,1.4;10.540,10.510,699.4,1.896,1.896,1.749,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,1.3;10.560,10.530,700.2,2.014,2.014,1.867,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,1.4;10.580,10.550,700.9,2.105,2.105,1.957,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,1.3;10.600,10.570,701.7,2.085,2.085,1.937,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,1.3;10.620,10.590,702.5,2.039,2.039,1.890,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,1.2;10.640,10.610,703.3,2.090,2.090,1.941,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,1.1;10.660,10.630,704.0,2.216,2.216,2.067,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,1.1;10.680,10.650,704.8,2.493,2.493,2.344,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,1.1;10.700,10.670,705.6,2.951,2.951,2.802,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,1.0;10.720,10.690,706.3,3.333,3.333,3.184,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,1.0;10.740,10.710,707.1,3.494,3.494,3.344,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,1.0;10.760,10.730,707.9,3.595,3.595,3.445,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,1.0;10.780,10.750,708.7,3.679,3.679,3.529,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.0;10.800,10.770,709.5,3.710,3.710,3.560,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,1.1;10.820,10.790,710.3,3.714,3.714,3.563,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,1.1;10.840,10.810,711.0,3.721,3.721,3.570,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,1.1;10.860,10.830,711.8,3.726,3.726,3.575,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,1.1;10.880,10.850,712.6,3.751,3.751,3.599,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,1.1;10.900,10.870,713.3,3.777,3.777,3.625,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,1.2;10.920,10.890,714.1,3.757,3.757,3.605,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,1.1;10.940,10.910,714.9,3.662,3.662,3.509,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,1.1;10.960,10.930,715.7,3.516,3.516,3.363,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.0;10.980,10.950,716.4,3.384,3.384,3.231,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,1.0;11.000,10.970,717.9,3.400,3.400,3.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,1.0;11.020,10.990,721.3,3.534,3.534,3.380,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.0;11.040,11.010,724.7,3.668,3.668,3.514,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.0;11.060,11.030,728.0,3.800,3.800,3.646,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,1.0;11.080,11.050,728.8,3.859,3.859,3.704,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,1.0;11.100,11.070,729.6,3.895,3.895,3.740,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,1.0;11.120,11.090,730.4,4.001,4.001,3.846,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,1.0;11.140,11.110,731.2,4.083,4.083,3.927,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,1.0;11.160,11.130,731.9,4.104,4.104,3.949,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,1.0;11.180,11.150,732.7,4.118,4.118,3.962,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,1.0;11.200,11.170,733.5,4.130,4.130,3.973,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,1.0;11.220,11.190,734.2,4.119,4.119,3.963,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,1.1;11.240,11.210,735.0,4.062,4.062,3.905,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,1.1;11.260,11.230,735.8,3.991,3.991,3.834,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,1.2;11.280,11.250,736.5,3.910,3.910,3.753,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,1.2;11.300,11.270,737.3,3.819,3.819,3.662,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,1.2;11.320,11.290,738.1,3.696,3.696,3.538,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,1.3;11.340,11.310,738.8,3.503,3.503,3.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,1.3;11.360,11.330,739.6,3.256,3.256,3.097,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,1.4;11.380,11.350,740.4,3.000,3.000,2.841,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,1.4;11.400,11.370,741.2,2.802,2.802,2.643,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,1.4;11.420,11.390,741.9,2.683,2.683,2.523,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,1.5;11.440,11.410,742.7,2.564,2.564,2.404,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,1.6;11.460,11.430,743.5,2.359,2.359,2.199,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,1.8;11.480,11.450,744.2,2.095,2.095,1.935,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,2.0;11.500,11.470,745.0,1.809,1.809,1.648,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,2.2;11.520,11.490,745.8,1.581,1.581,1.420,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,2.5;11.540,11.510,746.5,1.460,1.460,1.299,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,3.1;11.560,11.530,747.3,1.276,1.276,1.115,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,3.5;11.580,11.550,748.1,1.064,1.064,0.902,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,3.6;11.600,11.570,748.8,0.900,0.900,0.738,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,3.4;11.620,11.590,749.6,0.729,0.729,0.566,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,3.1;11.640,11.610,750.4,0.684,0.684,0.521,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,2.8;11.660,11.630,751.2,0.899,0.899,0.736,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,2.3;11.680,11.650,751.9,1.296,1.296,1.133,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.4;11.700,11.670,752.7,1.585,1.585,1.421,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,1.1;11.720,11.690,753.5,1.682,1.682,1.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,1.2;11.740,11.710,754.2,1.762,1.762,1.598,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,1.2;11.760,11.730,755.0,1.859,1.859,1.695,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,1.3;11.780,11.750,755.8,2.135,2.135,1.970,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,1.2;11.800,11.770,756.6,2.521,2.521,2.356,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,1.1;11.820,11.790,757.3,2.829,2.829,2.664,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,1.0;11.840,11.810,758.1,3.272,3.272,3.106,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,1.0;11.860,11.830,758.9,3.850,3.850,3.685,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,1.0;11.880,11.850,759.7,4.363,4.363,4.197,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,1.0;11.900,11.870,760.5,4.680,4.680,4.513,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,0.9;11.920,11.890,761.3,5.296,5.296,5.130,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,0.9;11.940,11.910,762.1,7.047,7.047,6.880,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,0.9;11.960,11.930,762.8,8.735,8.735,8.568,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,0.8;11.980,11.950,763.6,9.774,9.774,9.607,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.072,0.000,-999999,-999999,-999999,-999999,0.9;12.000,11.970,765.9,10.061,10.061,9.893,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.089,0.000,-999999,-999999,-999999,-999999,1.0;12.020,11.990,769.4,10.049,10.049,9.881,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.098,0.000,-999999,-999999,-999999,-999999,1.0;12.040,12.010,772.9,10.037,10.037,9.869,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.104,0.000,-999999,-999999,-999999,-999999,1.0;12.060,12.030,775.3,10.066,10.066,9.898,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,1.1;12.080,12.050,776.1,9.923,9.923,9.754,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.114,0.000,-999999,-999999,-999999,-999999,1.1;12.100,12.070,776.9,9.784,9.784,9.615,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.116,0.000,-999999,-999999,-999999,-999999,1.1;12.120,12.090,777.6,9.475,9.475,9.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.117,0.000,-999999,-999999,-999999,-999999,1.2;12.140,12.110,778.4,9.216,9.216,9.047,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,1,4,-999999,-999999,0.116,0.000,-999999,-999999,-999999,-999999,1.2;12.160,12.130,779.2,9.236,9.236,9.066,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.112,0.000,-999999,-999999,-999999,-999999,1.1;12.180,12.150,780.0,9.403,9.403,9.233,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.113,0.000,-999999,-999999,-999999,-999999,1.1;12.200,12.170,780.7,9.462,9.462,9.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.115,0.000,-999999,-999999,-999999,-999999,1.2;12.220,12.190,781.5,9.415,9.415,9.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.117,0.000,-999999,-999999,-999999,-999999,1.2;12.240,12.210,782.3,9.330,9.330,9.159,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.115,0.000,-999999,-999999,-999999,-999999,1.2;12.260,12.230,783.0,9.261,9.261,9.090,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.112,0.000,-999999,-999999,-999999,-999999,1.1;12.280,12.250,783.8,9.359,9.359,9.187,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,1.1;12.300,12.270,784.6,9.755,9.755,9.584,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,1.0;12.320,12.290,785.3,10.257,10.257,10.085,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.106,0.000,-999999,-999999,-999999,-999999,1.0;12.340,12.310,786.1,10.621,10.621,10.448,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,1.0;12.360,12.330,786.9,10.795,10.795,10.623,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,1.0;12.380,12.350,787.7,10.711,10.711,10.538,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.106,0.000,-999999,-999999,-999999,-999999,1.0;12.400,12.370,788.5,10.517,10.517,10.344,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,1.0;12.420,12.390,789.2,10.396,10.396,10.223,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,1.0;12.440,12.410,790.0,10.403,10.403,10.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,1.0;12.460,12.430,790.8,10.421,10.421,10.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,1.0;12.480,12.450,791.6,10.475,10.475,10.301,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,1.0;12.500,12.470,792.3,10.604,10.604,10.429,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.112,0.000,-999999,-999999,-999999,-999999,1.0;12.520,12.490,793.1,10.705,10.705,10.530,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.114,0.000,-999999,-999999,-999999,-999999,1.0;12.540,12.510,793.9,10.804,10.804,10.629,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.116,0.000,-999999,-999999,-999999,-999999,1.0;12.560,12.530,794.7,10.856,10.856,10.680,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.116,0.000,-999999,-999999,-999999,-999999,1.0;12.580,12.550,795.5,10.711,10.711,10.536,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.116,0.000,-999999,-999999,-999999,-999999,1.1;12.600,12.570,796.2,10.396,10.396,10.220,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.117,0.000,-999999,-999999,-999999,-999999,1.1;12.620,12.590,797.0,10.013,10.013,9.837,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.117,0.000,-999999,-999999,-999999,-999999,1.1;12.640,12.610,797.8,9.703,9.703,9.526,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.114,0.000,-999999,-999999,-999999,-999999,1.1;12.660,12.630,798.5,9.375,9.375,9.198,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.112,0.000,-999999,-999999,-999999,-999999,1.1;12.680,12.650,799.3,8.833,8.833,8.656,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,1.2;12.700,12.670,800.1,8.176,8.176,7.998,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.104,0.000,-999999,-999999,-999999,-999999,1.2;12.720,12.690,800.8,7.323,7.323,7.146,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.097,0.000,-999999,-999999,-999999,-999999,1.2;12.740,12.710,801.6,6.674,6.674,6.496,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.089,0.000,-999999,-999999,-999999,-999999,1.2;12.760,12.730,802.4,6.298,6.298,6.120,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.081,0.000,-999999,-999999,-999999,-999999,1.1;12.780,12.750,803.1,5.966,5.966,5.787,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.073,0.000,-999999,-999999,-999999,-999999,1.1;12.800,12.770,803.9,5.518,5.518,5.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.067,0.000,-999999,-999999,-999999,-999999,1.1;12.820,12.790,804.7,5.112,5.112,4.933,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.061,0.000,-999999,-999999,-999999,-999999,1.1;12.840,12.810,805.4,4.722,4.722,4.543,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.059,0.000,-999999,-999999,-999999,-999999,1.1;12.860,12.830,806.2,4.401,4.401,4.222,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.058,0.000,-999999,-999999,-999999,-999999,1.2;12.880,12.850,807.0,4.156,4.156,3.976,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,1.2;12.900,12.870,807.7,4.092,4.092,3.912,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,1.2;12.920,12.890,808.5,4.322,4.322,4.142,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,1.2;12.940,12.910,809.3,4.717,4.717,4.536,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,1.2;12.960,12.930,810.0,4.848,4.848,4.667,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,1.2;12.980,12.950,811.8,5.057,5.057,4.876,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.060,0.000,-999999,-999999,-999999,-999999,1.2;13.000,12.970,815.0,5.613,5.613,5.431,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,1.1;13.020,12.990,818.2,6.169,6.169,5.987,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.066,0.000,-999999,-999999,-999999,-999999,1.0;13.040,13.010,821.4,6.724,6.724,6.542,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.072,0.000,-999999,-999999,-999999,-999999,0.9;13.060,13.030,822.6,7.693,7.693,7.510,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.080,0.000,-999999,-999999,-999999,-999999,1.0;13.080,13.050,823.4,8.306,8.306,8.124,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.090,0.000,-999999,-999999,-999999,-999999,1.1;13.100,13.070,824.2,8.617,8.617,8.434,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.095,0.000,-999999,-999999,-999999,-999999,1.1;13.120,13.090,825.0,8.887,8.887,8.704,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.093,0.000,-999999,-999999,-999999,-999999,1.1;13.140,13.110,825.7,9.124,9.124,8.941,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.088,0.000,-999999,-999999,-999999,-999999,1.0;13.160,13.130,826.5,9.248,9.248,9.064,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.088,0.000,-999999,-999999,-999999,-999999,0.9;13.180,13.150,827.3,9.191,9.191,9.006,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.089,0.000,-999999,-999999,-999999,-999999,0.9;13.200,13.170,828.0,9.225,9.225,9.041,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.091,0.000,-999999,-999999,-999999,-999999,0.9;13.220,13.190,828.8,9.231,9.231,9.046,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.095,0.000,-999999,-999999,-999999,-999999,1.0;13.240,13.210,829.6,9.158,9.158,8.973,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.100,0.000,-999999,-999999,-999999,-999999,1.1;13.260,13.230,830.4,8.978,8.978,8.792,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.102,0.000,-999999,-999999,-999999,-999999,1.1;13.280,13.250,831.2,8.674,8.674,8.489,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.104,0.000,-999999,-999999,-999999,-999999,1.2;13.300,13.270,831.9,8.200,8.200,8.014,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.103,0.000,-999999,-999999,-999999,-999999,1.2;13.320,13.290,832.7,7.878,7.878,7.692,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.100,0.000,-999999,-999999,-999999,-999999,1.2;13.340,13.310,833.5,7.526,7.526,7.339,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.093,0.000,-999999,-999999,-999999,-999999,1.2;13.360,13.330,834.2,7.006,7.006,6.820,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.087,0.000,-999999,-999999,-999999,-999999,1.1;13.380,13.350,835.0,6.691,6.691,6.504,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.082,0.000,-999999,-999999,-999999,-999999,1.1;13.400,13.370,835.7,6.499,6.499,6.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.081,0.000,-999999,-999999,-999999,-999999,1.1;13.420,13.390,836.5,6.323,6.323,6.136,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.082,0.000,-999999,-999999,-999999,-999999,1.1;13.440,13.410,837.3,6.437,6.437,6.249,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.081,0.000,-999999,-999999,-999999,-999999,1.1;13.460,13.430,838.1,7.271,7.271,7.083,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.084,0.000,-999999,-999999,-999999,-999999,1.1;13.480,13.450,838.8,8.201,8.201,8.012,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.087,0.000,-999999,-999999,-999999,-999999,1.1;13.500,13.470,839.6,8.501,8.501,8.313,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.088,0.000,-999999,-999999,-999999,-999999,1.1;13.520,13.490,840.4,8.370,8.370,8.181,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.088,0.000,-999999,-999999,-999999,-999999,1.1;13.540,13.510,841.2,8.237,8.237,8.048,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.088,0.000,-999999,-999999,-999999,-999999,1.0;13.560,13.530,842.0,8.333,8.333,8.144,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.087,0.000,-999999,-999999,-999999,-999999,1.0;13.580,13.550,842.7,8.615,8.615,8.426,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.086,0.000,-999999,-999999,-999999,-999999,0.9;13.600,13.570,843.5,9.003,9.003,8.813,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.086,0.000,-999999,-999999,-999999,-999999,0.9;13.620,13.590,844.3,9.298,9.298,9.107,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.087,0.000,-999999,-999999,-999999,-999999,0.9;13.640,13.610,845.0,9.370,9.370,9.179,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.090,0.000,-999999,-999999,-999999,-999999,1.0;13.660,13.630,845.8,9.149,9.149,8.959,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.093,0.000,-999999,-999999,-999999,-999999,1.0;13.680,13.650,846.6,8.775,8.775,8.584,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,1.0;13.700,13.670,847.3,8.388,8.388,8.196,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,1.1;13.720,13.690,848.1,8.035,8.035,7.844,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.095,0.000,-999999,-999999,-999999,-999999,1.1;13.740,13.710,848.9,7.722,7.722,7.530,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,1.1;13.760,13.730,849.7,7.476,7.476,7.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.092,0.000,-999999,-999999,-999999,-999999,1.1;13.780,13.750,850.4,7.276,7.276,7.083,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.091,0.000,-999999,-999999,-999999,-999999,1.2;13.800,13.770,851.2,7.135,7.135,6.942,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.092,0.000,-999999,-999999,-999999,-999999,1.2;13.820,13.790,852.0,7.057,7.057,6.864,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.092,0.000,-999999,-999999,-999999,-999999,1.2;13.840,13.810,852.8,7.135,7.135,6.942,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.090,0.000,-999999,-999999,-999999,-999999,1.2;13.860,13.830,853.5,7.446,7.446,7.252,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.087,0.000,-999999,-999999,-999999,-999999,1.1;13.880,13.850,854.3,7.831,7.831,7.638,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.086,0.000,-999999,-999999,-999999,-999999,1.1;13.900,13.870,855.1,8.014,8.014,7.820,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.082,0.000,-999999,-999999,-999999,-999999,1.0;13.920,13.890,855.8,7.954,7.954,7.759,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.078,0.000,-999999,-999999,-999999,-999999,1.0;13.940,13.910,856.6,7.718,7.718,7.524,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.074,0.000,-999999,-999999,-999999,-999999,0.9;13.960,13.930,857.4,7.401,7.401,7.206,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.074,0.000,-999999,-999999,-999999,-999999,0.9;13.980,13.950,860.5,7.123,7.123,6.928,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.075,0.000,-999999,-999999,-999999,-999999,1.0;14.000,13.970,864.1,6.845,6.845,6.650,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.077,0.000,-999999,-999999,-999999,-999999,1.1;14.020,13.990,867.6,6.568,6.568,6.372,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.079,0.000,-999999,-999999,-999999,-999999,1.2;14.040,14.010,869.1,6.328,6.328,6.132,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.082,0.000,-999999,-999999,-999999,-999999,1.3;14.060,14.030,869.8,6.024,6.024,5.828,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.085,0.000,-999999,-999999,-999999,-999999,1.4;14.080,14.050,870.6,5.657,5.657,5.461,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.088,0.000,-999999,-999999,-999999,-999999,1.5;14.100,14.070,871.4,5.230,5.230,5.033,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.089,0.000,-999999,-999999,-999999,-999999,1.6;14.120,14.090,872.2,4.755,4.755,4.558,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.092,0.000,-999999,-999999,-999999,-999999,1.8;14.140,14.100,872.9,4.274,4.274,4.076,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.096,0.000,-999999,-999999,-999999,-999999,2.1;14.160,14.120,873.7,3.811,3.811,3.613,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.103,0.000,-999999,-999999,-999999,-999999,2.4;14.180,14.140,874.5,3.437,3.437,3.239,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,2.8;14.200,14.160,875.2,3.209,3.209,3.011,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,3.3;14.220,14.180,876.0,3.081,3.081,2.882,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.125,0.000,-999999,-999999,-999999,-999999,3.7;14.240,14.200,876.8,2.931,2.931,2.732,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.120,0.000,-999999,-999999,-999999,-999999,3.7;14.260,14.220,877.5,2.829,2.829,2.630,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.116,0.000,-999999,-999999,-999999,-999999,3.7;14.280,14.240,878.3,2.919,2.919,2.719,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.104,0.000,-999999,-999999,-999999,-999999,3.2;14.300,14.260,879.1,3.175,3.175,2.975,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.097,0.000,-999999,-999999,-999999,-999999,2.9;14.320,14.280,879.8,3.559,3.559,3.359,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.100,0.000,-999999,-999999,-999999,-999999,2.8;14.340,14.300,880.6,3.877,3.877,3.677,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.093,0.000,-999999,-999999,-999999,-999999,2.4;14.360,14.320,881.4,4.187,4.187,3.986,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.085,0.000,-999999,-999999,-999999,-999999,2.0;14.380,14.340,882.2,4.626,4.626,4.425,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.090,0.000,-999999,-999999,-999999,-999999,1.9;14.400,14.360,883.0,5.145,5.145,4.944,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.089,0.000,-999999,-999999,-999999,-999999,1.6;14.420,14.380,883.8,6.019,6.019,5.817,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.086,0.000,-999999,-999999,-999999,-999999,1.4;14.440,14.400,884.5,7.265,7.265,7.063,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.091,0.000,-999999,-999999,-999999,-999999,1.3;14.460,14.420,885.3,8.170,8.170,7.968,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.092,0.000,-999999,-999999,-999999,-999999,1.2;14.480,14.440,886.1,8.671,8.671,8.469,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.089,0.000,-999999,-999999,-999999,-999999,1.1;14.500,14.460,886.9,8.852,8.852,8.649,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.095,0.000,-999999,-999999,-999999,-999999,1.1;14.520,14.480,887.7,8.966,8.966,8.763,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.098,0.000,-999999,-999999,-999999,-999999,1.1;14.540,14.500,888.4,9.106,9.106,8.903,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,1.0;14.560,14.520,889.2,9.178,9.178,8.975,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,1.0;14.580,14.540,890.0,9.152,9.152,8.948,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.096,0.000,-999999,-999999,-999999,-999999,1.0;14.600,14.560,890.8,8.885,8.885,8.681,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.097,0.000,-999999,-999999,-999999,-999999,1.1;14.620,14.580,891.5,8.432,8.432,8.228,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.100,0.000,-999999,-999999,-999999,-999999,1.1;14.640,14.600,892.3,7.979,7.979,7.774,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.102,0.000,-999999,-999999,-999999,-999999,1.2;14.660,14.620,893.1,7.604,7.604,7.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.102,0.000,-999999,-999999,-999999,-999999,1.2;14.680,14.640,893.8,7.362,7.362,7.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.100,0.000,-999999,-999999,-999999,-999999,1.3;14.700,14.660,894.6,7.104,7.104,6.899,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.099,0.000,-999999,-999999,-999999,-999999,1.3;14.720,14.680,895.4,6.889,6.889,6.684,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.097,0.000,-999999,-999999,-999999,-999999,1.3;14.740,14.700,896.1,6.670,6.670,6.465,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.097,0.000,-999999,-999999,-999999,-999999,1.4;14.760,14.720,896.9,6.311,6.311,6.105,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.095,0.000,-999999,-999999,-999999,-999999,1.5;14.780,14.740,897.7,5.718,5.718,5.512,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,1.6;14.800,14.760,898.4,4.992,4.992,4.785,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.093,0.000,-999999,-999999,-999999,-999999,1.8;14.820,14.780,899.2,4.195,4.195,3.988,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.093,0.000,-999999,-999999,-999999,-999999,2.0;14.840,14.800,900.0,3.203,3.203,2.996,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.103,0.000,-999999,-999999,-999999,-999999,2.7;14.860,14.820,900.7,2.334,2.334,2.126,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.104,0.000,-999999,-999999,-999999,-999999,3.3;14.880,14.840,901.5,1.705,1.705,1.497,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.092,0.000,-999999,-999999,-999999,-999999,3.6;14.900,14.860,902.2,1.380,1.380,1.172,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.079,0.000,-999999,-999999,-999999,-999999,3.8;14.920,14.880,903.0,1.070,1.070,0.861,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.066,0.000,-999999,-999999,-999999,-999999,4.0;14.940,14.900,903.8,0.823,0.823,0.615,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,4.0;14.960,14.920,904.7,0.748,0.748,0.539,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,3.6;14.980,14.940,908.8,0.750,0.750,0.540,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,2.9;15.000,14.960,912.9,0.751,0.751,0.542,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,2.1;15.020,14.980,915.4,0.754,0.754,0.544,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,1.9;15.040,15.000,916.2,0.759,0.759,0.549,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,2.0;15.060,15.020,916.9,0.762,0.762,0.552,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,2.2;15.080,15.040,917.7,0.765,0.765,0.554,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,2.3;15.100,15.060,918.5,0.761,0.761,0.550,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.3;15.120,15.080,919.2,0.758,0.758,0.547,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.4;15.140,15.100,920.0,0.758,0.758,0.547,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.4;15.160,15.120,920.8,0.762,0.762,0.551,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.4;15.180,15.140,921.5,0.770,0.770,0.558,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.5;15.200,15.160,922.3,0.777,0.777,0.565,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,2.5;15.220,15.180,923.1,0.785,0.785,0.573,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,2.6;15.240,15.200,923.8,0.795,0.795,0.582,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,2.6;15.260,15.220,924.6,0.800,0.800,0.587,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,2.7;15.280,15.240,925.4,0.800,0.800,0.586,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,2.7;15.300,15.260,926.2,0.795,0.795,0.581,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,2.7;15.320,15.280,926.9,0.786,0.786,0.572,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.8;15.340,15.300,927.7,0.789,0.789,0.575,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.8;15.360,15.320,928.5,0.801,0.801,0.587,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,2.8;15.380,15.340,929.2,0.824,0.824,0.609,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,2.9;15.400,15.360,930.0,0.847,0.847,0.632,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,2.9;15.420,15.380,930.8,0.885,0.885,0.670,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,3.2;15.440,15.400,931.5,0.961,0.961,0.746,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,3.8;15.460,15.420,932.3,1.068,1.068,0.852,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,4.4;15.480,15.440,933.1,1.185,1.185,0.969,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.056,0.000,-999999,-999999,-999999,-999999,5.0;15.500,15.460,933.9,1.295,1.295,1.078,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,5.3;15.520,15.480,934.7,1.324,1.324,1.107,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.070,0.000,-999999,-999999,-999999,-999999,5.6;15.540,15.500,935.4,1.320,1.320,1.103,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.076,0.000,-999999,-999999,-999999,-999999,5.9;15.560,15.520,936.2,1.324,1.324,1.107,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.083,0.000,-999999,-999999,-999999,-999999,6.3;15.580,15.540,937.0,1.334,1.334,1.116,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.086,0.000,-999999,-999999,-999999,-999999,6.5;15.600,15.560,937.8,1.325,1.325,1.108,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.087,0.000,-999999,-999999,-999999,-999999,6.6;15.620,15.580,938.5,1.320,1.320,1.102,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.084,0.000,-999999,-999999,-999999,-999999,6.5;15.640,15.600,939.3,1.284,1.284,1.065,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.079,0.000,-999999,-999999,-999999,-999999,6.3;15.660,15.620,940.0,1.218,1.218,0.999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.076,0.000,-999999,-999999,-999999,-999999,6.3;15.680,15.640,940.8,1.120,1.120,0.901,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.072,0.000,-999999,-999999,-999999,-999999,6.2;15.700,15.660,941.6,1.022,1.022,0.802,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.064,0.000,-999999,-999999,-999999,-999999,5.8;15.720,15.680,942.3,0.963,0.963,0.744,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.054,0.000,-999999,-999999,-999999,-999999,5.3;15.740,15.700,943.2,0.905,0.905,0.686,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,4.9;15.760,15.720,943.9,0.823,0.823,0.603,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,4.6;15.780,15.740,944.7,0.770,0.770,0.550,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,4.3;15.800,15.760,945.4,0.729,0.729,0.509,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,3.9;15.820,15.780,946.2,0.697,0.697,0.476,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,3.5;15.840,15.800,947.0,0.653,0.653,0.432,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,3.4;15.860,15.820,947.7,0.628,0.628,0.407,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,3.3;15.880,15.840,948.5,0.622,0.622,0.400,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,3.1;15.900,15.860,949.3,0.618,0.618,0.396,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.0;15.920,15.880,950.1,0.615,0.615,0.392,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.8;15.940,15.900,950.8,0.621,0.621,0.398,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.8;15.960,15.920,953.6,0.628,0.628,0.405,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.8;15.980,15.940,957.1,0.634,0.634,0.411,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.8;16.000,15.960,960.6,0.641,0.641,0.417,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.8;16.020,15.980,962.5,0.646,0.646,0.422,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.9;16.040,16.000,963.2,0.649,0.649,0.425,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.9;16.060,16.020,964.0,0.645,0.645,0.420,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.0;16.080,16.040,964.8,0.638,0.638,0.414,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.9;16.100,16.060,965.5,0.638,0.638,0.413,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.9;16.120,16.080,966.3,0.643,0.643,0.417,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,2.9;16.140,16.100,967.1,0.673,0.673,0.448,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,2.9;16.160,16.120,967.8,0.767,0.767,0.541,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,3.3;16.180,16.140,968.6,0.922,0.922,0.696,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,3.6;16.200,16.160,969.4,1.050,1.050,0.824,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,4.3;16.220,16.180,970.2,1.143,1.143,0.917,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.058,0.000,-999999,-999999,-999999,-999999,5.4;16.240,16.200,970.9,1.217,1.217,0.990,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.072,0.000,-999999,-999999,-999999,-999999,6.2;16.260,16.220,971.7,1.259,1.259,1.032,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.084,0.000,-999999,-999999,-999999,-999999,6.9;16.280,16.240,972.5,1.344,1.344,1.117,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.096,0.000,-999999,-999999,-999999,-999999,7.4;16.300,16.260,973.3,1.361,1.361,1.133,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.106,0.000,-999999,-999999,-999999,-999999,8.0;16.320,16.280,974.0,1.378,1.378,1.150,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,8.6;16.340,16.300,974.8,1.433,1.433,1.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.125,0.000,-999999,-999999,-999999,-999999,8.9;16.360,16.320,975.6,1.473,1.473,1.245,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.127,0.000,-999999,-999999,-999999,-999999,9.0;16.380,16.340,976.3,1.462,1.462,1.233,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.125,0.000,-999999,-999999,-999999,-999999,9.0;16.400,16.360,977.1,1.404,1.404,1.175,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,8.7;16.420,16.380,977.9,1.323,1.323,1.093,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.112,0.000,-999999,-999999,-999999,-999999,8.4;16.440,16.400,978.7,1.225,1.225,0.995,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.100,0.000,-999999,-999999,-999999,-999999,7.9;16.460,16.420,979.5,1.141,1.141,0.911,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.086,0.000,-999999,-999999,-999999,-999999,7.1;16.480,16.440,980.2,1.061,1.061,0.830,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.071,0.000,-999999,-999999,-999999,-999999,6.4;16.500,16.460,981.0,0.982,0.982,0.752,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.061,0.000,-999999,-999999,-999999,-999999,5.8;16.520,16.480,981.8,0.909,0.909,0.679,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,5.4;16.540,16.500,982.5,0.839,0.839,0.608,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,5.1;16.560,16.520,983.3,0.779,0.779,0.548,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,4.9;16.580,16.540,984.1,0.739,0.739,0.507,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,4.7;16.600,16.560,984.8,0.699,0.699,0.467,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,4.6;16.620,16.580,985.6,0.678,0.678,0.446,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,4.6;16.640,16.600,986.4,0.655,0.655,0.423,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,4.5;16.660,16.620,987.1,0.631,0.631,0.398,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,4.3;16.680,16.640,987.9,0.620,0.620,0.387,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,4.1;16.700,16.660,988.7,0.618,0.618,0.385,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,3.7;16.720,16.680,989.4,0.620,0.620,0.386,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,3.6;16.740,16.700,990.2,0.610,0.610,0.376,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,3.6;16.760,16.720,991.0,0.601,0.601,0.367,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,3.7;16.780,16.740,991.7,0.611,0.611,0.377,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,3.9;16.800,16.760,992.5,0.623,0.623,0.388,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,3.7;16.820,16.780,993.3,0.628,0.628,0.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,3.7;16.840,16.800,994.0,0.630,0.630,0.395,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,3.9;16.860,16.820,994.8,0.618,0.618,0.383,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,4.0;16.880,16.840,995.6,0.631,0.631,0.396,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,4.0;16.900,16.860,996.4,0.652,0.652,0.416,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,4.1;16.920,16.880,997.2,0.660,0.660,0.424,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,4.1;16.940,16.900,999.4,0.654,0.654,0.418,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,4.2;16.960,16.920,1002.8,0.638,0.638,0.401,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,4.2;16.980,16.940,1006.3,0.622,0.622,0.385,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,4.2;17.000,16.960,1008.8,0.602,0.602,0.365,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,4.2;17.020,16.980,1009.5,0.586,0.586,0.348,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,4.0;17.040,17.000,1010.3,0.587,0.587,0.349,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,3.7;17.060,17.020,1011.1,0.598,0.598,0.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,3.5;17.080,17.040,1011.8,0.591,0.591,0.353,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,3.4;17.100,17.060,1012.6,0.575,0.575,0.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.2;17.120,17.080,1013.4,0.567,0.567,0.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.1;17.140,17.100,1014.2,0.563,0.563,0.323,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.3;17.160,17.120,1014.9,0.577,0.577,0.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.4;17.180,17.140,1015.7,0.586,0.586,0.346,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.7;17.200,17.160,1016.5,0.593,0.593,0.353,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,2.7;17.220,17.180,1017.2,0.657,0.657,0.417,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,2.1;17.240,17.200,1018.0,1.071,1.071,0.830,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,1.4;17.260,17.220,1018.8,1.794,1.794,1.553,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,1.3;17.280,17.240,1019.5,2.218,2.218,1.977,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,1.9;17.300,17.260,1020.3,2.091,2.091,1.850,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,2.7;17.320,17.280,1021.1,1.702,1.702,1.460,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,3.1;17.340,17.300,1021.9,1.282,1.282,1.040,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,3.3;17.360,17.320,1022.6,1.027,1.027,0.785,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,3.6;17.380,17.340,1023.4,0.836,0.836,0.594,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,3.9;17.400,17.360,1024.2,0.725,0.725,0.482,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,4.1;17.420,17.380,1024.9,0.677,0.677,0.434,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,4.0;17.440,17.400,1025.7,0.656,0.656,0.412,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,3.4;17.460,17.420,1026.5,0.670,0.670,0.426,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,3.0;17.480,17.440,1027.3,0.665,0.665,0.421,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,3.1;17.500,17.460,1028.0,0.633,0.633,0.389,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,3.4;17.520,17.480,1028.8,0.620,0.620,0.375,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,3.7;17.540,17.500,1029.6,0.682,0.682,0.437,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,3.1;17.560,17.520,1030.3,0.955,0.955,0.710,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,2.6;17.580,17.540,1031.1,1.217,1.217,0.972,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,2.2;17.600,17.560,1031.9,1.311,1.311,1.065,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,1.6;17.620,17.580,1032.7,1.596,1.596,1.350,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,1.1;17.640,17.600,1033.4,2.204,2.204,1.957,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,0,4,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,1.0;17.660,17.620,1034.2,3.177,3.177,2.930,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,0.9;17.680,17.640,1035.0,4.475,4.475,4.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,0.9;17.700,17.660,1035.8,6.193,6.193,5.946,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,0.8;17.720,17.680,1036.6,8.370,8.370,8.122,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.067,0.000,-999999,-999999,-999999,-999999,0.8;17.740,17.700,1037.4,10.304,10.304,10.056,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.083,0.000,-999999,-999999,-999999,-999999,0.9;17.760,17.720,1038.2,11.748,11.748,11.500,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.099,0.000,-999999,-999999,-999999,-999999,0.9;17.780,17.740,1039.0,12.888,12.888,12.640,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.114,0.000,-999999,-999999,-999999,-999999,0.9;17.800,17.760,1039.8,13.800,13.800,13.551,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.129,0.000,-999999,-999999,-999999,-999999,0.9;17.820,17.780,1040.6,14.680,14.680,14.431,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.142,0.000,-999999,-999999,-999999,-999999,0.9;17.840,17.800,1041.4,15.773,15.773,15.524,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.156,0.000,-999999,-999999,-999999,-999999,0.9;17.860,17.820,1042.2,17.246,17.246,16.997,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.152,0.000,-999999,-999999,-999999,-999999,0.8;17.880,17.840,1043.0,19.058,19.058,18.808,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.148,0.000,-999999,-999999,-999999,-999999,0.8;17.900,17.860,1043.8,21.217,21.217,20.967,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.153,0.000,-999999,-999999,-999999,-999999,0.8;17.920,17.880,1044.7,23.175,23.175,22.925,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.186,0.000,-999999,-999999,-999999,-999999,0.9;17.940,17.900,1047.6,24.179,24.179,23.928,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.218,0.000,-999999,-999999,-999999,-999999,0.9;17.960,17.920,1051.6,24.749,24.749,24.498,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.246,0.000,-999999,-999999,-999999,-999999,1.0;17.980,17.940,1055.6,25.318,25.318,25.067,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.271,0.000,-999999,-999999,-999999,-999999,1.0;18.000,17.960,1056.8,25.897,25.897,25.645,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.292,0.000,-999999,-999999,-999999,-999999,1.1;18.020,17.980,1057.6,25.968,25.968,25.716,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.310,0.000,-999999,-999999,-999999,-999999,1.1;18.040,18.000,1058.5,26.035,26.035,25.783,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.325,0.000,-999999,-999999,-999999,-999999,1.2;18.060,18.020,1059.4,26.266,26.266,26.014,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.333,0.000,-999999,-999999,-999999,-999999,1.2;18.080,18.040,1060.3,26.854,26.854,26.601,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.337,0.000,-999999,-999999,-999999,-999999,1.2;18.100,18.060,1061.3,28.042,28.042,27.789,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.343,0.000,-999999,-999999,-999999,-999999,1.2;18.120,18.070,1062.3,29.562,29.562,29.309,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.350,0.000,-999999,-999999,-999999,-999999,1.1;18.140,18.090,1063.4,30.818,30.818,30.564,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.355,0.000,-999999,-999999,-999999,-999999,1.1;18.160,18.110,1064.6,31.500,31.500,31.246,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.360,0.000,-999999,-999999,-999999,-999999,1.1;18.180,18.130,1065.7,32.018,32.018,31.764,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.368,0.000,-999999,-999999,-999999,-999999,1.1;18.200,18.150,1066.9,32.376,32.376,32.121,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.379,0.000,-999999,-999999,-999999,-999999,1.1;18.220,18.170,1068.1,32.551,32.551,32.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.390,0.000,-999999,-999999,-999999,-999999,1.2;18.240,18.190,1069.3,32.716,32.716,32.461,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.403,0.000,-999999,-999999,-999999,-999999,1.2;18.260,18.210,1070.5,32.682,32.682,32.427,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.413,0.000,-999999,-999999,-999999,-999999,1.2;18.280,18.230,1071.7,32.520,32.520,32.265,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.423,0.000,-999999,-999999,-999999,-999999,1.3;18.300,18.250,1072.9,32.435,32.435,32.179,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.431,0.000,-999999,-999999,-999999,-999999,1.3;18.320,18.270,1074.1,32.389,32.389,32.133,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.439,0.000,-999999,-999999,-999999,-999999,1.3;18.340,18.290,1075.3,32.333,32.333,32.077,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.444,0.000,-999999,-999999,-999999,-999999,1.3;18.360,18.310,1076.6,32.261,32.261,32.004,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.442,0.000,-999999,-999999,-999999,-999999,1.3;18.380,18.330,1077.8,32.230,32.230,31.974,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.439,0.000,-999999,-999999,-999999,-999999,1.3;18.400,18.350,1079.1,32.208,32.208,31.951,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.437,0.000,-999999,-999999,-999999,-999999,1.3;18.420,18.370,1080.3,32.396,32.396,32.139,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.438,0.000,-999999,-999999,-999999,-999999,1.3;18.440,18.390,1081.6,32.711,32.711,32.454,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.438,0.000,-999999,-999999,-999999,-999999,1.3;18.460,18.410,1082.9,33.009,33.009,32.751,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.442,0.000,-999999,-999999,-999999,-999999,1.3;18.480,18.430,1084.3,33.202,33.202,32.944,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.445,0.000,-999999,-999999,-999999,-999999,1.3;18.500,18.450,1085.6,33.294,33.294,33.036,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.446,0.000,-999999,-999999,-999999,-999999,1.3;18.520,18.470,1087.0,33.351,33.351,33.093,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.449,0.000,-999999,-999999,-999999,-999999,1.3;18.540,18.490,1088.3,33.118,33.118,32.859,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.451,0.000,-999999,-999999,-999999,-999999,1.3;18.560,18.510,1089.6,32.637,32.637,32.378,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.448,0.000,-999999,-999999,-999999,-999999,1.3;18.580,18.530,1090.9,32.345,32.345,32.086,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.446,0.000,-999999,-999999,-999999,-999999,1.3;18.600,18.550,1092.3,32.401,32.401,32.141,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.441,0.000,-999999,-999999,-999999,-999999,1.3;18.620,18.570,1093.6,32.718,32.718,32.458,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.434,0.000,-999999,-999999,-999999,-999999,1.3;18.640,18.590,1094.9,33.150,33.150,32.889,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.434,0.000,-999999,-999999,-999999,-999999,1.3;18.660,18.610,1096.3,33.560,33.560,33.299,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.438,0.000,-999999,-999999,-999999,-999999,1.3;18.680,18.630,1097.7,33.778,33.778,33.517,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.440,0.000,-999999,-999999,-999999,-999999,1.3;18.700,18.650,1099.1,33.837,33.837,33.576,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.444,0.000,-999999,-999999,-999999,-999999,1.3;18.720,18.670,1100.5,33.781,33.781,33.520,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.446,0.000,-999999,-999999,-999999,-999999,1.3;18.740,18.690,1101.9,33.513,33.513,33.251,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.445,0.000,-999999,-999999,-999999,-999999,1.3;18.760,18.710,1103.3,32.983,32.983,32.721,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.443,0.000,-999999,-999999,-999999,-999999,1.3;18.780,18.730,1104.6,32.389,32.389,32.126,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.435,0.000,-999999,-999999,-999999,-999999,1.3;18.800,18.750,1105.9,31.923,31.923,31.661,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.437,0.000,-999999,-999999,-999999,-999999,1.3;18.820,18.770,1107.2,31.634,31.634,31.371,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.429,0.000,-999999,-999999,-999999,-999999,1.3;18.840,18.790,1108.5,31.184,31.184,30.921,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.411,0.000,-999999,-999999,-999999,-999999,1.3;18.860,18.810,1109.8,30.604,30.604,30.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.374,0.000,-999999,-999999,-999999,-999999,1.2;18.880,18.830,1111.0,30.117,30.117,29.853,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.338,0.000,-999999,-999999,-999999,-999999,1.0;18.900,18.850,1112.3,30.260,30.260,29.996,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.323,0.000,-999999,-999999,-999999,-999999,1.0;18.920,18.870,1113.7,30.696,30.696,30.432,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.328,0.000,-999999,-999999,-999999,-999999,1.0;18.940,18.890,1117.8,30.628,30.628,30.363,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.331,0.000,-999999,-999999,-999999,-999999,1.0;18.960,18.910,1121.8,30.560,30.560,30.295,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.327,0.000,-999999,-999999,-999999,-999999,1.0;18.980,18.930,1125.6,30.531,30.531,30.266,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.327,0.000,-999999,-999999,-999999,-999999,1.0;19.000,18.950,1126.7,30.696,30.696,30.431,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.332,0.000,-999999,-999999,-999999,-999999,1.0;19.020,18.970,1127.9,30.545,30.545,30.279,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.343,0.000,-999999,-999999,-999999,-999999,1.1;19.040,18.990,1129.0,30.534,30.534,30.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.358,0.000,-999999,-999999,-999999,-999999,1.1;19.060,19.010,1130.1,30.626,30.626,30.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.369,0.000,-999999,-999999,-999999,-999999,1.2;19.080,19.030,1131.2,30.649,30.649,30.383,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.379,0.000,-999999,-999999,-999999,-999999,1.2;19.100,19.050,1132.3,30.583,30.583,30.316,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.390,0.000,-999999,-999999,-999999,-999999,1.2;19.120,19.070,1133.4,30.521,30.521,30.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.403,0.000,-999999,-999999,-999999,-999999,1.3;19.140,19.090,1134.5,30.486,30.486,30.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.412,0.000,-999999,-999999,-999999,-999999,1.3;19.160,19.110,1135.6,30.283,30.283,30.015,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.419,0.000,-999999,-999999,-999999,-999999,1.3;19.180,19.130,1136.7,29.932,29.932,29.664,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.418,0.000,-999999,-999999,-999999,-999999,1.4;19.200,19.150,1137.8,29.476,29.476,29.208,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.418,0.000,-999999,-999999,-999999,-999999,1.4;19.220,19.170,1138.9,28.980,28.980,28.711,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.416,0.000,-999999,-999999,-999999,-999999,1.4;19.240,19.190,1139.9,28.661,28.661,28.392,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.408,0.000,-999999,-999999,-999999,-999999,1.3;19.260,19.210,1141.1,28.679,28.679,28.410,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.401,0.000,-999999,-999999,-999999,-999999,1.3;19.280,19.230,1142.1,28.816,28.816,28.547,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.390,0.000,-999999,-999999,-999999,-999999,1.3;19.300,19.250,1143.2,29.026,29.026,28.757,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.385,0.000,-999999,-999999,-999999,-999999,1.2;19.320,19.270,1144.3,29.659,29.659,29.389,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.383,0.000,-999999,-999999,-999999,-999999,1.2;19.340,19.290,1145.4,30.664,30.664,30.394,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.386,0.000,-999999,-999999,-999999,-999999,1.2;19.360,19.310,1146.7,32.021,32.021,31.751,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.386,0.000,-999999,-999999,-999999,-999999,1.2;19.380,19.330,1147.9,33.004,33.004,32.733,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.391,0.000,-999999,-999999,-999999,-999999,1.2;19.400,19.350,1149.2,33.675,33.675,33.404,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.408,0.000,-999999,-999999,-999999,-999999,1.2;19.420,19.370,1150.5,33.971,33.971,33.700,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.421,0.000,-999999,-999999,-999999,-999999,1.2;19.440,19.390,1151.8,34.158,34.158,33.887,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.434,0.000,-999999,-999999,-999999,-999999,1.2;19.460,19.410,1153.1,34.540,34.540,34.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.452,0.000,-999999,-999999,-999999,-999999,1.3;19.480,19.430,1154.5,34.970,34.970,34.698,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.463,0.000,-999999,-999999,-999999,-999999,1.3;19.500,19.450,1155.9,35.338,35.338,35.066,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.473,0.000,-999999,-999999,-999999,-999999,1.3;19.520,19.470,1157.5,35.605,35.605,35.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.482,0.000,-999999,-999999,-999999,-999999,1.3;19.540,19.490,1159.0,35.800,35.800,35.527,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.487,0.000,-999999,-999999,-999999,-999999,1.3;19.560,19.510,1160.6,35.947,35.947,35.674,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.490,0.000,-999999,-999999,-999999,-999999,1.3;19.580,19.530,1162.3,36.082,36.082,35.809,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.493,0.000,-999999,-999999,-999999,-999999,1.3;19.600,19.550,1163.9,36.331,36.331,36.057,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.495,0.000,-999999,-999999,-999999,-999999,1.3;19.620,19.570,1165.7,36.619,36.619,36.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.494,0.000,-999999,-999999,-999999,-999999,1.3;19.640,19.590,1167.6,36.748,36.748,36.474,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.494,0.000,-999999,-999999,-999999,-999999,1.3;19.660,19.610,1169.3,36.762,36.762,36.487,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.492,0.000,-999999,-999999,-999999,-999999,1.3;19.680,19.630,1171.2,36.355,36.355,36.081,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.495,0.000,-999999,-999999,-999999,-999999,1.3;19.700,19.650,1172.8,35.692,35.692,35.416,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.494,0.000,-999999,-999999,-999999,-999999,1.3;19.720,19.670,1174.5,34.879,34.879,34.604,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.485,0.000,-999999,-999999,-999999,-999999,1.3;19.740,19.690,1176.1,34.146,34.146,33.870,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.488,0.000,-999999,-999999,-999999,-999999,1.4;19.760,19.710,1177.7,33.333,33.333,33.057,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.475,0.000,-999999,-999999,-999999,-999999,1.4;19.780,19.730,1179.1,32.820,32.820,32.543,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.468,0.000,-999999,-999999,-999999,-999999,1.4;19.800,19.750,1180.6,32.452,32.452,32.175,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.466,0.000,-999999,-999999,-999999,-999999,1.4;19.820,19.770,1182.1,32.050,32.050,31.773,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.458,0.000,-999999,-999999,-999999,-999999,1.4;19.840,19.790,1183.6,31.861,31.861,31.584,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.424,0.000,-999999,-999999,-999999,-999999,1.3;19.860,19.810,1185.1,31.936,31.936,31.659,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.384,0.000,-999999,-999999,-999999,-999999,1.1;19.880,19.830,1186.6,32.141,32.141,31.863,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.369,0.000,-999999,-999999,-999999,-999999,1.1;19.900,19.850,1188.1,32.478,32.478,32.200,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.387,0.000,-999999,-999999,-999999,-999999,1.1;19.920,19.870,1190.3,32.936,32.936,32.658,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.398,0.000,-999999,-999999,-999999,-999999,1.2;19.940,19.890,1193.2,33.283,33.283,33.004,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.408,0.000,-999999,-999999,-999999,-999999,1.2;19.960,19.910,1196.1,33.682,33.682,33.404,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.417,0.000,-999999,-999999,-999999,-999999,1.1;19.980,19.930,1197.6,35.163,35.163,34.884,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.434,0.000,-999999,-999999,-999999,-999999,1.1;20.000,19.950,1199.3,36.697,36.697,36.418,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.452,0.000,-999999,-999999,-999999,-999999,1.1;20.020,19.970,1201.3,38.100,38.100,37.820,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.441,0.000,-999999,-999999,-999999,-999999,1.1;20.040,19.990,1203.5,39.256,39.256,38.977,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.392,0.000,-999999,-999999,-999999,-999999,1.0;20.060,20.010,1206.2,40.196,40.196,39.915,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.399,0.000,-999999,-999999,-999999,-999999,1.0;20.080,20.030,1209.3,40.822,40.822,40.541,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.441,0.000,-999999,-999999,-999999,-999999,1.1;20.100,20.050,1212.9,40.562,40.562,40.281,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.481,0.000,-999999,-999999,-999999,-999999,1.2;20.120,20.070,1219.1,39.354,39.354,39.072,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.515,0.000,-999999,-999999,-999999,-999999,1.2;20.140,20.090,1224.1,38.642,38.642,38.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.531,0.000,-999999,-999999,-999999,-999999,1.3;20.160,20.110,1226.1,38.482,38.482,38.200,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.538,0.000,-999999,-999999,-999999,-999999,1.3;20.180,20.130,1228.3,38.639,38.639,38.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.541,0.000,-999999,-999999,-999999,-999999,1.3;20.200,20.150,1230.8,39.469,39.469,39.187,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.547,0.000,-999999,-999999,-999999,-999999,1.3;20.220,20.170,1234.5,40.769,40.769,40.486,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.545,0.000,-999999,-999999,-999999,-999999,1.3;20.240,20.190,1240.0,41.648,41.648,41.365,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.546,0.000,-999999,-999999,-999999,-999999,1.3;20.260,20.210,1246.5,41.766,41.766,41.483,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.545,0.000,-999999,-999999,-999999,-999999,1.3;20.280,20.230,1253.3,41.905,41.905,41.622,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.546,0.000,-999999,-999999,-999999,-999999,1.3;20.300,20.250,1257.4,41.729,41.729,41.446,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.550,0.000,-999999,-999999,-999999,-999999,1.3;20.320,20.270,1259.4,41.331,41.331,41.047,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.561,0.000,-999999,-999999,-999999,-999999,1.3;20.340,20.290,1261.1,40.191,40.191,39.907,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.575,0.000,-999999,-999999,-999999,-999999,1.4;20.360,20.310,1262.3,38.833,38.833,38.549,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.584,0.000,-999999,-999999,-999999,-999999,1.4;20.380,20.330,1263.4,37.393,37.393,37.109,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.582,0.000,-999999,-999999,-999999,-999999,1.5;20.400,20.350,1264.6,35.623,35.623,35.338,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.572,0.000,-999999,-999999,-999999,-999999,1.5;20.420,20.370,1266.1,34.392,34.392,34.107,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.562,0.000,-999999,-999999,-999999,-999999,1.6;20.440,20.390,1267.5,32.897,32.897,32.611,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.540,0.000,-999999,-999999,-999999,-999999,1.6;20.460,20.410,1268.9,31.651,31.651,31.366,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.533,0.000,-999999,-999999,-999999,-999999,1.6;20.480,20.430,1270.2,31.070,31.070,30.784,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.519,0.000,-999999,-999999,-999999,-999999,1.6;20.500,20.450,1271.4,30.839,30.839,30.553,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.495,0.000,-999999,-999999,-999999,-999999,1.5;20.520,20.470,1272.6,30.644,30.644,30.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.471,0.000,-999999,-999999,-999999,-999999,1.5;20.540,20.490,1273.8,30.554,30.554,30.267,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.447,0.000,-999999,-999999,-999999,-999999,1.4;20.560,20.510,1274.9,30.484,30.484,30.197,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.414,0.000,-999999,-999999,-999999,-999999,1.3;20.580,20.530,1276.1,30.297,30.297,30.009,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.383,0.000,-999999,-999999,-999999,-999999,1.2;20.600,20.550,1277.2,29.859,29.859,29.571,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.359,0.000,-999999,-999999,-999999,-999999,1.1;20.620,20.570,1278.3,29.350,29.350,29.062,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.327,0.000,-999999,-999999,-999999,-999999,1.1;20.640,20.590,1279.3,29.303,29.303,29.014,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.304,0.000,-999999,-999999,-999999,-999999,1.0;20.660,20.610,1280.4,29.418,29.418,29.129,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.276,0.000,-999999,-999999,-999999,-999999,0.9;20.680,20.630,1281.3,29.103,29.103,28.814,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.254,0.000,-999999,-999999,-999999,-999999,0.8;20.700,20.650,1282.3,28.540,28.540,28.251,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.239,0.000,-999999,-999999,-999999,-999999,0.8;20.720,20.670,1283.2,27.549,27.549,27.260,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.222,0.000,-999999,-999999,-999999,-999999,0.7;20.740,20.690,1284.1,27.079,27.079,26.790,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.206,0.000,-999999,-999999,-999999,-999999,0.7;20.760,20.710,1285.0,26.683,26.683,26.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.195,0.000,-999999,-999999,-999999,-999999,0.7;20.780,20.730,1285.8,26.055,26.055,25.765,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.186,0.000,-999999,-999999,-999999,-999999,0.7;20.800,20.750,1286.6,25.346,25.346,25.055,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.179,0.000,-999999,-999999,-999999,-999999,0.7;20.820,20.770,1287.4,24.251,24.251,23.961,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.175,0.000,-999999,-999999,-999999,-999999,0.7;20.840,20.790,1288.2,23.308,23.308,23.017,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.176,0.000,-999999,-999999,-999999,-999999,0.7;20.860,20.810,1289.0,22.538,22.538,22.246,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.181,0.000,-999999,-999999,-999999,-999999,0.7;20.880,20.830,1289.7,21.899,21.899,21.607,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.184,0.000,-999999,-999999,-999999,-999999,0.8;20.900,20.850,1290.5,21.204,21.204,20.912,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.188,0.000,-999999,-999999,-999999,-999999,0.8;20.920,20.870,1291.2,20.580,20.580,20.287,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.193,0.000,-999999,-999999,-999999,-999999,0.9;20.940,20.890,1291.9,19.963,19.963,19.671,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.191,0.000,-999999,-999999,-999999,-999999,0.9;20.960,20.910,1292.7,19.498,19.498,19.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.191,0.000,-999999,-999999,-999999,-999999,0.9;20.980,20.930,1293.4,19.124,19.124,18.831,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.191,0.000,-999999,-999999,-999999,-999999,0.9;21.000,20.950,1294.2,18.751,18.751,18.458,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.188,0.000,-999999,-999999,-999999,-999999,0.9;21.020,20.970,1294.9,18.401,18.401,18.108,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.177,0.000,-999999,-999999,-999999,-999999,0.9;21.040,20.990,1295.6,18.059,18.059,17.765,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.167,0.000,-999999,-999999,-999999,-999999,0.9;21.060,21.010,1296.4,17.647,17.647,17.353,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.164,0.000,-999999,-999999,-999999,-999999,0.8;21.080,21.030,1297.7,17.264,17.264,16.970,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.166,0.000,-999999,-999999,-999999,-999999,0.9;21.100,21.050,1301.3,16.925,16.925,16.630,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.166,0.000,-999999,-999999,-999999,-999999,0.9;21.120,21.070,1304.8,16.586,16.586,16.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.166,0.000,-999999,-999999,-999999,-999999,0.9;21.140,21.090,1308.1,16.267,16.267,15.972,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.161,0.000,-999999,-999999,-999999,-999999,0.9;21.160,21.110,1308.8,16.113,16.113,15.817,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.157,0.000,-999999,-999999,-999999,-999999,0.9;21.180,21.130,1309.6,15.813,15.813,15.517,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.155,0.000,-999999,-999999,-999999,-999999,0.9;21.200,21.150,1310.4,15.422,15.422,15.126,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.153,0.000,-999999,-999999,-999999,-999999,0.9;21.220,21.170,1311.2,15.203,15.203,14.907,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.150,0.000,-999999,-999999,-999999,-999999,0.9;21.240,21.190,1311.9,15.029,15.029,14.732,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.150,0.000,-999999,-999999,-999999,-999999,0.9;21.260,21.210,1312.7,14.907,14.907,14.610,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.144,0.000,-999999,-999999,-999999,-999999,0.9;21.280,21.230,1313.5,14.747,14.747,14.450,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.142,0.000,-999999,-999999,-999999,-999999,0.9;21.300,21.250,1314.2,14.515,14.515,14.217,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.138,0.000,-999999,-999999,-999999,-999999,0.9;21.320,21.270,1315.0,14.251,14.251,13.953,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.133,0.000,-999999,-999999,-999999,-999999,0.9;21.340,21.290,1315.8,13.983,13.983,13.685,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.129,0.000,-999999,-999999,-999999,-999999,0.9;21.360,21.310,1316.5,13.785,13.785,13.486,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.125,0.000,-999999,-999999,-999999,-999999,0.8;21.380,21.330,1317.3,13.610,13.610,13.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.123,0.000,-999999,-999999,-999999,-999999,0.8;21.400,21.350,1318.1,13.433,13.433,13.134,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.121,0.000,-999999,-999999,-999999,-999999,0.8;21.420,21.370,1318.8,13.290,13.290,12.991,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,0.8;21.440,21.390,1319.6,13.226,13.226,12.927,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.117,0.000,-999999,-999999,-999999,-999999,0.8;21.460,21.410,1320.3,13.159,13.159,12.859,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.114,0.000,-999999,-999999,-999999,-999999,0.8;21.480,21.430,1321.1,13.051,13.051,12.751,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.111,0.000,-999999,-999999,-999999,-999999,0.8;21.500,21.450,1321.9,12.897,12.897,12.597,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,0.8;21.520,21.470,1322.7,12.714,12.714,12.414,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,0.8;21.540,21.490,1323.4,12.575,12.575,12.274,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.107,0.000,-999999,-999999,-999999,-999999,0.8;21.560,21.510,1324.2,12.529,12.529,12.228,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.106,0.000,-999999,-999999,-999999,-999999,0.8;21.580,21.530,1325.0,12.422,12.422,12.121,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.106,0.000,-999999,-999999,-999999,-999999,0.8;21.600,21.550,1325.7,12.430,12.430,12.128,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.104,0.000,-999999,-999999,-999999,-999999,0.8;21.620,21.570,1326.5,12.514,12.514,12.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.102,0.000,-999999,-999999,-999999,-999999,0.8;21.640,21.590,1327.3,12.643,12.643,12.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.098,0.000,-999999,-999999,-999999,-999999,0.7;21.660,21.610,1328.0,12.676,12.676,12.373,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.096,0.000,-999999,-999999,-999999,-999999,0.7;21.680,21.630,1328.8,12.723,12.723,12.420,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,0.7;21.700,21.650,1329.6,12.668,12.668,12.365,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,0.7;21.720,21.670,1330.3,12.682,12.682,12.378,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.092,0.000,-999999,-999999,-999999,-999999,0.7;21.740,21.690,1331.1,12.741,12.741,12.437,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.093,0.000,-999999,-999999,-999999,-999999,0.7;21.760,21.710,1331.9,12.958,12.958,12.654,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.093,0.000,-999999,-999999,-999999,-999999,0.7;21.780,21.730,1332.7,13.075,13.075,12.771,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.091,0.000,-999999,-999999,-999999,-999999,0.7;21.800,21.750,1333.4,13.155,13.155,12.850,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.089,0.000,-999999,-999999,-999999,-999999,0.6;21.820,21.770,1334.2,13.277,13.277,12.972,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.086,0.000,-999999,-999999,-999999,-999999,0.6;21.840,21.790,1335.0,13.533,13.533,13.228,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.084,0.000,-999999,-999999,-999999,-999999,0.5;21.860,21.810,1335.8,14.131,14.131,13.826,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.077,0.000,-999999,-999999,-999999,-999999,0.5;21.880,21.830,1336.5,15.270,15.270,14.965,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.077,0.000,-999999,-999999,-999999,-999999,0.4;21.900,21.850,1337.3,16.813,16.813,16.507,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.074,0.000,-999999,-999999,-999999,-999999,0.4;21.920,21.870,1338.1,18.354,18.354,18.048,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.076,0.000,-999999,-999999,-999999,-999999,0.4;21.940,21.890,1339.0,19.892,19.892,19.586,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.084,0.000,-999999,-999999,-999999,-999999,0.4;21.960,21.910,1339.8,21.269,21.269,20.962,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.091,0.000,-999999,-999999,-999999,-999999,0.4;21.980,21.930,1340.6,22.915,22.915,22.608,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.103,0.000,-999999,-999999,-999999,-999999,0.4;22.000,21.950,1341.5,24.820,24.820,24.513,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.114,0.000,-999999,-999999,-999999,-999999,0.4;22.020,21.970,1342.4,26.912,26.912,26.605,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.125,0.000,-999999,-999999,-999999,-999999,0.4;22.040,21.990,1343.3,28.905,28.905,28.597,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.143,0.000,-999999,-999999,-999999,-999999,0.5;22.060,22.010,1344.2,30.440,30.440,30.132,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.164,0.000,-999999,-999999,-999999,-999999,0.5;22.080,22.030,1347.4,30.357,30.357,30.048,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.183,0.000,-999999,-999999,-999999,-999999,0.6;22.100,22.050,1351.6,30.337,30.337,30.028,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.206,0.000,-999999,-999999,-999999,-999999,0.6;22.120,22.070,1355.6,30.380,30.380,30.071,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.215,0.000,-999999,-999999,-999999,-999999,0.6;22.140,22.090,1356.6,31.455,31.455,31.146,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.210,0.000,-999999,-999999,-999999,-999999,0.6;22.160,22.110,1357.6,32.137,32.137,31.827,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.208,0.000,-999999,-999999,-999999,-999999,0.6;22.180,22.130,1358.6,32.275,32.275,31.965,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.215,0.000,-999999,-999999,-999999,-999999,0.6;22.200,22.150,1359.6,32.516,32.516,32.206,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.237,0.000,-999999,-999999,-999999,-999999,0.7;22.220,22.170,1360.7,32.860,32.860,32.550,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.252,0.000,-999999,-999999,-999999,-999999,0.7;22.240,22.190,1361.7,33.036,33.036,32.726,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.258,0.000,-999999,-999999,-999999,-999999,0.7;22.260,22.210,1362.8,32.940,32.940,32.629,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.254,0.000,-999999,-999999,-999999,-999999,0.7;22.280,22.230,1363.9,32.251,32.251,31.939,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.250,0.000,-999999,-999999,-999999,-999999,0.7;22.300,22.250,1364.9,31.433,31.433,31.121,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.257,0.000,-999999,-999999,-999999,-999999,0.8;22.320,22.270,1365.9,30.106,30.106,29.794,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.269,0.000,-999999,-999999,-999999,-999999,0.8;22.340,22.290,1366.9,29.210,29.210,28.898,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.261,0.000,-999999,-999999,-999999,-999999,0.8;22.360,22.310,1367.8,28.301,28.301,27.988,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.261,0.000,-999999,-999999,-999999,-999999,0.8;22.380,22.330,1368.8,27.618,27.618,27.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.262,0.000,-999999,-999999,-999999,-999999,0.9;22.400,22.350,1369.7,27.142,27.142,26.829,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.275,0.000,-999999,-999999,-999999,-999999,1.0;22.420,22.370,1370.7,26.721,26.721,26.408,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.276,0.000,-999999,-999999,-999999,-999999,1.0;22.440,22.390,1371.6,25.886,25.886,25.573,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.268,0.000,-999999,-999999,-999999,-999999,1.0;22.460,22.410,1372.5,24.647,24.647,24.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.257,0.000,-999999,-999999,-999999,-999999,1.0;22.480,22.430,1373.3,23.301,23.301,22.987,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.255,0.000,-999999,-999999,-999999,-999999,1.0;22.500,22.450,1374.2,22.137,22.137,21.823,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.253,0.000,-999999,-999999,-999999,-999999,1.1;22.520,22.470,1375.0,21.103,21.103,20.788,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.247,0.000,-999999,-999999,-999999,-999999,1.1;22.540,22.490,1375.8,19.871,19.871,19.556,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.235,0.000,-999999,-999999,-999999,-999999,1.1;22.560,22.510,1376.6,18.716,18.716,18.401,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.221,0.000,-999999,-999999,-999999,-999999,1.1;22.580,22.530,1377.3,18.134,18.134,17.819,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.217,0.000,-999999,-999999,-999999,-999999,1.1;22.600,22.550,1378.1,17.888,17.888,17.572,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.209,0.000,-999999,-999999,-999999,-999999,1.1;22.620,22.570,1378.9,17.915,17.915,17.599,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.204,0.000,-999999,-999999,-999999,-999999,1.1;22.640,22.590,1379.7,18.150,18.150,17.833,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.194,0.000,-999999,-999999,-999999,-999999,1.0;22.660,22.610,1380.5,18.440,18.440,18.124,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.198,0.000,-999999,-999999,-999999,-999999,1.0;22.680,22.630,1381.3,18.875,18.875,18.558,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.199,0.000,-999999,-999999,-999999,-999999,1.0;22.700,22.650,1382.1,19.580,19.580,19.263,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.197,0.000,-999999,-999999,-999999,-999999,1.0;22.720,22.670,1382.9,20.512,20.512,20.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.193,0.000,-999999,-999999,-999999,-999999,0.9;22.740,22.690,1383.7,20.948,20.948,20.630,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.195,0.000,-999999,-999999,-999999,-999999,0.9;22.760,22.710,1384.5,21.098,21.098,20.780,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.198,0.000,-999999,-999999,-999999,-999999,0.9;22.780,22.730,1385.4,21.383,21.383,21.065,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.206,0.000,-999999,-999999,-999999,-999999,0.9;22.800,22.750,1386.2,21.721,21.721,21.403,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.209,0.000,-999999,-999999,-999999,-999999,0.9;22.820,22.770,1387.0,21.818,21.818,21.500,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.205,0.000,-999999,-999999,-999999,-999999,0.9;22.840,22.790,1387.8,21.753,21.753,21.434,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.204,0.000,-999999,-999999,-999999,-999999,0.9;22.860,22.810,1388.7,21.790,21.790,21.471,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.205,0.000,-999999,-999999,-999999,-999999,0.9;22.880,22.830,1389.5,21.882,21.882,21.563,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.206,0.000,-999999,-999999,-999999,-999999,0.9;22.900,22.850,1390.3,22.105,22.105,21.785,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.208,0.000,-999999,-999999,-999999,-999999,0.9;22.920,22.870,1391.1,22.211,22.211,21.891,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.210,0.000,-999999,-999999,-999999,-999999,0.9;22.940,22.890,1392.0,21.850,21.850,21.530,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.214,0.000,-999999,-999999,-999999,-999999,1.0;22.960,22.910,1392.8,21.040,21.040,20.719,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.214,0.000,-999999,-999999,-999999,-999999,1.0;22.980,22.930,1393.6,20.001,20.001,19.680,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.209,0.000,-999999,-999999,-999999,-999999,1.0;23.000,22.950,1394.4,18.964,18.964,18.643,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.199,0.000,-999999,-999999,-999999,-999999,1.0;23.020,22.970,1395.2,18.109,18.109,17.788,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.189,0.000,-999999,-999999,-999999,-999999,0.9;23.040,22.990,1396.0,17.444,17.444,17.122,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.183,0.000,-999999,-999999,-999999,-999999,0.9;23.060,23.010,1397.6,17.068,17.068,16.746,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.180,0.000,-999999,-999999,-999999,-999999,1.0;23.080,23.030,1401.2,16.759,16.759,16.436,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.174,0.000,-999999,-999999,-999999,-999999,1.0;23.100,23.050,1404.8,16.450,16.450,16.127,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.168,0.000,-999999,-999999,-999999,-999999,0.9;23.120,23.070,1407.7,16.238,16.238,15.915,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.160,0.000,-999999,-999999,-999999,-999999,0.9;23.140,23.090,1408.5,16.274,16.274,15.951,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.157,0.000,-999999,-999999,-999999,-999999,0.9;23.160,23.110,1409.3,16.466,16.466,16.142,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.158,0.000,-999999,-999999,-999999,-999999,0.9;23.180,23.130,1410.0,16.800,16.800,16.476,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.159,0.000,-999999,-999999,-999999,-999999,0.9;23.200,23.150,1410.8,17.098,17.098,16.774,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.161,0.000,-999999,-999999,-999999,-999999,0.9;23.220,23.170,1411.6,17.294,17.294,16.970,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.163,0.000,-999999,-999999,-999999,-999999,0.9;23.240,23.190,1412.4,17.544,17.544,17.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.167,0.000,-999999,-999999,-999999,-999999,0.9;23.260,23.210,1413.2,17.942,17.942,17.617,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.171,0.000,-999999,-999999,-999999,-999999,0.9;23.280,23.230,1414.0,18.279,18.279,17.954,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.174,0.000,-999999,-999999,-999999,-999999,0.9;23.300,23.250,1414.7,18.421,18.421,18.095,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.179,0.000,-999999,-999999,-999999,-999999,0.9;23.320,23.270,1415.5,18.391,18.391,18.066,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.186,0.000,-999999,-999999,-999999,-999999,1.0;23.340,23.290,1416.3,18.292,18.292,17.966,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.191,0.000,-999999,-999999,-999999,-999999,1.0;23.360,23.310,1417.0,18.109,18.109,17.783,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.195,0.000,-999999,-999999,-999999,-999999,1.0;23.380,23.330,1417.8,17.807,17.807,17.480,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.195,0.000,-999999,-999999,-999999,-999999,1.0;23.400,23.350,1418.6,17.609,17.609,17.282,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.194,0.000,-999999,-999999,-999999,-999999,1.0;23.420,23.370,1419.4,17.591,17.591,17.264,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.192,0.000,-999999,-999999,-999999,-999999,1.0;23.440,23.390,1420.2,17.653,17.653,17.325,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.186,0.000,-999999,-999999,-999999,-999999,1.0;23.460,23.410,1421.0,17.838,17.838,17.511,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.179,0.000,-999999,-999999,-999999,-999999,0.9;23.480,23.430,1421.7,18.145,18.145,17.817,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.174,0.000,-999999,-999999,-999999,-999999,0.9;23.500,23.450,1422.5,18.387,18.387,18.059,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.168,0.000,-999999,-999999,-999999,-999999,0.9;23.520,23.470,1423.3,18.601,18.601,18.273,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.166,0.000,-999999,-999999,-999999,-999999,0.9;23.540,23.490,1424.1,18.766,18.766,18.437,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.170,0.000,-999999,-999999,-999999,-999999,0.9;23.560,23.510,1424.9,18.851,18.851,18.522,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.174,0.000,-999999,-999999,-999999,-999999,0.9;23.580,23.530,1425.6,18.783,18.783,18.454,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.175,0.000,-999999,-999999,-999999,-999999,0.9;23.600,23.550,1426.4,18.309,18.309,17.979,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.174,0.000,-999999,-999999,-999999,-999999,0.9;23.620,23.570,1427.2,17.336,17.336,17.006,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.172,0.000,-999999,-999999,-999999,-999999,1.0;23.640,23.590,1427.9,16.110,16.110,15.780,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.175,0.000,-999999,-999999,-999999,-999999,1.0;23.660,23.610,1428.7,14.915,14.915,14.585,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.177,0.000,-999999,-999999,-999999,-999999,1.1;23.680,23.630,1429.5,14.050,14.050,13.720,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.171,0.000,-999999,-999999,-999999,-999999,1.1;23.700,23.650,1430.2,13.398,13.398,13.067,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.162,0.000,-999999,-999999,-999999,-999999,1.1;23.720,23.670,1431.0,12.806,12.806,12.475,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.158,0.000,-999999,-999999,-999999,-999999,1.1;23.740,23.690,1431.8,12.223,12.223,11.891,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.152,0.000,-999999,-999999,-999999,-999999,1.1;23.760,23.710,1432.5,11.802,11.802,11.471,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.144,0.000,-999999,-999999,-999999,-999999,1.1;23.780,23.730,1433.3,11.547,11.547,11.215,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,1.1;23.800,23.750,1434.0,11.364,11.364,11.032,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.129,0.000,-999999,-999999,-999999,-999999,1.1;23.820,23.770,1434.8,11.283,11.283,10.950,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.125,0.000,-999999,-999999,-999999,-999999,1.0;23.840,23.790,1435.6,11.354,11.354,11.021,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.122,0.000,-999999,-999999,-999999,-999999,1.0;23.860,23.810,1436.3,11.510,11.510,11.177,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.116,0.000,-999999,-999999,-999999,-999999,0.9;23.880,23.830,1437.1,11.807,11.807,11.473,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,0.9;23.900,23.850,1437.9,12.327,12.327,11.993,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,0.8;23.920,23.870,1438.7,12.907,12.907,12.573,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,0.8;23.940,23.890,1439.5,13.403,13.403,13.069,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.103,0.000,-999999,-999999,-999999,-999999,0.7;23.960,23.910,1440.3,13.891,13.891,13.556,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,0.7;23.980,23.930,1441.0,14.346,14.346,14.011,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.106,0.000,-999999,-999999,-999999,-999999,0.7;24.000,23.950,1441.8,14.374,14.374,14.038,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,0.7;24.020,23.970,1442.6,14.050,14.050,13.714,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.7;24.040,23.990,1443.3,13.572,13.572,13.236,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,0.8;24.060,24.010,1446.3,13.209,13.209,12.873,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.126,0.000,-999999,-999999,-999999,-999999,0.9;24.080,24.030,1449.9,12.876,12.876,12.539,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.132,0.000,-999999,-999999,-999999,-999999,1.0;24.100,24.050,1453.4,12.542,12.542,12.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,1.0;24.120,24.070,1455.0,12.327,12.327,11.991,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,1.1;24.140,24.090,1455.8,12.204,12.204,11.866,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,1.1;24.160,24.110,1456.6,12.142,12.142,11.805,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.134,0.000,-999999,-999999,-999999,-999999,1.0;24.180,24.130,1457.4,12.098,12.098,11.761,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.132,0.000,-999999,-999999,-999999,-999999,1.0;24.200,24.150,1458.1,12.100,12.100,11.762,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.129,0.000,-999999,-999999,-999999,-999999,1.0;24.220,24.170,1458.9,12.111,12.111,11.772,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.127,0.000,-999999,-999999,-999999,-999999,1.0;24.240,24.190,1459.7,12.096,12.096,11.757,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.126,0.000,-999999,-999999,-999999,-999999,1.0;24.260,24.210,1460.5,12.070,12.070,11.731,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.125,0.000,-999999,-999999,-999999,-999999,1.0;24.280,24.230,1461.2,12.015,12.015,11.676,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.123,0.000,-999999,-999999,-999999,-999999,1.0;24.300,24.250,1462.0,11.957,11.957,11.617,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.122,0.000,-999999,-999999,-999999,-999999,1.0;24.320,24.270,1462.8,11.905,11.905,11.566,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.120,0.000,-999999,-999999,-999999,-999999,1.0;24.340,24.290,1463.5,11.853,11.853,11.513,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.120,0.000,-999999,-999999,-999999,-999999,1.0;24.360,24.310,1464.3,11.862,11.862,11.522,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,0.9;24.380,24.330,1465.1,11.857,11.857,11.516,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,0.9;24.400,24.350,1465.9,11.890,11.890,11.549,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.117,0.000,-999999,-999999,-999999,-999999,0.9;24.420,24.370,1466.6,11.924,11.924,11.583,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,0.9;24.440,24.390,1467.4,11.994,11.994,11.653,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,0.9;24.460,24.410,1468.2,12.093,12.093,11.751,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,0.9;24.480,24.430,1469.0,12.216,12.216,11.874,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,0.9;24.500,24.450,1469.7,12.401,12.401,12.059,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,0,3,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,0.9;24.520,24.470,1470.5,12.656,12.656,12.313,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,0.9;24.540,24.490,1471.3,12.928,12.928,12.586,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,0.9;24.560,24.510,1472.1,13.298,13.298,12.954,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,0.9;24.580,24.530,1472.8,13.631,13.631,13.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,0.8;24.600,24.550,1473.6,13.993,13.993,13.650,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.121,0.000,-999999,-999999,-999999,-999999,0.8;24.620,24.570,1474.4,14.351,14.351,14.008,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.123,0.000,-999999,-999999,-999999,-999999,0.8;24.640,24.590,1475.2,14.676,14.676,14.332,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.125,0.000,-999999,-999999,-999999,-999999,0.8;24.660,24.610,1476.0,14.953,14.953,14.608,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.128,0.000,-999999,-999999,-999999,-999999,0.8;24.680,24.630,1476.8,15.284,15.284,14.939,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.132,0.000,-999999,-999999,-999999,-999999,0.8;24.700,24.650,1477.6,15.709,15.709,15.364,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.133,0.000,-999999,-999999,-999999,-999999,0.8;24.720,24.670,1478.3,16.181,16.181,15.836,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,0.8;24.740,24.690,1479.1,16.649,16.649,16.304,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.139,0.000,-999999,-999999,-999999,-999999,0.8;24.760,24.710,1479.9,17.019,17.019,16.673,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.141,0.000,-999999,-999999,-999999,-999999,0.8;24.780,24.730,1480.7,17.312,17.312,16.966,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.144,0.000,-999999,-999999,-999999,-999999,0.8;24.800,24.750,1481.5,17.567,17.567,17.221,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.147,0.000,-999999,-999999,-999999,-999999,0.8;24.820,24.770,1482.3,17.923,17.923,17.576,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.148,0.000,-999999,-999999,-999999,-999999,0.8;24.840,24.790,1483.1,18.263,18.263,17.916,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.153,0.000,-999999,-999999,-999999,-999999,0.8;24.860,24.810,1483.9,18.578,18.578,18.231,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.158,0.000,-999999,-999999,-999999,-999999,0.8;24.880,24.830,1484.7,18.789,18.789,18.441,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.162,0.000,-999999,-999999,-999999,-999999,0.8;24.900,24.850,1485.5,18.943,18.943,18.595,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.166,0.000,-999999,-999999,-999999,-999999,0.8;24.920,24.870,1486.2,19.031,19.031,18.683,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.170,0.000,-999999,-999999,-999999,-999999,0.8;24.940,24.880,1487.0,19.283,19.283,18.934,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.173,0.000,-999999,-999999,-999999,-999999,0.8;24.960,24.900,1487.8,20.008,20.008,19.659,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.179,0.000,-999999,-999999,-999999,-999999,0.8;24.980,24.920,1488.7,21.118,21.118,20.769,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.181,0.000,-999999,-999999,-999999,-999999,0.8;25.000,24.940,1489.5,22.401,22.401,22.052,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,0.183,0.000,-999999,-999999,-999999,-999999,0.8;25.020,24.960,1490.4,23.996,23.996,23.646,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;25.040,24.980,1491.8,25.234,25.234,24.885,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;25.060,25.000,1494.8,25.782,25.782,25.432,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;25.080,25.020,1497.8,26.329,26.329,25.979,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;25.100,25.040,1500.8,26.876,26.876,26.526,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;25.100,25.050,1501.0,26.904,26.904,26.553,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-1,3,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;jajaneejajajajajajaneeneeneeneeneeneeneejajajaneeneejajaneeneeneeneeja2023-06-01T13:45:40+02:00voltooid2023-06-01T13:45:40+02:00neeneeneenee \ No newline at end of file diff --git a/tests/cpts/xml/CPT000000217409.xml b/tests/cpts/xml/CPT000000217409.xml new file mode 100644 index 0000000..3f23811 --- /dev/null +++ b/tests/cpts/xml/CPT000000217409.xml @@ -0,0 +1 @@ +dispatch-2025-01-10T17:08:55+01:00CPT00000021740930124359IMBROpubliekeTaakinfrastructuurLand2023-04-17ISO22476D1nee51.962745161 4.379944631RDNAPTRANS201885773.638 442070.5622022-12-19RTKGPS5tot10cmmaaiveld-0.854NAP2022-12-19RTKGPS4tot10cmnee2022-12-20elektrischContinuklasse2einddiepte0.0025.012Fugro Cone Penetrometer MkIICP15-CF75SN2-P1E1M4-V1-S1/1701-27571510440.5887198951.0-0.092-0.094000.003-0.0012022-12-11T09:21:39+01:002022-12-11T09:21:39+01:000.000,0.000,66.5,0.394,0.394,0.394,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.020,0.020,67.6,0.589,0.589,0.589,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.040,0.040,68.7,0.786,0.786,0.786,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.060,0.060,69.8,1.479,1.479,1.479,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,1,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.080,0.080,70.9,2.493,2.493,2.492,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.100,0.100,72.0,1.612,1.612,1.611,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;0.120,0.120,73.1,2.279,2.279,2.277,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,0.6;0.140,0.140,74.2,3.207,3.207,3.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,0.8;0.160,0.160,76.6,3.811,3.811,3.809,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.064,0.000,-999999,-999999,-999999,-999999,1.7;0.180,0.180,78.9,4.415,4.415,4.412,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.087,0.000,-999999,-999999,-999999,-999999,1.7;0.200,0.200,81.3,5.019,5.019,5.016,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,2,2,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,1.4;0.220,0.220,82.6,7.991,7.991,7.988,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,2,-999999,-999999,0.127,0.000,-999999,-999999,-999999,-999999,1.6;0.240,0.240,83.6,7.387,7.387,7.383,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,2,-999999,-999999,0.106,0.000,-999999,-999999,-999999,-999999,1.3;0.260,0.260,84.7,8.382,8.382,8.379,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,2,-999999,-999999,0.096,0.000,-999999,-999999,-999999,-999999,1.2;0.280,0.280,85.8,11.349,11.349,11.346,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,2,2,-999999,-999999,0.103,0.000,-999999,-999999,-999999,-999999,1.1;0.300,0.300,86.9,5.822,5.822,5.818,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,2,3,-999999,-999999,0.085,0.000,-999999,-999999,-999999,-999999,0.7;0.320,0.320,88.0,8.958,8.958,8.954,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,2,2,-999999,-999999,0.078,0.000,-999999,-999999,-999999,-999999,0.6;0.340,0.340,89.2,14.644,14.644,14.639,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.133,0.000,-999999,-999999,-999999,-999999,1.0;0.360,0.360,90.2,17.565,17.565,17.560,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,2,2,-999999,-999999,0.198,0.000,-999999,-999999,-999999,-999999,1.3;0.380,0.380,91.3,17.034,17.034,17.029,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,2,2,-999999,-999999,0.190,0.000,-999999,-999999,-999999,-999999,1.2;0.400,0.400,92.4,16.921,16.921,16.915,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,2,2,-999999,-999999,0.181,0.000,-999999,-999999,-999999,-999999,1.0;0.420,0.420,93.6,19.911,19.911,19.905,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.151,0.000,-999999,-999999,-999999,-999999,0.8;0.440,0.440,94.7,21.894,21.894,21.888,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,3,3,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,0.5;0.460,0.460,97.6,23.822,23.822,23.815,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,4,4,-999999,-999999,0.116,0.000,-999999,-999999,-999999,-999999,0.4;0.480,0.480,101.3,24.546,24.546,24.539,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,4,4,-999999,-999999,0.182,0.000,-999999,-999999,-999999,-999999,0.6;0.500,0.500,105.0,25.271,25.271,25.264,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,4,4,-999999,-999999,0.161,0.000,-999999,-999999,-999999,-999999,0.5;0.520,0.520,106.2,35.824,35.824,35.817,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,4,4,-999999,-999999,0.185,0.000,-999999,-999999,-999999,-999999,0.5;0.540,0.540,107.4,40.574,40.574,40.566,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,5,5,-999999,-999999,0.276,0.000,-999999,-999999,-999999,-999999,0.7;0.560,0.560,108.6,39.317,39.317,39.309,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,5,5,-999999,-999999,0.260,0.000,-999999,-999999,-999999,-999999,0.7;0.580,0.580,109.7,38.640,38.640,38.632,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,5,5,-999999,-999999,0.226,0.000,-999999,-999999,-999999,-999999,0.5;0.600,0.600,110.9,39.370,39.370,39.362,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,5,5,-999999,-999999,0.248,0.000,-999999,-999999,-999999,-999999,0.6;0.620,0.620,112.1,39.464,39.464,39.456,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,5,5,-999999,-999999,0.238,0.000,-999999,-999999,-999999,-999999,0.5;0.640,0.640,113.5,41.850,41.850,41.841,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,5,5,-999999,-999999,0.182,0.000,-999999,-999999,-999999,-999999,0.4;0.660,0.660,114.8,42.680,42.680,42.671,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,5,5,-999999,-999999,0.182,0.000,-999999,-999999,-999999,-999999,0.4;0.680,0.680,116.1,43.598,43.598,43.589,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,5,5,-999999,-999999,0.165,0.000,-999999,-999999,-999999,-999999,0.3;0.700,0.700,117.5,43.095,43.095,43.085,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,5,5,-999999,-999999,0.177,0.000,-999999,-999999,-999999,-999999,0.3;0.720,0.720,118.9,45.166,45.166,45.156,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,5,5,-999999,-999999,0.192,0.000,-999999,-999999,-999999,-999999,0.4;0.740,0.740,120.6,48.440,48.440,48.430,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,5,5,-999999,-999999,0.207,0.000,-999999,-999999,-999999,-999999,0.4;0.760,0.760,122.4,50.078,50.078,50.067,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,5,5,-999999,-999999,0.261,0.000,-999999,-999999,-999999,-999999,0.5;0.780,0.780,124.1,49.642,49.642,49.632,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,5,6,-999999,-999999,0.246,0.000,-999999,-999999,-999999,-999999,0.5;0.800,0.800,125.7,48.536,48.536,48.524,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.288,0.000,-999999,-999999,-999999,-999999,0.6;0.820,0.820,127.3,47.837,47.837,47.825,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.316,0.000,-999999,-999999,-999999,-999999,0.6;0.840,0.840,128.8,46.047,46.047,46.036,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.335,0.000,-999999,-999999,-999999,-999999,0.7;0.860,0.860,130.2,44.260,44.260,44.248,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.370,0.000,-999999,-999999,-999999,-999999,0.8;0.880,0.880,131.6,43.677,43.677,43.664,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.376,0.000,-999999,-999999,-999999,-999999,0.8;0.900,0.900,132.9,42.489,42.489,42.476,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.363,0.000,-999999,-999999,-999999,-999999,0.8;0.920,0.920,134.3,42.156,42.156,42.144,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.353,0.000,-999999,-999999,-999999,-999999,0.8;0.940,0.940,135.7,42.059,42.059,42.046,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.351,0.000,-999999,-999999,-999999,-999999,0.8;0.960,0.960,137.1,42.815,42.815,42.802,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.314,0.000,-999999,-999999,-999999,-999999,0.7;0.980,0.980,138.6,42.741,42.741,42.728,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.262,0.000,-999999,-999999,-999999,-999999,0.6;1.000,1.000,139.9,42.148,42.148,42.134,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.254,0.000,-999999,-999999,-999999,-999999,0.6;1.020,1.020,141.4,42.382,42.382,42.367,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.263,0.000,-999999,-999999,-999999,-999999,0.6;1.040,1.040,143.7,42.646,42.646,42.631,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.294,0.000,-999999,-999999,-999999,-999999,0.7;1.060,1.060,148.4,39.799,39.799,39.784,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.272,0.000,-999999,-999999,-999999,-999999,0.6;1.080,1.080,152.4,38.408,38.408,38.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.271,0.000,-999999,-999999,-999999,-999999,0.6;1.100,1.100,153.6,37.784,37.784,37.769,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.259,0.000,-999999,-999999,-999999,-999999,0.6;1.120,1.120,154.9,36.961,36.961,36.946,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.271,0.000,-999999,-999999,-999999,-999999,0.7;1.140,1.140,156.2,35.390,35.390,35.374,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,6,-999999,-999999,0.229,0.000,-999999,-999999,-999999,-999999,0.6;1.160,1.160,157.5,34.846,34.846,34.830,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,6,-999999,-999999,0.233,0.000,-999999,-999999,-999999,-999999,0.6;1.180,1.180,158.8,35.155,35.155,35.138,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,6,-999999,-999999,0.201,0.000,-999999,-999999,-999999,-999999,0.5;1.200,1.200,160.2,36.136,36.136,36.119,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,6,-999999,-999999,0.172,0.000,-999999,-999999,-999999,-999999,0.4;1.220,1.220,161.6,37.389,37.389,37.372,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.117,0.000,-999999,-999999,-999999,-999999,0.3;1.240,1.240,163.0,38.345,38.345,38.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,6,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,0.3;1.260,1.260,164.6,41.008,41.008,40.991,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.167,0.000,-999999,-999999,-999999,-999999,0.4;1.280,1.280,166.1,41.945,41.945,41.928,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,6,-999999,-999999,0.287,0.000,-999999,-999999,-999999,-999999,0.6;1.300,1.300,167.6,44.848,44.848,44.830,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.345,0.000,-999999,-999999,-999999,-999999,0.8;1.320,1.320,169.2,42.096,42.096,42.078,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,6,-999999,-999999,0.339,0.000,-999999,-999999,-999999,-999999,0.8;1.340,1.340,170.6,43.280,43.280,43.261,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.363,0.000,-999999,-999999,-999999,-999999,0.8;1.360,1.360,172.0,39.480,39.480,39.461,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,6,-999999,-999999,0.373,0.000,-999999,-999999,-999999,-999999,0.9;1.380,1.380,173.4,37.683,37.683,37.664,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,6,-999999,-999999,0.370,0.000,-999999,-999999,-999999,-999999,0.9;1.400,1.400,174.8,37.205,37.205,37.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.337,0.000,-999999,-999999,-999999,-999999,0.8;1.420,1.410,176.2,36.797,36.797,36.778,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.304,0.000,-999999,-999999,-999999,-999999,0.8;1.440,1.430,177.6,36.799,36.799,36.779,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.286,0.000,-999999,-999999,-999999,-999999,0.7;1.460,1.450,178.9,36.071,36.071,36.050,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.258,0.000,-999999,-999999,-999999,-999999,0.7;1.480,1.470,182.7,35.212,35.212,35.192,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.269,0.000,-999999,-999999,-999999,-999999,0.7;1.500,1.490,186.5,34.339,34.339,34.318,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.273,0.000,-999999,-999999,-999999,-999999,0.7;1.520,1.510,189.4,33.825,33.825,33.803,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.298,0.000,-999999,-999999,-999999,-999999,0.8;1.540,1.530,190.6,34.183,34.183,34.162,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.304,0.000,-999999,-999999,-999999,-999999,0.8;1.560,1.550,191.7,34.469,34.469,34.447,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,6,6,-999999,-999999,0.312,0.000,-999999,-999999,-999999,-999999,0.9;1.580,1.570,192.8,34.657,34.657,34.635,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,6,-999999,-999999,0.295,0.000,-999999,-999999,-999999,-999999,0.8;1.600,1.590,193.9,34.286,34.286,34.264,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,6,-999999,-999999,0.305,0.000,-999999,-999999,-999999,-999999,0.8;1.620,1.610,195.1,34.031,34.031,34.008,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,6,-999999,-999999,0.297,0.000,-999999,-999999,-999999,-999999,0.8;1.640,1.630,196.2,34.209,34.209,34.187,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,6,-999999,-999999,0.262,0.000,-999999,-999999,-999999,-999999,0.7;1.660,1.650,197.3,33.372,33.372,33.349,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,6,-999999,-999999,0.250,0.000,-999999,-999999,-999999,-999999,0.7;1.680,1.670,198.4,33.158,33.158,33.135,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,6,-999999,-999999,0.229,0.000,-999999,-999999,-999999,-999999,0.6;1.700,1.690,199.5,32.242,32.242,32.218,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,6,-999999,-999999,0.255,0.000,-999999,-999999,-999999,-999999,0.7;1.720,1.710,200.6,32.882,32.882,32.858,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,6,-999999,-999999,0.300,0.000,-999999,-999999,-999999,-999999,0.9;1.740,1.730,201.7,32.443,32.443,32.418,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,6,-999999,-999999,0.269,0.000,-999999,-999999,-999999,-999999,0.8;1.760,1.750,202.8,31.097,31.097,31.072,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,7,-999999,-999999,0.240,0.000,-999999,-999999,-999999,-999999,0.7;1.780,1.770,203.8,29.599,29.599,29.574,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,7,-999999,-999999,0.255,0.000,-999999,-999999,-999999,-999999,0.8;1.800,1.790,204.9,27.921,27.921,27.896,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,7,-999999,-999999,0.259,0.000,-999999,-999999,-999999,-999999,0.8;1.820,1.810,206.0,27.975,27.975,27.949,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,7,-999999,-999999,0.288,0.000,-999999,-999999,-999999,-999999,1.0;1.840,1.830,207.1,27.609,27.609,27.584,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,7,-999999,-999999,0.263,0.000,-999999,-999999,-999999,-999999,0.9;1.860,1.850,208.2,26.638,26.638,26.612,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,7,-999999,-999999,0.227,0.000,-999999,-999999,-999999,-999999,0.8;1.880,1.870,209.3,25.905,25.905,25.879,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,7,-999999,-999999,0.255,0.000,-999999,-999999,-999999,-999999,0.9;1.900,1.890,210.4,24.794,24.794,24.767,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,7,-999999,-999999,0.328,0.000,-999999,-999999,-999999,-999999,1.2;1.920,1.910,211.4,24.255,24.255,24.228,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,7,-999999,-999999,0.284,0.000,-999999,-999999,-999999,-999999,1.1;1.940,1.930,212.6,24.154,24.154,24.127,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,7,-999999,-999999,0.272,0.000,-999999,-999999,-999999,-999999,1.1;1.960,1.950,213.6,24.384,24.384,24.356,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,7,-999999,-999999,0.263,0.000,-999999,-999999,-999999,-999999,1.1;1.980,1.970,214.7,22.133,22.133,22.106,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,6,7,-999999,-999999,0.246,0.000,-999999,-999999,-999999,-999999,1.0;2.000,1.990,215.8,21.091,21.091,21.063,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,7,-999999,-999999,0.229,0.000,-999999,-999999,-999999,-999999,1.0;2.020,2.010,216.8,20.188,20.188,20.160,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,7,-999999,-999999,0.211,0.000,-999999,-999999,-999999,-999999,0.9;2.040,2.030,217.9,19.101,19.101,19.072,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,7,-999999,-999999,0.185,0.000,-999999,-999999,-999999,-999999,0.8;2.060,2.050,219.8,18.252,18.252,18.224,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,7,-999999,-999999,0.178,0.000,-999999,-999999,-999999,-999999,0.9;2.080,2.070,222.5,17.424,17.424,17.395,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,7,-999999,-999999,0.181,0.000,-999999,-999999,-999999,-999999,1.0;2.100,2.090,225.3,16.596,16.596,16.567,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,7,-999999,-999999,0.181,0.000,-999999,-999999,-999999,-999999,1.0;2.120,2.110,227.4,15.952,15.952,15.923,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,7,-999999,-999999,0.179,0.000,-999999,-999999,-999999,-999999,1.1;2.140,2.130,228.5,15.495,15.495,15.465,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,6,7,-999999,-999999,0.183,0.000,-999999,-999999,-999999,-999999,1.2;2.160,2.150,229.6,15.040,15.040,15.010,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.182,0.000,-999999,-999999,-999999,-999999,1.2;2.180,2.170,230.7,14.392,14.392,14.362,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.178,0.000,-999999,-999999,-999999,-999999,1.2;2.200,2.190,231.8,13.660,13.660,13.629,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.174,0.000,-999999,-999999,-999999,-999999,1.2;2.220,2.210,232.8,12.870,12.870,12.839,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.165,0.000,-999999,-999999,-999999,-999999,1.2;2.240,2.230,233.9,12.175,12.175,12.144,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.155,0.000,-999999,-999999,-999999,-999999,1.2;2.260,2.250,235.0,11.500,11.500,11.469,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.151,0.000,-999999,-999999,-999999,-999999,1.2;2.280,2.270,236.1,10.820,10.820,10.788,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.141,0.000,-999999,-999999,-999999,-999999,1.2;2.300,2.290,237.2,10.163,10.163,10.131,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.134,0.000,-999999,-999999,-999999,-999999,1.2;2.320,2.310,238.2,9.468,9.468,9.435,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.127,0.000,-999999,-999999,-999999,-999999,1.3;2.340,2.330,239.3,8.753,8.753,8.720,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.120,0.000,-999999,-999999,-999999,-999999,1.3;2.360,2.350,240.4,8.199,8.199,8.166,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.113,0.000,-999999,-999999,-999999,-999999,1.3;2.380,2.370,241.5,7.739,7.739,7.706,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.106,0.000,-999999,-999999,-999999,-999999,1.3;2.400,2.390,242.6,7.372,7.372,7.338,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.099,0.000,-999999,-999999,-999999,-999999,1.3;2.420,2.410,243.6,7.030,7.030,6.996,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.092,0.000,-999999,-999999,-999999,-999999,1.2;2.440,2.430,244.7,6.645,6.645,6.611,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.083,0.000,-999999,-999999,-999999,-999999,1.2;2.460,2.450,245.8,6.234,6.234,6.200,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.074,0.000,-999999,-999999,-999999,-999999,1.1;2.480,2.470,246.8,5.788,5.788,5.753,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.071,0.000,-999999,-999999,-999999,-999999,1.1;2.500,2.490,247.9,5.295,5.295,5.260,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.071,0.000,-999999,-999999,-999999,-999999,1.2;2.520,2.510,251.4,4.750,4.750,4.715,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.070,0.000,-999999,-999999,-999999,-999999,1.4;2.540,2.530,255.0,4.203,4.203,4.168,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.068,0.000,-999999,-999999,-999999,-999999,1.6;2.560,2.550,257.8,3.685,3.685,3.649,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.065,0.000,-999999,-999999,-999999,-999999,1.8;2.580,2.570,258.9,3.175,3.175,3.139,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,2.2;2.600,2.590,260.0,2.656,2.656,2.620,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,2.4;2.620,2.610,261.1,2.163,2.163,2.126,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.064,0.000,-999999,-999999,-999999,-999999,2.6;2.640,2.630,262.2,1.672,1.672,1.636,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.064,0.000,-999999,-999999,-999999,-999999,3.2;2.660,2.650,263.2,1.273,1.273,1.236,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.064,0.000,-999999,-999999,-999999,-999999,4.0;2.680,2.670,264.3,0.986,0.986,0.949,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,4.8;2.700,2.690,265.4,0.814,0.814,0.776,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,5.4;2.720,2.710,266.5,0.681,0.681,0.643,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,7,7,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,5.7;2.740,2.730,267.6,0.577,0.577,0.539,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,5.5;2.760,2.750,268.6,0.554,0.554,0.516,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,5.5;2.780,2.770,269.7,0.557,0.557,0.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,5.5;2.800,2.790,270.8,0.555,0.555,0.516,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,5.6;2.820,2.810,271.8,0.533,0.533,0.494,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,6.2;2.840,2.830,272.9,0.532,0.532,0.492,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,7.2;2.860,2.840,274.0,0.536,0.536,0.497,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,8.0;2.880,2.860,275.1,0.544,0.544,0.504,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,8.6;2.900,2.880,276.2,0.552,0.552,0.511,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,9.1;2.920,2.900,277.2,0.544,0.544,0.503,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,9.5;2.940,2.920,278.3,0.538,0.538,0.497,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,10.0;2.960,2.940,279.4,0.534,0.534,0.493,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.058,0.000,-999999,-999999,-999999,-999999,10.5;2.980,2.960,280.5,0.558,0.558,0.516,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.061,0.000,-999999,-999999,-999999,-999999,10.9;3.000,2.980,281.6,0.568,0.568,0.526,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,11.3;3.020,3.000,282.7,0.581,0.581,0.538,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.066,0.000,-999999,-999999,-999999,-999999,11.8;3.040,3.020,283.8,0.570,0.570,0.527,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.069,0.000,-999999,-999999,-999999,-999999,12.3;3.060,3.040,284.8,0.550,0.550,0.508,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.072,0.000,-999999,-999999,-999999,-999999,12.9;3.080,3.060,285.9,0.522,0.522,0.479,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.072,0.000,-999999,-999999,-999999,-999999,13.1;3.100,3.080,288.1,0.496,0.496,0.452,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.070,0.000,-999999,-999999,-999999,-999999,13.8;3.120,3.100,291.2,0.464,0.464,0.421,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.069,0.000,-999999,-999999,-999999,-999999,14.8;3.140,3.120,294.3,0.433,0.433,0.389,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.066,0.000,-999999,-999999,-999999,-999999,15.5;3.160,3.140,296.2,0.401,0.401,0.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,16.3;3.180,3.160,297.2,0.373,0.373,0.329,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.058,0.000,-999999,-999999,-999999,-999999,15.8;3.200,3.180,298.3,0.335,0.335,0.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,15.2;3.220,3.200,299.4,0.321,0.321,0.276,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,14.5;3.240,3.220,300.4,0.325,0.325,0.280,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,14.7;3.260,3.240,301.5,0.327,0.327,0.282,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,14.4;3.280,3.260,302.6,0.345,0.345,0.299,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,14.3;3.300,3.280,303.7,0.345,0.345,0.299,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,14.4;3.320,3.300,304.8,0.330,0.330,0.284,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,14.3;3.340,3.320,305.8,0.338,0.338,0.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,14.0;3.360,3.340,306.9,0.375,0.375,0.328,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.054,0.000,-999999,-999999,-999999,-999999,14.0;3.380,3.360,308.0,0.413,0.413,0.366,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,14.2;3.400,3.380,309.1,0.432,0.432,0.385,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.059,0.000,-999999,-999999,-999999,-999999,14.3;3.420,3.400,310.1,0.446,0.446,0.398,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.061,0.000,-999999,-999999,-999999,-999999,14.3;3.440,3.420,311.2,0.478,0.478,0.430,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.064,0.000,-999999,-999999,-999999,-999999,14.6;3.460,3.440,312.3,0.459,0.459,0.410,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.067,0.000,-999999,-999999,-999999,-999999,14.9;3.480,3.460,313.4,0.434,0.434,0.385,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.070,0.000,-999999,-999999,-999999,-999999,15.2;3.500,3.480,314.4,0.453,0.453,0.404,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.071,0.000,-999999,-999999,-999999,-999999,15.2;3.520,3.500,318.3,0.477,0.477,0.428,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.072,0.000,-999999,-999999,-999999,-999999,15.1;3.540,3.520,322.3,0.501,0.501,0.452,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.071,0.000,-999999,-999999,-999999,-999999,14.8;3.560,3.540,325.0,0.505,0.505,0.455,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.074,0.000,-999999,-999999,-999999,-999999,14.9;3.580,3.560,326.1,0.497,0.497,0.447,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.077,0.000,-999999,-999999,-999999,-999999,15.2;3.600,3.580,327.1,0.508,0.508,0.458,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.078,0.000,-999999,-999999,-999999,-999999,15.7;3.620,3.600,328.2,0.528,0.528,0.478,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.077,0.000,-999999,-999999,-999999,-999999,15.9;3.640,3.620,329.3,0.507,0.507,0.456,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.077,0.000,-999999,-999999,-999999,-999999,16.3;3.660,3.640,330.4,0.442,0.442,0.391,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.076,0.000,-999999,-999999,-999999,-999999,16.9;3.680,3.660,331.5,0.405,0.405,0.354,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.075,0.000,-999999,-999999,-999999,-999999,17.5;3.700,3.680,332.6,0.371,0.371,0.320,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.073,0.000,-999999,-999999,-999999,-999999,18.1;3.720,3.700,333.7,0.346,0.346,0.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.071,0.000,-999999,-999999,-999999,-999999,18.6;3.740,3.720,334.7,0.333,0.333,0.281,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.068,0.000,-999999,-999999,-999999,-999999,18.8;3.760,3.740,335.8,0.337,0.337,0.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.066,0.000,-999999,-999999,-999999,-999999,18.8;3.780,3.760,336.8,0.342,0.342,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,18.4;3.800,3.780,337.9,0.338,0.338,0.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.060,0.000,-999999,-999999,-999999,-999999,17.9;3.820,3.800,339.0,0.329,0.329,0.276,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,17.2;3.840,3.820,340.1,0.326,0.326,0.272,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,16.8;3.860,3.840,341.2,0.321,0.321,0.267,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,16.6;3.880,3.860,342.3,0.319,0.319,0.265,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,16.8;3.900,3.880,343.3,0.314,0.314,0.260,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,17.1;3.920,3.900,344.4,0.286,0.286,0.232,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,17.2;3.940,3.920,345.5,0.269,0.269,0.214,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,17.0;3.960,3.940,346.6,0.237,0.237,0.182,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,16.6;3.980,3.960,347.7,0.230,0.230,0.175,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,16.2;4.000,3.980,348.7,0.235,0.235,0.179,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,15.4;4.020,4.000,349.8,0.247,0.247,0.191,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,15.1;4.040,4.020,350.9,0.267,0.267,0.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,15.0;4.060,4.040,352.0,0.306,0.306,0.250,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,14.9;4.080,4.060,353.1,0.344,0.344,0.287,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,10.4;4.100,4.080,355.2,0.509,0.509,0.452,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,7.0;4.120,4.090,358.2,0.770,0.770,0.713,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,6.4;4.140,4.110,361.2,1.031,1.031,0.973,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,6.2;4.160,4.130,362.5,1.296,1.296,1.238,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,6.4;4.180,4.150,363.6,1.540,1.540,1.482,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.064,0.000,-999999,-999999,-999999,-999999,6.9;4.200,4.170,364.6,0.901,0.901,0.843,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.065,0.000,-999999,-999999,-999999,-999999,7.6;4.220,4.190,365.7,0.652,0.652,0.593,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.064,0.000,-999999,-999999,-999999,-999999,7.9;4.240,4.210,366.8,0.467,0.467,0.408,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,8.5;4.260,4.230,367.9,0.397,0.397,0.338,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,8.6;4.280,4.250,368.9,0.372,0.372,0.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,10.1;4.300,4.270,370.1,0.348,0.348,0.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,10.3;4.320,4.290,371.1,0.339,0.339,0.279,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,10.1;4.340,4.310,372.2,0.324,0.324,0.264,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,10.0;4.360,4.330,373.3,0.314,0.314,0.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,10.2;4.380,4.350,374.4,0.318,0.318,0.257,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,10.4;4.400,4.370,375.4,0.328,0.328,0.267,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,10.7;4.420,4.390,376.5,0.330,0.330,0.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,11.2;4.440,4.410,377.6,0.331,0.331,0.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,11.5;4.460,4.430,378.7,0.333,0.333,0.271,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,11.9;4.480,4.450,379.7,0.322,0.322,0.260,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,11.9;4.500,4.470,381.6,0.303,0.303,0.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,11.8;4.520,4.490,385.2,0.289,0.289,0.226,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,11.6;4.540,4.510,388.9,0.275,0.275,0.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,11.7;4.560,4.530,391.1,0.260,0.260,0.197,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,11.8;4.580,4.550,392.2,0.254,0.254,0.190,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,12.0;4.600,4.570,393.3,0.258,0.258,0.194,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.032,0.000,-999999,-999999,-999999,-999999,12.2;4.620,4.590,394.3,0.263,0.263,0.199,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,12.4;4.640,4.610,395.4,0.257,0.257,0.193,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,13.0;4.660,4.630,396.5,0.257,0.257,0.193,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.036,0.000,-999999,-999999,-999999,-999999,13.3;4.680,4.650,397.6,0.259,0.259,0.194,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,13.5;4.700,4.670,398.7,0.276,0.276,0.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.039,0.000,-999999,-999999,-999999,-999999,13.5;4.720,4.690,399.7,0.293,0.293,0.227,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,13.3;4.740,4.710,400.8,0.313,0.313,0.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,13.0;4.760,4.730,401.9,0.341,0.341,0.275,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.043,0.000,-999999,-999999,-999999,-999999,13.0;4.780,4.750,402.9,0.361,0.361,0.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,12.8;4.800,4.770,404.0,0.377,0.377,0.310,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,12.5;4.820,4.790,405.1,0.379,0.379,0.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,12.5;4.840,4.810,406.2,0.385,0.385,0.318,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,12.4;4.860,4.830,407.2,0.391,0.391,0.323,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,12.3;4.880,4.850,408.3,0.389,0.389,0.321,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,12.3;4.900,4.870,409.4,0.367,0.367,0.299,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,12.5;4.920,4.890,410.5,0.348,0.348,0.279,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,12.6;4.940,4.910,411.6,0.343,0.343,0.275,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,12.7;4.960,4.930,412.6,0.339,0.339,0.270,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,12.8;4.980,4.950,413.7,0.342,0.342,0.272,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,12.7;5.000,4.970,414.8,0.343,0.343,0.273,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,12.6;5.020,4.990,415.8,0.350,0.350,0.281,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,12.6;5.040,5.010,416.9,0.352,0.352,0.282,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,12.5;5.060,5.030,418.0,0.352,0.352,0.282,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,12.5;5.080,5.050,419.1,0.360,0.360,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,12.1;5.100,5.070,421.9,0.382,0.382,0.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,11.9;5.120,5.090,424.8,0.405,0.405,0.334,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.048,0.000,-999999,-999999,-999999,-999999,11.7;5.140,5.110,427.3,0.427,0.427,0.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,11.6;5.160,5.130,428.4,0.448,0.448,0.376,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,11.6;5.180,5.150,429.4,0.453,0.453,0.381,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,11.8;5.200,5.170,430.5,0.436,0.436,0.364,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,11.6;5.220,5.190,431.6,0.413,0.413,0.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,11.1;5.240,5.200,432.7,0.381,0.381,0.308,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.040,0.000,-999999,-999999,-999999,-999999,10.7;5.260,5.220,433.8,0.341,0.341,0.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.035,0.000,-999999,-999999,-999999,-999999,9.9;5.280,5.240,434.8,0.308,0.308,0.234,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,8.8;5.300,5.260,435.9,0.280,0.280,0.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,8.4;5.320,5.280,437.1,0.262,0.262,0.188,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,7.4;5.340,5.300,438.2,0.250,0.250,0.176,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,6.4;5.360,5.320,439.6,0.236,0.236,0.162,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,5.6;5.380,5.340,440.6,0.232,0.232,0.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,5.2;5.400,5.360,441.8,0.221,0.221,0.146,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,4.8;5.420,5.380,443.1,0.219,0.219,0.144,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,4.5;5.440,5.400,444.4,0.221,0.221,0.145,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,4.3;5.460,5.420,445.5,0.223,0.223,0.147,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,4.2;5.480,5.440,446.6,0.222,0.222,0.145,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,4.2;5.500,5.460,447.7,0.223,0.223,0.146,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,4.1;5.520,5.480,449.5,0.227,0.227,0.150,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,4.1;5.540,5.500,453.3,0.229,0.229,0.151,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,4.0;5.560,5.520,457.1,0.230,0.230,0.153,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,4.0;5.580,5.540,459.6,0.229,0.229,0.152,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,4.0;5.600,5.560,460.6,0.229,0.229,0.151,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.9;5.620,5.580,461.7,0.232,0.232,0.154,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.9;5.640,5.600,462.8,0.236,0.236,0.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.8;5.660,5.620,463.8,0.232,0.232,0.153,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.7;5.680,5.640,464.9,0.242,0.242,0.163,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,3.7;5.700,5.660,466.0,0.250,0.250,0.170,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,3.8;5.720,5.680,467.1,0.255,0.255,0.175,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,3.9;5.740,5.700,468.2,0.260,0.260,0.180,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,4.0;5.760,5.720,469.3,0.266,0.266,0.186,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,4.1;5.780,5.740,470.3,0.271,0.271,0.190,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,4.2;5.800,5.760,471.4,0.278,0.278,0.197,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,4.3;5.820,5.780,472.5,0.281,0.281,0.200,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,4.4;5.840,5.800,473.5,0.286,0.286,0.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,4.5;5.860,5.820,474.6,0.293,0.293,0.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,4.5;5.880,5.840,475.7,0.301,0.301,0.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,4.7;5.900,5.860,476.8,0.315,0.315,0.233,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,5.2;5.920,5.880,477.9,0.330,0.330,0.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,5.8;5.940,5.900,479.0,0.349,0.349,0.266,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,6.3;5.960,5.920,480.1,0.375,0.375,0.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,6.8;5.980,5.940,481.2,0.384,0.384,0.301,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,7.2;6.000,5.960,482.3,0.379,0.379,0.295,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,7.5;6.020,5.980,483.5,0.371,0.371,0.287,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,7.8;6.040,6.000,484.7,0.359,0.359,0.275,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,8.0;6.060,6.020,486.1,0.330,0.330,0.246,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,8.2;6.080,6.040,487.5,0.319,0.319,0.234,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,8.3;6.100,6.060,488.8,0.298,0.298,0.213,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,8.4;6.120,6.080,490.8,0.281,0.281,0.196,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,8.5;6.140,6.100,493.9,0.266,0.266,0.180,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,8.6;6.160,6.120,497.0,0.250,0.250,0.165,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,8.5;6.180,6.140,498.4,0.235,0.235,0.149,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,8.5;6.200,6.160,499.6,0.220,0.220,0.133,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,7.6;6.220,6.180,500.6,0.205,0.205,0.119,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,6.8;6.240,6.200,501.7,0.196,0.196,0.110,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,6.2;6.260,6.220,502.8,0.182,0.182,0.095,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,5.8;6.280,6.240,503.8,0.176,0.176,0.089,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,5.4;6.300,6.260,504.9,0.169,0.169,0.081,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,5.1;6.320,6.280,506.1,0.170,0.170,0.082,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,4.9;6.340,6.300,507.1,0.169,0.169,0.081,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,5.0;6.360,6.320,508.2,0.168,0.168,0.080,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,4.7;6.380,6.340,509.3,0.168,0.168,0.079,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,4.1;6.400,6.350,510.4,0.169,0.169,0.080,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,3.1;6.420,6.370,511.4,0.177,0.177,0.088,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,2.7;6.440,6.390,512.6,0.226,0.226,0.137,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.6;6.460,6.410,513.6,0.347,0.347,0.257,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.4;6.480,6.430,514.7,0.501,0.501,0.411,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.3;6.500,6.450,515.8,0.573,0.573,0.482,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.8;6.520,6.470,517.8,0.511,0.511,0.421,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.5;6.540,6.490,521.6,0.446,0.446,0.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.4;6.560,6.510,525.3,0.380,0.380,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.5;6.580,6.530,527.6,0.313,0.313,0.221,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,2.0;6.600,6.550,528.7,0.274,0.274,0.182,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,2.3;6.620,6.570,529.7,0.275,0.275,0.183,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,2.0;6.640,6.590,530.8,0.284,0.284,0.192,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.9;6.660,6.610,531.9,0.272,0.272,0.180,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.9;6.680,6.630,533.0,0.254,0.254,0.161,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.7;6.700,6.650,534.1,0.251,0.251,0.158,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.7;6.720,6.670,535.1,0.251,0.251,0.158,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.8;6.740,6.690,536.2,0.252,0.252,0.158,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.7;6.760,6.710,537.3,0.253,0.253,0.159,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.5;6.780,6.730,538.4,0.249,0.249,0.155,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.6;6.800,6.750,539.4,0.246,0.246,0.152,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.7;6.820,6.770,540.6,0.247,0.247,0.152,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.6;6.840,6.790,541.6,0.252,0.252,0.156,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.6;6.860,6.810,542.7,0.257,0.257,0.161,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.5;6.880,6.830,543.8,0.250,0.250,0.154,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.6;6.900,6.850,544.8,0.251,0.251,0.155,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.7;6.920,6.870,545.9,0.251,0.251,0.155,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.7;6.940,6.890,547.0,0.262,0.262,0.166,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.6;6.960,6.910,548.1,0.272,0.272,0.175,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.5;6.980,6.930,549.2,0.279,0.279,0.182,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.5;7.000,6.950,550.3,0.304,0.304,0.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.3;7.020,6.970,551.5,0.396,0.396,0.298,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,0.9;7.040,6.990,552.7,0.622,0.622,0.524,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,0.9;7.060,7.010,553.9,0.909,0.909,0.811,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.1;7.080,7.030,555.1,1.090,1.090,0.991,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.2;7.100,7.050,556.4,1.120,1.120,1.021,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,1.3;7.120,7.070,558.7,0.997,0.997,0.898,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,1.5;7.140,7.090,562.2,0.853,0.853,0.753,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.0;7.160,7.110,565.6,0.709,0.709,0.609,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.4;7.180,7.130,569.1,0.565,0.565,0.465,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.4;7.200,7.150,572.2,0.424,0.424,0.324,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.5;7.220,7.170,573.2,0.342,0.342,0.241,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,3.2;7.240,7.190,574.3,0.315,0.315,0.215,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.9;7.260,7.210,575.4,0.305,0.305,0.204,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.1;7.280,7.230,576.5,0.295,0.295,0.194,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.6;7.300,7.250,577.6,0.287,0.287,0.186,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.2;7.320,7.270,578.6,0.283,0.283,0.182,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.003,0.000,-999999,-999999,-999999,-999999,1.1;7.340,7.290,579.7,0.283,0.283,0.181,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.003,0.000,-999999,-999999,-999999,-999999,1.0;7.360,7.310,580.8,0.277,0.277,0.175,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.003,0.000,-999999,-999999,-999999,-999999,1.0;7.380,7.330,581.9,0.281,0.281,0.178,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.003,0.000,-999999,-999999,-999999,-999999,1.1;7.400,7.350,583.0,0.287,0.287,0.184,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.003,0.000,-999999,-999999,-999999,-999999,1.1;7.420,7.370,584.1,0.287,0.287,0.184,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.2;7.440,7.390,585.2,0.302,0.302,0.199,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.2;7.460,7.410,586.2,0.309,0.309,0.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.2;7.480,7.430,587.4,0.311,0.311,0.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.1;7.500,7.450,588.5,0.302,0.302,0.197,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.003,0.000,-999999,-999999,-999999,-999999,1.1;7.520,7.470,589.7,0.297,0.297,0.192,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.003,0.000,-999999,-999999,-999999,-999999,1.1;7.540,7.490,591.8,0.295,0.295,0.190,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.2;7.560,7.500,596.3,0.299,0.299,0.194,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.2;7.580,7.520,600.8,0.304,0.304,0.198,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.2;7.600,7.540,603.9,0.309,0.309,0.203,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.3;7.620,7.560,605.0,0.313,0.313,0.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.004,0.000,-999999,-999999,-999999,-999999,1.4;7.640,7.580,606.1,0.315,0.315,0.209,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.4;7.660,7.600,607.2,0.311,0.311,0.204,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.5;7.680,7.620,608.3,0.312,0.312,0.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.6;7.700,7.640,609.4,0.312,0.312,0.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.6;7.720,7.660,610.4,0.311,0.311,0.203,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.6;7.740,7.680,611.6,0.314,0.314,0.206,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.6;7.760,7.700,612.6,0.314,0.314,0.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.6;7.780,7.720,613.7,0.312,0.312,0.203,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.7;7.800,7.740,614.9,0.309,0.309,0.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.8;7.820,7.760,616.1,0.315,0.315,0.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.8;7.840,7.780,617.3,0.314,0.314,0.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.7;7.860,7.800,618.4,0.328,0.328,0.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.7;7.880,7.820,619.6,0.338,0.338,0.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.5;7.900,7.840,620.7,0.327,0.327,0.217,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.4;7.920,7.860,621.9,0.326,0.326,0.216,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.5;7.940,7.880,623.0,0.325,0.325,0.214,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.6;7.960,7.900,624.1,0.341,0.341,0.231,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.6;7.980,7.920,625.3,0.351,0.351,0.241,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.4;8.000,7.940,626.4,0.364,0.364,0.253,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.4;8.020,7.960,627.5,0.360,0.360,0.248,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.005,0.000,-999999,-999999,-999999,-999999,1.5;8.040,7.980,628.6,0.346,0.346,0.234,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.6;8.060,8.000,629.8,0.356,0.356,0.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.6;8.080,8.020,630.9,0.360,0.360,0.248,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.6;8.100,8.040,632.0,0.359,0.359,0.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.6;8.120,8.060,634.9,0.358,0.358,0.246,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.6;8.140,8.080,637.7,0.357,0.357,0.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.7;8.160,8.100,640.2,0.357,0.357,0.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.7;8.180,8.120,641.3,0.357,0.357,0.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.7;8.200,8.140,642.4,0.360,0.360,0.246,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.7;8.220,8.160,643.4,0.361,0.361,0.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.8;8.240,8.180,644.6,0.365,0.365,0.250,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.7;8.260,8.200,645.7,0.359,0.359,0.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.7;8.280,8.220,646.8,0.362,0.362,0.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.8;8.300,8.240,647.9,0.362,0.362,0.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.8;8.320,8.260,649.1,0.369,0.369,0.253,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.7;8.340,8.280,650.3,0.366,0.366,0.250,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.006,0.000,-999999,-999999,-999999,-999999,1.7;8.360,8.300,651.5,0.366,0.366,0.249,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.8;8.380,8.320,652.7,0.364,0.364,0.248,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.8;8.400,8.340,653.9,0.370,0.370,0.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.0;8.420,8.360,655.0,0.385,0.385,0.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.0;8.440,8.380,656.1,0.393,0.393,0.276,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,2.1;8.460,8.400,657.2,0.401,0.401,0.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,2.3;8.480,8.420,658.2,0.402,0.402,0.284,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.4;8.500,8.440,659.3,0.405,0.405,0.287,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.4;8.520,8.460,661.3,0.407,0.407,0.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.4;8.540,8.480,665.0,0.415,0.415,0.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.4;8.560,8.500,668.7,0.423,0.423,0.304,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.6;8.580,8.520,671.1,0.431,0.431,0.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,2.6;8.600,8.540,672.2,0.444,0.444,0.324,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,2.7;8.620,8.560,673.4,0.462,0.462,0.342,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.9;8.640,8.580,674.6,0.477,0.477,0.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,3.1;8.660,8.600,675.8,0.490,0.490,0.370,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.3;8.680,8.620,677.1,0.500,0.500,0.380,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.5;8.700,8.640,678.2,0.508,0.508,0.387,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.6;8.720,8.650,679.4,0.511,0.511,0.390,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.7;8.740,8.670,680.7,0.514,0.514,0.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.7;8.760,8.690,681.9,0.523,0.523,0.402,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,3.8;8.780,8.710,683.1,0.528,0.528,0.406,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,3.8;8.800,8.730,684.3,0.526,0.526,0.403,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,3.7;8.820,8.750,685.4,0.542,0.542,0.419,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,3.8;8.840,8.770,686.4,0.545,0.545,0.422,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,3.8;8.860,8.790,687.6,0.555,0.555,0.432,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,3.8;8.880,8.810,688.6,0.576,0.576,0.452,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,4.0;8.900,8.830,689.7,0.609,0.609,0.485,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,4.3;8.920,8.850,690.8,0.644,0.644,0.520,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,4.4;8.940,8.870,691.9,0.648,0.648,0.524,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,4.5;8.960,8.890,693.1,0.643,0.643,0.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,4.4;8.980,8.910,694.1,0.637,0.637,0.512,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,4.2;9.000,8.930,695.2,0.625,0.625,0.500,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,4.7;9.020,8.950,696.3,0.595,0.595,0.470,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.029,0.000,-999999,-999999,-999999,-999999,4.8;9.040,8.970,697.4,0.560,0.560,0.435,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,4.5;9.060,8.990,698.6,0.553,0.553,0.427,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,4.3;9.080,9.010,700.0,0.520,0.520,0.394,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,4.2;9.100,9.030,701.3,0.479,0.479,0.353,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,4.0;9.120,9.050,702.6,0.466,0.466,0.339,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.7;9.140,9.070,705.0,0.461,0.461,0.334,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,3.2;9.160,9.090,708.0,0.459,0.459,0.332,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,2.8;9.180,9.110,711.0,0.456,0.456,0.329,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,2.5;9.200,9.130,712.1,0.448,0.448,0.321,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.4;9.220,9.150,713.2,0.445,0.445,0.317,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.3;9.240,9.170,714.2,0.444,0.444,0.316,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.2;9.260,9.190,715.3,0.441,0.441,0.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.1;9.280,9.210,716.4,0.440,0.440,0.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,2.0;9.300,9.230,717.4,0.434,0.434,0.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,2.0;9.320,9.250,718.6,0.421,0.421,0.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.8;9.340,9.270,719.6,0.421,0.421,0.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.7;9.360,9.290,720.7,0.416,0.416,0.286,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.6;9.380,9.310,721.8,0.408,0.408,0.278,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.5;9.400,9.330,722.9,0.410,0.410,0.279,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.6;9.420,9.350,724.0,0.413,0.413,0.282,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.6;9.440,9.370,725.1,0.413,0.413,0.282,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,8,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.5;9.460,9.390,726.2,0.420,0.420,0.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.6;9.480,9.410,727.2,0.433,0.433,0.302,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.6;9.500,9.430,728.3,0.438,0.438,0.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.7;9.520,9.450,729.4,0.438,0.438,0.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.7;9.540,9.470,731.8,0.435,0.435,0.302,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.7;9.560,9.490,735.6,0.440,0.440,0.307,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.8;9.580,9.510,739.5,0.444,0.444,0.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.9;9.600,9.530,741.3,0.465,0.465,0.332,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.8;9.620,9.550,742.3,0.488,0.488,0.354,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.7;9.640,9.570,743.4,0.495,0.495,0.362,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.8;9.660,9.590,744.6,0.475,0.475,0.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.8;9.680,9.610,745.7,0.449,0.449,0.314,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.8;9.700,9.630,746.8,0.446,0.446,0.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.8;9.720,9.650,747.9,0.439,0.439,0.304,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.7;9.740,9.670,749.0,0.429,0.429,0.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.6;9.760,9.690,750.1,0.431,0.431,0.295,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.6;9.780,9.710,751.2,0.433,0.433,0.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.7;9.800,9.730,752.2,0.428,0.428,0.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.6;9.820,9.750,753.3,0.423,0.423,0.287,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.7;9.840,9.770,754.4,0.429,0.429,0.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.7;9.860,9.790,755.4,0.438,0.438,0.301,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.7;9.880,9.810,756.5,0.442,0.442,0.304,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.8;9.900,9.820,757.6,0.454,0.454,0.316,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.8;9.920,9.840,758.7,0.472,0.472,0.335,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.9;9.940,9.860,759.8,0.487,0.487,0.349,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,7,7,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.8;9.960,9.880,760.9,0.486,0.486,0.348,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.8;9.980,9.900,761.9,0.478,0.478,0.339,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.8;10.000,9.920,763.0,0.455,0.455,0.316,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.8;10.020,9.940,764.1,0.447,0.447,0.308,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.8;10.040,9.960,765.2,0.441,0.441,0.301,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.7;10.060,9.980,766.3,0.438,0.438,0.298,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.007,0.000,-999999,-999999,-999999,-999999,1.6;10.080,10.000,767.3,0.433,0.433,0.293,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.7;10.100,10.020,768.4,0.428,0.428,0.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.8;10.120,10.040,769.5,0.431,0.431,0.290,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.8;10.140,10.060,770.6,0.435,0.435,0.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.8;10.160,10.080,772.7,0.439,0.439,0.298,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.8;10.180,10.100,775.6,0.444,0.444,0.303,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.7;10.200,10.120,778.5,0.449,0.449,0.307,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.6;10.220,10.140,779.6,0.451,0.451,0.309,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.9;10.240,10.160,780.7,0.464,0.464,0.322,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.9;10.260,10.180,781.8,0.488,0.488,0.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.8;10.280,10.200,782.9,0.514,0.514,0.371,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.9;10.300,10.220,784.0,0.501,0.501,0.358,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.9;10.320,10.240,785.1,0.513,0.513,0.370,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,2.2;10.340,10.260,786.2,0.520,0.520,0.376,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,2.3;10.360,10.280,787.3,0.536,0.536,0.392,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.5;10.380,10.300,788.4,0.569,0.569,0.425,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.6;10.400,10.320,789.5,0.585,0.585,0.440,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,2.7;10.420,10.340,790.6,0.599,0.599,0.454,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.6;10.440,10.360,791.9,0.575,0.575,0.430,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.5;10.460,10.380,793.0,0.548,0.548,0.403,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.5;10.480,10.400,794.1,0.531,0.531,0.386,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.6;10.500,10.420,795.2,0.504,0.504,0.358,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.5;10.520,10.440,796.3,0.499,0.499,0.353,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,2.1;10.540,10.460,799.0,0.507,0.507,0.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.9;10.560,10.480,802.4,0.522,0.522,0.375,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.0;10.580,10.500,805.8,0.537,0.537,0.390,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,1.9;10.600,10.520,807.3,0.558,0.558,0.411,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,1.6;10.620,10.540,808.4,0.601,0.601,0.454,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.4;10.640,10.560,809.5,0.684,0.684,0.536,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,2.2;10.660,10.580,810.6,0.816,0.816,0.667,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,2.0;10.680,10.600,811.7,0.987,0.987,0.838,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.2;10.700,10.620,812.8,1.068,1.068,0.919,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.1;10.720,10.640,813.8,1.014,1.014,0.865,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,2.2;10.740,10.660,814.9,1.076,1.076,0.927,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,2.8;10.760,10.680,816.0,1.033,1.033,0.884,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,2.8;10.780,10.700,817.1,0.934,0.934,0.784,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,2.6;10.800,10.720,818.2,0.835,0.835,0.685,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,2.0;10.820,10.740,819.2,0.738,0.738,0.587,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,1.9;10.840,10.760,820.3,0.908,0.908,0.758,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,1.6;10.860,10.780,821.4,1.238,1.238,1.087,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,1.5;10.880,10.800,822.5,1.512,1.512,1.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.3;10.900,10.820,823.6,1.548,1.548,1.397,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,1.4;10.920,10.840,824.7,1.461,1.461,1.309,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,1.5;10.940,10.860,825.8,1.396,1.396,1.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,1.6;10.960,10.880,826.8,1.396,1.396,1.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,1.7;10.980,10.900,827.9,1.354,1.354,1.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,1.8;11.000,10.920,829.0,1.271,1.271,1.118,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,2.0;11.020,10.940,830.1,1.184,1.184,1.031,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,2.1;11.040,10.960,831.2,1.102,1.102,0.949,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,2.2;11.060,10.980,832.3,0.989,0.989,0.836,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,2.1;11.080,10.990,833.5,0.866,0.866,0.712,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,1.9;11.100,11.010,834.7,0.804,0.804,0.650,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,1.7;11.120,11.030,835.9,0.886,0.886,0.731,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,1.9;11.140,11.050,839.0,0.943,0.943,0.789,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.0;11.160,11.070,842.3,0.988,0.988,0.832,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.0;11.180,11.090,845.7,1.032,1.032,0.876,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.1;11.200,11.110,846.9,0.968,0.968,0.812,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.0;11.220,11.130,848.0,0.917,0.917,0.761,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,2.1;11.240,11.150,849.1,0.901,0.901,0.745,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.1;11.260,11.170,850.2,0.929,0.929,0.772,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,2.2;11.280,11.190,851.3,0.940,0.940,0.784,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.2;11.300,11.210,852.6,0.831,0.831,0.674,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,2.1;11.320,11.230,854.0,0.700,0.700,0.543,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.0;11.340,11.250,855.3,0.619,0.619,0.461,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.0;11.360,11.270,856.4,0.572,0.572,0.414,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,7,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,1.8;11.380,11.290,857.6,0.551,0.551,0.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,1.9;11.400,11.310,858.8,0.596,0.596,0.437,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,1.9;11.420,11.330,860.0,0.697,0.697,0.539,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,1.8;11.440,11.350,861.2,0.813,0.813,0.654,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,1.8;11.460,11.370,862.4,0.828,0.828,0.668,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,1.9;11.480,11.390,863.6,0.700,0.700,0.541,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.0;11.500,11.410,864.6,0.595,0.595,0.436,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.1;11.520,11.430,866.3,0.565,0.565,0.405,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,2.4;11.540,11.450,870.0,0.594,0.594,0.434,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.3;11.560,11.470,873.8,0.623,0.623,0.463,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,2.0;11.580,11.490,876.4,0.628,0.628,0.467,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.7;11.600,11.510,877.5,0.580,0.580,0.419,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.5;11.620,11.530,878.6,0.538,0.538,0.377,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.6;11.640,11.550,879.7,0.515,0.515,0.353,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.7;11.660,11.570,880.7,0.520,0.520,0.358,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.7;11.680,11.590,881.8,0.540,0.540,0.377,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.009,0.000,-999999,-999999,-999999,-999999,1.6;11.700,11.610,882.9,0.553,0.553,0.391,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.4;11.720,11.630,884.0,0.534,0.534,0.372,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.008,0.000,-999999,-999999,-999999,-999999,1.4;11.740,11.650,885.1,0.536,0.536,0.372,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.8;11.760,11.670,886.1,0.549,0.549,0.385,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,1.9;11.780,11.690,887.2,0.551,0.551,0.388,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,1.8;11.800,11.710,888.3,0.566,0.566,0.403,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,1.9;11.820,11.730,889.6,0.580,0.580,0.416,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.1;11.840,11.750,890.9,0.651,0.651,0.486,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.0;11.860,11.770,892.1,0.753,0.753,0.588,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,1.9;11.880,11.790,893.2,0.834,0.834,0.669,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.0;11.900,11.810,894.3,0.860,0.860,0.695,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,1.9;11.920,11.830,895.5,0.809,0.809,0.643,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.0;11.940,11.850,896.7,0.657,0.657,0.491,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.1;11.960,11.870,897.8,0.575,0.575,0.409,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,2.2;11.980,11.890,898.9,0.556,0.556,0.390,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.2;12.000,11.910,899.9,0.576,0.576,0.409,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.2;12.020,11.930,901.0,0.638,0.638,0.471,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.1;12.040,11.950,902.1,0.708,0.708,0.541,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,1.9;12.060,11.970,903.2,0.758,0.758,0.591,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,1.8;12.080,11.990,904.3,0.733,0.733,0.565,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,1.9;12.100,12.010,905.3,0.660,0.660,0.492,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.0;12.120,12.030,906.5,0.657,0.657,0.489,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,2.2;12.140,12.050,907.8,0.691,0.691,0.522,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,2.7;12.160,12.070,910.6,0.762,0.762,0.593,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,2.7;12.180,12.090,913.3,0.833,0.833,0.664,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.5;12.200,12.110,915.4,0.845,0.845,0.675,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,2.3;12.220,12.120,916.5,0.722,0.722,0.552,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.3;12.240,12.140,917.6,0.715,0.715,0.545,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,2.2;12.260,12.160,918.7,0.753,0.753,0.583,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,2.5;12.280,12.180,919.8,0.793,0.793,0.623,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.4;12.300,12.200,920.8,0.843,0.843,0.672,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,2.7;12.320,12.220,921.9,0.904,0.904,0.733,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,2.6;12.340,12.240,923.0,0.887,0.887,0.715,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,2.3;12.360,12.260,924.1,0.862,0.862,0.691,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,2.5;12.380,12.280,925.2,0.943,0.943,0.771,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,2.2;12.400,12.300,926.3,1.276,1.276,1.103,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,1.9;12.420,12.320,927.3,1.618,1.618,1.445,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,1.6;12.440,12.340,928.4,1.736,1.736,1.563,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,1.3;12.460,12.360,929.5,1.965,1.965,1.792,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,1.2;12.480,12.380,930.6,2.338,2.338,2.165,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,1.1;12.500,12.400,931.7,2.616,2.616,2.443,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,1.1;12.520,12.420,932.7,2.731,2.731,2.557,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,1.0;12.540,12.440,935.8,2.753,2.753,2.578,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,1.0;12.560,12.460,939.5,2.767,2.767,2.592,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,1.0;12.580,12.480,943.1,2.790,2.790,2.615,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,1.0;12.600,12.500,944.2,2.943,2.943,2.768,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,1.1;12.620,12.520,945.2,2.975,2.975,2.799,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,1.1;12.640,12.540,946.3,2.958,2.958,2.782,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,1.1;12.660,12.560,947.4,2.985,2.985,2.809,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,1.3;12.680,12.580,948.5,2.952,2.952,2.776,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,1.5;12.700,12.600,949.6,2.748,2.748,2.572,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,1.9;12.720,12.620,950.6,2.541,2.541,2.365,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,1.8;12.740,12.640,951.7,2.463,2.463,2.286,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,1.6;12.760,12.660,952.8,2.674,2.674,2.497,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,1.7;12.780,12.680,953.9,3.078,3.078,2.900,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.051,0.000,-999999,-999999,-999999,-999999,1.5;12.800,12.700,955.1,3.570,3.570,3.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,1.4;12.820,12.720,956.3,3.966,3.966,3.788,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.047,0.000,-999999,-999999,-999999,-999999,1.2;12.840,12.740,957.5,4.158,4.158,3.980,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,1.1;12.860,12.760,958.6,4.297,4.297,4.118,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.042,0.000,-999999,-999999,-999999,-999999,1.0;12.880,12.780,959.7,4.272,4.272,4.093,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,1.1;12.900,12.800,960.8,4.184,4.184,4.005,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,1.2;12.920,12.820,961.9,4.079,4.079,3.899,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.050,0.000,-999999,-999999,-999999,-999999,1.2;12.940,12.840,963.0,3.953,3.953,3.773,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.052,0.000,-999999,-999999,-999999,-999999,1.3;12.960,12.860,964.1,3.736,3.736,3.556,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,1.4;12.980,12.880,965.2,3.546,3.546,3.366,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,1.4;13.000,12.900,966.2,3.583,3.583,3.402,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.059,0.000,-999999,-999999,-999999,-999999,1.2;13.020,12.920,967.3,4.144,4.144,3.963,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,1.2;13.040,12.940,968.4,5.672,5.672,5.491,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.061,0.000,-999999,-999999,-999999,-999999,1.0;13.060,12.960,969.6,7.018,7.018,6.836,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,1.0;13.080,12.980,970.7,7.888,7.888,7.706,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,0.9;13.100,13.000,971.8,8.346,8.346,8.164,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.065,0.000,-999999,-999999,-999999,-999999,0.9;13.120,13.020,972.9,8.580,8.580,8.397,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.066,0.000,-999999,-999999,-999999,-999999,0.8;13.140,13.040,974.9,8.590,8.590,8.407,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,0.7;13.160,13.060,977.9,8.538,8.538,8.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.065,0.000,-999999,-999999,-999999,-999999,0.7;13.180,13.080,980.9,8.485,8.485,8.302,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.064,0.000,-999999,-999999,-999999,-999999,0.7;13.200,13.100,982.0,8.674,8.674,8.491,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.064,0.000,-999999,-999999,-999999,-999999,0.7;13.220,13.120,983.1,8.989,8.989,8.806,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.066,0.000,-999999,-999999,-999999,-999999,0.7;13.240,13.140,984.2,9.384,9.384,9.200,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.071,0.000,-999999,-999999,-999999,-999999,0.7;13.260,13.160,985.3,9.825,9.825,9.641,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.076,0.000,-999999,-999999,-999999,-999999,0.7;13.280,13.180,986.3,10.135,10.135,9.951,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.080,0.000,-999999,-999999,-999999,-999999,0.8;13.300,13.200,987.4,10.249,10.249,10.064,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.083,0.000,-999999,-999999,-999999,-999999,0.8;13.320,13.220,988.5,10.242,10.242,10.057,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.085,0.000,-999999,-999999,-999999,-999999,0.8;13.340,13.240,989.6,10.183,10.183,9.998,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.087,0.000,-999999,-999999,-999999,-999999,0.8;13.360,13.250,990.9,10.050,10.050,9.865,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.087,0.000,-999999,-999999,-999999,-999999,0.8;13.380,13.270,992.1,10.005,10.005,9.819,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.088,0.000,-999999,-999999,-999999,-999999,0.8;13.400,13.290,993.1,10.030,10.030,9.844,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.089,0.000,-999999,-999999,-999999,-999999,0.8;13.420,13.310,994.2,10.288,10.288,10.102,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.089,0.000,-999999,-999999,-999999,-999999,0.8;13.440,13.330,995.4,10.732,10.732,10.545,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.090,0.000,-999999,-999999,-999999,-999999,0.8;13.460,13.350,996.5,11.028,11.028,10.841,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.090,0.000,-999999,-999999,-999999,-999999,0.8;13.480,13.370,997.7,11.093,11.093,10.906,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.090,0.000,-999999,-999999,-999999,-999999,0.8;13.500,13.390,998.9,11.062,11.062,10.875,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.090,0.000,-999999,-999999,-999999,-999999,0.8;13.520,13.410,1000.2,10.849,10.849,10.661,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.091,0.000,-999999,-999999,-999999,-999999,0.8;13.540,13.430,1001.8,10.451,10.451,10.263,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.092,0.000,-999999,-999999,-999999,-999999,0.8;13.560,13.450,1005.2,9.937,9.937,9.749,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.091,0.000,-999999,-999999,-999999,-999999,0.8;13.580,13.470,1008.6,9.424,9.424,9.235,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.091,0.000,-999999,-999999,-999999,-999999,0.9;13.600,13.490,1011.7,8.963,8.963,8.774,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,0.9;13.620,13.510,1012.7,8.911,8.911,8.722,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.096,0.000,-999999,-999999,-999999,-999999,0.9;13.640,13.530,1013.8,9.244,9.244,9.055,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,0.9;13.660,13.550,1014.9,10.033,10.033,9.843,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,0.8;13.680,13.570,1016.0,11.043,11.043,10.853,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.098,0.000,-999999,-999999,-999999,-999999,0.9;13.700,13.590,1017.1,12.116,12.116,11.926,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.098,0.000,-999999,-999999,-999999,-999999,0.8;13.720,13.610,1018.2,12.722,12.722,12.532,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.098,0.000,-999999,-999999,-999999,-999999,0.8;13.740,13.630,1019.2,12.730,12.730,12.539,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.097,0.000,-999999,-999999,-999999,-999999,0.8;13.760,13.650,1020.3,12.552,12.552,12.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.098,0.000,-999999,-999999,-999999,-999999,0.7;13.780,13.670,1021.4,12.469,12.469,12.277,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.099,0.000,-999999,-999999,-999999,-999999,0.7;13.800,13.690,1022.5,12.446,12.446,12.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.100,0.000,-999999,-999999,-999999,-999999,0.8;13.820,13.710,1023.6,12.465,12.465,12.273,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.099,0.000,-999999,-999999,-999999,-999999,0.7;13.840,13.730,1024.7,12.517,12.517,12.325,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.097,0.000,-999999,-999999,-999999,-999999,0.7;13.860,13.750,1025.7,12.619,12.619,12.427,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.098,0.000,-999999,-999999,-999999,-999999,0.7;13.880,13.770,1026.8,12.733,12.733,12.541,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.099,0.000,-999999,-999999,-999999,-999999,0.7;13.900,13.790,1027.9,12.881,12.881,12.688,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.100,0.000,-999999,-999999,-999999,-999999,0.7;13.920,13.810,1028.9,13.081,13.081,12.887,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.101,0.000,-999999,-999999,-999999,-999999,0.7;13.940,13.830,1030.1,13.278,13.278,13.084,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.102,0.000,-999999,-999999,-999999,-999999,0.7;13.960,13.850,1031.3,13.395,13.395,13.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.103,0.000,-999999,-999999,-999999,-999999,0.7;13.980,13.870,1032.4,13.389,13.389,13.194,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,0.8;14.000,13.890,1033.5,13.248,13.248,13.053,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.107,0.000,-999999,-999999,-999999,-999999,0.8;14.020,13.910,1034.6,12.914,12.914,12.719,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.8;14.040,13.930,1035.7,12.466,12.466,12.271,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.8;14.060,13.950,1036.7,12.067,12.067,11.871,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.8;14.080,13.970,1037.8,11.773,11.773,11.578,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.104,0.000,-999999,-999999,-999999,-999999,0.8;14.100,13.990,1038.8,11.614,11.614,11.418,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.098,0.000,-999999,-999999,-999999,-999999,0.8;14.120,14.010,1039.9,11.552,11.552,11.356,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.096,0.000,-999999,-999999,-999999,-999999,0.8;14.140,14.030,1041.0,11.542,11.542,11.346,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,0.8;14.160,14.050,1043.4,11.597,11.597,11.400,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.095,0.000,-999999,-999999,-999999,-999999,0.8;14.180,14.070,1046.9,11.653,11.653,11.456,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,0.8;14.200,14.090,1049.8,11.736,11.736,11.539,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.095,0.000,-999999,-999999,-999999,-999999,0.8;14.220,14.110,1050.9,11.734,11.734,11.536,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.096,0.000,-999999,-999999,-999999,-999999,0.8;14.240,14.130,1052.1,11.524,11.524,11.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.096,0.000,-999999,-999999,-999999,-999999,0.8;14.260,14.150,1053.2,11.331,11.331,11.133,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.097,0.000,-999999,-999999,-999999,-999999,0.8;14.280,14.170,1054.3,11.087,11.087,10.889,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.097,0.000,-999999,-999999,-999999,-999999,0.8;14.300,14.190,1055.4,10.841,10.841,10.643,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.097,0.000,-999999,-999999,-999999,-999999,0.8;14.320,14.210,1056.5,10.644,10.644,10.445,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.095,0.000,-999999,-999999,-999999,-999999,0.8;14.340,14.230,1057.6,10.520,10.520,10.321,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.095,0.000,-999999,-999999,-999999,-999999,0.9;14.360,14.250,1058.7,10.360,10.360,10.160,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,0.9;14.380,14.270,1059.9,10.072,10.072,9.872,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.092,0.000,-999999,-999999,-999999,-999999,0.9;14.400,14.290,1060.9,9.883,9.883,9.683,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.090,0.000,-999999,-999999,-999999,-999999,0.9;14.420,14.310,1062.1,9.647,9.647,9.447,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.089,0.000,-999999,-999999,-999999,-999999,0.8;14.440,14.330,1063.1,9.545,9.545,9.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.090,0.000,-999999,-999999,-999999,-999999,0.9;14.460,14.350,1064.2,9.666,9.666,9.465,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.088,0.000,-999999,-999999,-999999,-999999,0.8;14.480,14.370,1065.3,9.963,9.963,9.762,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.086,0.000,-999999,-999999,-999999,-999999,0.8;14.500,14.380,1066.4,10.158,10.158,9.956,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.084,0.000,-999999,-999999,-999999,-999999,0.8;14.520,14.400,1067.5,10.042,10.042,9.840,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.084,0.000,-999999,-999999,-999999,-999999,0.8;14.540,14.420,1068.6,9.773,9.773,9.571,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.084,0.000,-999999,-999999,-999999,-999999,0.8;14.560,14.440,1071.6,9.414,9.414,9.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.083,0.000,-999999,-999999,-999999,-999999,0.8;14.580,14.460,1075.5,9.069,9.069,8.867,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.083,0.000,-999999,-999999,-999999,-999999,0.9;14.600,14.480,1078.8,8.761,8.761,8.558,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.082,0.000,-999999,-999999,-999999,-999999,0.9;14.620,14.500,1079.9,8.473,8.473,8.270,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.082,0.000,-999999,-999999,-999999,-999999,0.9;14.640,14.520,1080.9,8.155,8.155,7.952,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.082,0.000,-999999,-999999,-999999,-999999,0.9;14.660,14.540,1082.1,7.913,7.913,7.710,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.080,0.000,-999999,-999999,-999999,-999999,0.9;14.680,14.560,1083.1,7.896,7.896,7.693,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.078,0.000,-999999,-999999,-999999,-999999,0.9;14.700,14.580,1084.2,7.854,7.854,7.650,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.078,0.000,-999999,-999999,-999999,-999999,1.0;14.720,14.600,1085.3,7.586,7.586,7.382,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.076,0.000,-999999,-999999,-999999,-999999,1.0;14.740,14.620,1086.4,7.156,7.156,6.951,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.074,0.000,-999999,-999999,-999999,-999999,1.0;14.760,14.640,1087.5,6.703,6.703,6.498,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.072,0.000,-999999,-999999,-999999,-999999,1.0;14.780,14.660,1088.6,6.242,6.242,6.037,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.069,0.000,-999999,-999999,-999999,-999999,1.0;14.800,14.680,1089.6,5.902,5.902,5.697,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.066,0.000,-999999,-999999,-999999,-999999,1.0;14.820,14.700,1090.7,5.546,5.546,5.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.066,0.000,-999999,-999999,-999999,-999999,1.1;14.840,14.720,1091.8,5.151,5.151,4.945,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.068,0.000,-999999,-999999,-999999,-999999,1.2;14.860,14.740,1092.8,4.821,4.821,4.615,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.069,0.000,-999999,-999999,-999999,-999999,1.3;14.880,14.760,1093.9,4.642,4.642,4.435,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.067,0.000,-999999,-999999,-999999,-999999,1.3;14.900,14.780,1095.0,4.717,4.717,4.510,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.065,0.000,-999999,-999999,-999999,-999999,1.3;14.920,14.800,1096.1,4.743,4.743,4.536,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.064,0.000,-999999,-999999,-999999,-999999,1.4;14.940,14.820,1097.2,4.519,4.519,4.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.062,0.000,-999999,-999999,-999999,-999999,1.4;14.960,14.840,1098.3,4.125,4.125,3.917,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.060,0.000,-999999,-999999,-999999,-999999,1.4;14.980,14.860,1099.3,3.794,3.794,3.586,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,1.4;15.000,14.880,1100.4,3.544,3.544,3.336,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.058,0.000,-999999,-999999,-999999,-999999,1.4;15.020,14.900,1101.5,3.450,3.450,3.241,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.059,0.000,-999999,-999999,-999999,-999999,1.3;15.040,14.920,1102.6,3.791,3.791,3.582,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.059,0.000,-999999,-999999,-999999,-999999,1.3;15.060,14.940,1103.7,4.770,4.770,4.561,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.064,0.000,-999999,-999999,-999999,-999999,1.4;15.080,14.960,1104.8,5.654,5.654,5.445,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.069,0.000,-999999,-999999,-999999,-999999,1.5;15.100,14.980,1105.9,5.352,5.352,5.142,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.074,0.000,-999999,-999999,-999999,-999999,1.6;15.120,15.000,1107.0,4.346,4.346,4.136,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.080,0.000,-999999,-999999,-999999,-999999,1.7;15.140,15.020,1109.1,3.434,3.434,3.224,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.085,0.000,-999999,-999999,-999999,-999999,2.1;15.160,15.040,1111.9,2.717,2.717,2.506,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.087,0.000,-999999,-999999,-999999,-999999,2.6;15.180,15.060,1114.8,1.999,1.999,1.788,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.091,0.000,-999999,-999999,-999999,-999999,3.5;15.200,15.080,1116.3,1.590,1.590,1.379,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.087,0.000,-999999,-999999,-999999,-999999,4.9;15.220,15.100,1117.4,1.336,1.336,1.125,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.081,0.000,-999999,-999999,-999999,-999999,5.7;15.240,15.120,1118.4,1.114,1.114,0.903,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.074,0.000,-999999,-999999,-999999,-999999,5.6;15.260,15.140,1119.5,0.954,0.954,0.742,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.065,0.000,-999999,-999999,-999999,-999999,5.5;15.280,15.160,1120.6,0.836,0.836,0.624,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.055,0.000,-999999,-999999,-999999,-999999,5.7;15.300,15.180,1121.7,0.761,0.761,0.548,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.044,0.000,-999999,-999999,-999999,-999999,5.2;15.320,15.200,1122.8,0.698,0.698,0.485,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.033,0.000,-999999,-999999,-999999,-999999,4.3;15.340,15.220,1123.8,0.655,0.655,0.442,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,3.6;15.360,15.240,1124.9,0.634,0.634,0.421,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,3.2;15.380,15.260,1126.0,0.620,0.620,0.407,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,2.9;15.400,15.280,1127.1,0.603,0.603,0.389,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,2.6;15.420,15.300,1128.2,0.596,0.596,0.382,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.5;15.440,15.320,1129.3,0.596,0.596,0.381,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.4;15.460,15.340,1130.4,0.595,0.595,0.381,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.5;15.480,15.360,1131.5,0.591,0.591,0.376,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,2.6;15.500,15.380,1132.6,0.586,0.586,0.371,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,2.7;15.520,15.400,1133.8,0.583,0.583,0.367,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,2.9;15.540,15.420,1134.9,0.586,0.586,0.370,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,2.9;15.560,15.440,1135.9,0.591,0.591,0.374,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.0;15.580,15.460,1139.8,0.586,0.586,0.370,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.0;15.600,15.480,1143.7,0.582,0.582,0.365,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.1;15.620,15.500,1146.1,0.577,0.577,0.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.1;15.640,15.510,1147.2,0.569,0.569,0.352,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.1;15.660,15.530,1148.3,0.560,0.560,0.342,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.1;15.680,15.550,1149.3,0.548,0.548,0.330,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.1;15.700,15.570,1150.4,0.543,0.543,0.325,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.2;15.720,15.590,1151.5,0.542,0.542,0.324,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.1;15.740,15.610,1152.6,0.546,0.546,0.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.1;15.760,15.630,1153.7,0.550,0.550,0.331,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.1;15.780,15.650,1154.8,0.551,0.551,0.332,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.1;15.800,15.670,1155.8,0.550,0.550,0.331,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.1;15.820,15.690,1156.9,0.547,0.547,0.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.017,0.000,-999999,-999999,-999999,-999999,3.2;15.840,15.710,1158.0,0.539,0.539,0.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.2;15.860,15.730,1159.1,0.529,0.529,0.309,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.2;15.880,15.750,1160.2,0.531,0.531,0.310,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.3;15.900,15.770,1161.2,0.530,0.530,0.309,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.3;15.920,15.790,1162.3,0.526,0.526,0.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.3;15.940,15.810,1163.4,0.528,0.528,0.307,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.3;15.960,15.830,1164.6,0.525,0.525,0.304,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.3;15.980,15.850,1165.7,0.532,0.532,0.310,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.3;16.000,15.870,1166.8,0.536,0.536,0.314,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.4;16.020,15.890,1167.9,0.541,0.541,0.318,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.4;16.040,15.910,1169.1,0.536,0.536,0.313,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.5;16.060,15.930,1170.3,0.529,0.529,0.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.5;16.080,15.950,1171.5,0.515,0.515,0.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.6;16.100,15.970,1172.8,0.509,0.509,0.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.7;16.120,15.990,1174.1,0.502,0.502,0.279,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.019,0.000,-999999,-999999,-999999,-999999,3.8;16.140,16.010,1175.3,0.495,0.495,0.271,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,3.9;16.160,16.030,1176.6,0.493,0.493,0.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,3.9;16.180,16.050,1178.4,0.498,0.498,0.273,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,3.9;16.200,16.070,1181.3,0.516,0.516,0.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,3.8;16.220,16.090,1184.1,0.535,0.535,0.310,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,3.8;16.240,16.110,1185.7,0.567,0.567,0.342,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,3.7;16.260,16.130,1186.8,0.627,0.627,0.401,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,3.7;16.280,16.150,1187.9,0.686,0.686,0.460,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,3.9;16.300,16.170,1189.1,0.705,0.705,0.479,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,4.0;16.320,16.190,1190.2,0.739,0.739,0.512,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,4.1;16.340,16.210,1191.3,0.802,0.802,0.575,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,4.3;16.360,16.230,1192.3,0.841,0.841,0.614,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.037,0.000,-999999,-999999,-999999,-999999,4.4;16.380,16.250,1193.4,0.888,0.888,0.660,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,4.3;16.400,16.270,1194.5,0.940,0.940,0.712,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.046,0.000,-999999,-999999,-999999,-999999,4.8;16.420,16.290,1195.6,0.977,0.977,0.749,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.058,0.000,-999999,-999999,-999999,-999999,5.7;16.440,16.310,1196.7,1.031,1.031,0.803,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.070,0.000,-999999,-999999,-999999,-999999,6.5;16.460,16.330,1197.8,1.156,1.156,0.927,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.078,0.000,-999999,-999999,-999999,-999999,6.9;16.480,16.350,1198.8,1.290,1.290,1.061,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.089,0.000,-999999,-999999,-999999,-999999,7.5;16.500,16.370,1199.9,1.332,1.332,1.103,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.100,0.000,-999999,-999999,-999999,-999999,8.3;16.520,16.390,1201.0,1.283,1.283,1.054,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.112,0.000,-999999,-999999,-999999,-999999,9.0;16.540,16.410,1202.1,1.272,1.272,1.043,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,9.3;16.560,16.430,1203.5,1.264,1.264,1.034,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,9.4;16.580,16.450,1207.2,1.236,1.236,1.006,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.115,0.000,-999999,-999999,-999999,-999999,9.4;16.600,16.470,1210.8,1.208,1.208,0.977,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,9.4;16.620,16.490,1213.4,1.150,1.150,0.919,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.101,0.000,-999999,-999999,-999999,-999999,9.2;16.640,16.510,1214.5,1.072,1.072,0.841,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.090,0.000,-999999,-999999,-999999,-999999,8.7;16.660,16.530,1215.6,1.002,1.002,0.771,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.077,0.000,-999999,-999999,-999999,-999999,7.7;16.680,16.550,1216.7,0.929,0.929,0.698,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.064,0.000,-999999,-999999,-999999,-999999,6.7;16.700,16.570,1217.8,0.848,0.848,0.616,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.053,0.000,-999999,-999999,-999999,-999999,5.9;16.720,16.590,1218.8,0.781,0.781,0.549,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.045,0.000,-999999,-999999,-999999,-999999,5.4;16.740,16.610,1219.9,0.747,0.747,0.515,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.038,0.000,-999999,-999999,-999999,-999999,4.8;16.760,16.620,1221.0,0.713,0.713,0.480,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,4.5;16.780,16.640,1222.1,0.687,0.687,0.454,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.031,0.000,-999999,-999999,-999999,-999999,4.4;16.800,16.660,1223.2,0.662,0.662,0.429,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.030,0.000,-999999,-999999,-999999,-999999,4.4;16.820,16.680,1224.2,0.636,0.636,0.402,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,4.2;16.840,16.700,1225.3,0.626,0.626,0.392,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.027,0.000,-999999,-999999,-999999,-999999,4.2;16.860,16.720,1226.4,0.615,0.615,0.381,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.026,0.000,-999999,-999999,-999999,-999999,4.1;16.880,16.740,1227.4,0.598,0.598,0.364,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,4.1;16.900,16.760,1228.5,0.584,0.584,0.349,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.025,0.000,-999999,-999999,-999999,-999999,4.1;16.920,16.780,1229.6,0.576,0.576,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,4.0;16.940,16.800,1230.7,0.579,0.579,0.344,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,3.8;16.960,16.820,1231.7,0.576,0.576,0.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,3.8;16.980,16.840,1232.8,0.577,0.577,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,3.5;17.000,16.860,1233.9,0.590,0.590,0.354,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,3.4;17.020,16.880,1235.1,0.592,0.592,0.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,4.0;17.040,16.900,1236.2,0.584,0.584,0.348,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,4.0;17.060,16.920,1237.4,0.593,0.593,0.356,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,4.2;17.080,16.940,1239.3,0.550,0.550,0.313,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.024,0.000,-999999,-999999,-999999,-999999,4.1;17.100,16.960,1240.7,0.544,0.544,0.307,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,4.0;17.120,16.980,1241.7,0.574,0.574,0.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.022,0.000,-999999,-999999,-999999,-999999,3.9;17.140,17.000,1242.9,0.573,0.573,0.335,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,3.7;17.160,17.020,1244.1,0.547,0.547,0.309,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.020,0.000,-999999,-999999,-999999,-999999,3.6;17.180,17.040,1245.1,0.543,0.543,0.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.018,0.000,-999999,-999999,-999999,-999999,3.1;17.200,17.060,1246.5,0.524,0.524,0.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.8;17.220,17.080,1249.3,0.518,0.518,0.279,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.8;17.240,17.100,1252.0,0.512,0.512,0.272,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.8;17.260,17.120,1253.7,0.491,0.491,0.252,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.1;17.280,17.140,1254.8,0.473,0.473,0.233,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,3.2;17.300,17.160,1255.9,0.430,0.430,0.190,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,3.0;17.320,17.180,1256.9,0.399,0.399,0.159,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,3.1;17.340,17.200,1258.0,0.372,0.372,0.131,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.012,0.000,-999999,-999999,-999999,-999999,3.1;17.360,17.220,1259.1,0.344,0.344,0.103,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.8;17.380,17.240,1260.2,0.337,0.337,0.096,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.5;17.400,17.260,1261.3,0.342,0.342,0.100,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.4;17.420,17.280,1262.4,0.381,0.381,0.139,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.3;17.440,17.300,1263.5,0.472,0.472,0.230,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.010,0.000,-999999,-999999,-999999,-999999,2.2;17.460,17.320,1264.6,0.557,0.557,0.315,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.011,0.000,-999999,-999999,-999999,-999999,2.3;17.480,17.340,1265.7,0.565,0.565,0.323,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.013,0.000,-999999,-999999,-999999,-999999,2.4;17.500,17.360,1266.8,0.545,0.545,0.302,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,2.5;17.520,17.380,1267.9,0.565,0.565,0.322,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.6;17.540,17.400,1269.0,0.618,0.618,0.375,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,2.7;17.560,17.420,1271.3,0.669,0.669,0.425,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,2.3;17.580,17.440,1274.7,0.720,0.720,0.476,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.014,0.000,-999999,-999999,-999999,-999999,1.8;17.600,17.460,1278.0,0.772,0.772,0.527,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.015,0.000,-999999,-999999,-999999,-999999,1.3;17.620,17.480,1279.4,0.808,0.808,0.563,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.016,0.000,-999999,-999999,-999999,-999999,1.0;17.640,17.500,1280.5,1.038,1.038,0.793,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.021,0.000,-999999,-999999,-999999,-999999,0.9;17.660,17.520,1281.6,2.022,2.022,1.777,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.023,0.000,-999999,-999999,-999999,-999999,0.8;17.680,17.540,1282.7,3.420,3.420,3.175,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.028,0.000,-999999,-999999,-999999,-999999,0.8;17.700,17.560,1283.8,4.670,4.670,4.424,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.034,0.000,-999999,-999999,-999999,-999999,0.8;17.720,17.580,1284.9,5.376,5.376,5.129,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.041,0.000,-999999,-999999,-999999,-999999,0.8;17.740,17.600,1286.0,5.856,5.856,5.610,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.049,0.000,-999999,-999999,-999999,-999999,0.9;17.760,17.620,1287.1,6.217,6.217,5.971,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.057,0.000,-999999,-999999,-999999,-999999,0.9;17.780,17.640,1288.2,6.482,6.482,6.235,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.063,0.000,-999999,-999999,-999999,-999999,1.0;17.800,17.660,1289.3,6.646,6.646,6.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.066,0.000,-999999,-999999,-999999,-999999,1.0;17.820,17.680,1290.4,6.763,6.763,6.516,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.070,0.000,-999999,-999999,-999999,-999999,1.0;17.840,17.700,1291.5,6.931,6.931,6.683,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.073,0.000,-999999,-999999,-999999,-999999,1.0;17.860,17.720,1292.6,7.114,7.114,6.866,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.075,0.000,-999999,-999999,-999999,-999999,1.0;17.880,17.730,1293.7,7.298,7.298,7.050,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.078,0.000,-999999,-999999,-999999,-999999,1.0;17.900,17.750,1294.8,7.507,7.507,7.258,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.079,0.000,-999999,-999999,-999999,-999999,1.0;17.920,17.770,1295.9,7.683,7.683,7.434,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.079,0.000,-999999,-999999,-999999,-999999,1.0;17.940,17.790,1297.1,7.796,7.796,7.546,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.086,0.000,-999999,-999999,-999999,-999999,1.1;17.960,17.810,1298.2,7.854,7.854,7.605,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,1.2;17.980,17.830,1299.3,7.832,7.832,7.582,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.097,0.000,-999999,-999999,-999999,-999999,1.2;18.000,17.850,1300.4,7.834,7.834,7.584,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.092,0.000,-999999,-999999,-999999,-999999,1.1;18.020,17.870,1301.5,8.116,8.116,7.866,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.093,0.000,-999999,-999999,-999999,-999999,1.0;18.040,17.890,1302.6,8.802,8.802,8.552,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.093,0.000,-999999,-999999,-999999,-999999,1.0;18.060,17.910,1303.8,9.324,9.324,9.074,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.090,0.000,-999999,-999999,-999999,-999999,1.0;18.080,17.930,1304.9,9.759,9.759,9.508,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.087,0.000,-999999,-999999,-999999,-999999,0.9;18.100,17.950,1306.1,10.024,10.024,9.773,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.088,0.000,-999999,-999999,-999999,-999999,0.9;18.120,17.970,1307.3,10.126,10.126,9.875,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.091,0.000,-999999,-999999,-999999,-999999,0.9;18.140,17.990,1310.0,10.199,10.199,9.947,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.094,0.000,-999999,-999999,-999999,-999999,0.9;18.160,18.010,1313.0,10.226,10.226,9.973,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.103,0.000,-999999,-999999,-999999,-999999,1.0;18.180,18.030,1315.7,10.272,10.272,10.019,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.116,0.000,-999999,-999999,-999999,-999999,1.1;18.200,18.050,1316.8,10.283,10.283,10.031,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.118,0.000,-999999,-999999,-999999,-999999,1.1;18.220,18.070,1317.9,10.161,10.161,9.908,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.121,0.000,-999999,-999999,-999999,-999999,1.2;18.240,18.090,1319.0,9.890,9.890,9.636,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.123,0.000,-999999,-999999,-999999,-999999,1.2;18.260,18.110,1320.1,9.578,9.578,9.325,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.125,0.000,-999999,-999999,-999999,-999999,1.2;18.280,18.130,1321.2,9.309,9.309,9.055,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.127,0.000,-999999,-999999,-999999,-999999,1.3;18.300,18.150,1322.2,9.058,9.058,8.804,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.126,0.000,-999999,-999999,-999999,-999999,1.3;18.320,18.170,1323.3,8.981,8.981,8.727,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.122,0.000,-999999,-999999,-999999,-999999,1.2;18.340,18.190,1324.4,9.277,9.277,9.022,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.116,0.000,-999999,-999999,-999999,-999999,1.1;18.360,18.210,1325.5,9.909,9.909,9.654,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.114,0.000,-999999,-999999,-999999,-999999,1.1;18.380,18.230,1326.6,10.666,10.666,10.411,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.112,0.000,-999999,-999999,-999999,-999999,1.0;18.400,18.250,1327.7,11.449,11.449,11.194,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,0.9;18.420,18.270,1328.8,12.169,12.169,11.913,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.9;18.440,18.290,1329.9,12.742,12.742,12.486,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.111,0.000,-999999,-999999,-999999,-999999,0.8;18.460,18.310,1331.0,13.215,13.215,12.959,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.114,0.000,-999999,-999999,-999999,-999999,0.8;18.480,18.330,1332.1,13.585,13.585,13.328,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.116,0.000,-999999,-999999,-999999,-999999,0.8;18.500,18.350,1333.2,13.909,13.909,13.653,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.113,0.000,-999999,-999999,-999999,-999999,0.8;18.520,18.370,1334.5,14.102,14.102,13.845,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.111,0.000,-999999,-999999,-999999,-999999,0.8;18.540,18.390,1335.6,14.361,14.361,14.104,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.115,0.000,-999999,-999999,-999999,-999999,0.8;18.560,18.410,1337.2,14.520,14.520,14.263,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.124,0.000,-999999,-999999,-999999,-999999,0.8;18.580,18.430,1340.6,14.613,14.613,14.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.133,0.000,-999999,-999999,-999999,-999999,0.9;18.600,18.450,1344.0,14.707,14.707,14.448,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.139,0.000,-999999,-999999,-999999,-999999,0.9;18.620,18.470,1346.8,14.889,14.889,14.631,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.144,0.000,-999999,-999999,-999999,-999999,0.9;18.640,18.490,1347.8,15.221,15.221,14.962,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.148,0.000,-999999,-999999,-999999,-999999,0.9;18.660,18.510,1348.9,15.478,15.478,15.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.152,0.000,-999999,-999999,-999999,-999999,0.9;18.680,18.530,1350.1,15.757,15.757,15.497,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.157,0.000,-999999,-999999,-999999,-999999,0.9;18.700,18.550,1351.1,16.043,16.043,15.783,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.159,0.000,-999999,-999999,-999999,-999999,0.9;18.720,18.570,1352.2,16.351,16.351,16.091,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.161,0.000,-999999,-999999,-999999,-999999,0.9;18.740,18.590,1353.3,16.676,16.676,16.416,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.162,0.000,-999999,-999999,-999999,-999999,0.9;18.760,18.610,1354.4,17.029,17.029,16.769,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.166,0.000,-999999,-999999,-999999,-999999,0.9;18.780,18.630,1355.5,17.410,17.410,17.149,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.170,0.000,-999999,-999999,-999999,-999999,0.9;18.800,18.650,1356.6,17.838,17.838,17.577,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.177,0.000,-999999,-999999,-999999,-999999,1.0;18.820,18.670,1357.7,18.051,18.051,17.790,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.182,0.000,-999999,-999999,-999999,-999999,1.0;18.840,18.690,1358.8,17.975,17.975,17.713,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.186,0.000,-999999,-999999,-999999,-999999,1.0;18.860,18.710,1359.9,17.601,17.601,17.339,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.189,0.000,-999999,-999999,-999999,-999999,1.0;18.880,18.730,1360.9,17.081,17.081,16.819,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.191,0.000,-999999,-999999,-999999,-999999,1.1;18.900,18.750,1362.1,16.718,16.718,16.455,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.192,0.000,-999999,-999999,-999999,-999999,1.1;18.920,18.770,1363.2,16.604,16.604,16.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.191,0.000,-999999,-999999,-999999,-999999,1.1;18.940,18.790,1364.4,16.713,16.713,16.450,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.188,0.000,-999999,-999999,-999999,-999999,1.1;18.960,18.800,1365.6,16.862,16.862,16.599,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.186,0.000,-999999,-999999,-999999,-999999,1.0;18.980,18.820,1366.7,17.073,17.073,16.810,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.182,0.000,-999999,-999999,-999999,-999999,1.0;19.000,18.840,1367.9,17.530,17.530,17.266,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.180,0.000,-999999,-999999,-999999,-999999,1.0;19.020,18.860,1369.1,18.117,18.117,17.853,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.179,0.000,-999999,-999999,-999999,-999999,1.0;19.040,18.880,1370.2,18.558,18.558,18.293,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.180,0.000,-999999,-999999,-999999,-999999,0.9;19.060,18.900,1371.3,18.714,18.714,18.449,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.181,0.000,-999999,-999999,-999999,-999999,1.0;19.080,18.920,1372.4,18.571,18.571,18.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.178,0.000,-999999,-999999,-999999,-999999,0.9;19.100,18.940,1373.5,18.170,18.170,17.905,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.169,0.000,-999999,-999999,-999999,-999999,0.9;19.120,18.960,1374.6,17.580,17.580,17.314,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.160,0.000,-999999,-999999,-999999,-999999,0.8;19.140,18.980,1375.6,17.019,17.019,16.754,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.162,0.000,-999999,-999999,-999999,-999999,0.9;19.160,19.000,1377.1,16.481,16.481,16.215,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.167,0.000,-999999,-999999,-999999,-999999,0.9;19.180,19.020,1379.9,16.058,16.058,15.791,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.170,0.000,-999999,-999999,-999999,-999999,1.0;19.200,19.040,1382.8,15.634,15.634,15.367,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.169,0.000,-999999,-999999,-999999,-999999,1.0;19.220,19.060,1384.9,15.420,15.420,15.153,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.165,0.000,-999999,-999999,-999999,-999999,1.0;19.240,19.080,1386.0,15.333,15.333,15.066,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.160,0.000,-999999,-999999,-999999,-999999,1.0;19.260,19.100,1387.1,15.231,15.231,14.963,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.159,0.000,-999999,-999999,-999999,-999999,1.0;19.280,19.120,1388.2,15.099,15.099,14.831,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.157,0.000,-999999,-999999,-999999,-999999,1.0;19.300,19.140,1389.2,14.964,14.964,14.696,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.153,0.000,-999999,-999999,-999999,-999999,1.0;19.320,19.160,1390.3,14.860,14.860,14.592,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.150,0.000,-999999,-999999,-999999,-999999,1.0;19.340,19.180,1391.4,14.734,14.734,14.466,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.148,0.000,-999999,-999999,-999999,-999999,1.0;19.360,19.200,1392.5,14.605,14.605,14.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.146,0.000,-999999,-999999,-999999,-999999,1.0;19.380,19.220,1393.6,14.453,14.453,14.184,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.144,0.000,-999999,-999999,-999999,-999999,0.9;19.400,19.240,1394.7,14.293,14.293,14.024,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.144,0.000,-999999,-999999,-999999,-999999,0.9;19.420,19.260,1395.8,14.142,14.142,13.872,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.143,0.000,-999999,-999999,-999999,-999999,0.9;19.440,19.280,1396.9,14.078,14.078,13.808,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.141,0.000,-999999,-999999,-999999,-999999,0.9;19.460,19.300,1397.9,14.041,14.041,13.771,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.141,0.000,-999999,-999999,-999999,-999999,0.9;19.480,19.320,1399.0,14.087,14.087,13.817,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.140,0.000,-999999,-999999,-999999,-999999,0.9;19.500,19.340,1400.1,14.215,14.215,13.944,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.138,0.000,-999999,-999999,-999999,-999999,0.9;19.520,19.360,1401.2,14.420,14.420,14.149,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.132,0.000,-999999,-999999,-999999,-999999,0.8;19.540,19.380,1402.3,14.804,14.804,14.532,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.124,0.000,-999999,-999999,-999999,-999999,0.8;19.560,19.400,1403.3,15.415,15.415,15.143,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.121,0.000,-999999,-999999,-999999,-999999,0.8;19.580,19.420,1404.4,16.318,16.318,16.046,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.128,0.000,-999999,-999999,-999999,-999999,0.8;19.600,19.440,1406.7,16.812,16.812,16.540,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.133,0.000,-999999,-999999,-999999,-999999,0.8;19.620,19.460,1410.2,16.932,16.932,16.659,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.139,0.000,-999999,-999999,-999999,-999999,0.8;19.640,19.480,1413.7,17.051,17.051,16.778,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.144,0.000,-999999,-999999,-999999,-999999,0.8;19.660,19.500,1415.0,17.334,17.334,17.061,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.150,0.000,-999999,-999999,-999999,-999999,0.8;19.680,19.520,1416.1,17.424,17.424,17.151,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.154,0.000,-999999,-999999,-999999,-999999,0.8;19.700,19.540,1417.2,17.436,17.436,17.162,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.161,0.000,-999999,-999999,-999999,-999999,0.9;19.720,19.560,1418.3,17.518,17.518,17.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.166,0.000,-999999,-999999,-999999,-999999,0.9;19.740,19.580,1419.3,17.551,17.551,17.277,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.171,0.000,-999999,-999999,-999999,-999999,0.9;19.760,19.600,1420.4,17.566,17.566,17.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.170,0.000,-999999,-999999,-999999,-999999,0.9;19.780,19.620,1421.5,17.522,17.522,17.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.172,0.000,-999999,-999999,-999999,-999999,0.9;19.800,19.640,1422.6,17.446,17.446,17.171,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.174,0.000,-999999,-999999,-999999,-999999,0.9;19.820,19.660,1423.7,17.353,17.353,17.077,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.173,0.000,-999999,-999999,-999999,-999999,0.9;19.840,19.680,1424.8,17.329,17.329,17.054,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.172,0.000,-999999,-999999,-999999,-999999,0.9;19.860,19.700,1425.9,17.352,17.352,17.076,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.170,0.000,-999999,-999999,-999999,-999999,0.9;19.880,19.720,1426.9,17.538,17.538,17.262,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.169,0.000,-999999,-999999,-999999,-999999,0.9;19.900,19.740,1428.1,17.878,17.878,17.602,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.168,0.000,-999999,-999999,-999999,-999999,0.9;19.920,19.760,1429.1,18.285,18.285,18.009,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.170,0.000,-999999,-999999,-999999,-999999,0.9;19.940,19.780,1430.3,18.858,18.858,18.581,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.174,0.000,-999999,-999999,-999999,-999999,0.9;19.960,19.800,1431.3,19.459,19.459,19.181,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.178,0.000,-999999,-999999,-999999,-999999,0.9;19.980,19.820,1432.4,20.091,20.091,19.814,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.183,0.000,-999999,-999999,-999999,-999999,0.9;20.000,19.840,1433.6,20.627,20.627,20.349,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.188,0.000,-999999,-999999,-999999,-999999,0.9;20.020,19.860,1434.6,21.096,21.096,20.818,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.192,0.000,-999999,-999999,-999999,-999999,0.9;20.040,19.870,1435.7,21.598,21.598,21.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.198,0.000,-999999,-999999,-999999,-999999,0.9;20.060,19.890,1436.8,22.147,22.147,21.869,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.196,0.000,-999999,-999999,-999999,-999999,0.8;20.080,19.910,1437.9,22.834,22.834,22.555,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.188,0.000,-999999,-999999,-999999,-999999,0.8;20.100,19.930,1438.9,23.508,23.508,23.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.182,0.000,-999999,-999999,-999999,-999999,0.7;20.120,19.950,1440.1,24.072,24.072,23.792,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.194,0.000,-999999,-999999,-999999,-999999,0.8;20.140,19.970,1441.6,24.281,24.281,24.001,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.205,0.000,-999999,-999999,-999999,-999999,0.8;20.160,19.990,1445.4,23.886,23.886,23.606,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.218,0.000,-999999,-999999,-999999,-999999,0.9;20.180,20.010,1449.2,23.492,23.492,23.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.224,0.000,-999999,-999999,-999999,-999999,0.9;20.200,20.030,1450.9,23.889,23.889,23.608,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.230,0.000,-999999,-999999,-999999,-999999,0.9;20.220,20.050,1452.0,23.627,23.627,23.346,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.228,0.000,-999999,-999999,-999999,-999999,0.9;20.240,20.070,1453.3,23.120,23.120,22.839,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.228,0.000,-999999,-999999,-999999,-999999,0.9;20.260,20.090,1454.4,23.010,23.010,22.729,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.222,0.000,-999999,-999999,-999999,-999999,0.9;20.280,20.110,1455.6,23.200,23.200,22.919,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.226,0.000,-999999,-999999,-999999,-999999,0.9;20.300,20.130,1456.6,23.649,23.649,23.367,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.216,0.000,-999999,-999999,-999999,-999999,0.9;20.320,20.150,1457.7,24.123,24.123,23.841,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.216,0.000,-999999,-999999,-999999,-999999,0.9;20.340,20.170,1458.8,24.587,24.587,24.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.212,0.000,-999999,-999999,-999999,-999999,0.8;20.360,20.190,1460.0,24.405,24.405,24.122,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.215,0.000,-999999,-999999,-999999,-999999,0.8;20.380,20.210,1461.1,24.376,24.376,24.093,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.223,0.000,-999999,-999999,-999999,-999999,0.9;20.400,20.230,1462.2,24.082,24.082,23.799,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.235,0.000,-999999,-999999,-999999,-999999,0.9;20.420,20.250,1463.3,23.466,23.466,23.183,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.244,0.000,-999999,-999999,-999999,-999999,1.0;20.440,20.270,1464.4,23.026,23.026,22.742,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.240,0.000,-999999,-999999,-999999,-999999,1.0;20.460,20.290,1465.5,22.806,22.806,22.522,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.241,0.000,-999999,-999999,-999999,-999999,1.0;20.480,20.310,1466.6,22.831,22.831,22.546,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.236,0.000,-999999,-999999,-999999,-999999,1.0;20.500,20.330,1467.7,22.924,22.924,22.640,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.231,0.000,-999999,-999999,-999999,-999999,1.0;20.520,20.350,1468.7,23.017,23.017,22.732,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.222,0.000,-999999,-999999,-999999,-999999,0.9;20.540,20.370,1469.8,23.065,23.065,22.779,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.204,0.000,-999999,-999999,-999999,-999999,0.8;20.560,20.390,1470.9,23.120,23.120,22.834,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.185,0.000,-999999,-999999,-999999,-999999,0.7;20.580,20.410,1472.0,23.373,23.373,23.087,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.165,0.000,-999999,-999999,-999999,-999999,0.7;20.600,20.430,1473.1,24.072,24.072,23.786,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.164,0.000,-999999,-999999,-999999,-999999,0.6;20.620,20.450,1474.6,25.101,25.101,24.815,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.162,0.000,-999999,-999999,-999999,-999999,0.6;20.640,20.470,1478.9,25.630,25.630,25.344,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.165,0.000,-999999,-999999,-999999,-999999,0.6;20.660,20.490,1483.1,26.159,26.159,25.872,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.162,0.000,-999999,-999999,-999999,-999999,0.5;20.680,20.510,1485.1,28.445,28.445,28.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.165,0.000,-999999,-999999,-999999,-999999,0.5;20.700,20.530,1486.3,29.680,29.680,29.392,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.176,0.000,-999999,-999999,-999999,-999999,0.6;20.720,20.550,1487.4,30.333,30.333,30.045,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.193,0.000,-999999,-999999,-999999,-999999,0.6;20.740,20.570,1488.6,30.418,30.418,30.131,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.208,0.000,-999999,-999999,-999999,-999999,0.7;20.760,20.590,1489.8,30.164,30.164,29.876,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.221,0.000,-999999,-999999,-999999,-999999,0.7;20.780,20.610,1490.9,29.665,29.665,29.377,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.238,0.000,-999999,-999999,-999999,-999999,0.8;20.800,20.630,1492.1,29.065,29.065,28.777,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.246,0.000,-999999,-999999,-999999,-999999,0.8;20.820,20.650,1493.3,28.193,28.193,27.904,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.255,0.000,-999999,-999999,-999999,-999999,0.9;20.840,20.670,1494.4,27.177,27.177,26.887,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.264,0.000,-999999,-999999,-999999,-999999,0.9;20.860,20.690,1495.5,26.111,26.111,25.821,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.267,0.000,-999999,-999999,-999999,-999999,1.0;20.880,20.710,1496.6,25.063,25.063,24.773,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.264,0.000,-999999,-999999,-999999,-999999,1.0;20.900,20.730,1497.7,24.081,24.081,23.791,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.262,0.000,-999999,-999999,-999999,-999999,1.0;20.920,20.750,1498.7,23.399,23.399,23.109,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.253,0.000,-999999,-999999,-999999,-999999,1.0;20.940,20.770,1499.8,22.977,22.977,22.686,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.240,0.000,-999999,-999999,-999999,-999999,1.0;20.960,20.790,1500.9,22.698,22.698,22.407,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.232,0.000,-999999,-999999,-999999,-999999,1.0;20.980,20.810,1502.0,22.323,22.323,22.032,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.221,0.000,-999999,-999999,-999999,-999999,0.9;21.000,20.830,1503.1,22.029,22.029,21.737,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.207,0.000,-999999,-999999,-999999,-999999,0.9;21.020,20.850,1504.2,21.851,21.851,21.559,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.194,0.000,-999999,-999999,-999999,-999999,0.8;21.040,20.870,1505.3,21.501,21.501,21.209,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.184,0.000,-999999,-999999,-999999,-999999,0.8;21.060,20.890,1506.3,21.222,21.222,20.929,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.175,0.000,-999999,-999999,-999999,-999999,0.8;21.080,20.910,1507.4,20.862,20.862,20.569,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.172,0.000,-999999,-999999,-999999,-999999,0.8;21.100,20.930,1508.5,20.478,20.478,20.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.168,0.000,-999999,-999999,-999999,-999999,0.8;21.120,20.940,1509.6,20.191,20.191,19.897,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.165,0.000,-999999,-999999,-999999,-999999,0.8;21.140,20.960,1510.7,20.043,20.043,19.750,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.165,0.000,-999999,-999999,-999999,-999999,0.8;21.160,20.980,1511.7,19.797,19.797,19.503,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.160,0.000,-999999,-999999,-999999,-999999,0.8;21.180,21.000,1512.8,19.585,19.585,19.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.154,0.000,-999999,-999999,-999999,-999999,0.7;21.200,21.020,1513.9,19.388,19.388,19.093,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.149,0.000,-999999,-999999,-999999,-999999,0.7;21.220,21.040,1515.0,19.321,19.321,19.027,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.153,0.000,-999999,-999999,-999999,-999999,0.7;21.240,21.060,1517.1,19.058,19.058,18.764,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.153,0.000,-999999,-999999,-999999,-999999,0.7;21.260,21.080,1520.1,18.935,18.935,18.640,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.151,0.000,-999999,-999999,-999999,-999999,0.7;21.280,21.100,1523.1,18.812,18.812,18.516,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.150,0.000,-999999,-999999,-999999,-999999,0.7;21.300,21.120,1524.4,18.966,18.966,18.670,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.147,0.000,-999999,-999999,-999999,-999999,0.7;21.320,21.140,1525.5,19.089,19.089,18.793,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.141,0.000,-999999,-999999,-999999,-999999,0.7;21.340,21.160,1526.6,19.215,19.215,18.919,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.141,0.000,-999999,-999999,-999999,-999999,0.7;21.360,21.180,1527.7,19.417,19.417,19.120,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.141,0.000,-999999,-999999,-999999,-999999,0.7;21.380,21.200,1528.8,19.596,19.596,19.299,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.138,0.000,-999999,-999999,-999999,-999999,0.7;21.400,21.220,1530.0,19.818,19.818,19.521,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,0.6;21.420,21.240,1531.2,20.001,20.001,19.703,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.135,0.000,-999999,-999999,-999999,-999999,0.6;21.440,21.260,1532.5,20.215,20.215,19.918,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.138,0.000,-999999,-999999,-999999,-999999,0.6;21.460,21.280,1533.6,20.587,20.587,20.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,0.6;21.480,21.300,1534.7,21.031,21.031,20.733,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.135,0.000,-999999,-999999,-999999,-999999,0.6;21.500,21.320,1535.8,21.620,21.620,21.322,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,0.6;21.520,21.340,1536.9,22.367,22.367,22.068,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.142,0.000,-999999,-999999,-999999,-999999,0.6;21.540,21.360,1538.0,23.146,23.146,22.847,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,0.6;21.560,21.380,1539.1,23.678,23.678,23.379,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.135,0.000,-999999,-999999,-999999,-999999,0.5;21.580,21.400,1540.3,23.925,23.925,23.625,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.130,0.000,-999999,-999999,-999999,-999999,0.5;21.600,21.420,1541.3,24.219,24.219,23.919,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.126,0.000,-999999,-999999,-999999,-999999,0.5;21.620,21.440,1542.4,24.438,24.438,24.137,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.125,0.000,-999999,-999999,-999999,-999999,0.5;21.640,21.460,1543.5,24.708,24.708,24.408,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.135,0.000,-999999,-999999,-999999,-999999,0.5;21.660,21.480,1547.1,24.625,24.625,24.324,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.141,0.000,-999999,-999999,-999999,-999999,0.5;21.680,21.500,1550.7,24.542,24.542,24.241,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.154,0.000,-999999,-999999,-999999,-999999,0.6;21.700,21.520,1554.1,24.507,24.507,24.206,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.164,0.000,-999999,-999999,-999999,-999999,0.6;21.720,21.540,1555.2,24.601,24.601,24.300,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.175,0.000,-999999,-999999,-999999,-999999,0.7;21.740,21.560,1556.3,24.575,24.575,24.273,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.177,0.000,-999999,-999999,-999999,-999999,0.7;21.760,21.580,1557.4,24.368,24.368,24.066,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.184,0.000,-999999,-999999,-999999,-999999,0.7;21.780,21.600,1558.6,24.178,24.178,23.875,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.187,0.000,-999999,-999999,-999999,-999999,0.7;21.800,21.620,1559.8,23.634,23.634,23.331,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.193,0.000,-999999,-999999,-999999,-999999,0.8;21.820,21.640,1560.9,23.101,23.101,22.799,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.190,0.000,-999999,-999999,-999999,-999999,0.8;21.840,21.660,1562.0,22.103,22.103,21.800,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.186,0.000,-999999,-999999,-999999,-999999,0.8;21.860,21.680,1563.1,20.672,20.672,20.368,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.184,0.000,-999999,-999999,-999999,-999999,0.8;21.880,21.700,1564.1,19.496,19.496,19.192,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.180,0.000,-999999,-999999,-999999,-999999,0.8;21.900,21.720,1565.2,18.544,18.544,18.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.177,0.000,-999999,-999999,-999999,-999999,0.9;21.920,21.740,1566.3,17.921,17.921,17.616,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.170,0.000,-999999,-999999,-999999,-999999,0.9;21.940,21.760,1567.4,17.518,17.518,17.214,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.162,0.000,-999999,-999999,-999999,-999999,0.8;21.960,21.780,1568.4,17.299,17.299,16.994,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.157,0.000,-999999,-999999,-999999,-999999,0.8;21.980,21.800,1569.5,17.243,17.243,16.938,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.151,0.000,-999999,-999999,-999999,-999999,0.8;22.000,21.820,1570.6,17.350,17.350,17.045,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.148,0.000,-999999,-999999,-999999,-999999,0.8;22.020,21.840,1571.7,17.613,17.613,17.307,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.146,0.000,-999999,-999999,-999999,-999999,0.8;22.040,21.860,1572.8,18.159,18.159,17.853,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.144,0.000,-999999,-999999,-999999,-999999,0.7;22.060,21.880,1573.9,18.796,18.796,18.490,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.144,0.000,-999999,-999999,-999999,-999999,0.7;22.080,21.900,1575.0,19.359,19.359,19.052,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.144,0.000,-999999,-999999,-999999,-999999,0.7;22.100,21.920,1576.1,19.932,19.932,19.625,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.146,0.000,-999999,-999999,-999999,-999999,0.7;22.120,21.940,1577.2,20.332,20.332,20.025,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.149,0.000,-999999,-999999,-999999,-999999,0.7;22.140,21.960,1578.3,20.316,20.316,20.008,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.149,0.000,-999999,-999999,-999999,-999999,0.7;22.160,21.980,1579.3,19.949,19.949,19.642,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.146,0.000,-999999,-999999,-999999,-999999,0.7;22.180,22.000,1580.4,19.531,19.531,19.223,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.144,0.000,-999999,-999999,-999999,-999999,0.7;22.200,22.020,1581.5,19.174,19.174,18.866,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.145,0.000,-999999,-999999,-999999,-999999,0.7;22.220,22.030,1582.9,18.881,18.881,18.572,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.145,0.000,-999999,-999999,-999999,-999999,0.7;22.240,22.050,1586.6,18.440,18.440,18.132,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.146,0.000,-999999,-999999,-999999,-999999,0.7;22.260,22.070,1590.3,18.000,18.000,17.691,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.146,0.000,-999999,-999999,-999999,-999999,0.8;22.280,22.090,1592.9,17.532,17.532,17.223,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.144,0.000,-999999,-999999,-999999,-999999,0.8;22.300,22.110,1594.1,16.841,16.841,16.532,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.140,0.000,-999999,-999999,-999999,-999999,0.8;22.320,22.130,1595.1,16.309,16.309,15.999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.134,0.000,-999999,-999999,-999999,-999999,0.8;22.340,22.150,1596.2,15.888,15.888,15.578,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.130,0.000,-999999,-999999,-999999,-999999,0.8;22.360,22.170,1597.3,15.448,15.448,15.137,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.124,0.000,-999999,-999999,-999999,-999999,0.7;22.380,22.190,1598.4,15.036,15.036,14.725,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,0.7;22.400,22.210,1599.4,14.696,14.696,14.385,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.112,0.000,-999999,-999999,-999999,-999999,0.7;22.420,22.230,1600.6,14.660,14.660,14.348,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,0.7;22.440,22.250,1601.6,14.736,14.736,14.424,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,0.7;22.460,22.270,1602.7,14.581,14.581,14.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.104,0.000,-999999,-999999,-999999,-999999,0.7;22.480,22.290,1603.8,14.438,14.438,14.126,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.102,0.000,-999999,-999999,-999999,-999999,0.7;22.500,22.310,1604.9,14.177,14.177,13.865,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.101,0.000,-999999,-999999,-999999,-999999,0.7;22.520,22.330,1606.1,13.769,13.769,13.456,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.099,0.000,-999999,-999999,-999999,-999999,0.7;22.540,22.350,1607.1,13.294,13.294,12.981,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.099,0.000,-999999,-999999,-999999,-999999,0.7;22.560,22.370,1608.2,12.898,12.898,12.584,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.101,0.000,-999999,-999999,-999999,-999999,0.7;22.580,22.390,1609.3,12.700,12.700,12.386,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.102,0.000,-999999,-999999,-999999,-999999,0.7;22.600,22.410,1610.4,12.676,12.676,12.362,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.102,0.000,-999999,-999999,-999999,-999999,0.7;22.620,22.430,1611.5,12.838,12.838,12.524,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.103,0.000,-999999,-999999,-999999,-999999,0.7;22.640,22.450,1612.6,13.275,13.275,12.960,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.106,0.000,-999999,-999999,-999999,-999999,0.8;22.660,22.470,1613.8,13.943,13.943,13.628,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.113,0.000,-999999,-999999,-999999,-999999,0.8;22.680,22.490,1617.5,14.707,14.707,14.392,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.120,0.000,-999999,-999999,-999999,-999999,0.8;22.700,22.510,1621.7,15.465,15.465,15.150,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.124,0.000,-999999,-999999,-999999,-999999,0.7;22.720,22.530,1625.2,16.397,16.397,16.082,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.129,0.000,-999999,-999999,-999999,-999999,0.7;22.740,22.550,1626.3,18.031,18.031,17.715,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.168,0.000,-999999,-999999,-999999,-999999,0.8;22.760,22.570,1627.4,19.564,19.564,19.248,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.157,0.000,-999999,-999999,-999999,-999999,0.7;22.780,22.590,1628.4,21.316,21.316,21.000,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.157,0.000,-999999,-999999,-999999,-999999,0.7;22.800,22.610,1629.6,22.754,22.754,22.438,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.161,0.000,-999999,-999999,-999999,-999999,0.7;22.820,22.630,1630.6,23.095,23.095,22.778,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.160,0.000,-999999,-999999,-999999,-999999,0.7;22.840,22.650,1631.7,23.244,23.244,22.927,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.156,0.000,-999999,-999999,-999999,-999999,0.7;22.860,22.670,1632.8,23.017,23.017,22.699,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,7,8,-999999,-999999,0.155,0.000,-999999,-999999,-999999,-999999,0.7;22.880,22.690,1633.9,22.195,22.195,21.877,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.146,0.000,-999999,-999999,-999999,-999999,0.6;22.900,22.710,1635.0,20.993,20.993,20.675,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.140,0.000,-999999,-999999,-999999,-999999,0.6;22.920,22.730,1636.1,19.998,19.998,19.680,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.143,0.000,-999999,-999999,-999999,-999999,0.6;22.940,22.750,1637.1,19.400,19.400,19.081,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.147,0.000,-999999,-999999,-999999,-999999,0.7;22.960,22.770,1638.3,18.855,18.855,18.536,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.147,0.000,-999999,-999999,-999999,-999999,0.7;22.980,22.790,1639.4,18.116,18.116,17.797,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.147,0.000,-999999,-999999,-999999,-999999,0.8;23.000,22.810,1640.4,16.913,16.913,16.593,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.147,0.000,-999999,-999999,-999999,-999999,0.8;23.020,22.830,1641.5,15.842,15.842,15.522,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.145,0.000,-999999,-999999,-999999,-999999,0.8;23.040,22.850,1642.6,15.012,15.012,14.692,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.139,0.000,-999999,-999999,-999999,-999999,0.8;23.060,22.870,1643.7,14.570,14.570,14.250,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.131,0.000,-999999,-999999,-999999,-999999,0.8;23.080,22.890,1644.8,14.374,14.374,14.054,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.126,0.000,-999999,-999999,-999999,-999999,0.8;23.100,22.910,1645.8,14.264,14.264,13.943,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.120,0.000,-999999,-999999,-999999,-999999,0.8;23.120,22.930,1646.9,14.280,14.280,13.959,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.116,0.000,-999999,-999999,-999999,-999999,0.8;23.140,22.950,1648.0,14.157,14.157,13.836,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.114,0.000,-999999,-999999,-999999,-999999,0.8;23.160,22.970,1649.1,13.722,13.722,13.400,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.113,0.000,-999999,-999999,-999999,-999999,0.8;23.180,22.990,1650.2,13.249,13.249,12.927,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.111,0.000,-999999,-999999,-999999,-999999,0.8;23.200,23.010,1651.2,12.987,12.987,12.665,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.111,0.000,-999999,-999999,-999999,-999999,0.8;23.220,23.030,1652.3,12.992,12.992,12.670,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.8;23.240,23.050,1653.4,13.135,13.135,12.812,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.107,0.000,-999999,-999999,-999999,-999999,0.8;23.260,23.070,1654.5,13.072,13.072,12.749,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,0.8;23.280,23.090,1655.6,12.914,12.914,12.591,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,0.8;23.300,23.110,1656.8,12.850,12.850,12.527,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.104,0.000,-999999,-999999,-999999,-999999,0.7;23.320,23.130,1659.4,13.008,13.008,12.684,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.105,0.000,-999999,-999999,-999999,-999999,0.7;23.340,23.150,1662.3,13.198,13.198,12.874,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.106,0.000,-999999,-999999,-999999,-999999,0.7;23.360,23.170,1665.1,13.416,13.416,13.091,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.107,0.000,-999999,-999999,-999999,-999999,0.7;23.380,23.180,1666.2,13.804,13.804,13.480,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,0.7;23.400,23.200,1667.3,13.932,13.932,13.607,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,8,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.7;23.420,23.220,1668.3,13.875,13.875,13.550,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,0.8;23.440,23.240,1669.4,13.719,13.719,13.394,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.111,0.000,-999999,-999999,-999999,-999999,0.7;23.460,23.260,1670.5,13.714,13.714,13.388,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,0.7;23.480,23.280,1671.6,13.961,13.961,13.635,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.111,0.000,-999999,-999999,-999999,-999999,0.7;23.500,23.300,1672.7,14.485,14.485,14.159,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,0.7;23.520,23.320,1673.8,15.096,15.096,14.769,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.110,0.000,-999999,-999999,-999999,-999999,0.7;23.540,23.340,1675.1,15.565,15.565,15.238,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.108,0.000,-999999,-999999,-999999,-999999,0.7;23.560,23.360,1676.2,15.665,15.665,15.338,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.109,0.000,-999999,-999999,-999999,-999999,0.7;23.580,23.380,1677.3,15.831,15.831,15.504,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.116,0.000,-999999,-999999,-999999,-999999,0.7;23.600,23.400,1678.4,16.281,16.281,15.953,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.119,0.000,-999999,-999999,-999999,-999999,0.7;23.620,23.420,1679.4,16.977,16.977,16.649,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.121,0.000,-999999,-999999,-999999,-999999,0.7;23.640,23.440,1680.5,17.671,17.671,17.343,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.122,0.000,-999999,-999999,-999999,-999999,0.7;23.660,23.460,1681.6,18.392,18.392,18.064,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.123,0.000,-999999,-999999,-999999,-999999,0.6;23.680,23.480,1682.7,18.889,18.889,18.561,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.128,0.000,-999999,-999999,-999999,-999999,0.7;23.700,23.500,1684.5,19.053,19.053,18.724,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.142,0.000,-999999,-999999,-999999,-999999,0.7;23.720,23.520,1688.6,18.797,18.797,18.468,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.158,0.000,-999999,-999999,-999999,-999999,0.8;23.740,23.540,1692.7,18.541,18.541,18.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.160,0.000,-999999,-999999,-999999,-999999,0.8;23.760,23.560,1694.3,18.849,18.849,18.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.167,0.000,-999999,-999999,-999999,-999999,0.9;23.780,23.580,1695.4,18.649,18.649,18.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.167,0.000,-999999,-999999,-999999,-999999,0.9;23.800,23.600,1696.6,18.078,18.078,17.748,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.174,0.000,-999999,-999999,-999999,-999999,0.9;23.820,23.620,1697.7,17.599,17.599,17.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.172,0.000,-999999,-999999,-999999,-999999,0.9;23.840,23.640,1698.8,17.149,17.149,16.818,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.166,0.000,-999999,-999999,-999999,-999999,0.9;23.860,23.660,1699.9,16.909,16.909,16.578,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.149,0.000,-999999,-999999,-999999,-999999,0.8;23.880,23.680,1701.1,16.608,16.608,16.277,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.146,0.000,-999999,-999999,-999999,-999999,0.8;23.900,23.700,1702.2,16.472,16.472,16.140,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.142,0.000,-999999,-999999,-999999,-999999,0.8;23.920,23.720,1703.5,16.390,16.390,16.058,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.139,0.000,-999999,-999999,-999999,-999999,0.8;23.940,23.740,1704.6,16.346,16.346,16.014,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.128,0.000,-999999,-999999,-999999,-999999,0.7;23.960,23.760,1705.7,16.064,16.064,15.731,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.126,0.000,-999999,-999999,-999999,-999999,0.7;23.980,23.780,1706.8,15.986,15.986,15.653,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.129,0.000,-999999,-999999,-999999,-999999,0.7;24.000,23.800,1707.8,15.974,15.974,15.641,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.127,0.000,-999999,-999999,-999999,-999999,0.7;24.020,23.820,1709.0,16.074,16.074,15.740,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.130,0.000,-999999,-999999,-999999,-999999,0.8;24.040,23.840,1710.1,16.130,16.130,15.796,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.127,0.000,-999999,-999999,-999999,-999999,0.7;24.060,23.860,1711.2,16.242,16.242,15.908,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.126,0.000,-999999,-999999,-999999,-999999,0.7;24.080,23.880,1712.2,16.465,16.465,16.130,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.130,0.000,-999999,-999999,-999999,-999999,0.7;24.100,23.900,1713.3,16.675,16.675,16.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.132,0.000,-999999,-999999,-999999,-999999,0.8;24.120,23.920,1714.4,16.912,16.912,16.577,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.133,0.000,-999999,-999999,-999999,-999999,0.8;24.140,23.940,1715.5,16.811,16.811,16.476,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.134,0.000,-999999,-999999,-999999,-999999,0.8;24.160,23.960,1716.7,16.172,16.172,15.837,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,0.8;24.180,23.980,1717.7,15.556,15.556,15.220,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,0.8;24.200,24.000,1718.8,15.088,15.088,14.752,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.136,0.000,-999999,-999999,-999999,-999999,0.8;24.220,24.020,1719.9,14.778,14.778,14.442,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.133,0.000,-999999,-999999,-999999,-999999,0.8;24.240,24.040,1721.0,14.566,14.566,14.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.131,0.000,-999999,-999999,-999999,-999999,0.8;24.260,24.060,1722.1,14.532,14.532,14.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.127,0.000,-999999,-999999,-999999,-999999,0.8;24.280,24.080,1723.1,14.491,14.491,14.154,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.124,0.000,-999999,-999999,-999999,-999999,0.8;24.300,24.100,1724.2,14.575,14.575,14.237,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.124,0.000,-999999,-999999,-999999,-999999,0.8;24.320,24.120,1725.7,14.692,14.692,14.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.123,0.000,-999999,-999999,-999999,-999999,0.8;24.340,24.140,1728.7,14.794,14.794,14.456,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.124,0.000,-999999,-999999,-999999,-999999,0.8;24.360,24.160,1731.6,14.895,14.895,14.557,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.124,0.000,-999999,-999999,-999999,-999999,0.8;24.380,24.180,1733.9,15.150,15.150,14.812,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.127,0.000,-999999,-999999,-999999,-999999,0.7;24.400,24.200,1735.0,15.701,15.701,15.362,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.130,0.000,-999999,-999999,-999999,-999999,0.7;24.420,24.220,1736.1,16.448,16.448,16.109,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.133,0.000,-999999,-999999,-999999,-999999,0.7;24.440,24.240,1737.2,17.249,17.249,16.910,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.137,0.000,-999999,-999999,-999999,-999999,0.7;24.460,24.260,1738.2,18.023,18.023,17.684,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.141,0.000,-999999,-999999,-999999,-999999,0.7;24.480,24.280,1739.3,18.920,18.920,18.580,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.149,0.000,-999999,-999999,-999999,-999999,0.7;24.500,24.300,1740.4,20.034,20.034,19.694,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.157,0.000,-999999,-999999,-999999,-999999,0.7;24.520,24.320,1741.5,21.186,21.186,20.845,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.165,0.000,-999999,-999999,-999999,-999999,0.7;24.540,24.340,1742.6,22.216,22.216,21.875,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.174,0.000,-999999,-999999,-999999,-999999,0.8;24.560,24.350,1743.7,22.756,22.756,22.415,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.181,0.000,-999999,-999999,-999999,-999999,0.8;24.580,24.370,1744.8,23.121,23.121,22.780,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.190,0.000,-999999,-999999,-999999,-999999,0.8;24.600,24.390,1745.9,23.418,23.418,23.077,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.195,0.000,-999999,-999999,-999999,-999999,0.8;24.620,24.410,1747.0,23.694,23.694,23.352,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.204,0.000,-999999,-999999,-999999,-999999,0.8;24.640,24.430,1748.1,23.841,23.841,23.499,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.211,0.000,-999999,-999999,-999999,-999999,0.8;24.660,24.450,1749.2,23.856,23.856,23.514,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.201,0.000,-999999,-999999,-999999,-999999,0.8;24.680,24.470,1750.3,23.944,23.944,23.602,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.192,0.000,-999999,-999999,-999999,-999999,0.8;24.700,24.490,1751.6,23.866,23.866,23.523,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.187,0.000,-999999,-999999,-999999,-999999,0.7;24.720,24.510,1752.9,23.867,23.867,23.523,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.196,0.000,-999999,-999999,-999999,-999999,0.8;24.740,24.530,1756.1,23.454,23.454,23.110,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.205,0.000,-999999,-999999,-999999,-999999,0.8;24.760,24.550,1760.1,22.901,22.901,22.557,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.212,0.000,-999999,-999999,-999999,-999999,0.9;24.780,24.570,1763.7,22.470,22.470,22.126,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.219,0.000,-999999,-999999,-999999,-999999,0.9;24.800,24.590,1764.7,22.161,22.161,21.817,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.221,0.000,-999999,-999999,-999999,-999999,1.0;24.820,24.610,1765.8,21.508,21.508,21.163,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.216,0.000,-999999,-999999,-999999,-999999,0.9;24.840,24.630,1766.9,21.067,21.067,20.722,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.212,0.000,-999999,-999999,-999999,-999999,0.9;24.860,24.650,1768.0,21.171,21.171,20.826,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.213,0.000,-999999,-999999,-999999,-999999,0.9;24.880,24.670,1769.1,21.817,21.817,21.472,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.213,0.000,-999999,-999999,-999999,-999999,0.9;24.900,24.690,1770.2,22.246,22.246,21.901,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.212,0.000,-999999,-999999,-999999,-999999,0.9;24.920,24.710,1771.3,22.004,22.004,21.658,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.212,0.000,-999999,-999999,-999999,-999999,1.0;24.940,24.730,1772.3,21.368,21.368,21.022,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.214,0.000,-999999,-999999,-999999,-999999,1.0;24.960,24.750,1773.4,20.574,20.574,20.228,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.213,0.000,-999999,-999999,-999999,-999999,1.0;24.980,24.770,1774.5,19.417,19.417,19.070,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.208,0.000,-999999,-999999,-999999,-999999,1.0;25.000,24.790,1775.6,18.252,18.252,17.905,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.202,0.000,-999999,-999999,-999999,-999999,1.0;25.020,24.810,1776.7,17.166,17.166,16.819,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.193,0.000,-999999,-999999,-999999,-999999,1.0;25.040,24.830,1777.9,16.485,16.485,16.137,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.183,0.000,-999999,-999999,-999999,-999999,1.0;25.060,24.850,1779.1,16.102,16.102,15.754,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.174,0.000,-999999,-999999,-999999,-999999,1.0;25.080,24.870,1780.2,15.919,15.919,15.570,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.168,0.000,-999999,-999999,-999999,-999999,1.0;25.100,24.890,1781.4,15.908,15.908,15.560,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.162,0.000,-999999,-999999,-999999,-999999,0.9;25.120,24.910,1782.6,16.061,16.061,15.712,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,0.156,0.000,-999999,-999999,-999999,-999999,0.9;25.140,24.930,1783.8,16.337,16.337,15.988,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;25.160,24.950,1784.9,16.614,16.614,16.264,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;25.180,24.970,1786.0,16.738,16.738,16.388,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;25.200,24.990,1787.2,16.765,16.765,16.415,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;25.220,25.010,1788.4,16.242,16.242,15.892,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;25.220,25.010,1788.5,16.163,16.163,15.813,-999999,-999999,-999999,-999999,-999999,-999999,-999999,4,6,7,-999999,-999999,-999999,0.000,-999999,-999999,-999999,-999999,-999999;jajaneejajajajajajaneeneeneeneeneeneeneejajajaneeneejajaneeneeneeneeja2023-06-01T13:45:41+02:00voltooid2023-06-01T13:45:41+02:00neeneeneenee \ No newline at end of file diff --git a/tests/data/2d_rf_gef.pickle b/tests/data/2d_rf_gef.pickle new file mode 100644 index 0000000..4fcd341 Binary files /dev/null and b/tests/data/2d_rf_gef.pickle differ diff --git a/tests/data/2d_rf_xml.pickle b/tests/data/2d_rf_xml.pickle new file mode 100644 index 0000000..5cca731 Binary files /dev/null and b/tests/data/2d_rf_xml.pickle differ diff --git a/tests/data/conditional_random_field_3D.pickle b/tests/data/conditional_random_field_3D.pickle new file mode 100644 index 0000000..1fe300e Binary files /dev/null and b/tests/data/conditional_random_field_3D.pickle differ diff --git a/tests/data/conditioned_rf_3D.txt b/tests/data/conditioned_rf_3D.txt new file mode 100644 index 0000000..d3e0088 --- /dev/null +++ b/tests/data/conditioned_rf_3D.txt @@ -0,0 +1,3 @@ +1.001037129583365726e+01 1.001779265915069317e+01 1.002616224620184759e+01 1.003297125891605290e+01 1.003561413196588425e+01 1.041995334622643554e+01 1.072045835625976373e+01 1.105935873525189805e+01 1.133506851344082911e+01 1.144208343218670976e+01 1.144208343218670976e+01 1.247399161949403634e+01 1.363774617960853064e+01 1.458450968748578447e+01 1.495198965331282714e+01 1.041995334622643554e+01 1.072045835625976373e+01 1.105935873525189805e+01 1.133506851344082911e+01 1.144208343218670976e+01 1.001037129583365726e+01 1.001779265915069317e+01 1.002616224620184759e+01 1.003297125891605290e+01 1.003561413196588425e+01 1.000936434881164061e+01 1.001606517346010072e+01 1.002362215899146136e+01 1.002977008603369136e+01 1.003215636307182201e+01 1.037918016048852188e+01 1.065050919966851772e+01 1.095650580917420847e+01 1.120544698057176625e+01 1.130207184242689777e+01 1.130207184242689777e+01 1.223379227182344664e+01 1.328455813626671578e+01 1.413940056599700767e+01 1.447120197601240399e+01 1.037918016048852188e+01 1.065050919966851772e+01 1.095650580917420847e+01 1.120544698057176625e+01 1.130207184242689777e+01 1.000936434881164061e+01 1.001606517346010072e+01 1.002362215899146136e+01 1.002977008603369136e+01 1.003215636307182201e+01 1.000827212509241626e+01 1.001419138983034429e+01 1.002086695594758226e+01 1.002629781105297546e+01 1.002840576138263806e+01 1.033495396030360958e+01 1.057463616335353329e+01 1.084494243692374660e+01 1.106484801198021373e+01 1.115020290001145398e+01 1.115020290001145398e+01 1.197325083405968194e+01 1.290145917490132277e+01 1.365659588064252183e+01 1.394969717627938266e+01 1.033495396030360958e+01 1.057463616335353329e+01 1.084494243692374660e+01 1.106484801198021373e+01 1.115020290001145398e+01 1.000827212509241626e+01 1.001419138983034429e+01 1.002086695594758226e+01 1.002629781105297546e+01 1.002840576138263806e+01 1.000936434881164061e+01 1.001606517346010072e+01 1.002362215899146136e+01 1.002977008603369136e+01 1.003215636307182201e+01 1.037918016048852188e+01 1.065050919966851772e+01 1.095650580917420847e+01 1.120544698057176802e+01 1.130207184242689955e+01 1.130207184242689955e+01 1.223379227182344842e+01 1.328455813626671755e+01 1.413940056599701123e+01 1.447120197601240754e+01 1.037918016048852188e+01 1.065050919966851772e+01 1.095650580917420847e+01 1.120544698057176802e+01 1.130207184242689955e+01 1.000936434881164061e+01 1.001606517346010072e+01 1.002362215899146136e+01 1.002977008603369136e+01 1.003215636307182201e+01 1.001037129583365726e+01 1.001779265915069317e+01 1.002616224620184759e+01 1.003297125891605290e+01 1.003561413196588425e+01 1.041995334622643554e+01 1.072045835625976373e+01 1.105935873525189805e+01 1.133506851344083088e+01 1.144208343218671153e+01 1.144208343218671153e+01 1.247399161949403634e+01 1.363774617960853242e+01 1.458450968748578447e+01 1.495198965331282892e+01 1.041995334622643554e+01 1.072045835625976373e+01 1.105935873525189805e+01 1.133506851344083088e+01 1.144208343218671153e+01 1.001037129583365726e+01 1.001779265915069317e+01 1.002616224620184759e+01 1.003297125891605290e+01 1.003561413196588425e+01 +1.999995657040991581e+00 1.999987217896785463e+00 1.999972364185357732e+00 1.999956107022822005e+00 1.999948788263586463e+00 1.992866601328432852e+00 1.978931651574280304e+00 1.954163581335734312e+00 1.926690606096852720e+00 1.914194004823318807e+00 1.914194004823318807e+00 1.735368065190297182e+00 1.364846429243236736e+00 7.781931346967962959e-01 1.990064074795734050e-01 1.992866601328432852e+00 1.978931651574280304e+00 1.954163581335734312e+00 1.926690606096852720e+00 1.914194004823318807e+00 1.999995657040991581e+00 1.999987217896785463e+00 1.999972364185357732e+00 1.999956107022822005e+00 1.999948788263586463e+00 1.999997106204023156e+00 1.999991483048136676e+00 1.999981585768210390e+00 1.999970753373113919e+00 1.999965876781916618e+00 1.995249714589760526e+00 1.985986601500497439e+00 1.969576902793994444e+00 1.951458722886711294e+00 1.943247064898389942e+00 1.943247064898389942e+00 1.827934628395943450e+00 1.604975522519639597e+00 1.318421698327810976e+00 1.166666943669037559e+00 1.995249714589760526e+00 1.985986601500497439e+00 1.969576902793994444e+00 1.951458722886711294e+00 1.943247064898389942e+00 1.999997106204023156e+00 1.999991483048136676e+00 1.999981585768210390e+00 1.999970753373113919e+00 1.999965876781916618e+00 1.999998481827183427e+00 1.999995531752665645e+00 1.999990339355364410e+00 1.999984656383788861e+00 1.999982097995069097e+00 1.997509264526410533e+00 1.992660433959572153e+00 1.984097289174038492e+00 1.974682568141426842e+00 1.970429526712960788e+00 1.970429526712960788e+00 1.911661467756611721e+00 1.803579276266119802e+00 1.677322190641976185e+00 1.617268996638918876e+00 1.997509264526410533e+00 1.992660433959572153e+00 1.984097289174038492e+00 1.974682568141426842e+00 1.970429526712960788e+00 1.999998481827183427e+00 1.999995531752665645e+00 1.999990339355364410e+00 1.999984656383788861e+00 1.999982097995069097e+00 1.999997106204023156e+00 1.999991483048136676e+00 1.999981585768210390e+00 1.999970753373113919e+00 1.999965876781916618e+00 1.995249714589760526e+00 1.985986601500497439e+00 1.969576902793994444e+00 1.951458722886711294e+00 1.943247064898389942e+00 1.943247064898389942e+00 1.827934628395943228e+00 1.604975522519638931e+00 1.318421698327809866e+00 1.166666943669036449e+00 1.995249714589760526e+00 1.985986601500497439e+00 1.969576902793994444e+00 1.951458722886711294e+00 1.943247064898389942e+00 1.999997106204023156e+00 1.999991483048136676e+00 1.999981585768210390e+00 1.999970753373113919e+00 1.999965876781916618e+00 1.999995657040991581e+00 1.999987217896785463e+00 1.999972364185357732e+00 1.999956107022822005e+00 1.999948788263586463e+00 1.992866601328432852e+00 1.978931651574280304e+00 1.954163581335734312e+00 1.926690606096852720e+00 1.914194004823318807e+00 1.914194004823318807e+00 1.735368065190297182e+00 1.364846429243236292e+00 7.781931346967956298e-01 1.990064074795688809e-01 1.992866601328432852e+00 1.978931651574280304e+00 1.954163581335734312e+00 1.926690606096852720e+00 1.914194004823318807e+00 1.999995657040991581e+00 1.999987217896785463e+00 1.999972364185357732e+00 1.999956107022822005e+00 1.999948788263586463e+00 +1.012121647287858828e+01 1.071642554112682433e+01 1.108706117485346532e+01 1.120483867349165230e+01 1.114718970010125254e+01 1.055255019288573948e+01 1.130096185115665541e+01 1.208263360116385599e+01 1.269063991410385661e+01 1.296262105045423851e+01 1.249046303079041920e+01 1.291513149953474482e+01 1.364166258405261445e+01 1.438327350547505468e+01 1.472565541955533774e+01 1.176553517165141116e+01 1.153782641372943552e+01 1.141882964402100775e+01 1.146858862202424589e+01 1.160306592896929345e+01 1.001821773354341083e+01 1.020704159418873935e+01 1.034185632331666760e+01 1.047834728536685134e+01 1.068560737496155078e+01 1.073332562848649019e+01 1.091155365997554050e+01 1.109075129059374376e+01 1.120468639540295008e+01 1.125967414385540621e+01 1.054848864482636017e+01 1.046444561337704116e+01 1.028533875920313889e+01 1.010886811447745792e+01 1.004008457220642470e+01 1.258417437649817927e+01 1.304503419660922425e+01 1.362352677425436553e+01 1.409601635471898362e+01 1.418229174957941652e+01 1.211633594204680264e+01 1.230357056106962332e+01 1.254281838105818281e+01 1.268759867617738024e+01 1.263618346678125270e+01 1.058019197852246762e+01 1.038784009647453033e+01 1.029028550993657731e+01 1.026937331533787301e+01 1.030195309399787540e+01 8.883457927525110875e+00 8.656185766708823337e+00 8.425990024817773261e+00 8.241401247266487928e+00 8.159267121028348058e+00 1.009317641877840721e+01 1.014821670668675857e+01 1.015124644792975417e+01 1.013697310877260094e+01 1.010591861841817440e+01 1.011313890100671742e+01 1.118771109316880796e+01 1.229989740825442013e+01 1.321485100044520422e+01 1.364153170972529949e+01 7.331775718706962763e+00 8.283737075605337452e+00 9.134573268233307175e+00 9.814223526220782645e+00 1.027626074267490708e+01 9.353470713313768670e+00 9.083221003139598793e+00 8.821853352654798641e+00 8.742218087186623521e+00 8.934407406326720036e+00 1.122724383391061131e+01 1.151133619880937609e+01 1.155624267179873677e+01 1.138088448336473135e+01 1.107052906417530735e+01 8.480559650336589428e+00 8.972690491930276124e+00 9.601907045596810519e+00 1.025873694367369460e+01 1.079059351667883604e+01 9.037161152833929734e+00 1.012492132175658988e+01 1.146858042524979382e+01 1.271393564030815959e+01 1.347147530704844343e+01 1.011312904807348723e+01 1.053637517682219205e+01 1.106544555215963399e+01 1.156124807893860407e+01 1.186194429368405601e+01 9.601100668704498631e+00 9.431434050046169304e+00 9.406497778774722818e+00 9.623231490733354931e+00 1.008690053298261091e+01 9.075495998473334325e+00 9.409838886026964389e+00 9.780151585061991781e+00 1.019000517041948584e+01 1.067142913870968357e+01 8.589795774759629410e+00 9.184796607457128559e+00 9.867636524483291538e+00 1.047226059447149638e+01 1.085065198604466197e+01 9.707465276404960264e+00 1.131875262321031173e+01 1.302971604180225818e+01 1.436569418399955644e+01 1.497682066499356246e+01 8.788740439515176917e+00 9.441502269066109676e+00 1.018624732643457342e+01 1.080419838736380278e+01 1.117003755917914631e+01 9.242131500766898711e+00 9.322385502862839957e+00 9.519349270709991373e+00 9.693853564647792354e+00 9.779321257325094052e+00 diff --git a/tests/data/random_field_3D.eps b/tests/data/random_field_3D.eps deleted file mode 100644 index ecf1b5d..0000000 --- a/tests/data/random_field_3D.eps +++ /dev/null @@ -1,28728 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%LanguageLevel: 3 -%%Title: random_field.eps -%%Creator: Matplotlib v3.8.0, https://matplotlib.org/ -%%CreationDate: Wed Oct 4 10:40:58 2023 -%%Orientation: portrait -%%BoundingBox: 0 0 432 360 -%%HiResBoundingBox: 0.000000 0.000000 432.000000 360.000000 -%%EndComments -%%BeginProlog -/mpldict 9 dict def -mpldict begin -/_d { bind def } bind def -/m { moveto } _d -/l { lineto } _d -/r { rlineto } _d -/c { curveto } _d -/cl { closepath } _d -/ce { closepath eofill } _d -/sc { setcachedevice } _d -%!PS-Adobe-3.0 Resource-Font -%%Creator: Converted from TrueType to Type 3 by Matplotlib. -10 dict begin -/FontName /DejaVuSans def -/PaintType 0 def -/FontMatrix [0.00048828125 0 0 0.00048828125 0 0] def -/FontBBox [-2090 -948 3673 2524] def -/FontType 3 def -/Encoding [/space /zero /one /two /three /four /five /six /eight /F /R /a /c /d /e /i /l /m /n /o /r /t /x /y /z] def -/CharStrings 26 dict dup begin -/.notdef 0 def -/space{651 0 0 0 0 0 sc -ce} _d -/zero{1303 0 135 -29 1167 1520 sc -651 1360 m -547 1360 469 1309 416 1206 c -364 1104 338 950 338 745 c -338 540 364 387 416 284 c -469 182 547 131 651 131 c -756 131 834 182 886 284 c -939 387 965 540 965 745 c -965 950 939 1104 886 1206 c -834 1309 756 1360 651 1360 c - -651 1520 m -818 1520 946 1454 1034 1321 c -1123 1189 1167 997 1167 745 c -1167 494 1123 302 1034 169 c -946 37 818 -29 651 -29 c -484 -29 356 37 267 169 c -179 302 135 494 135 745 c -135 997 179 1189 267 1321 c -356 1454 484 1520 651 1520 c - -ce} _d -/one{1303 0 225 0 1114 1493 sc -254 170 m -584 170 l -584 1309 l -225 1237 l -225 1421 l -582 1493 l -784 1493 l -784 170 l -1114 170 l -1114 0 l -254 0 l -254 170 l - -ce} _d -/two{1303 0 150 0 1098 1520 sc -393 170 m -1098 170 l -1098 0 l -150 0 l -150 170 l -227 249 331 356 463 489 c -596 623 679 709 713 748 c -778 821 823 882 848 932 c -874 983 887 1032 887 1081 c -887 1160 859 1225 803 1275 c -748 1325 675 1350 586 1350 c -523 1350 456 1339 385 1317 c -315 1295 240 1262 160 1217 c -160 1421 l -241 1454 317 1478 388 1495 c -459 1512 523 1520 582 1520 c -737 1520 860 1481 952 1404 c -1044 1327 1090 1223 1090 1094 c -1090 1033 1078 974 1055 919 c -1032 864 991 800 930 725 c -913 706 860 650 771 557 c -682 465 556 336 393 170 c - -ce} _d -/three{1303 0 156 -29 1139 1520 sc -831 805 m -928 784 1003 741 1057 676 c -1112 611 1139 530 1139 434 c -1139 287 1088 173 987 92 c -886 11 742 -29 555 -29 c -492 -29 428 -23 361 -10 c -295 2 227 20 156 45 c -156 240 l -212 207 273 183 340 166 c -407 149 476 141 549 141 c -676 141 772 166 838 216 c -905 266 938 339 938 434 c -938 522 907 591 845 640 c -784 690 698 715 588 715 c -414 715 l -414 881 l -596 881 l -695 881 771 901 824 940 c -877 980 903 1037 903 1112 c -903 1189 876 1247 821 1288 c -767 1329 689 1350 588 1350 c -533 1350 473 1344 410 1332 c -347 1320 277 1301 201 1276 c -201 1456 l -278 1477 349 1493 416 1504 c -483 1515 547 1520 606 1520 c -759 1520 881 1485 970 1415 c -1059 1346 1104 1252 1104 1133 c -1104 1050 1080 980 1033 923 c -986 866 918 827 831 805 c - -ce} _d -/four{1303 0 100 0 1188 1493 sc -774 1317 m -264 520 l -774 520 l -774 1317 l - -721 1493 m -975 1493 l -975 520 l -1188 520 l -1188 352 l -975 352 l -975 0 l -774 0 l -774 352 l -100 352 l -100 547 l -721 1493 l - -ce} _d -/five{1303 0 158 -29 1124 1493 sc -221 1493 m -1014 1493 l -1014 1323 l -406 1323 l -406 957 l -435 967 465 974 494 979 c -523 984 553 987 582 987 c -749 987 881 941 978 850 c -1075 759 1124 635 1124 479 c -1124 318 1074 193 974 104 c -874 15 733 -29 551 -29 c -488 -29 424 -24 359 -13 c -294 -2 227 14 158 35 c -158 238 l -218 205 280 181 344 165 c -408 149 476 141 547 141 c -662 141 754 171 821 232 c -888 293 922 375 922 479 c -922 583 888 665 821 726 c -754 787 662 817 547 817 c -493 817 439 811 385 799 c -332 787 277 768 221 743 c -221 1493 l - -ce} _d -/six{1303 0 143 -29 1174 1520 sc -676 827 m -585 827 513 796 460 734 c -407 672 381 587 381 479 c -381 372 407 287 460 224 c -513 162 585 131 676 131 c -767 131 838 162 891 224 c -944 287 971 372 971 479 c -971 587 944 672 891 734 c -838 796 767 827 676 827 c - -1077 1460 m -1077 1276 l -1026 1300 975 1318 923 1331 c -872 1344 821 1350 770 1350 c -637 1350 535 1305 464 1215 c -394 1125 354 989 344 807 c -383 865 433 909 492 940 c -551 971 617 987 688 987 c -838 987 956 941 1043 850 c -1130 759 1174 636 1174 479 c -1174 326 1129 203 1038 110 c -947 17 827 -29 676 -29 c -503 -29 371 37 280 169 c -189 302 143 494 143 745 c -143 981 199 1169 311 1309 c -423 1450 573 1520 762 1520 c -813 1520 864 1515 915 1505 c -967 1495 1021 1480 1077 1460 c - -ce} _d -/eight{1303 0 139 -29 1163 1520 sc -651 709 m -555 709 479 683 424 632 c -369 581 342 510 342 420 c -342 330 369 259 424 208 c -479 157 555 131 651 131 c -747 131 823 157 878 208 c -933 260 961 331 961 420 c -961 510 933 581 878 632 c -823 683 748 709 651 709 c - -449 795 m -362 816 295 857 246 916 c -198 975 174 1048 174 1133 c -174 1252 216 1347 301 1416 c -386 1485 503 1520 651 1520 c -800 1520 916 1485 1001 1416 c -1086 1347 1128 1252 1128 1133 c -1128 1048 1104 975 1055 916 c -1007 857 940 816 854 795 c -951 772 1027 728 1081 662 c -1136 596 1163 515 1163 420 c -1163 275 1119 164 1030 87 c -942 10 816 -29 651 -29 c -486 -29 360 10 271 87 c -183 164 139 275 139 420 c -139 515 166 596 221 662 c -276 728 352 772 449 795 c - -375 1114 m -375 1037 399 976 447 933 c -496 890 564 868 651 868 c -738 868 805 890 854 933 c -903 976 928 1037 928 1114 c -928 1191 903 1252 854 1295 c -805 1338 738 1360 651 1360 c -564 1360 496 1338 447 1295 c -399 1252 375 1191 375 1114 c - -ce} _d -/F{1178 0 201 0 1059 1493 sc -201 1493 m -1059 1493 l -1059 1323 l -403 1323 l -403 883 l -995 883 l -995 713 l -403 713 l -403 0 l -201 0 l -201 1493 l - -ce} _d -/R{1423 0 201 0 1364 1493 sc -909 700 m -952 685 994 654 1035 606 c -1076 558 1118 492 1159 408 c -1364 0 l -1147 0 l -956 383 l -907 483 859 549 812 582 c -766 615 703 631 623 631 c -403 631 l -403 0 l -201 0 l -201 1493 l -657 1493 l -828 1493 955 1457 1039 1386 c -1123 1315 1165 1207 1165 1063 c -1165 969 1143 891 1099 829 c -1056 767 992 724 909 700 c - -403 1327 m -403 797 l -657 797 l -754 797 828 819 877 864 c -927 909 952 976 952 1063 c -952 1150 927 1216 877 1260 c -828 1305 754 1327 657 1327 c -403 1327 l - -ce} _d -/a{1255 0 123 -29 1069 1147 sc -702 563 m -553 563 450 546 393 512 c -336 478 307 420 307 338 c -307 273 328 221 371 182 c -414 144 473 125 547 125 c -649 125 731 161 792 233 c -854 306 885 402 885 522 c -885 563 l -702 563 l - -1069 639 m -1069 0 l -885 0 l -885 170 l -843 102 791 52 728 19 c -665 -13 589 -29 498 -29 c -383 -29 292 3 224 67 c -157 132 123 218 123 326 c -123 452 165 547 249 611 c -334 675 460 707 627 707 c -885 707 l -885 725 l -885 810 857 875 801 921 c -746 968 668 991 567 991 c -503 991 441 983 380 968 c -319 953 261 930 205 899 c -205 1069 l -272 1095 338 1114 401 1127 c -464 1140 526 1147 586 1147 c -748 1147 869 1105 949 1021 c -1029 937 1069 810 1069 639 c - -ce} _d -/c{1126 0 113 -29 999 1147 sc -999 1077 m -999 905 l -947 934 895 955 842 969 c -790 984 737 991 684 991 c -565 991 472 953 406 877 c -340 802 307 696 307 559 c -307 422 340 316 406 240 c -472 165 565 127 684 127 c -737 127 790 134 842 148 c -895 163 947 184 999 213 c -999 43 l -948 19 894 1 839 -11 c -784 -23 726 -29 664 -29 c -495 -29 361 24 262 130 c -163 236 113 379 113 559 c -113 742 163 885 263 990 c -364 1095 501 1147 676 1147 c -733 1147 788 1141 842 1129 c -896 1118 948 1100 999 1077 c - -ce} _d -/d{1300 0 113 -29 1114 1556 sc -930 950 m -930 1556 l -1114 1556 l -1114 0 l -930 0 l -930 168 l -891 101 842 52 783 19 c -724 -13 654 -29 571 -29 c -436 -29 325 25 240 133 c -155 241 113 383 113 559 c -113 735 155 877 240 985 c -325 1093 436 1147 571 1147 c -654 1147 724 1131 783 1098 c -842 1066 891 1017 930 950 c - -303 559 m -303 424 331 317 386 240 c -442 163 519 125 616 125 c -713 125 790 163 846 240 c -902 317 930 424 930 559 c -930 694 902 800 846 877 c -790 954 713 993 616 993 c -519 993 442 954 386 877 c -331 800 303 694 303 559 c - -ce} _d -/e{1260 0 113 -29 1151 1147 sc -1151 606 m -1151 516 l -305 516 l -313 389 351 293 419 226 c -488 160 583 127 705 127 c -776 127 844 136 910 153 c -977 170 1043 196 1108 231 c -1108 57 l -1042 29 974 8 905 -7 c -836 -22 765 -29 694 -29 c -515 -29 374 23 269 127 c -165 231 113 372 113 549 c -113 732 162 878 261 985 c -360 1093 494 1147 662 1147 c -813 1147 932 1098 1019 1001 c -1107 904 1151 773 1151 606 c - -967 660 m -966 761 937 841 882 901 c -827 961 755 991 664 991 c -561 991 479 962 417 904 c -356 846 320 764 311 659 c -967 660 l - -ce} _d -/i{569 0 193 0 377 1556 sc -193 1120 m -377 1120 l -377 0 l -193 0 l -193 1120 l - -193 1556 m -377 1556 l -377 1323 l -193 1323 l -193 1556 l - -ce} _d -/l{569 0 193 0 377 1556 sc -193 1556 m -377 1556 l -377 0 l -193 0 l -193 1556 l - -ce} _d -/m{1995 0 186 0 1821 1147 sc -1065 905 m -1111 988 1166 1049 1230 1088 c -1294 1127 1369 1147 1456 1147 c -1573 1147 1663 1106 1726 1024 c -1789 943 1821 827 1821 676 c -1821 0 l -1636 0 l -1636 670 l -1636 777 1617 857 1579 909 c -1541 961 1483 987 1405 987 c -1310 987 1234 955 1179 892 c -1124 829 1096 742 1096 633 c -1096 0 l -911 0 l -911 670 l -911 778 892 858 854 909 c -816 961 757 987 678 987 c -584 987 509 955 454 891 c -399 828 371 742 371 633 c -371 0 l -186 0 l -186 1120 l -371 1120 l -371 946 l -413 1015 463 1065 522 1098 c -581 1131 650 1147 731 1147 c -812 1147 881 1126 938 1085 c -995 1044 1038 984 1065 905 c - -ce} _d -/n{1298 0 186 0 1124 1147 sc -1124 676 m -1124 0 l -940 0 l -940 670 l -940 776 919 855 878 908 c -837 961 775 987 692 987 c -593 987 514 955 457 892 c -400 829 371 742 371 633 c -371 0 l -186 0 l -186 1120 l -371 1120 l -371 946 l -415 1013 467 1064 526 1097 c -586 1130 655 1147 733 1147 c -862 1147 959 1107 1025 1027 c -1091 948 1124 831 1124 676 c - -ce} _d -/o{1253 0 113 -29 1141 1147 sc -627 991 m -528 991 450 952 393 875 c -336 798 307 693 307 559 c -307 425 335 319 392 242 c -449 165 528 127 627 127 c -725 127 803 166 860 243 c -917 320 946 426 946 559 c -946 692 917 797 860 874 c -803 952 725 991 627 991 c - -627 1147 m -787 1147 913 1095 1004 991 c -1095 887 1141 743 1141 559 c -1141 376 1095 232 1004 127 c -913 23 787 -29 627 -29 c -466 -29 340 23 249 127 c -158 232 113 376 113 559 c -113 743 158 887 249 991 c -340 1095 466 1147 627 1147 c - -ce} _d -/r{842 0 186 0 842 1147 sc -842 948 m -821 960 799 969 774 974 c -750 980 723 983 694 983 c -590 983 510 949 454 881 c -399 814 371 717 371 590 c -371 0 l -186 0 l -186 1120 l -371 1120 l -371 946 l -410 1014 460 1064 522 1097 c -584 1130 659 1147 748 1147 c -761 1147 775 1146 790 1144 c -805 1143 822 1140 841 1137 c -842 948 l - -ce} _d -/t{803 0 55 0 754 1438 sc -375 1438 m -375 1120 l -754 1120 l -754 977 l -375 977 l -375 369 l -375 278 387 219 412 193 c -437 167 488 154 565 154 c -754 154 l -754 0 l -565 0 l -423 0 325 26 271 79 c -217 132 190 229 190 369 c -190 977 l -55 977 l -55 1120 l -190 1120 l -190 1438 l -375 1438 l - -ce} _d -/x{1212 0 59 0 1145 1120 sc -1124 1120 m -719 575 l -1145 0 l -928 0 l -602 440 l -276 0 l -59 0 l -494 586 l -96 1120 l -313 1120 l -610 721 l -907 1120 l -1124 1120 l - -ce} _d -/y{1212 0 61 -426 1151 1120 sc -659 -104 m -607 -237 556 -324 507 -365 c -458 -406 392 -426 309 -426 c -162 -426 l -162 -272 l -270 -272 l -321 -272 360 -260 388 -236 c -416 -212 447 -155 481 -66 c -514 18 l -61 1120 l -256 1120 l -606 244 l -956 1120 l -1151 1120 l -659 -104 l - -ce} _d -/z{1075 0 88 0 987 1120 sc -113 1120 m -987 1120 l -987 952 l -295 147 l -987 147 l -987 0 l -88 0 l -88 168 l -780 973 l -113 973 l -113 1120 l - -ce} _d -end readonly def - -/BuildGlyph { - exch begin - CharStrings exch - 2 copy known not {pop /.notdef} if - true 3 1 roll get exec - end -} _d - -/BuildChar { - 1 index /Encoding get exch get - 1 index /BuildGlyph get exec -} _d - -FontName currentdict end definefont pop -end -%%EndProlog -mpldict begin -0 0 translate -0 0 432 360 rectclip -gsave -0 0 m -432 0 l -432 360 l -0 360 l -cl -1 setgray -fill -grestore -gsave -72 36 m -360 36 l -360 324 l -72 324 l -cl -1 setgray -fill -grestore -1 setlinewidth -0 setlinejoin -0 setlinecap -[] 0 setdash -0.95 setgray -gsave -133.347423 150.228714 m -127.452227 299.379942 l -120.176876 222.678013 l -127.002279 67.841705 l -gsave -fill -grestore -stroke -grestore -0.9 setgray -gsave -133.347423 150.228714 m -306.436361 150.228714 l -312.781505 67.841705 l -127.002279 67.841705 l -gsave -fill -grestore -stroke -grestore -0.925 setgray -gsave -133.347423 150.228714 m -306.436361 150.228714 l -312.331557 299.379942 l -127.452227 299.379942 l -gsave -fill -grestore -stroke -grestore -0.8 setlinewidth -1 setlinejoin -0.69 setgray -gsave -139.217275 299.379942 m -144.362173 150.228714 l -138.824593 67.841705 l -stroke -grestore -gsave -171.487122 299.379942 m -174.574061 150.228714 l -171.251513 67.841705 l -stroke -grestore -gsave -203.756969 299.379942 m -204.785948 150.228714 l -203.678432 67.841705 l -stroke -grestore -gsave -236.026815 299.379942 m -234.997836 150.228714 l -236.105352 67.841705 l -stroke -grestore -gsave -268.296662 299.379942 m -265.209723 150.228714 l -268.532271 67.841705 l -stroke -grestore -gsave -300.566508 299.379942 m -295.42161 150.228714 l -300.959191 67.841705 l -stroke -grestore -gsave -126.595895 77.060637 m -132.994767 159.151064 l -306.789017 159.151064 l -stroke -grestore -gsave -125.890902 93.053606 m -132.383481 174.616882 l -307.400302 174.616882 l -stroke -grestore -gsave -125.175174 109.290117 m -131.763534 190.301834 l -308.020249 190.301834 l -stroke -grestore -gsave -124.448463 125.775776 m -131.134741 206.210609 l -308.649043 206.210609 l -stroke -grestore -gsave -123.710515 142.516363 m -130.49691 222.348033 l -309.286874 222.348033 l -stroke -grestore -gsave -122.961066 159.517836 m -129.849845 238.719071 l -309.933938 238.719071 l -stroke -grestore -gsave -122.199846 176.786343 m -129.193345 255.328833 l -310.590439 255.328833 l -stroke -grestore -gsave -121.426575 194.328223 m -128.527202 272.182578 l -311.256582 272.182578 l -stroke -grestore -gsave -120.640965 212.150021 m -127.851201 289.285723 l -311.932583 289.285723 l -stroke -grestore -gsave -306.814204 145.322707 m -132.96958 145.322707 l -127.021028 294.833931 l -stroke -grestore -gsave -307.513717 136.240046 m -132.270067 136.240046 l -126.222056 286.410599 l -stroke -grestore -gsave -308.22458 127.010012 m -131.559204 127.010012 l -125.409217 277.841077 l -stroke -grestore -gsave -308.947072 117.628989 m -130.836712 117.628989 l -124.582148 269.121526 l -stroke -grestore -gsave -309.68148 108.093242 m -130.102304 108.093242 l -123.740471 260.247971 l -stroke -grestore -gsave -310.428102 98.398912 m -129.355682 98.398912 l -122.883797 251.216295 l -stroke -grestore -gsave -311.187244 88.542008 m -128.59654 88.542008 l -122.011719 242.022235 l -stroke -grestore -gsave -311.959225 78.518406 m -127.824559 78.518406 l -121.12382 232.661371 l -stroke -grestore -2 setlinecap -0 setgray -gsave -127.452227 299.379942 m -312.331557 299.379942 l -stroke -grestore -gsave -139.261214 298.106148 m -139.129254 301.9317 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -136.068 309.445 translate -0 rotate -0 0 m /zero glyphshow -grestore -gsave -171.513485 298.106148 m -171.434309 301.9317 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -165.146 309.445 translate -0 rotate -0 0 m /two glyphshow -6.3623 0 m /zero glyphshow -grestore -gsave -203.765756 298.106148 m -203.739364 301.9317 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -197.404 309.445 translate -0 rotate -0 0 m /four glyphshow -6.3623 0 m /zero glyphshow -grestore -gsave -236.018027 298.106148 m -236.04442 301.9317 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -229.661 309.445 translate -0 rotate -0 0 m /six glyphshow -6.3623 0 m /zero glyphshow -grestore -gsave -268.270298 298.106148 m -268.349475 301.9317 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -261.919 309.445 translate -0 rotate -0 0 m /eight glyphshow -6.3623 0 m /zero glyphshow -grestore -gsave -300.52257 298.106148 m -300.65453 301.9317 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -290.997 309.445 translate -0 rotate -0 0 m /one glyphshow -6.3623 0 m /zero glyphshow -12.7246 0 m /zero glyphshow -grestore -/DejaVuSans 10.000 selectfont -gsave - -188.634 334.994 translate -0 rotate -0 0 m /x glyphshow -5.91797 0 m /space glyphshow -9.09668 0 m /c glyphshow -14.5947 0 m /o glyphshow -20.7129 0 m /o glyphshow -26.8311 0 m /r glyphshow -30.8174 0 m /d glyphshow -37.165 0 m /i glyphshow -39.9434 0 m /n glyphshow -46.2812 0 m /a glyphshow -52.4092 0 m /t glyphshow -56.3301 0 m /e glyphshow -grestore -gsave -306.436361 150.228714 m -312.331557 299.379942 l -stroke -grestore -gsave -305.398663 159.151064 m -309.569725 159.151064 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -316.409 157.389 translate -0 rotate -0 0 m /zero glyphshow -grestore -gsave -306.000168 174.616882 m -310.200571 174.616882 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -317.107 172.814 translate -0 rotate -0 0 m /five glyphshow -grestore -gsave -306.610196 190.301834 m -310.840357 190.301834 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -314.635 188.456 translate -0 rotate -0 0 m /one glyphshow -6.3623 0 m /zero glyphshow -grestore -gsave -307.228929 206.210609 m -311.489272 206.210609 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -315.352 204.321 translate -0 rotate -0 0 m /one glyphshow -6.3623 0 m /five glyphshow -grestore -gsave -307.856554 222.348033 m -312.147513 222.348033 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -316.08 220.412 translate -0 rotate -0 0 m /two glyphshow -6.3623 0 m /zero glyphshow -grestore -gsave -308.493266 238.719071 m -312.815284 238.719071 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -316.818 236.735 translate -0 rotate -0 0 m /two glyphshow -6.3623 0 m /five glyphshow -grestore -gsave -309.139262 255.328833 m -313.492792 255.328833 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -317.567 253.295 translate -0 rotate -0 0 m /three glyphshow -6.3623 0 m /zero glyphshow -grestore -gsave -309.794747 272.182578 m -314.180252 272.182578 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -318.327 270.097 translate -0 rotate -0 0 m /three glyphshow -6.3623 0 m /five glyphshow -grestore -gsave -310.459932 289.285723 m -314.877885 289.285723 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -319.098 287.146 translate -0 rotate -0 0 m /four glyphshow -6.3623 0 m /zero glyphshow -grestore -/DejaVuSans 10.000 selectfont -gsave - -339.221 203.228 translate -87.7366 rotate -0 0 m /y glyphshow -5.91797 0 m /space glyphshow -9.09668 0 m /c glyphshow -14.5947 0 m /o glyphshow -20.7129 0 m /o glyphshow -26.8311 0 m /r glyphshow -30.8174 0 m /d glyphshow -37.165 0 m /i glyphshow -39.9434 0 m /n glyphshow -46.2812 0 m /a glyphshow -52.4092 0 m /t glyphshow -56.3301 0 m /e glyphshow -grestore -gsave -306.436361 150.228714 m -312.781505 67.841705 l -stroke -grestore -gsave -305.423447 145.322707 m -309.595718 145.322707 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -316.473 127.053 translate -0 rotate -0 0 m /zero glyphshow -grestore -gsave -306.111768 136.240046 m -310.317615 136.240046 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -317.272 117.93 translate -0 rotate -0 0 m /two glyphshow -grestore -gsave -306.811257 127.010012 m -311.051226 127.010012 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -318.083 108.659 translate -0 rotate -0 0 m /four glyphshow -grestore -gsave -307.522189 117.628989 m -311.796838 117.628989 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -318.908 99.2373 translate -0 rotate -0 0 m /six glyphshow -grestore -gsave -308.244847 108.093242 m -312.554747 108.093242 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -319.747 89.6611 translate -0 rotate -0 0 m /eight glyphshow -grestore -gsave -308.979522 98.398912 m -313.32526 98.398912 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -317.42 79.9264 translate -0 rotate -0 0 m /one glyphshow -6.3623 0 m /zero glyphshow -grestore -gsave -309.726519 88.542008 m -314.108695 88.542008 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -318.286 70.0294 translate -0 rotate -0 0 m /one glyphshow -6.3623 0 m /two glyphshow -grestore -gsave -310.486148 78.518406 m -314.90538 78.518406 l -stroke -grestore -/DejaVuSans 10.000 selectfont -gsave - -319.167 59.9658 translate -0 rotate -0 0 m /one glyphshow -6.3623 0 m /four glyphshow -grestore -/DejaVuSans 10.000 selectfont -gsave - -332.94 117.709 translate -274.404 rotate -0 0 m /z glyphshow -5.24902 0 m /space glyphshow -8.42773 0 m /c glyphshow -13.9258 0 m /o glyphshow -20.0439 0 m /o glyphshow -26.1621 0 m /r glyphshow -30.1484 0 m /d glyphshow -36.4961 0 m /i glyphshow -39.2744 0 m /n glyphshow -45.6123 0 m /a glyphshow -51.7402 0 m /t glyphshow -55.6611 0 m /e glyphshow -grestore -/p0_0 { -newpath -translate --2.236068 -2.236068 m -2.236068 -2.236068 l -2.236068 2.236068 l --2.236068 2.236068 l -cl - -} bind def -1 setlinewidth -0 setlinecap -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -143.722 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -183.811 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -207.865 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -199.847 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -215.883 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -0.14 0.666 0.513 setrgbcolor -gsave -72 36 288 288 rectclip -223.901 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -0.497 0.826 0.306 setrgbcolor -gsave -72 36 288 288 rectclip -159.758 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -0.247 0.283 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -231.919 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -0.196 0.395 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -191.829 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -239.937 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.701 0.488 setrgbcolor -gsave -72 36 288 288 rectclip -151.74 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -296.062 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.705 0.485 setrgbcolor -gsave -72 36 288 288 rectclip -288.044 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -247.955 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -175.794 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -280.026 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -272.008 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -167.776 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -263.99 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -255.972 154.264 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -199.761 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -183.656 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -175.603 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -167.551 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -191.708 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -223.918 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -207.813 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -215.866 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.222 0.339 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -231.971 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -240.023 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -296.39 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.419 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -288.338 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.253 0.742 0.448 setrgbcolor -gsave -72 36 288 288 rectclip -248.076 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.147 0.673 0.509 setrgbcolor -gsave -72 36 288 288 rectclip -280.285 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.404 0.8 0.363 setrgbcolor -gsave -72 36 288 288 rectclip -272.233 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -264.18 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.187 0.415 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -159.498 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -256.128 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -143.393 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.755 0.433 setrgbcolor -gsave -72 36 288 288 rectclip -151.446 149.435 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -175.517 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.312 0.768 0.416 setrgbcolor -gsave -72 36 288 288 rectclip -207.79 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -215.858 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -248.131 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.207 0.372 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -151.312 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.137 0.662 0.516 setrgbcolor -gsave -72 36 288 288 rectclip -199.721 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -280.403 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -223.926 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.296 0.762 0.424 setrgbcolor -gsave -72 36 288 288 rectclip -256.199 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -159.38 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -143.244 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.684 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -191.653 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.166 0.691 0.497 setrgbcolor -gsave -72 36 288 288 rectclip -264.267 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -231.994 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -183.585 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.154 0.68 0.504 setrgbcolor -gsave -72 36 288 288 rectclip -167.449 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.216 0.352 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -296.54 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.241 0.296 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -272.335 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -240.062 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.182 0.426 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -288.472 168.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -288.634 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -199.674 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -272.46 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.331 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -232.023 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -167.324 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -240.11 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -175.411 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -151.149 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -280.547 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -248.198 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -207.761 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -183.499 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -296.722 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -264.372 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.684 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -223.936 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -159.237 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -191.586 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -143.062 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.259 0.252 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -256.285 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.187 0.415 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -215.848 144.564 p0_0 -gsave -fill -grestore -stroke -grestore -0.196 0.395 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -183.427 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -167.221 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.407 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -232.047 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -296.873 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.187 0.415 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -288.769 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -280.666 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -175.324 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -264.46 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -191.531 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -240.15 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.159 0.482 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -272.563 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.684 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -142.911 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -223.944 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.196 0.395 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -256.356 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -248.253 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.84 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.201 0.384 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -199.634 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -159.118 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.694 0.494 setrgbcolor -gsave -72 36 288 288 rectclip -151.015 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -207.737 163.231 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -288.905 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -272.666 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.23 0.322 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -248.309 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -280.786 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -240.19 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -256.428 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.199 0.388 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -232.071 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -264.547 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.419 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -207.713 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -297.024 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -142.76 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.234 0.314 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -167.117 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -183.356 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -191.475 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -158.998 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.28 0.166 0.476 setrgbcolor -gsave -72 36 288 288 rectclip -199.594 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -150.879 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -175.237 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -215.832 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -223.951 181.971 p0_0 -gsave -fill -grestore -stroke -grestore -0.224 0.335 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -191.463 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.137 0.662 0.516 setrgbcolor -gsave -72 36 288 288 rectclip -223.953 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.253 0.742 0.448 setrgbcolor -gsave -72 36 288 288 rectclip -150.85 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.755 0.433 setrgbcolor -gsave -72 36 288 288 rectclip -183.341 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -158.973 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -297.056 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.237 0.305 0.542 setrgbcolor -gsave -72 36 288 288 rectclip -256.443 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.234 0.314 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -240.198 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -215.831 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -288.933 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -280.811 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.407 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -264.566 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -142.728 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -175.218 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.241 0.296 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -248.321 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -272.688 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.726 0.466 setrgbcolor -gsave -72 36 288 288 rectclip -199.586 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.331 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -167.095 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -207.708 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -232.076 139.651 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -191.407 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -175.13 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -0.234 0.314 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -183.268 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -280.931 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.407 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -272.792 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -240.238 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.552 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -207.684 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -223.961 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -150.714 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -142.576 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -215.823 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -0.233 0.732 0.459 setrgbcolor -gsave -72 36 288 288 rectclip -264.654 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -248.377 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -0.196 0.395 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -158.853 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -199.546 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -166.991 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -0.182 0.426 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -232.1 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -256.515 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -0.245 0.288 0.537 setrgbcolor -gsave -72 36 288 288 rectclip -289.07 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -297.208 158.39 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -256.588 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -281.052 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -183.196 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -199.505 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -272.897 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -264.742 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -207.66 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -0.198 0.392 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -191.351 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -166.887 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -215.815 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -0.218 0.347 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -297.361 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -248.433 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -223.969 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -240.278 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -175.041 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -232.124 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -0.182 0.426 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -158.732 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -142.423 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -150.578 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -289.206 177.202 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -207.655 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -289.235 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -248.445 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -175.023 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -256.603 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.698 0.491 setrgbcolor -gsave -72 36 288 288 rectclip -199.497 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -223.971 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -297.393 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -158.707 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -215.813 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.265 0.233 0.517 setrgbcolor -gsave -72 36 288 288 rectclip -183.181 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -272.919 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -166.865 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.312 0.768 0.416 setrgbcolor -gsave -72 36 288 288 rectclip -281.077 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.245 0.288 0.537 setrgbcolor -gsave -72 36 288 288 rectclip -142.391 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -191.339 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -150.549 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.684 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -264.761 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.755 0.433 setrgbcolor -gsave -72 36 288 288 rectclip -240.287 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -232.129 134.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.946 0.9 0.113 setrgbcolor -gsave -72 36 288 288 rectclip -289.343 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.282 0.09 0.412 setrgbcolor -gsave -72 36 288 288 rectclip -256.66 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -240.319 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -273.002 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -248.49 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -281.173 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -297.514 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.526 0.833 0.288 setrgbcolor -gsave -72 36 288 288 rectclip -264.831 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -142.27 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -199.465 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -191.294 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -158.611 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -166.782 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -207.636 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -223.977 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -183.123 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.14 0.666 0.513 setrgbcolor -gsave -72 36 288 288 rectclip -215.807 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -150.44 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.222 0.339 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -174.953 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.615 0.538 setrgbcolor -gsave -72 36 288 288 rectclip -232.148 196.089 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -207.631 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.644 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -191.282 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -248.501 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.236 0.31 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -281.198 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -150.411 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -142.237 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.262 0.242 0.521 setrgbcolor -gsave -72 36 288 288 rectclip -215.805 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.237 0.305 0.542 setrgbcolor -gsave -72 36 288 288 rectclip -264.85 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -199.456 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -273.024 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.44 0.811 0.341 setrgbcolor -gsave -72 36 288 288 rectclip -256.676 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -183.108 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -223.979 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -166.76 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.615 0.538 setrgbcolor -gsave -72 36 288 288 rectclip -232.153 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -240.327 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -289.372 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -158.586 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.356 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -174.934 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -297.547 153.506 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -174.845 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.211 0.364 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -166.654 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.265 0.233 0.517 setrgbcolor -gsave -72 36 288 288 rectclip -142.083 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.729 0.463 setrgbcolor -gsave -72 36 288 288 rectclip -289.51 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -281.32 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.182 0.426 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -158.464 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -150.274 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.252 0.27 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -232.177 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.304 0.765 0.42 setrgbcolor -gsave -72 36 288 288 rectclip -199.416 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -183.035 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -240.368 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -223.987 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -215.797 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -248.558 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -256.749 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -207.606 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -297.701 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -273.129 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -191.226 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -264.939 172.391 p0_0 -gsave -fill -grestore -stroke -grestore -0.259 0.252 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -166.632 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.252 0.27 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -150.244 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.147 0.673 0.509 setrgbcolor -gsave -72 36 288 288 rectclip -199.407 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -174.826 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -248.57 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.182 0.426 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -256.764 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -289.539 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.197 0.712 0.479 setrgbcolor -gsave -72 36 288 288 rectclip -240.376 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.386 0.795 0.373 setrgbcolor -gsave -72 36 288 288 rectclip -223.989 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -142.051 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -297.733 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.254 0.265 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -232.183 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -273.152 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -264.958 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -183.02 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -158.438 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -281.346 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -215.795 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -207.601 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -191.214 129.695 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -240.409 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.154 0.68 0.504 setrgbcolor -gsave -72 36 288 288 rectclip -223.995 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -191.169 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.698 0.491 setrgbcolor -gsave -72 36 288 288 rectclip -289.649 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -281.442 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -273.235 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -265.029 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.228 0.327 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -256.822 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -248.615 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -232.202 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -215.789 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.698 0.491 setrgbcolor -gsave -72 36 288 288 rectclip -297.855 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -199.375 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.245 0.288 0.537 setrgbcolor -gsave -72 36 288 288 rectclip -207.582 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -182.962 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.247 0.283 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -174.755 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.211 0.364 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -166.549 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.212 0.36 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -158.342 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.243 0.292 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -141.928 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -150.135 191.351 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -174.736 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.198 0.392 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -289.678 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.378 0.792 0.378 setrgbcolor -gsave -72 36 288 288 rectclip -297.888 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -182.946 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.246 0.739 0.452 setrgbcolor -gsave -72 36 288 288 rectclip -281.468 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -256.837 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -141.896 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -166.526 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -273.258 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.249 0.279 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -158.316 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.552 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -150.106 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -191.156 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -232.207 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -240.417 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.23 0.322 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -265.048 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -207.577 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -223.997 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.218 0.347 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -215.787 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.254 0.265 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -248.627 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -199.367 148.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.419 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -256.895 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -232.226 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -240.449 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.361 0.786 0.388 setrgbcolor -gsave -72 36 288 288 rectclip -248.672 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.245 0.288 0.537 setrgbcolor -gsave -72 36 288 288 rectclip -174.665 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.253 0.742 0.448 setrgbcolor -gsave -72 36 288 288 rectclip -215.78 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.187 0.415 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -166.442 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -273.342 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.265 0.233 0.517 setrgbcolor -gsave -72 36 288 288 rectclip -281.565 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -289.788 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -298.011 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -224.003 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.386 0.795 0.373 setrgbcolor -gsave -72 36 288 288 rectclip -265.119 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -141.773 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -182.888 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -149.996 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -199.334 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -191.111 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.208 0.719 0.473 setrgbcolor -gsave -72 36 288 288 rectclip -207.557 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -158.219 210.387 p0_0 -gsave -fill -grestore -stroke -grestore -0.211 0.364 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -289.817 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -281.59 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -166.42 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -158.193 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -240.458 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.211 0.364 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -273.364 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -265.138 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -256.911 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -248.685 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -298.043 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -149.967 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.249 0.279 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -141.74 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.404 0.8 0.363 setrgbcolor -gsave -72 36 288 288 rectclip -174.646 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -232.232 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.419 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.005 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.779 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -182.873 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.698 0.491 setrgbcolor -gsave -72 36 288 288 rectclip -207.552 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -191.099 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.241 0.296 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -199.326 167.537 p0_0 -gsave -fill -grestore -stroke -grestore -0.187 0.415 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -256.927 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -166.397 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -289.846 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -248.697 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -232.237 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -182.857 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -224.007 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.182 0.426 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -298.076 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -281.616 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.684 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -265.157 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -191.087 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.755 0.433 setrgbcolor -gsave -72 36 288 288 rectclip -174.627 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -215.777 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -273.386 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.722 0.47 setrgbcolor -gsave -72 36 288 288 rectclip -240.467 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -199.317 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.245 0.288 0.537 setrgbcolor -gsave -72 36 288 288 rectclip -141.707 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.147 0.673 0.509 setrgbcolor -gsave -72 36 288 288 rectclip -158.167 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.228 0.327 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -207.547 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -149.937 124.652 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -265.228 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -141.584 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -207.528 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.28 0.171 0.48 setrgbcolor -gsave -72 36 288 288 rectclip -256.985 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -248.742 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -240.499 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.237 0.305 0.542 setrgbcolor -gsave -72 36 288 288 rectclip -273.471 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.729 0.463 setrgbcolor -gsave -72 36 288 288 rectclip -232.256 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -224.013 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -298.199 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -215.77 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -199.285 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -191.042 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.705 0.485 setrgbcolor -gsave -72 36 288 288 rectclip -281.714 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -182.799 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -289.957 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -166.313 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.197 0.712 0.479 setrgbcolor -gsave -72 36 288 288 rectclip -158.07 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.246 0.739 0.452 setrgbcolor -gsave -72 36 288 288 rectclip -149.827 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -174.556 186.572 p0_0 -gsave -fill -grestore -stroke -grestore -0.253 0.742 0.448 setrgbcolor -gsave -72 36 288 288 rectclip -298.232 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.015 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -289.986 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -0.283 0.126 0.445 setrgbcolor -gsave -72 36 288 288 rectclip -265.247 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -257.001 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -174.537 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -0.344 0.78 0.397 setrgbcolor -gsave -72 36 288 288 rectclip -191.03 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -141.551 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -0.159 0.482 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -240.508 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -215.769 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -0.216 0.352 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -149.798 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -199.276 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -273.493 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -0.166 0.691 0.497 setrgbcolor -gsave -72 36 288 288 rectclip -232.261 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -0.296 0.762 0.424 setrgbcolor -gsave -72 36 288 288 rectclip -182.783 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.687 0.499 setrgbcolor -gsave -72 36 288 288 rectclip -158.044 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -166.29 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -207.522 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -281.74 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -0.254 0.265 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -248.754 143.608 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.356 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -281.837 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -174.465 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.356 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -257.059 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.722 0.47 setrgbcolor -gsave -72 36 288 288 rectclip -190.984 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.736 0.456 setrgbcolor -gsave -72 36 288 288 rectclip -248.8 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -0.196 0.395 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -157.946 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -215.762 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -149.687 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -207.503 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -0.247 0.283 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -199.243 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -265.319 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.701 0.488 setrgbcolor -gsave -72 36 288 288 rectclip -240.54 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -298.356 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -0.228 0.327 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -166.206 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -290.097 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -141.428 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.022 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -273.578 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -182.725 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -232.281 205.682 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -182.709 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -0.154 0.68 0.504 setrgbcolor -gsave -72 36 288 288 rectclip -207.498 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -240.549 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -290.126 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -0.279 0.175 0.483 setrgbcolor -gsave -72 36 288 288 rectclip -166.183 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -174.446 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -199.235 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -0.159 0.482 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -298.389 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -0.352 0.783 0.393 setrgbcolor -gsave -72 36 288 288 rectclip -141.394 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.331 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -273.601 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -0.218 0.347 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -248.812 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -157.92 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -215.76 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -224.023 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -0.361 0.786 0.388 setrgbcolor -gsave -72 36 288 288 rectclip -265.338 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -257.075 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -149.657 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -190.972 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.705 0.485 setrgbcolor -gsave -72 36 288 288 rectclip -232.286 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.722 0.47 setrgbcolor -gsave -72 36 288 288 rectclip -281.864 162.641 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.755 0.433 setrgbcolor -gsave -72 36 288 288 rectclip -273.623 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.232 0.318 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -281.89 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.615 0.538 setrgbcolor -gsave -72 36 288 288 rectclip -190.96 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.166 0.691 0.497 setrgbcolor -gsave -72 36 288 288 rectclip -290.156 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -207.492 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -248.824 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.257 0.256 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -265.357 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.274 0.752 0.437 setrgbcolor -gsave -72 36 288 288 rectclip -215.759 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.684 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -166.16 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.301 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -224.025 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.224 0.335 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -174.427 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -141.361 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.237 0.305 0.542 setrgbcolor -gsave -72 36 288 288 rectclip -149.628 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -257.091 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.194 0.399 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -157.894 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.224 0.335 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -199.226 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -182.693 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.644 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -232.291 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.705 0.485 setrgbcolor -gsave -72 36 288 288 rectclip -298.422 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -240.558 119.563 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -166.098 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -157.822 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.268 0.224 0.512 setrgbcolor -gsave -72 36 288 288 rectclip -215.754 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -224.03 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -199.202 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -174.374 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -190.926 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -232.306 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -298.513 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -290.238 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -281.962 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -182.65 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -141.27 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -273.686 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.701 0.488 setrgbcolor -gsave -72 36 288 288 rectclip -265.41 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -257.134 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -248.858 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.201 0.384 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -240.582 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -149.546 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -207.478 224.869 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -248.87 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -157.796 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -174.355 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -298.547 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -281.988 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -224.032 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -141.237 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.201 0.384 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -240.591 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.232 0.318 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -166.075 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -232.311 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -265.429 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -182.634 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.407 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -199.193 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -149.517 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -257.149 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.343 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -215.752 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -290.267 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -207.473 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -273.708 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -190.914 181.75 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -174.336 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.694 0.494 setrgbcolor -gsave -72 36 288 288 rectclip -166.053 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -282.014 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -232.316 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.344 0.78 0.397 setrgbcolor -gsave -72 36 288 288 rectclip -273.731 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.197 0.712 0.479 setrgbcolor -gsave -72 36 288 288 rectclip -182.619 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -157.77 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -149.487 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -257.165 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -190.902 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -224.033 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -207.467 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -290.297 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -199.184 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.269 0.219 0.51 setrgbcolor -gsave -72 36 288 288 rectclip -298.58 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.253 0.742 0.448 setrgbcolor -gsave -72 36 288 288 rectclip -141.204 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.267 0.228 0.514 setrgbcolor -gsave -72 36 288 288 rectclip -240.599 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -248.882 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -265.448 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.698 0.491 setrgbcolor -gsave -72 36 288 288 rectclip -215.75 138.594 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -182.559 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.264 0.238 0.519 setrgbcolor -gsave -72 36 288 288 rectclip -290.409 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -165.967 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -298.705 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.413 0.803 0.357 setrgbcolor -gsave -72 36 288 288 rectclip -190.856 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -199.152 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -282.113 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -207.448 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -257.224 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -157.671 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -215.744 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -273.817 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.04 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -232.336 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.216 0.352 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -149.375 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -240.632 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -265.52 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.201 0.384 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -141.079 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.497 0.826 0.306 setrgbcolor -gsave -72 36 288 288 rectclip -248.928 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -174.263 200.936 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.331 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -298.738 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -157.645 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -0.216 0.352 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -141.046 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -290.439 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -0.267 0.228 0.514 setrgbcolor -gsave -72 36 288 288 rectclip -149.345 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -224.042 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -240.641 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -165.944 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.736 0.456 setrgbcolor -gsave -72 36 288 288 rectclip -265.54 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -0.14 0.666 0.513 setrgbcolor -gsave -72 36 288 288 rectclip -174.244 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -182.544 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -199.143 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -232.341 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -215.742 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -273.839 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -257.24 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -190.843 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -0.369 0.789 0.383 setrgbcolor -gsave -72 36 288 288 rectclip -248.941 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -282.139 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -207.442 157.701 p0_0 -gsave -fill -grestore -stroke -grestore -0.205 0.376 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -248.953 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -290.469 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -165.922 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.205 0.376 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -265.559 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.14 0.666 0.513 setrgbcolor -gsave -72 36 288 288 rectclip -199.134 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -174.225 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -273.862 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.224 0.335 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -182.528 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.243 0.292 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -224.043 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -207.437 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -190.831 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -141.012 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.207 0.372 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -257.256 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.201 0.384 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -149.315 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.236 0.31 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -282.165 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -157.618 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -232.347 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -240.65 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -215.74 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -298.772 114.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -232.361 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -248.987 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.209 0.368 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -240.674 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.301 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -282.238 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -273.925 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -290.551 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -298.863 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.14 0.666 0.513 setrgbcolor -gsave -72 36 288 288 rectclip -265.612 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.261 0.247 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -257.299 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -224.048 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -157.546 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -207.423 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -149.233 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.198 0.392 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -174.171 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -182.484 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -190.797 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.328 0.774 0.407 setrgbcolor -gsave -72 36 288 288 rectclip -199.11 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -165.859 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -215.735 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -140.92 220.199 p0_0 -gsave -fill -grestore -stroke -grestore -0.14 0.666 0.513 setrgbcolor -gsave -72 36 288 288 rectclip -190.785 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -199.101 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -140.887 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.245 0.288 0.537 setrgbcolor -gsave -72 36 288 288 rectclip -207.417 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -290.581 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -149.203 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -265.632 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.252 0.27 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -257.315 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -273.948 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -157.519 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.736 0.456 setrgbcolor -gsave -72 36 288 288 rectclip -232.366 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -174.152 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -182.468 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -248.999 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -282.264 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.209 0.368 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -240.683 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.232 0.318 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -224.05 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -165.836 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.729 0.463 setrgbcolor -gsave -72 36 288 288 rectclip -215.734 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -298.897 176.885 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -149.173 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -190.772 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -182.452 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.25 0.274 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -232.372 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -298.931 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -140.853 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -207.412 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -199.092 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -224.052 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -157.493 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.644 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -215.732 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -174.133 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -240.692 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.289 0.758 0.428 setrgbcolor -gsave -72 36 288 288 rectclip -165.813 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.615 0.538 setrgbcolor -gsave -72 36 288 288 rectclip -290.611 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.687 0.499 setrgbcolor -gsave -72 36 288 288 rectclip -273.971 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -257.331 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -265.651 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.261 0.247 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -282.291 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -249.011 133.535 p0_0 -gsave -fill -grestore -stroke -grestore -0.159 0.482 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.057 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -199.068 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -282.364 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -274.034 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -165.75 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.689 0.865 0.183 setrgbcolor -gsave -72 36 288 288 rectclip -157.42 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -257.375 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -190.738 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -182.409 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -299.023 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.199 0.388 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -249.045 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -290.693 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -149.091 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -240.716 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.378 0.792 0.378 setrgbcolor -gsave -72 36 288 288 rectclip -207.398 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.727 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.694 0.494 setrgbcolor -gsave -72 36 288 288 rectclip -232.386 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -140.761 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -174.079 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.194 0.399 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -265.705 239.539 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.729 0.463 setrgbcolor -gsave -72 36 288 288 rectclip -274.057 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -240.725 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -249.058 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.216 0.352 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -232.392 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -282.39 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -290.723 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -224.058 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -199.059 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -299.057 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.615 0.538 setrgbcolor -gsave -72 36 288 288 rectclip -157.393 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -140.727 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -215.725 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -207.392 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -149.06 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -182.393 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.276 0.19 0.493 setrgbcolor -gsave -72 36 288 288 rectclip -190.726 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -174.06 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -165.727 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -257.391 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -265.724 196.147 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -257.407 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -282.417 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -299.09 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -265.744 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -174.04 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -290.754 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -249.07 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -274.08 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -240.734 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.182 0.426 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -149.03 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -190.714 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -182.377 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.724 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -232.397 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.23 0.322 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -199.05 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -140.694 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -157.367 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -207.387 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.208 0.719 0.473 setrgbcolor -gsave -72 36 288 288 rectclip -224.06 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -165.704 152.717 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -149 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -282.444 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.253 0.742 0.448 setrgbcolor -gsave -72 36 288 288 rectclip -157.34 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -140.66 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -199.041 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -240.742 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.301 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -190.701 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.722 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -224.062 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -257.423 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.218 0.347 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -207.382 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -290.784 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -174.021 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -265.763 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -274.103 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -299.124 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.211 0.364 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -182.361 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -249.083 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.407 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -165.68 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.202 0.715 0.476 setrgbcolor -gsave -72 36 288 288 rectclip -232.402 109.25 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -182.317 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.199 0.388 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -207.367 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.687 0.499 setrgbcolor -gsave -72 36 288 288 rectclip -299.217 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.705 0.485 setrgbcolor -gsave -72 36 288 288 rectclip -249.117 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -165.617 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.419 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -257.467 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -290.867 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.224 0.335 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -140.567 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.067 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.407 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -282.517 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.154 0.68 0.504 setrgbcolor -gsave -72 36 288 288 rectclip -157.267 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.241 0.296 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -148.917 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.259 0.252 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -232.417 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -240.767 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -265.817 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.253 0.742 0.448 setrgbcolor -gsave -72 36 288 288 rectclip -190.667 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.687 0.499 setrgbcolor -gsave -72 36 288 288 rectclip -199.017 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -274.167 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -215.717 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -173.967 215.486 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -190.654 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.552 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -157.24 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.555 0.84 0.269 setrgbcolor -gsave -72 36 288 288 rectclip -182.301 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -290.897 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -299.251 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -274.19 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -240.776 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.698 0.491 setrgbcolor -gsave -72 36 288 288 rectclip -215.715 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -265.836 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.729 0.463 setrgbcolor -gsave -72 36 288 288 rectclip -207.362 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -148.887 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.159 0.482 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -140.533 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -199.008 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.694 0.494 setrgbcolor -gsave -72 36 288 288 rectclip -249.129 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -232.422 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -257.483 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.069 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.194 0.399 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -173.947 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -165.594 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -282.543 171.977 p0_0 -gsave -fill -grestore -stroke -grestore -0.247 0.283 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -232.428 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.684 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -224.07 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -299.284 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -140.499 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.198 0.392 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -190.642 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.289 0.758 0.428 setrgbcolor -gsave -72 36 288 288 rectclip -198.999 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -165.571 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.407 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -290.927 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -182.285 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -215.713 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -282.57 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -157.214 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -173.928 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -274.213 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -240.785 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.705 0.485 setrgbcolor -gsave -72 36 288 288 rectclip -257.499 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.701 0.488 setrgbcolor -gsave -72 36 288 288 rectclip -148.856 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.253 0.742 0.448 setrgbcolor -gsave -72 36 288 288 rectclip -249.142 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.684 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -265.856 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -207.356 128.43 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -257.543 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -265.91 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.14 0.666 0.513 setrgbcolor -gsave -72 36 288 288 rectclip -291.011 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -173.874 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -182.241 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.28 0.171 0.48 setrgbcolor -gsave -72 36 288 288 rectclip -190.608 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.343 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -165.507 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -274.277 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.343 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -299.377 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -282.644 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -249.176 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.075 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -207.342 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.079 0.402 setrgbcolor -gsave -72 36 288 288 rectclip -240.809 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -215.708 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -140.406 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -157.14 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -148.773 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -198.975 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -232.442 234.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -249.189 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -148.743 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -157.113 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.264 0.238 0.519 setrgbcolor -gsave -72 36 288 288 rectclip -198.966 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.552 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -291.041 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.197 0.712 0.479 setrgbcolor -gsave -72 36 288 288 rectclip -232.448 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -190.595 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -240.818 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.419 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -140.372 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.202 0.715 0.476 setrgbcolor -gsave -72 36 288 288 rectclip -224.077 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.224 0.335 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -282.67 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.26 0.745 0.444 setrgbcolor -gsave -72 36 288 288 rectclip -274.3 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -173.854 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -165.484 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -257.559 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -215.707 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -265.93 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -299.411 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -207.336 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -182.225 191.315 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.684 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -182.209 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.407 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -299.445 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.212 0.36 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -198.957 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -224.079 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -274.323 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.228 0.327 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -140.338 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -165.46 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.234 0.314 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -190.583 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -232.453 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.684 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -249.201 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.331 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -207.331 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -157.086 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.228 0.327 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -215.705 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.202 0.715 0.476 setrgbcolor -gsave -72 36 288 288 rectclip -240.827 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -257.575 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.154 0.68 0.504 setrgbcolor -gsave -72 36 288 288 rectclip -173.835 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -148.712 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.331 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -291.071 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -265.949 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.283 0.111 0.432 setrgbcolor -gsave -72 36 288 288 rectclip -282.697 147.688 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.701 0.488 setrgbcolor -gsave -72 36 288 288 rectclip -198.948 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.698 0.491 setrgbcolor -gsave -72 36 288 288 rectclip -240.836 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -140.304 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.187 0.415 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -148.682 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -157.06 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.081 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.277 0.185 0.49 setrgbcolor -gsave -72 36 288 288 rectclip -207.325 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -291.102 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -190.57 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.166 0.691 0.497 setrgbcolor -gsave -72 36 288 288 rectclip -299.48 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -232.458 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.282 0.146 0.462 setrgbcolor -gsave -72 36 288 288 rectclip -282.724 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -165.437 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -182.192 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.14 0.666 0.513 setrgbcolor -gsave -72 36 288 288 rectclip -265.969 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -257.591 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -173.815 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -249.214 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -274.347 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.218 0.347 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -215.703 104.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -240.852 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -257.619 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -282.771 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -274.387 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -249.236 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -266.003 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.413 0.803 0.357 setrgbcolor -gsave -72 36 288 288 rectclip -140.245 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.274 0.752 0.437 setrgbcolor -gsave -72 36 288 288 rectclip -291.155 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -190.548 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.726 0.466 setrgbcolor -gsave -72 36 288 288 rectclip -165.397 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -157.013 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.271 0.214 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -182.164 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.25 0.274 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -198.932 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.687 0.499 setrgbcolor -gsave -72 36 288 288 rectclip -207.316 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -173.78 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -215.7 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -299.539 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -224.084 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -232.468 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.343 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -148.629 254.401 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -266.023 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -249.248 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -156.986 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -274.411 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.276 0.19 0.493 setrgbcolor -gsave -72 36 288 288 rectclip -232.473 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -198.923 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -190.536 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -282.798 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.222 0.339 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -173.761 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -224.086 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -291.186 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -207.311 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -257.636 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -148.598 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -240.861 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -182.148 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.209 0.368 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -215.698 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.301 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -165.373 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -299.573 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -140.211 210.731 p0_0 -gsave -fill -grestore -stroke -grestore -0.274 0.752 0.437 setrgbcolor -gsave -72 36 288 288 rectclip -182.132 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -249.261 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -291.216 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.198 0.392 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -190.523 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -299.607 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -173.741 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -198.914 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.644 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -140.177 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.352 0.783 0.393 setrgbcolor -gsave -72 36 288 288 rectclip -156.959 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.419 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -257.652 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.726 0.466 setrgbcolor -gsave -72 36 288 288 rectclip -240.87 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -282.825 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -165.35 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.361 0.786 0.388 setrgbcolor -gsave -72 36 288 288 rectclip -148.568 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -224.087 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -274.434 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.687 0.499 setrgbcolor -gsave -72 36 288 288 rectclip -232.479 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -207.305 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.698 0.491 setrgbcolor -gsave -72 36 288 288 rectclip -266.043 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -215.696 167.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.755 0.433 setrgbcolor -gsave -72 36 288 288 rectclip -266.063 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.698 0.491 setrgbcolor -gsave -72 36 288 288 rectclip -224.089 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.198 0.392 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -190.51 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.684 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -257.668 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -198.905 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -148.537 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -182.116 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -165.326 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.336 0.777 0.402 setrgbcolor -gsave -72 36 288 288 rectclip -156.932 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.224 0.335 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -215.695 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -249.273 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.487 0.824 0.312 setrgbcolor -gsave -72 36 288 288 rectclip -240.879 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -173.721 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -207.3 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.701 0.488 setrgbcolor -gsave -72 36 288 288 rectclip -274.457 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -299.641 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -282.852 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.187 0.415 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -291.247 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.218 0.347 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -140.142 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.687 0.499 setrgbcolor -gsave -72 36 288 288 rectclip -232.484 123.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -274.522 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -266.117 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -156.858 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.257 0.256 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -249.308 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -257.712 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -165.262 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -198.88 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -215.69 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.222 0.339 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -240.903 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.253 0.742 0.448 setrgbcolor -gsave -72 36 288 288 rectclip -299.735 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -140.049 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -291.331 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -148.453 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -190.476 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.202 0.715 0.476 setrgbcolor -gsave -72 36 288 288 rectclip -173.667 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -182.071 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.166 0.691 0.497 setrgbcolor -gsave -72 36 288 288 rectclip -224.094 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -207.285 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.187 0.415 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -232.499 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -282.926 230.227 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -232.504 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -207.28 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.289 0.758 0.428 setrgbcolor -gsave -72 36 288 288 rectclip -182.055 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.211 0.364 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -224.096 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -240.912 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -215.688 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -148.422 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -198.871 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -156.831 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -173.647 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -249.321 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.552 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -257.729 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -190.463 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.705 0.485 setrgbcolor -gsave -72 36 288 288 rectclip -140.014 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.694 0.494 setrgbcolor -gsave -72 36 288 288 rectclip -165.239 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -291.361 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.331 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -299.77 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -282.953 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.606 0.851 0.237 setrgbcolor -gsave -72 36 288 288 rectclip -266.137 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -274.545 186.439 p0_0 -gsave -fill -grestore -stroke -grestore -0.234 0.314 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -224.098 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.687 0.499 setrgbcolor -gsave -72 36 288 288 rectclip -165.215 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -173.627 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -274.569 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -198.862 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -299.804 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -240.921 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -139.98 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.736 0.456 setrgbcolor -gsave -72 36 288 288 rectclip -190.451 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.234 0.314 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -249.333 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -232.51 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -156.803 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.279 0.175 0.483 setrgbcolor -gsave -72 36 288 288 rectclip -182.039 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.328 0.774 0.407 setrgbcolor -gsave -72 36 288 288 rectclip -148.392 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -282.98 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.279 0.175 0.483 setrgbcolor -gsave -72 36 288 288 rectclip -291.392 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -207.274 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -266.157 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -257.745 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -215.686 142.614 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.687 0.499 setrgbcolor -gsave -72 36 288 288 rectclip -249.346 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.459 0.816 0.33 setrgbcolor -gsave -72 36 288 288 rectclip -173.607 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -198.853 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -207.269 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -156.776 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.304 0.765 0.42 setrgbcolor -gsave -72 36 288 288 rectclip -299.838 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -148.361 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -165.192 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.407 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -274.592 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -257.761 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -266.177 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -224.1 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.23 0.322 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -190.438 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -215.684 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -291.423 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -283.007 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -232.515 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.419 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -240.93 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -182.023 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.301 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -139.946 98.7514 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -190.416 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -198.838 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -266.211 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.243 0.292 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -181.994 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -283.055 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -274.633 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -257.79 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -207.259 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.616 0.853 0.23 setrgbcolor -gsave -72 36 288 288 rectclip -173.572 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -156.729 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -249.368 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -139.886 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -232.524 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -215.681 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -165.151 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -299.898 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -291.476 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -240.946 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -148.307 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.487 0.824 0.312 setrgbcolor -gsave -72 36 288 288 rectclip -224.103 249.802 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.615 0.538 setrgbcolor -gsave -72 36 288 288 rectclip -274.657 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -240.955 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -266.231 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -249.381 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.197 0.712 0.479 setrgbcolor -gsave -72 36 288 288 rectclip -283.082 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -291.507 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -257.806 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -232.53 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -299.933 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.159 0.482 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -139.851 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -148.277 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.14 0.666 0.513 setrgbcolor -gsave -72 36 288 288 rectclip -181.978 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.105 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.449 0.814 0.335 setrgbcolor -gsave -72 36 288 288 rectclip -198.829 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -173.553 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -165.127 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.196 0.395 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -215.679 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -207.254 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -156.702 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.946 0.9 0.113 setrgbcolor -gsave -72 36 288 288 rectclip -190.403 205.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.196 0.395 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -215.677 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -249.393 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -207.248 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -257.822 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.106 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -266.251 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -274.68 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -283.109 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -156.675 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.212 0.36 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -291.538 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.684 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -198.819 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -299.967 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -148.246 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -139.817 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.283 0.105 0.427 setrgbcolor -gsave -72 36 288 288 rectclip -190.391 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -181.962 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.694 0.494 setrgbcolor -gsave -72 36 288 288 rectclip -165.104 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -173.533 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.267 0.228 0.514 setrgbcolor -gsave -72 36 288 288 rectclip -232.535 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -240.964 162.027 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -181.945 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.701 0.488 setrgbcolor -gsave -72 36 288 288 rectclip -240.973 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -165.08 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.736 0.456 setrgbcolor -gsave -72 36 288 288 rectclip -173.513 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.28 0.171 0.48 setrgbcolor -gsave -72 36 288 288 rectclip -207.243 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.705 0.485 setrgbcolor -gsave -72 36 288 288 rectclip -249.406 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -257.839 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -274.704 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -215.676 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -283.136 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -232.541 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -156.647 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -148.215 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.755 0.433 setrgbcolor -gsave -72 36 288 288 rectclip -224.108 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -198.81 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -139.782 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.194 0.399 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -300.002 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.755 0.433 setrgbcolor -gsave -72 36 288 288 rectclip -190.378 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -266.271 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -291.569 118.083 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.552 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -198.795 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -190.356 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -240.989 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -207.234 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.222 0.339 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -165.039 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.154 0.68 0.504 setrgbcolor -gsave -72 36 288 288 rectclip -148.161 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.166 0.691 0.497 setrgbcolor -gsave -72 36 288 288 rectclip -291.623 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -249.428 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.487 0.824 0.312 setrgbcolor -gsave -72 36 288 288 rectclip -181.917 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -232.55 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.137 0.662 0.516 setrgbcolor -gsave -72 36 288 288 rectclip -257.867 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.615 0.538 setrgbcolor -gsave -72 36 288 288 rectclip -224.111 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.282 0.151 0.465 setrgbcolor -gsave -72 36 288 288 rectclip -173.478 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -274.745 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -300.062 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -283.184 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.212 0.36 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -156.6 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -139.722 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -215.672 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.237 0.305 0.542 setrgbcolor -gsave -72 36 288 288 rectclip -266.306 269.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.245 0.288 0.537 setrgbcolor -gsave -72 36 288 288 rectclip -139.688 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -156.573 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -207.228 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.194 0.399 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -148.13 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.671 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -224.113 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -165.015 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.687 0.499 setrgbcolor -gsave -72 36 288 288 rectclip -291.654 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -181.9 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.344 0.78 0.397 setrgbcolor -gsave -72 36 288 288 rectclip -300.096 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -173.458 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -274.769 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.273 0.205 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -240.998 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.283 0.141 0.458 setrgbcolor -gsave -72 36 288 288 rectclip -198.785 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -266.326 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -190.343 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -249.441 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -257.883 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -232.556 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -283.211 225.507 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -215.669 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.115 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -148.099 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -232.561 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -283.238 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.262 0.242 0.521 setrgbcolor -gsave -72 36 288 288 rectclip -207.223 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.726 0.466 setrgbcolor -gsave -72 36 288 288 rectclip -241.007 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.201 0.384 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -190.33 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -156.545 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.328 0.774 0.407 setrgbcolor -gsave -72 36 288 288 rectclip -181.884 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -173.438 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -198.776 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -139.653 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -164.992 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.687 0.499 setrgbcolor -gsave -72 36 288 288 rectclip -274.792 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -249.454 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -291.685 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.407 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -300.131 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -266.346 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -257.9 181.52 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -215.667 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.267 0.228 0.514 setrgbcolor -gsave -72 36 288 288 rectclip -181.868 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.224 0.335 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -190.317 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.137 0.662 0.516 setrgbcolor -gsave -72 36 288 288 rectclip -257.916 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -232.567 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -283.266 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -274.816 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.253 0.742 0.448 setrgbcolor -gsave -72 36 288 288 rectclip -173.418 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -300.166 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.117 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -148.068 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.312 0.768 0.416 setrgbcolor -gsave -72 36 288 288 rectclip -266.366 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -164.968 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -249.466 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.212 0.36 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -198.767 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.684 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -207.217 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -139.618 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -156.518 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -291.716 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.487 0.824 0.312 setrgbcolor -gsave -72 36 288 288 rectclip -241.017 137.494 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -173.398 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -207.212 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.228 0.327 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -198.758 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -215.665 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.161 0.473 setrgbcolor -gsave -72 36 288 288 rectclip -190.305 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.198 0.392 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -181.851 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -249.479 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -156.491 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -148.037 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.687 0.499 setrgbcolor -gsave -72 36 288 288 rectclip -232.572 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -266.386 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.252 0.27 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -274.84 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -139.584 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.119 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.234 0.314 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -257.933 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -283.293 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.218 0.347 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -164.944 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.208 0.719 0.473 setrgbcolor -gsave -72 36 288 288 rectclip -300.2 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -241.026 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -291.747 93.4306 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -190.282 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -147.983 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.243 0.292 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -198.742 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.736 0.456 setrgbcolor -gsave -72 36 288 288 rectclip -274.881 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -156.443 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -249.501 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -257.961 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.356 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -164.903 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.274 0.752 0.437 setrgbcolor -gsave -72 36 288 288 rectclip -300.261 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.684 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -173.363 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -207.202 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -266.421 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -224.122 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -241.042 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -139.523 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.546 0.838 0.276 setrgbcolor -gsave -72 36 288 288 rectclip -232.582 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.615 0.538 setrgbcolor -gsave -72 36 288 288 rectclip -181.822 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.253 0.742 0.448 setrgbcolor -gsave -72 36 288 288 rectclip -291.801 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.596 0.849 0.243 setrgbcolor -gsave -72 36 288 288 rectclip -283.341 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -215.662 245.162 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.615 0.538 setrgbcolor -gsave -72 36 288 288 rectclip -241.051 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -181.806 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.687 0.499 setrgbcolor -gsave -72 36 288 288 rectclip -173.342 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.752 0.875 0.143 setrgbcolor -gsave -72 36 288 288 rectclip -249.514 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -164.879 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.262 0.242 0.521 setrgbcolor -gsave -72 36 288 288 rectclip -139.488 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -266.441 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -156.415 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -257.978 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -147.952 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.546 0.838 0.276 setrgbcolor -gsave -72 36 288 288 rectclip -190.27 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -274.905 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -232.587 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -300.295 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -224.124 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.705 0.485 setrgbcolor -gsave -72 36 288 288 rectclip -291.832 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -215.66 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -207.197 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -283.368 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -198.733 201.092 p0_0 -gsave -fill -grestore -stroke -grestore -0.232 0.318 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -198.724 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.197 0.712 0.479 setrgbcolor -gsave -72 36 288 288 rectclip -173.322 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.209 0.368 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -291.863 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -249.527 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -156.388 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -181.79 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -224.125 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.356 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -232.593 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -266.461 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.658 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -283.396 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.202 0.715 0.476 setrgbcolor -gsave -72 36 288 288 rectclip -241.06 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -164.855 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -147.921 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -257.994 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -274.929 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -207.191 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.211 0.364 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -139.454 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -190.257 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -300.33 156.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -181.773 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -224.127 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -291.894 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.201 0.384 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -274.952 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -241.069 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -266.482 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.722 0.47 setrgbcolor -gsave -72 36 288 288 rectclip -147.89 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.698 0.491 setrgbcolor -gsave -72 36 288 288 rectclip -198.715 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -232.598 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -300.365 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.196 0.395 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -215.656 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -207.186 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -283.423 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.701 0.488 setrgbcolor -gsave -72 36 288 288 rectclip -173.302 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.267 0.749 0.441 setrgbcolor -gsave -72 36 288 288 rectclip -249.54 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -190.244 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -164.831 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -258.011 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -139.419 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -156.36 112.839 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -181.744 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.343 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -173.267 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -300.426 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -258.039 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.726 0.466 setrgbcolor -gsave -72 36 288 288 rectclip -198.699 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -249.562 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.653 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -283.471 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -266.517 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -274.994 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.187 0.415 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -147.835 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -207.176 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -291.948 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.131 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -190.222 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -139.358 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -232.608 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.154 0.68 0.504 setrgbcolor -gsave -72 36 288 288 rectclip -241.085 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -156.313 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.277 0.185 0.49 setrgbcolor -gsave -72 36 288 288 rectclip -164.79 264.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -147.804 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -164.766 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.236 0.31 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -241.094 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -215.651 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.232 0.318 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -224.132 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -156.285 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -232.613 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -139.323 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -266.537 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.701 0.488 setrgbcolor -gsave -72 36 288 288 rectclip -207.171 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.209 0.368 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -173.247 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -300.461 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.407 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -258.056 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -190.209 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -275.018 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -181.728 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -249.575 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -198.69 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -291.98 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -283.499 220.745 p0_0 -gsave -fill -grestore -stroke -grestore -0.236 0.31 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -300.496 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -266.557 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.267 0.228 0.514 setrgbcolor -gsave -72 36 288 288 rectclip -258.073 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -232.619 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -164.742 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -156.257 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -275.042 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -147.773 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.166 0.691 0.497 setrgbcolor -gsave -72 36 288 288 rectclip -173.227 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.343 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -241.103 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -283.526 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -249.588 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -139.288 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -292.011 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.729 0.463 setrgbcolor -gsave -72 36 288 288 rectclip -224.134 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.209 0.368 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -181.711 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.65 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -198.68 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -190.196 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.25 0.274 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -207.165 176.556 p0_0 -gsave -fill -grestore -stroke -grestore -0.194 0.399 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -292.042 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.243 0.292 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -300.53 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -164.718 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -266.577 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.273 0.205 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -275.066 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.236 0.31 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -181.695 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -283.554 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.256 0.261 0.528 setrgbcolor -gsave -72 36 288 288 rectclip -258.089 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -139.253 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.207 0.372 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -156.23 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.369 0.789 0.383 setrgbcolor -gsave -72 36 288 288 rectclip -241.113 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.201 0.384 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -198.671 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.32 0.771 0.411 setrgbcolor -gsave -72 36 288 288 rectclip -232.624 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.644 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -224.136 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -215.648 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -190.183 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.207 0.372 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -147.742 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.216 0.352 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -249.601 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.701 0.488 setrgbcolor -gsave -72 36 288 288 rectclip -173.206 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.212 0.36 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -207.159 132.328 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -283.582 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.269 0.219 0.51 setrgbcolor -gsave -72 36 288 288 rectclip -215.646 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -181.678 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.698 0.491 setrgbcolor -gsave -72 36 288 288 rectclip -173.186 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.138 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.722 0.47 setrgbcolor -gsave -72 36 288 288 rectclip -156.202 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -241.122 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -232.63 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.147 0.673 0.509 setrgbcolor -gsave -72 36 288 288 rectclip -292.074 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.684 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -249.614 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.256 0.261 0.528 setrgbcolor -gsave -72 36 288 288 rectclip -300.565 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.228 0.327 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -266.598 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -275.09 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -190.17 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -139.218 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.698 0.491 setrgbcolor -gsave -72 36 288 288 rectclip -147.71 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -258.106 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -164.694 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.283 0.1 0.422 setrgbcolor -gsave -72 36 288 288 rectclip -198.662 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.197 0.712 0.479 setrgbcolor -gsave -72 36 288 288 rectclip -207.154 88.0614 p0_0 -gsave -fill -grestore -stroke -grestore -0.196 0.395 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -215.645 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.459 0.816 0.33 setrgbcolor -gsave -72 36 288 288 rectclip -258.118 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -173.171 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -232.634 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -249.623 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.196 0.395 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -300.591 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.304 0.765 0.42 setrgbcolor -gsave -72 36 288 288 rectclip -207.15 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -147.687 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -275.107 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.23 0.322 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -266.613 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.694 0.494 setrgbcolor -gsave -72 36 288 288 rectclip -292.097 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.272 0.209 0.504 setrgbcolor -gsave -72 36 288 288 rectclip -283.602 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -198.655 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -164.676 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.208 0.719 0.473 setrgbcolor -gsave -72 36 288 288 rectclip -181.666 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.201 0.384 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -139.192 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -156.182 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.147 0.673 0.509 setrgbcolor -gsave -72 36 288 288 rectclip -241.129 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -190.161 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.241 0.296 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -224.139 284.713 p0_0 -gsave -fill -grestore -stroke -grestore -0.352 0.783 0.393 setrgbcolor -gsave -72 36 288 288 rectclip -198.646 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.194 0.399 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -190.148 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -249.636 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.413 0.803 0.357 setrgbcolor -gsave -72 36 288 288 rectclip -283.63 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -156.154 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.644 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -258.135 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.079 0.402 setrgbcolor -gsave -72 36 288 288 rectclip -207.144 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.209 0.368 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -139.157 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.141 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.736 0.456 setrgbcolor -gsave -72 36 288 288 rectclip -275.131 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -147.656 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -241.138 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.224 0.335 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -173.151 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -266.633 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -181.649 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -300.626 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.552 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -215.643 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.232 0.318 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -164.652 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.137 0.662 0.516 setrgbcolor -gsave -72 36 288 288 rectclip -292.128 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -232.639 240.479 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -258.151 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.197 0.712 0.479 setrgbcolor -gsave -72 36 288 288 rectclip -139.122 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -164.628 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -156.126 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.698 0.491 setrgbcolor -gsave -72 36 288 288 rectclip -147.624 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.275 0.195 0.496 setrgbcolor -gsave -72 36 288 288 rectclip -266.653 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -190.135 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -224.143 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -300.662 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.356 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -232.645 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -241.147 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.182 0.426 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -283.657 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -181.633 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -198.637 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -292.159 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -207.139 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.23 0.322 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -173.131 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -249.649 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.218 0.347 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -215.641 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -275.155 196.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -164.604 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -249.662 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.267 0.749 0.441 setrgbcolor -gsave -72 36 288 288 rectclip -241.156 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.705 0.485 setrgbcolor -gsave -72 36 288 288 rectclip -215.639 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -190.122 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.207 0.372 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -258.168 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -173.11 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.698 0.491 setrgbcolor -gsave -72 36 288 288 rectclip -292.191 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -198.627 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.137 0.662 0.516 setrgbcolor -gsave -72 36 288 288 rectclip -300.697 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.361 0.786 0.388 setrgbcolor -gsave -72 36 288 288 rectclip -156.099 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -283.685 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -275.179 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -181.616 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -224.145 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.209 0.368 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -139.087 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.736 0.456 setrgbcolor -gsave -72 36 288 288 rectclip -147.593 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -207.133 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -266.674 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -232.651 151.896 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -156.071 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -207.128 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -249.675 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -300.732 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -173.09 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -164.58 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -0.234 0.314 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -283.713 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -215.637 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.687 0.499 setrgbcolor -gsave -72 36 288 288 rectclip -292.222 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -147.561 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -266.694 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -190.109 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -198.618 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.552 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -139.052 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.729 0.463 setrgbcolor -gsave -72 36 288 288 rectclip -258.184 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -224.147 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -0.413 0.803 0.357 setrgbcolor -gsave -72 36 288 288 rectclip -181.599 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -241.166 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -275.203 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -232.656 107.547 p0_0 -gsave -fill -grestore -stroke -grestore -0.267 0.005 0.329 setrgbcolor -gsave -72 36 288 288 rectclip -224.15 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.228 0.327 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -164.539 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.147 0.673 0.509 setrgbcolor -gsave -72 36 288 288 rectclip -138.991 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -258.213 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.196 0.395 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -283.761 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -207.118 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.252 0.27 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -156.023 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.249 0.279 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -173.054 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -300.793 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -198.602 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.246 0.739 0.452 setrgbcolor -gsave -72 36 288 288 rectclip -190.086 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.28 0.166 0.476 setrgbcolor -gsave -72 36 288 288 rectclip -147.507 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -232.666 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -249.698 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.254 0.265 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -266.729 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -241.182 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.644 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -292.277 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -275.245 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.254 0.265 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -215.634 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.576 0.845 0.256 setrgbcolor -gsave -72 36 288 288 rectclip -181.57 260.294 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -198.593 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -224.152 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -258.23 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -232.671 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -266.75 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -249.711 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.632 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.236 0.31 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -138.956 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.202 0.715 0.476 setrgbcolor -gsave -72 36 288 288 rectclip -147.475 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -207.112 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.23 0.322 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -241.191 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.232 0.318 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -173.034 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.336 0.777 0.402 setrgbcolor -gsave -72 36 288 288 rectclip -275.269 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -300.828 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.211 0.364 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -181.554 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -292.309 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.615 0.538 setrgbcolor -gsave -72 36 288 288 rectclip -155.995 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -164.514 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -283.789 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.395 0.797 0.368 setrgbcolor -gsave -72 36 288 288 rectclip -190.073 215.939 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -224.154 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -181.537 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.736 0.456 setrgbcolor -gsave -72 36 288 288 rectclip -215.63 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -138.92 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -266.77 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -190.06 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -173.014 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.222 0.339 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -155.967 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -241.2 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -258.247 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.197 0.712 0.479 setrgbcolor -gsave -72 36 288 288 rectclip -300.863 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.336 0.777 0.402 setrgbcolor -gsave -72 36 288 288 rectclip -283.817 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -207.107 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.276 0.19 0.493 setrgbcolor -gsave -72 36 288 288 rectclip -292.34 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -164.49 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -232.677 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -198.584 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.694 0.494 setrgbcolor -gsave -72 36 288 288 rectclip -275.294 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -249.724 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -147.444 171.546 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -190.047 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -232.682 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.201 0.384 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -258.264 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -275.318 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -198.574 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.224 0.335 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -249.737 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -147.412 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.274 0.752 0.437 setrgbcolor -gsave -72 36 288 288 rectclip -207.101 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.331 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -164.466 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.497 0.826 0.306 setrgbcolor -gsave -72 36 288 288 rectclip -215.628 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.222 0.339 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -266.791 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.201 0.384 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -172.993 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -241.209 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -283.845 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.249 0.279 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -300.899 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -138.885 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -224.155 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -155.939 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -181.52 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -292.372 127.114 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -232.688 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -0.296 0.762 0.424 setrgbcolor -gsave -72 36 288 288 rectclip -300.934 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -147.38 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -207.096 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -0.212 0.36 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -198.565 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -164.442 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.419 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -181.503 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.157 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -275.342 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -190.034 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -138.85 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -155.911 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -0.159 0.482 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -258.28 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.726 0.466 setrgbcolor -gsave -72 36 288 288 rectclip -283.873 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -0.253 0.742 0.448 setrgbcolor -gsave -72 36 288 288 rectclip -172.973 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.407 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -241.219 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -215.627 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -0.267 0.749 0.441 setrgbcolor -gsave -72 36 288 288 rectclip -266.811 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -249.75 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -292.403 82.6431 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -275.36 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.627 0.855 0.223 setrgbcolor -gsave -72 36 288 288 rectclip -292.427 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.194 0.399 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -283.893 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -300.96 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -181.491 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -198.558 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -249.759 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -164.424 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.625 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -190.025 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.536 0.836 0.282 setrgbcolor -gsave -72 36 288 288 rectclip -207.092 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -147.357 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -155.891 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.154 0.68 0.504 setrgbcolor -gsave -72 36 288 288 rectclip -241.226 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.216 0.352 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -258.293 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -232.692 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -224.159 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -138.824 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.212 0.36 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -266.826 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -172.958 280.191 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -172.937 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.623 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.161 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -198.549 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -283.921 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.497 0.826 0.306 setrgbcolor -gsave -72 36 288 288 rectclip -258.309 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -275.384 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -300.996 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.243 0.292 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -147.325 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -232.698 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -190.012 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -181.474 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -266.847 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -207.086 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -138.788 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.224 0.335 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -241.235 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -155.863 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -292.458 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -164.4 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -249.772 235.754 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -258.326 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -292.49 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -275.408 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.211 0.364 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -249.785 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -241.244 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -232.703 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -283.949 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -266.867 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -189.999 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.162 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -198.539 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -138.753 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.431 0.808 0.346 setrgbcolor -gsave -72 36 288 288 rectclip -147.294 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.257 0.256 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -155.835 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.552 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -164.376 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -172.917 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.202 0.715 0.476 setrgbcolor -gsave -72 36 288 288 rectclip -181.458 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.283 0.121 0.441 setrgbcolor -gsave -72 36 288 288 rectclip -301.031 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.236 0.31 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -207.08 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.621 191.277 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -258.343 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -207.075 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -147.262 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -301.066 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.296 0.762 0.424 setrgbcolor -gsave -72 36 288 288 rectclip -232.709 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -292.522 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -198.53 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -241.254 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.197 0.712 0.479 setrgbcolor -gsave -72 36 288 288 rectclip -155.807 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -224.164 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.228 0.327 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -181.441 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -164.351 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.449 0.814 0.335 setrgbcolor -gsave -72 36 288 288 rectclip -138.717 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -283.977 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.694 0.494 setrgbcolor -gsave -72 36 288 288 rectclip -172.896 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -249.798 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.218 0.347 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -266.888 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -215.62 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.236 0.31 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -275.432 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -189.985 146.761 p0_0 -gsave -fill -grestore -stroke -grestore -0.14 0.666 0.513 setrgbcolor -gsave -72 36 288 288 rectclip -181.424 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -284.005 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.199 0.388 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -138.682 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.694 0.494 setrgbcolor -gsave -72 36 288 288 rectclip -147.23 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -241.263 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -258.36 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.159 0.482 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -198.521 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -292.553 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -155.779 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -207.069 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -189.972 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.166 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.246 0.739 0.452 setrgbcolor -gsave -72 36 288 288 rectclip -266.908 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.487 0.824 0.312 setrgbcolor -gsave -72 36 288 288 rectclip -164.327 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.249 0.279 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -275.457 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.208 0.719 0.473 setrgbcolor -gsave -72 36 288 288 rectclip -232.715 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -215.618 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.395 0.797 0.368 setrgbcolor -gsave -72 36 288 288 rectclip -172.876 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -301.102 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -249.811 102.207 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -266.944 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -301.164 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -0.228 0.327 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -241.279 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -0.14 0.666 0.513 setrgbcolor -gsave -72 36 288 288 rectclip -181.395 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -275.499 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -198.505 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -232.724 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -172.84 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -284.054 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -0.28 0.166 0.476 setrgbcolor -gsave -72 36 288 288 rectclip -207.06 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -0.296 0.762 0.424 setrgbcolor -gsave -72 36 288 288 rectclip -258.389 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.343 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -189.95 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -249.834 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -0.212 0.36 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -164.285 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -0.194 0.399 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -138.62 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -147.175 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.701 0.488 setrgbcolor -gsave -72 36 288 288 rectclip -292.609 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -0.194 0.399 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -155.73 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.614 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -224.169 255.65 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -292.641 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.147 0.673 0.509 setrgbcolor -gsave -72 36 288 288 rectclip -224.171 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -232.73 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.253 0.742 0.448 setrgbcolor -gsave -72 36 288 288 rectclip -301.199 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.312 0.768 0.416 setrgbcolor -gsave -72 36 288 288 rectclip -266.965 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -284.082 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -249.847 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -258.406 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.224 0.335 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -275.523 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -138.585 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -164.261 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -155.702 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -241.289 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -172.819 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.729 0.463 setrgbcolor -gsave -72 36 288 288 rectclip -189.937 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.352 0.783 0.393 setrgbcolor -gsave -72 36 288 288 rectclip -181.378 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -147.143 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.23 0.322 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -198.495 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -207.054 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.267 0.228 0.514 setrgbcolor -gsave -72 36 288 288 rectclip -215.613 211.09 p0_0 -gsave -fill -grestore -stroke -grestore -0.159 0.482 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -207.048 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -155.674 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.279 0.175 0.483 setrgbcolor -gsave -72 36 288 288 rectclip -224.173 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -147.111 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -181.361 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.722 0.47 setrgbcolor -gsave -72 36 288 288 rectclip -275.548 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.271 0.214 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -172.799 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.137 0.662 0.516 setrgbcolor -gsave -72 36 288 288 rectclip -258.423 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -215.611 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.209 0.368 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -284.11 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -198.486 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.208 0.719 0.473 setrgbcolor -gsave -72 36 288 288 rectclip -249.86 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.606 0.851 0.237 setrgbcolor -gsave -72 36 288 288 rectclip -241.298 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -292.672 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -189.923 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -138.549 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -266.985 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.478 0.821 0.318 setrgbcolor -gsave -72 36 288 288 rectclip -164.236 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -301.235 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -232.736 166.491 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -267.006 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -301.27 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -275.572 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -164.212 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -232.741 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -147.08 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.209 0.368 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -155.646 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.212 0.36 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -189.91 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.159 0.482 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -172.778 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.609 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.407 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -224.175 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -292.704 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.187 0.415 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -241.307 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -258.44 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -138.513 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -284.138 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.722 0.47 setrgbcolor -gsave -72 36 288 288 rectclip -249.873 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -207.043 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.212 0.36 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -181.344 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -198.476 121.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -172.742 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -258.469 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -267.042 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.296 0.762 0.424 setrgbcolor -gsave -72 36 288 288 rectclip -189.887 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -147.024 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -138.451 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.361 0.786 0.388 setrgbcolor -gsave -72 36 288 288 rectclip -292.76 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -207.033 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -249.896 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -198.46 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.468 0.819 0.324 setrgbcolor -gsave -72 36 288 288 rectclip -301.332 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.722 0.47 setrgbcolor -gsave -72 36 288 288 rectclip -232.751 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -241.324 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.694 0.494 setrgbcolor -gsave -72 36 288 288 rectclip -181.315 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -164.169 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -284.187 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -155.597 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.178 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -275.614 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.606 275.629 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -181.298 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.701 0.488 setrgbcolor -gsave -72 36 288 288 rectclip -215.604 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -258.486 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -267.062 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.736 0.456 setrgbcolor -gsave -72 36 288 288 rectclip -164.145 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -224.18 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -301.368 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.755 0.433 setrgbcolor -gsave -72 36 288 288 rectclip -138.416 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -292.792 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -207.027 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.207 0.372 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -172.721 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.199 0.388 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -189.874 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.552 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -146.992 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -249.909 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -241.333 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -275.639 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.413 0.803 0.357 setrgbcolor -gsave -72 36 288 288 rectclip -284.215 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.289 0.758 0.428 setrgbcolor -gsave -72 36 288 288 rectclip -155.569 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -232.757 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -198.451 230.985 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.331 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -207.022 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.182 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.516 0.831 0.294 setrgbcolor -gsave -72 36 288 288 rectclip -181.281 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.137 0.662 0.516 setrgbcolor -gsave -72 36 288 288 rectclip -215.602 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.301 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -232.762 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -164.121 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.147 0.673 0.509 setrgbcolor -gsave -72 36 288 288 rectclip -241.342 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -198.441 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.216 0.352 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -172.701 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.197 0.712 0.479 setrgbcolor -gsave -72 36 288 288 rectclip -189.861 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -155.54 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -267.083 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.336 0.777 0.402 setrgbcolor -gsave -72 36 288 288 rectclip -284.243 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.701 0.488 setrgbcolor -gsave -72 36 288 288 rectclip -249.923 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -301.404 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -258.503 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -292.824 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -146.96 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -138.38 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -275.663 186.302 p0_0 -gsave -fill -grestore -stroke -grestore -0.14 0.666 0.513 setrgbcolor -gsave -72 36 288 288 rectclip -241.352 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -207.016 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -138.344 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.705 0.485 setrgbcolor -gsave -72 36 288 288 rectclip -224.184 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -146.928 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.419 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -198.432 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -249.936 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -301.44 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -189.848 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -258.52 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -267.104 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.687 0.499 setrgbcolor -gsave -72 36 288 288 rectclip -181.264 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -292.856 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -284.272 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -172.68 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -164.096 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -232.768 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -155.512 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -215.6 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -275.688 141.579 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -224.186 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -258.537 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -146.896 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -138.308 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -267.124 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -292.888 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -198.423 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -0.211 0.364 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -301.475 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -189.835 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -249.949 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -0.208 0.719 0.473 setrgbcolor -gsave -72 36 288 288 rectclip -241.361 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -207.01 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -215.598 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -284.3 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -155.484 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -0.478 0.821 0.318 setrgbcolor -gsave -72 36 288 288 rectclip -232.774 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -172.659 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -164.072 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -181.247 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -0.212 0.36 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -275.712 96.8177 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -207 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.237 0.305 0.542 setrgbcolor -gsave -72 36 288 288 rectclip -241.378 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.201 0.384 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -267.161 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -258.566 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -249.972 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.194 0.399 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -189.812 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.222 0.339 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -215.595 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -181.218 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -275.755 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -164.029 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -284.349 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.237 0.305 0.542 setrgbcolor -gsave -72 36 288 288 rectclip -292.943 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.343 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -155.435 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.137 0.662 0.516 setrgbcolor -gsave -72 36 288 288 rectclip -146.84 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.196 0.395 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -138.246 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -224.189 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -172.623 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.198 0.392 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -198.406 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.586 0.847 0.25 setrgbcolor -gsave -72 36 288 288 rectclip -232.783 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -301.538 250.963 p0_0 -gsave -fill -grestore -stroke -grestore -0.187 0.415 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -215.593 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -172.602 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -198.397 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.275 0.195 0.496 setrgbcolor -gsave -72 36 288 288 rectclip -206.995 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.224 0.335 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -284.377 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -146.808 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -275.779 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -292.976 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -181.201 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.14 0.666 0.513 setrgbcolor -gsave -72 36 288 288 rectclip -189.799 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.212 0.36 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -138.21 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.552 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -301.574 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -232.789 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.202 0.715 0.476 setrgbcolor -gsave -72 36 288 288 rectclip -267.181 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -249.985 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.191 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -164.004 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.296 0.762 0.424 setrgbcolor -gsave -72 36 288 288 rectclip -155.406 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -258.583 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -241.387 206.195 p0_0 -gsave -fill -grestore -stroke -grestore -0.228 0.327 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -198.387 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.44 0.811 0.341 setrgbcolor -gsave -72 36 288 288 rectclip -284.406 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -267.202 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -293.008 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -275.804 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.254 0.265 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -146.776 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.216 0.352 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -189.785 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -224.193 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -258.6 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.234 0.314 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -155.378 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -215.591 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -232.795 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -206.989 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.154 0.68 0.504 setrgbcolor -gsave -72 36 288 288 rectclip -249.998 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.369 0.789 0.383 setrgbcolor -gsave -72 36 288 288 rectclip -163.98 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.644 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -138.174 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.265 0.233 0.517 setrgbcolor -gsave -72 36 288 288 rectclip -172.582 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -301.61 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -241.397 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -181.184 161.388 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -206.983 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.245 0.288 0.537 setrgbcolor -gsave -72 36 288 288 rectclip -232.8 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -301.645 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -241.406 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.644 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -293.04 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.202 0.715 0.476 setrgbcolor -gsave -72 36 288 288 rectclip -146.744 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -284.434 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.25 0.274 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -181.166 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.147 0.673 0.509 setrgbcolor -gsave -72 36 288 288 rectclip -250.012 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -258.617 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -215.589 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -172.561 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -189.772 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -138.138 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -275.829 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.14 0.666 0.513 setrgbcolor -gsave -72 36 288 288 rectclip -155.35 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.187 0.415 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.195 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -198.378 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.247 0.283 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -267.223 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -163.955 116.542 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -267.259 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.352 0.783 0.393 setrgbcolor -gsave -72 36 288 288 rectclip -224.198 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -215.586 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -163.912 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -198.361 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -301.708 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -284.484 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.212 0.36 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -138.076 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.246 0.739 0.452 setrgbcolor -gsave -72 36 288 288 rectclip -206.974 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -293.096 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.197 0.712 0.479 setrgbcolor -gsave -72 36 288 288 rectclip -172.525 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -181.137 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -155.3 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -189.749 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -232.81 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -241.422 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.698 0.491 setrgbcolor -gsave -72 36 288 288 rectclip -275.871 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -146.688 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -258.647 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -250.035 271.024 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -206.968 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -189.736 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -155.272 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -275.896 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.668 0.862 0.196 setrgbcolor -gsave -72 36 288 288 rectclip -181.12 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -284.512 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.23 0.322 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -301.744 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.328 0.774 0.407 setrgbcolor -gsave -72 36 288 288 rectclip -232.816 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -293.128 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.726 0.466 setrgbcolor -gsave -72 36 288 288 rectclip -172.504 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.197 0.712 0.479 setrgbcolor -gsave -72 36 288 288 rectclip -250.048 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -241.432 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -267.28 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -215.584 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -258.664 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.212 0.36 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -146.656 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -163.888 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.236 0.31 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -224.2 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -138.04 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.084 0.407 setrgbcolor -gsave -72 36 288 288 rectclip -198.352 226.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -155.243 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.196 0.395 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -275.921 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.202 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.243 0.292 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -138.004 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -146.623 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -163.863 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -172.483 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -189.723 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -198.342 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -206.962 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.147 0.673 0.509 setrgbcolor -gsave -72 36 288 288 rectclip -215.582 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.705 0.485 setrgbcolor -gsave -72 36 288 288 rectclip -181.103 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.273 0.205 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -232.822 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -250.061 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -258.681 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -267.301 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -284.541 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -293.16 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -301.78 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -241.441 181.28 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -284.569 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -163.838 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.378 0.792 0.378 setrgbcolor -gsave -72 36 288 288 rectclip -267.322 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.344 0.78 0.397 setrgbcolor -gsave -72 36 288 288 rectclip -275.945 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.253 0.742 0.448 setrgbcolor -gsave -72 36 288 288 rectclip -155.215 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.407 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -137.968 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -293.193 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -301.816 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.256 0.261 0.528 setrgbcolor -gsave -72 36 288 288 rectclip -146.591 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -250.075 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -258.698 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -189.709 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.232 0.318 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -198.333 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -241.451 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.301 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -215.58 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.615 0.538 setrgbcolor -gsave -72 36 288 288 rectclip -206.956 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.698 0.491 setrgbcolor -gsave -72 36 288 288 rectclip -224.204 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -181.086 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -172.462 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -232.827 136.349 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -155.137 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.516 0.831 0.294 setrgbcolor -gsave -72 36 288 288 rectclip -293.281 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -284.647 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -276.013 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -267.379 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -146.503 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.283 0.131 0.449 setrgbcolor -gsave -72 36 288 288 rectclip -258.745 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -137.868 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -163.771 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -206.941 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -232.843 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -241.477 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.615 0.538 setrgbcolor -gsave -72 36 288 288 rectclip -224.209 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -172.405 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.187 0.415 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -215.575 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.233 0.732 0.459 setrgbcolor -gsave -72 36 288 288 rectclip -301.915 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -198.307 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -189.673 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.182 0.426 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -250.111 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -181.039 246.232 p0_0 -gsave -fill -grestore -stroke -grestore -0.245 0.288 0.537 setrgbcolor -gsave -72 36 288 288 rectclip -137.832 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -146.47 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -163.746 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -181.022 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.233 0.732 0.459 setrgbcolor -gsave -72 36 288 288 rectclip -224.211 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -189.659 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.156 0.469 setrgbcolor -gsave -72 36 288 288 rectclip -198.297 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.726 0.466 setrgbcolor -gsave -72 36 288 288 rectclip -206.935 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.705 0.485 setrgbcolor -gsave -72 36 288 288 rectclip -215.573 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.166 0.691 0.497 setrgbcolor -gsave -72 36 288 288 rectclip -155.108 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -172.384 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.687 0.499 setrgbcolor -gsave -72 36 288 288 rectclip -232.849 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.253 0.742 0.448 setrgbcolor -gsave -72 36 288 288 rectclip -258.762 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.701 0.488 setrgbcolor -gsave -72 36 288 288 rectclip -301.952 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -293.314 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.698 0.491 setrgbcolor -gsave -72 36 288 288 rectclip -284.676 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -241.487 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.419 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -267.4 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.159 0.482 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -250.124 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -276.038 201.255 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.407 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -301.988 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -198.288 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -276.063 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -206.929 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.312 0.768 0.416 setrgbcolor -gsave -72 36 288 288 rectclip -181.004 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.571 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -267.421 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -293.346 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -284.704 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.222 0.339 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -224.213 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -189.646 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -258.779 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -250.138 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.694 0.494 setrgbcolor -gsave -72 36 288 288 rectclip -241.496 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.196 0.395 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -137.796 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.615 0.538 setrgbcolor -gsave -72 36 288 288 rectclip -172.363 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.197 0.712 0.479 setrgbcolor -gsave -72 36 288 288 rectclip -163.721 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.194 0.399 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -155.079 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.343 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -146.438 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -232.854 156.239 p0_0 -gsave -fill -grestore -stroke -grestore -0.205 0.376 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -232.86 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -137.76 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.209 0.368 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -146.405 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.194 0.399 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -155.051 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -284.733 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -163.696 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.234 0.314 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -172.342 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -180.987 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.331 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -276.088 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.259 0.252 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -241.506 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.196 0.395 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -198.278 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -267.442 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -258.797 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -250.151 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.726 0.466 setrgbcolor -gsave -72 36 288 288 rectclip -206.924 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.249 0.279 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -224.215 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -189.633 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.569 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -293.379 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -302.024 111.183 p0_0 -gsave -fill -grestore -stroke -grestore -0.378 0.792 0.378 setrgbcolor -gsave -72 36 288 288 rectclip -206.914 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -189.609 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.378 0.792 0.378 setrgbcolor -gsave -72 36 288 288 rectclip -224.218 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -198.262 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -284.783 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -180.957 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -258.827 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -293.435 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -276.131 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -163.653 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -137.697 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.269 0.219 0.51 setrgbcolor -gsave -72 36 288 288 rectclip -146.349 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -155.001 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -241.522 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.228 0.327 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -250.174 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -302.087 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.262 0.242 0.521 setrgbcolor -gsave -72 36 288 288 rectclip -267.479 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -215.566 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -232.87 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.166 0.691 0.497 setrgbcolor -gsave -72 36 288 288 rectclip -172.305 266.376 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -232.876 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.262 0.242 0.521 setrgbcolor -gsave -72 36 288 288 rectclip -241.532 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -224.22 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.564 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -250.188 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -180.94 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.212 0.36 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -206.908 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.137 0.662 0.516 setrgbcolor -gsave -72 36 288 288 rectclip -198.252 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -189.596 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -267.5 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.304 0.765 0.42 setrgbcolor -gsave -72 36 288 288 rectclip -172.284 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -163.628 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.196 0.395 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -154.972 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -146.316 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.216 0.352 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -258.844 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.644 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -137.66 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -276.156 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -284.812 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -293.468 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -302.124 221.314 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -224.222 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.187 0.415 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -146.284 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.684 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -293.5 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -198.242 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.237 0.305 0.542 setrgbcolor -gsave -72 36 288 288 rectclip -284.84 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.729 0.463 setrgbcolor -gsave -72 36 288 288 rectclip -206.902 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -302.16 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.154 0.68 0.504 setrgbcolor -gsave -72 36 288 288 rectclip -276.181 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -267.521 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -258.861 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.211 0.364 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -180.923 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.422 0.806 0.352 setrgbcolor -gsave -72 36 288 288 rectclip -215.562 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.265 0.233 0.517 setrgbcolor -gsave -72 36 288 288 rectclip -250.201 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -241.541 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.232 0.318 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -172.263 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.237 0.305 0.542 setrgbcolor -gsave -72 36 288 288 rectclip -232.882 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -163.603 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -154.943 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -137.624 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -189.583 176.212 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -146.251 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -302.196 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.267 0.749 0.441 setrgbcolor -gsave -72 36 288 288 rectclip -224.224 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -198.233 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.199 0.388 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -293.533 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -180.906 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -137.587 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.331 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -284.869 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -189.569 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.694 0.494 setrgbcolor -gsave -72 36 288 288 rectclip -241.551 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.137 0.662 0.516 setrgbcolor -gsave -72 36 288 288 rectclip -163.578 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -276.206 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -206.896 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -172.242 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.283 0.126 0.445 setrgbcolor -gsave -72 36 288 288 rectclip -258.878 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -154.915 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.199 0.388 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -215.56 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -267.542 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -232.887 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -250.215 131.071 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -163.51 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -224.229 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.207 0.372 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -172.184 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.247 0.283 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -250.251 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -180.858 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.139 0.534 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -215.555 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -206.881 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -189.532 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -154.836 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.234 0.314 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -198.207 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -258.926 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -284.948 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -241.577 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -146.162 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -137.487 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -232.903 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -302.296 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -267.6 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -276.274 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.419 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -293.622 241.457 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -189.519 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -137.451 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -180.841 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.352 0.783 0.393 setrgbcolor -gsave -72 36 288 288 rectclip -172.163 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -163.485 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -146.129 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -154.807 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -293.655 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -198.197 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.701 0.488 setrgbcolor -gsave -72 36 288 288 rectclip -232.909 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.26 0.745 0.444 setrgbcolor -gsave -72 36 288 288 rectclip -284.977 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -276.299 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -267.621 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -258.943 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.301 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -250.265 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.216 0.352 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -241.587 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.231 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -302.333 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -215.553 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.161 0.473 setrgbcolor -gsave -72 36 288 288 rectclip -206.875 196.27 p0_0 -gsave -fill -grestore -stroke -grestore -0.268 0.224 0.512 setrgbcolor -gsave -72 36 288 288 rectclip -146.096 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -163.46 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -137.414 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -154.778 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -172.142 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.194 0.399 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -232.915 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.202 0.715 0.476 setrgbcolor -gsave -72 36 288 288 rectclip -276.324 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.222 0.339 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -293.688 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -241.597 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.147 0.673 0.509 setrgbcolor -gsave -72 36 288 288 rectclip -302.37 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -250.278 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.233 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -258.96 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.202 0.715 0.476 setrgbcolor -gsave -72 36 288 288 rectclip -267.642 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -215.551 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -180.824 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -198.187 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -285.006 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -206.869 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.182 0.426 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -189.505 151.042 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -241.623 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -250.315 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.552 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -259.008 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -146.006 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.198 0.392 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -137.314 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.526 0.833 0.288 setrgbcolor -gsave -72 36 288 288 rectclip -189.468 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -276.393 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -206.853 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -163.391 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -267.7 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -215.546 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -198.161 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -180.776 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -302.47 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -232.931 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -154.699 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.552 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -285.085 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -172.084 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -224.238 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.644 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -293.777 261.685 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -180.759 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -172.062 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -137.277 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -145.973 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.14 0.666 0.513 setrgbcolor -gsave -72 36 288 288 rectclip -198.151 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -163.366 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -154.67 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -189.455 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.249 0.279 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -241.633 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -206.847 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.271 0.214 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -250.329 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.246 0.739 0.452 setrgbcolor -gsave -72 36 288 288 rectclip -302.507 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.236 0.31 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -293.81 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -285.114 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -276.418 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -267.721 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.404 0.8 0.363 setrgbcolor -gsave -72 36 288 288 rectclip -259.025 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -232.936 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.211 0.364 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -224.24 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.233 0.732 0.459 setrgbcolor -gsave -72 36 288 288 rectclip -215.544 216.412 p0_0 -gsave -fill -grestore -stroke -grestore -0.205 0.376 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -145.941 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -232.942 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -0.264 0.238 0.519 setrgbcolor -gsave -72 36 288 288 rectclip -180.741 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.615 0.538 setrgbcolor -gsave -72 36 288 288 rectclip -172.041 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -189.441 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -0.147 0.673 0.509 setrgbcolor -gsave -72 36 288 288 rectclip -137.24 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -198.142 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -154.641 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -206.842 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -0.378 0.792 0.378 setrgbcolor -gsave -72 36 288 288 rectclip -163.341 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -215.542 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.242 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -0.256 0.261 0.528 setrgbcolor -gsave -72 36 288 288 rectclip -302.543 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -0.233 0.732 0.459 setrgbcolor -gsave -72 36 288 288 rectclip -250.342 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -267.743 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.331 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -285.143 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.644 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -293.843 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.552 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -241.642 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -0.205 0.376 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -259.043 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -276.443 171.097 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -276.468 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -145.908 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -206.836 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -259.06 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.449 0.814 0.335 setrgbcolor -gsave -72 36 288 288 rectclip -302.58 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.198 0.392 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -172.02 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -154.612 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.147 0.673 0.509 setrgbcolor -gsave -72 36 288 288 rectclip -224.244 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.209 0.368 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -285.172 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.644 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -241.652 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -163.316 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -232.948 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -267.764 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.14 0.666 0.513 setrgbcolor -gsave -72 36 288 288 rectclip -137.204 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -293.876 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.606 0.851 0.237 setrgbcolor -gsave -72 36 288 288 rectclip -215.54 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.209 0.368 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -250.356 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -189.428 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.159 0.482 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -180.724 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.32 0.771 0.411 setrgbcolor -gsave -72 36 288 288 rectclip -198.132 125.743 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -163.247 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -250.393 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -259.108 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.236 0.31 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -276.537 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -171.961 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -285.252 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.277 0.185 0.49 setrgbcolor -gsave -72 36 288 288 rectclip -180.676 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -145.817 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.419 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -137.103 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -189.391 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -154.532 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.196 0.395 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -302.681 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -267.822 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.449 0.814 0.335 setrgbcolor -gsave -72 36 288 288 rectclip -232.964 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.32 0.771 0.411 setrgbcolor -gsave -72 36 288 288 rectclip -224.249 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -293.966 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -241.678 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -206.82 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -198.105 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -215.535 236.638 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -250.407 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -171.94 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -189.377 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -163.221 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -285.281 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.212 0.36 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -259.125 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.211 0.364 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -241.688 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -180.659 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -198.096 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -267.844 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.208 0.719 0.473 setrgbcolor -gsave -72 36 288 288 rectclip -154.503 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -276.562 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -206.814 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -232.97 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -293.999 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -215.533 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -302.718 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -145.784 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.251 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.199 0.388 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -137.066 191.237 p0_0 -gsave -fill -grestore -stroke -grestore -0.182 0.426 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -232.976 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.705 0.485 setrgbcolor -gsave -72 36 288 288 rectclip -224.253 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -154.474 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -189.363 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -294.032 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -163.196 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.356 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -206.808 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -180.641 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -302.755 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -267.865 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -276.588 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.234 0.314 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -259.143 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -198.086 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -171.919 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.187 0.415 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -145.751 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -137.029 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -250.42 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -241.698 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.196 0.395 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -215.531 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -285.31 145.796 p0_0 -gsave -fill -grestore -stroke -grestore -0.344 0.78 0.397 setrgbcolor -gsave -72 36 288 288 rectclip -241.725 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -163.127 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.197 0.712 0.479 setrgbcolor -gsave -72 36 288 288 rectclip -294.123 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -215.525 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -198.059 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.343 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -189.326 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.395 0.797 0.368 setrgbcolor -gsave -72 36 288 288 rectclip -180.593 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -285.39 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -302.856 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.356 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -154.394 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -145.661 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.159 0.482 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -206.792 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.202 0.715 0.476 setrgbcolor -gsave -72 36 288 288 rectclip -224.258 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -276.657 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -171.86 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.154 0.68 0.504 setrgbcolor -gsave -72 36 288 288 rectclip -232.992 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -267.924 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -250.458 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -136.928 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -259.191 256.951 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -171.839 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -224.26 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.208 0.719 0.473 setrgbcolor -gsave -72 36 288 288 rectclip -259.208 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -136.891 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.736 0.456 setrgbcolor -gsave -72 36 288 288 rectclip -180.575 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -189.312 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.209 0.368 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -198.049 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -206.786 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -163.102 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.232 0.318 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -145.628 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -215.523 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -154.365 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.187 0.415 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -302.893 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.199 0.388 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -232.997 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -267.945 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -250.471 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -276.682 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -285.419 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -294.156 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -241.734 211.463 p0_0 -gsave -fill -grestore -stroke -grestore -0.208 0.719 0.473 setrgbcolor -gsave -72 36 288 288 rectclip -267.967 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.644 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -294.189 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -180.558 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -189.299 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -250.485 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -154.335 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -136.854 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -233.003 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.26 0.745 0.444 setrgbcolor -gsave -72 36 288 288 rectclip -276.708 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.521 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -206.781 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -302.93 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -171.817 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -198.04 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.249 0.279 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -145.594 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -259.226 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.262 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -163.076 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.084 0.407 setrgbcolor -gsave -72 36 288 288 rectclip -241.744 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -285.449 165.934 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -206.759 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -241.781 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -224.27 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -294.314 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -198.003 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.237 0.305 0.542 setrgbcolor -gsave -72 36 288 288 rectclip -189.248 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -233.025 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -215.514 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.407 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -268.047 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.209 0.368 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -250.536 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.202 0.715 0.476 setrgbcolor -gsave -72 36 288 288 rectclip -276.803 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -259.292 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.161 0.473 setrgbcolor -gsave -72 36 288 288 rectclip -180.492 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -136.715 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -154.226 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -162.981 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -145.47 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -303.069 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -171.737 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -285.558 231.774 p0_0 -gsave -fill -grestore -stroke -grestore -0.25 0.274 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -171.715 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.283 0.111 0.432 setrgbcolor -gsave -72 36 288 288 rectclip -259.309 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -162.956 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -189.234 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -250.55 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -180.474 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -268.069 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -224.272 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.404 0.8 0.363 setrgbcolor -gsave -72 36 288 288 rectclip -154.196 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.395 0.797 0.368 setrgbcolor -gsave -72 36 288 288 rectclip -276.828 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -197.993 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -285.588 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.687 0.499 setrgbcolor -gsave -72 36 288 288 rectclip -294.347 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -206.753 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -136.677 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.361 0.786 0.388 setrgbcolor -gsave -72 36 288 288 rectclip -215.512 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -145.437 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.552 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -303.106 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.182 0.426 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -233.031 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -241.79 186.158 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -303.144 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -136.64 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -0.269 0.219 0.51 setrgbcolor -gsave -72 36 288 288 rectclip -224.274 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.356 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -145.403 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -294.38 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -285.617 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -276.854 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -259.327 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -250.564 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -241.8 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -233.037 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -268.09 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -215.51 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -197.984 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.331 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -189.22 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -154.167 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.644 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -180.457 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -171.693 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -162.93 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -0.194 0.399 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -206.747 140.501 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -162.86 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -285.698 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.722 0.47 setrgbcolor -gsave -72 36 288 288 rectclip -233.053 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -171.634 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -136.538 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -241.827 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.356 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -154.086 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.282 0.151 0.465 setrgbcolor -gsave -72 36 288 288 rectclip -276.924 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.154 0.68 0.504 setrgbcolor -gsave -72 36 288 288 rectclip -294.472 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -268.15 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -250.601 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.615 0.538 setrgbcolor -gsave -72 36 288 288 rectclip -303.246 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -180.408 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.615 0.538 setrgbcolor -gsave -72 36 288 288 rectclip -197.957 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -206.731 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.233 0.732 0.459 setrgbcolor -gsave -72 36 288 288 rectclip -215.505 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -259.375 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.279 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -189.182 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.453 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -145.312 252.172 p0_0 -gsave -fill -grestore -stroke -grestore -0.276 0.044 0.37 setrgbcolor -gsave -72 36 288 288 rectclip -171.613 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.328 0.774 0.407 setrgbcolor -gsave -72 36 288 288 rectclip -276.949 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.228 0.327 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -285.727 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -180.391 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -162.835 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -189.169 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -136.5 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -294.505 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.156 0.469 setrgbcolor -gsave -72 36 288 288 rectclip -145.278 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -197.947 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -154.056 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -206.725 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -303.283 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -233.059 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.404 0.8 0.363 setrgbcolor -gsave -72 36 288 288 rectclip -241.837 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.336 0.777 0.402 setrgbcolor -gsave -72 36 288 288 rectclip -259.393 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.503 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -268.171 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.328 0.774 0.407 setrgbcolor -gsave -72 36 288 288 rectclip -250.615 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -224.281 206.468 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -206.719 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.615 0.538 setrgbcolor -gsave -72 36 288 288 rectclip -197.937 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -189.155 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -268.193 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.736 0.456 setrgbcolor -gsave -72 36 288 288 rectclip -180.373 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.755 0.433 setrgbcolor -gsave -72 36 288 288 rectclip -171.591 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.552 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -215.501 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.199 0.388 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -154.027 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -145.245 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -136.463 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.273 0.205 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -162.809 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -276.975 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.241 0.296 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -303.321 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.32 0.771 0.411 setrgbcolor -gsave -72 36 288 288 rectclip -285.757 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.283 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.228 0.327 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -294.539 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -233.065 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -259.411 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.237 0.305 0.542 setrgbcolor -gsave -72 36 288 288 rectclip -241.847 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -250.629 160.723 p0_0 -gsave -fill -grestore -stroke -grestore -0.296 0.762 0.424 setrgbcolor -gsave -72 36 288 288 rectclip -189.103 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -206.697 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -215.494 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -268.274 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.247 0.283 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -259.477 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.198 0.392 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -136.323 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -197.9 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -162.713 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -294.664 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.233 0.732 0.459 setrgbcolor -gsave -72 36 288 288 rectclip -233.087 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.726 0.466 setrgbcolor -gsave -72 36 288 288 rectclip -241.884 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.29 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.14 0.666 0.513 setrgbcolor -gsave -72 36 288 288 rectclip -145.119 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -277.071 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -171.51 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -303.461 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -285.868 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.274 0.752 0.437 setrgbcolor -gsave -72 36 288 288 rectclip -180.306 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.273 0.205 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -250.681 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -153.916 226.864 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -303.499 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -294.698 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -285.897 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -277.097 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.147 0.673 0.509 setrgbcolor -gsave -72 36 288 288 rectclip -268.296 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -241.894 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.292 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -206.691 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -259.495 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -189.089 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -250.694 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.722 0.47 setrgbcolor -gsave -72 36 288 288 rectclip -145.086 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -153.887 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -162.687 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -233.093 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -197.89 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -136.285 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -180.289 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.211 0.364 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -171.488 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -215.492 181.031 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -250.746 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -277.193 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -206.669 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -268.377 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -171.406 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -144.96 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -303.64 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -233.115 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -153.775 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.552 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -162.591 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -180.222 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -0.272 0.209 0.504 setrgbcolor -gsave -72 36 288 288 rectclip -189.037 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -286.008 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -0.201 0.384 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -241.931 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -136.144 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -0.147 0.673 0.509 setrgbcolor -gsave -72 36 288 288 rectclip -224.3 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -0.166 0.691 0.497 setrgbcolor -gsave -72 36 288 288 rectclip -215.484 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -0.312 0.768 0.416 setrgbcolor -gsave -72 36 288 288 rectclip -197.853 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -294.824 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.705 0.485 setrgbcolor -gsave -72 36 288 288 rectclip -259.562 247.347 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -206.663 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -250.76 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -0.159 0.482 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -268.399 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -0.275 0.195 0.496 setrgbcolor -gsave -72 36 288 288 rectclip -233.121 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -241.941 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.407 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -197.843 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.302 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.552 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -215.482 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -277.219 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -189.024 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -259.58 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -136.106 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.301 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -286.038 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -303.677 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -153.746 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -0.289 0.758 0.428 setrgbcolor -gsave -72 36 288 288 rectclip -162.565 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -144.926 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -294.858 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -0.218 0.347 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -171.385 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -180.204 201.425 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -162.539 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.202 0.715 0.476 setrgbcolor -gsave -72 36 288 288 rectclip -171.363 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -180.186 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -189.01 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.232 0.318 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -197.833 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -153.716 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -206.657 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -215.48 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.304 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -233.127 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -303.715 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.137 0.662 0.516 setrgbcolor -gsave -72 36 288 288 rectclip -250.774 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -144.892 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.233 0.732 0.459 setrgbcolor -gsave -72 36 288 288 rectclip -259.598 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.159 0.482 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -268.421 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -277.245 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -136.069 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -286.068 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.245 0.288 0.537 setrgbcolor -gsave -72 36 288 288 rectclip -294.892 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -241.951 155.462 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -215.473 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -197.796 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -250.826 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -206.634 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.137 0.662 0.516 setrgbcolor -gsave -72 36 288 288 rectclip -233.149 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.687 0.499 setrgbcolor -gsave -72 36 288 288 rectclip -135.927 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -188.957 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -241.988 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.701 0.488 setrgbcolor -gsave -72 36 288 288 rectclip -224.311 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.271 0.214 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -144.765 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.202 0.715 0.476 setrgbcolor -gsave -72 36 288 288 rectclip -180.119 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -171.281 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -153.604 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -162.442 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -259.665 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.197 0.712 0.479 setrgbcolor -gsave -72 36 288 288 rectclip -277.341 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.627 0.855 0.223 setrgbcolor -gsave -72 36 288 288 rectclip -286.18 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -295.018 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.207 0.372 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -303.857 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -268.503 221.907 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -197.786 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -250.84 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -241.998 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -233.155 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -224.313 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.471 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -206.628 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -171.259 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -188.944 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -180.101 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -162.416 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -153.574 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.422 0.806 0.352 setrgbcolor -gsave -72 36 288 288 rectclip -144.732 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.726 0.466 setrgbcolor -gsave -72 36 288 288 rectclip -135.889 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -259.683 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.596 0.544 setrgbcolor -gsave -72 36 288 288 rectclip -268.525 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -277.367 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.701 0.488 setrgbcolor -gsave -72 36 288 288 rectclip -295.052 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.236 0.31 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -286.21 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -303.895 175.855 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -295.179 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -197.748 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -0.134 0.549 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -286.322 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -135.747 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -233.178 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -0.224 0.335 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -277.465 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -144.604 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -153.462 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -162.319 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -268.607 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.321 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -206.606 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.694 0.494 setrgbcolor -gsave -72 36 288 288 rectclip -180.034 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -188.891 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -0.198 0.392 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -250.893 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -259.75 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -215.463 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -171.176 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -0.179 0.434 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -242.035 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -0.431 0.808 0.346 setrgbcolor -gsave -72 36 288 288 rectclip -304.037 242.477 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -188.877 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -153.432 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -259.768 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -242.045 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -268.629 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.268 0.224 0.512 setrgbcolor -gsave -72 36 288 288 rectclip -233.184 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.14 0.666 0.513 setrgbcolor -gsave -72 36 288 288 rectclip -277.491 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.283 0.136 0.453 setrgbcolor -gsave -72 36 288 288 rectclip -286.352 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.323 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.698 0.491 setrgbcolor -gsave -72 36 288 288 rectclip -295.214 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -215.461 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.282 0.146 0.462 setrgbcolor -gsave -72 36 288 288 rectclip -135.709 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.14 0.666 0.513 setrgbcolor -gsave -72 36 288 288 rectclip -304.075 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.615 0.538 setrgbcolor -gsave -72 36 288 288 rectclip -206.6 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.618 0.536 setrgbcolor -gsave -72 36 288 288 rectclip -197.738 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -250.907 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -171.154 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -144.57 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -162.293 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.386 0.795 0.373 setrgbcolor -gsave -72 36 288 288 rectclip -180.016 196.335 p0_0 -gsave -fill -grestore -stroke -grestore -0.413 0.803 0.357 setrgbcolor -gsave -72 36 288 288 rectclip -188.81 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -206.571 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.296 0.762 0.424 setrgbcolor -gsave -72 36 288 288 rectclip -171.049 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -153.289 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.197 0.712 0.479 setrgbcolor -gsave -72 36 288 288 rectclip -224.332 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.343 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -242.093 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -286.495 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.209 0.368 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -304.256 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -215.452 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -268.734 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.504 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -233.213 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -72 36 288 288 rectclip -250.973 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.25 0.274 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -144.408 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.147 0.673 0.509 setrgbcolor -gsave -72 36 288 288 rectclip -197.691 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.237 0.305 0.542 setrgbcolor -gsave -72 36 288 288 rectclip -259.854 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -135.528 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.205 0.376 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -162.169 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -277.615 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -179.93 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.253 0.742 0.448 setrgbcolor -gsave -72 36 288 288 rectclip -295.376 216.904 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -259.872 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.154 0.68 0.504 setrgbcolor -gsave -72 36 288 288 rectclip -250.988 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -135.489 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.187 0.415 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -268.756 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.334 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -233.219 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -277.641 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -242.103 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -215.45 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -304.294 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -286.525 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.552 0.553 setrgbcolor -gsave -72 36 288 288 rectclip -171.027 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.25 0.274 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -197.681 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -144.374 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -153.258 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -188.796 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.343 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -295.41 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.523 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -162.143 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.124 0.578 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -206.565 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -179.912 170.63 p0_0 -gsave -fill -grestore -stroke -grestore -0.174 0.445 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -153.145 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.722 0.47 setrgbcolor -gsave -72 36 288 288 rectclip -206.543 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -259.94 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -144.245 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -135.346 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.644 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -277.739 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.159 0.482 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -162.045 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -179.844 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -268.84 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -197.643 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.222 0.339 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -170.944 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -188.743 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.166 0.691 0.497 setrgbcolor -gsave -72 36 288 288 rectclip -286.639 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -215.442 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.147 0.673 0.509 setrgbcolor -gsave -72 36 288 288 rectclip -304.438 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -224.342 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.189 0.411 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -251.04 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -233.241 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.993 0.906 0.144 setrgbcolor -gsave -72 36 288 288 rectclip -295.538 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.256 0.261 0.528 setrgbcolor -gsave -72 36 288 288 rectclip -242.141 237.561 p0_0 -gsave -fill -grestore -stroke -grestore -0.201 0.384 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -135.307 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -215.44 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -295.573 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.633 0.53 setrgbcolor -gsave -72 36 288 288 rectclip -206.536 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -251.055 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.604 0.541 setrgbcolor -gsave -72 36 288 288 rectclip -197.633 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -277.766 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.198 0.392 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -188.729 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.395 0.797 0.368 setrgbcolor -gsave -72 36 288 288 rectclip -179.826 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -144.211 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -170.922 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.407 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -162.018 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -286.669 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.701 0.488 setrgbcolor -gsave -72 36 288 288 rectclip -304.476 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -153.115 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.159 0.482 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -242.151 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -259.958 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.167 0.464 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -233.247 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.611 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -224.344 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -268.862 191.196 p0_0 -gsave -fill -grestore -stroke -grestore -0.212 0.36 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -260.045 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.17 0.456 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -170.816 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.171 0.694 0.494 setrgbcolor -gsave -72 36 288 288 rectclip -152.97 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.129 0.563 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -144.047 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.224 0.335 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -161.893 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.222 0.339 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -179.739 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.352 0.783 0.393 setrgbcolor -gsave -72 36 288 288 rectclip -277.891 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.187 0.415 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.353 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -188.662 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.56 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -251.122 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.159 0.482 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -197.585 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -135.125 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.211 0.364 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -295.736 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.698 0.491 setrgbcolor -gsave -72 36 288 288 rectclip -286.813 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.262 0.242 0.521 setrgbcolor -gsave -72 36 288 288 rectclip -233.276 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -268.968 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.516 0.831 0.294 setrgbcolor -gsave -72 36 288 288 rectclip -206.508 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -304.659 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -215.43 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.212 0.36 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -242.199 211.852 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -215.421 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -161.768 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.194 0.399 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -170.71 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.272 0.209 0.504 setrgbcolor -gsave -72 36 288 288 rectclip -206.479 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.684 0.502 setrgbcolor -gsave -72 36 288 288 rectclip -251.19 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -179.652 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.222 0.339 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -242.247 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -260.132 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -278.016 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -233.305 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.545 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -143.883 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.363 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.253 0.742 0.448 setrgbcolor -gsave -72 36 288 288 rectclip -269.074 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.726 0.466 setrgbcolor -gsave -72 36 288 288 rectclip -134.941 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.224 0.335 0.548 setrgbcolor -gsave -72 36 288 288 rectclip -152.825 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -304.843 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -286.958 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -188.594 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -295.901 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -197.536 232.597 p0_0 -gsave -fill -grestore -stroke -grestore -0.272 0.209 0.504 setrgbcolor -gsave -72 36 288 288 rectclip -134.902 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.228 0.327 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -143.848 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.395 0.797 0.368 setrgbcolor -gsave -72 36 288 288 rectclip -304.882 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.197 0.712 0.479 setrgbcolor -gsave -72 36 288 288 rectclip -152.795 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.119 0.615 0.538 setrgbcolor -gsave -72 36 288 288 rectclip -197.526 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.15 0.677 0.507 setrgbcolor -gsave -72 36 288 288 rectclip -260.15 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.312 0.768 0.416 setrgbcolor -gsave -72 36 288 288 rectclip -269.097 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.626 0.533 setrgbcolor -gsave -72 36 288 288 rectclip -242.258 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -233.311 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.137 0.662 0.516 setrgbcolor -gsave -72 36 288 288 rectclip -278.043 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.222 0.339 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -224.365 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -286.989 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -215.419 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.166 0.691 0.497 setrgbcolor -gsave -72 36 288 288 rectclip -295.935 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -206.472 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.199 0.388 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -251.204 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.419 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -170.687 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -161.741 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.26 0.745 0.444 setrgbcolor -gsave -72 36 288 288 rectclip -188.58 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -179.634 186.008 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.574 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -242.306 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -161.615 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.593 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -170.58 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -233.34 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.201 0.384 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -143.683 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -197.478 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.132 0.655 0.52 setrgbcolor -gsave -72 36 288 288 rectclip -188.512 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.187 0.415 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -224.375 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -134.718 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.283 0.136 0.453 setrgbcolor -gsave -72 36 288 288 rectclip -215.409 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -251.272 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.131 0.556 0.552 setrgbcolor -gsave -72 36 288 288 rectclip -206.443 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -179.546 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.137 0.662 0.516 setrgbcolor -gsave -72 36 288 288 rectclip -305.066 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -260.238 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.181 0.43 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -269.203 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -278.169 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.191 0.708 0.482 setrgbcolor -gsave -72 36 288 288 rectclip -287.135 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.141 0.53 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -296.101 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -152.649 206.752 p0_0 -gsave -fill -grestore -stroke -grestore -0.576 0.845 0.256 setrgbcolor -gsave -72 36 288 288 rectclip -188.444 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.571 0.55 setrgbcolor -gsave -72 36 288 288 rectclip -305.252 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -179.458 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.158 0.486 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -260.325 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.243 0.292 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -242.355 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.726 0.466 setrgbcolor -gsave -72 36 288 288 rectclip -233.37 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.142 0.526 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -161.488 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -269.311 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.202 0.715 0.476 setrgbcolor -gsave -72 36 288 288 rectclip -152.503 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.197 0.712 0.479 setrgbcolor -gsave -72 36 288 288 rectclip -134.532 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.173 0.449 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -296.266 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.146 0.515 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -143.517 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.261 0.247 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -170.473 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -224.385 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.153 0.497 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -278.296 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -197.429 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.272 0.209 0.504 setrgbcolor -gsave -72 36 288 288 rectclip -215.399 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.161 0.479 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -206.414 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.148 0.512 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -287.281 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -251.34 227.586 p0_0 -gsave -fill -grestore -stroke -grestore -0.344 0.78 0.397 setrgbcolor -gsave -72 36 288 288 rectclip -170.342 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.257 0.256 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -197.369 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.289 0.758 0.428 setrgbcolor -gsave -72 36 288 288 rectclip -188.36 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.585 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -260.432 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.194 0.399 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -269.441 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.135 0.659 0.518 setrgbcolor -gsave -72 36 288 288 rectclip -278.45 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.281 0.755 0.433 setrgbcolor -gsave -72 36 288 288 rectclip -287.459 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.149 0.508 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -296.468 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.369 0.789 0.383 setrgbcolor -gsave -72 36 288 288 rectclip -305.477 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.155 0.493 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -233.405 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.282 0.146 0.462 setrgbcolor -gsave -72 36 288 288 rectclip -224.396 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.622 0.535 setrgbcolor -gsave -72 36 288 288 rectclip -215.387 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.168 0.46 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -206.378 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.705 0.485 setrgbcolor -gsave -72 36 288 288 rectclip -242.414 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.236 0.31 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -251.423 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.152 0.501 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -152.324 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -134.307 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.644 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -179.351 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -161.333 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.164 0.471 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -143.316 201.603 p0_0 -gsave -fill -grestore -stroke -grestore -0.198 0.392 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -206.349 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.138 0.537 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -242.464 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.567 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -305.664 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.143 0.669 0.511 setrgbcolor -gsave -72 36 288 288 rectclip -224.406 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -287.607 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.126 0.644 0.525 setrgbcolor -gsave -72 36 288 288 rectclip -278.578 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -215.378 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.22 0.343 0.549 setrgbcolor -gsave -72 36 288 288 rectclip -134.119 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.243 0.292 0.539 setrgbcolor -gsave -72 36 288 288 rectclip -233.435 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.192 0.403 0.556 setrgbcolor -gsave -72 36 288 288 rectclip -143.148 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.232 0.318 0.545 setrgbcolor -gsave -72 36 288 288 rectclip -188.291 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -269.55 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.13 0.651 0.522 setrgbcolor -gsave -72 36 288 288 rectclip -152.177 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.226 0.729 0.463 setrgbcolor -gsave -72 36 288 288 rectclip -251.492 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -161.205 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -170.234 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -197.32 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.176 0.441 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -260.521 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.199 0.388 0.555 setrgbcolor -gsave -72 36 288 288 rectclip -179.263 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.137 0.662 0.516 setrgbcolor -gsave -72 36 288 288 rectclip -296.636 222.526 p0_0 -gsave -fill -grestore -stroke -grestore -0.128 0.648 0.523 setrgbcolor -gsave -72 36 288 288 rectclip -287.936 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -0.184 0.422 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -297.009 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.607 0.54 setrgbcolor -gsave -72 36 288 288 rectclip -233.501 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -0.186 0.705 0.485 setrgbcolor -gsave -72 36 288 288 rectclip -278.864 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.582 0.547 setrgbcolor -gsave -72 36 288 288 rectclip -188.138 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -0.122 0.589 0.546 setrgbcolor -gsave -72 36 288 288 rectclip -242.573 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -0.239 0.736 0.456 setrgbcolor -gsave -72 36 288 288 rectclip -224.428 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -0.214 0.356 0.551 setrgbcolor -gsave -72 36 288 288 rectclip -215.356 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -0.12 0.6 0.543 setrgbcolor -gsave -72 36 288 288 rectclip -206.283 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -0.165 0.467 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -251.646 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -0.162 0.475 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -197.21 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -0.203 0.38 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -179.065 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -0.177 0.438 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -133.703 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -0.123 0.637 0.529 setrgbcolor -gsave -72 36 288 288 rectclip -260.718 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -0.125 0.64 0.527 setrgbcolor -gsave -72 36 288 288 rectclip -169.993 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -0.156 0.49 0.558 setrgbcolor -gsave -72 36 288 288 rectclip -160.92 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -0.136 0.541 0.554 setrgbcolor -gsave -72 36 288 288 rectclip -151.848 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -0.121 0.629 0.532 setrgbcolor -gsave -72 36 288 288 rectclip -269.791 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -0.336 0.777 0.402 setrgbcolor -gsave -72 36 288 288 rectclip -142.775 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -0.145 0.519 0.557 setrgbcolor -gsave -72 36 288 288 rectclip -306.081 217.417 p0_0 -gsave -fill -grestore -stroke -grestore -gsave -388.8 36 m -403.2 36 l -403.2 324 l -388.8 324 l -cl -1 setgray -fill -grestore -gsave - -388.8 36 translate -[1 0 0 1 0 0] concat -14.4 288 scale -/DataString 20 string def -20 400 8 [ 20 0 0 -400 0 400 ] -{ -currentfile DataString readhexstring pop -} bind false 3 colorimage -fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fd -e725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fde725fbe723fbe723fbe7 -23fbe723fbe723fbe723fbe723fbe723fbe723fbe723fbe723fbe723fbe723fbe723fbe723fbe723fbe723fbe723fbe723fbe723f8e621f8e621f8e621f8e621 -f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8 -e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f8e621f6e620f6e620f6e620f6e620f6e620f6e620f6e6 -20f6e620f6e620f6e620f6e620f6e620f6e620f6e620f6e620f6e620f6e620f6e620f6e620f6e620f4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61e -f4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4 -e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef4e61ef1e51df1e51df1e51df1e51df1e51df1e51df1e51df1e51df1e51df1e51df1e5 -1df1e51df1e51df1e51df1e51df1e51df1e51df1e51df1e51df1e51defe51cefe51cefe51cefe51cefe51cefe51cefe51cefe51cefe51cefe51cefe51cefe51c -efe51cefe51cefe51cefe51cefe51cefe51cefe51cefe51cefe51cefe51cefe51cefe51cefe51cefe51cefe51cefe51cefe51cefe51cefe51cefe51cefe51cef -e51cefe51cefe51cefe51cefe51cefe51cefe51cece51bece51bece51bece51bece51bece51bece51bece51bece51bece51bece51bece51bece51bece51bece5 -1bece51bece51bece51bece51bece51beae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51a -eae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aeae51aea -e51aeae51aeae51ae7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e4 -19e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419e7e419 -e5e419e5e419e5e419e5e419e5e419e5e419e5e419e5e419e5e419e5e419e5e419e5e419e5e419e5e419e5e419e5e419e5e419e5e419e5e419e5e419e2e418e2 -e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e4 -18e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418e2e418dfe318dfe318dfe318dfe318 -dfe318dfe318dfe318dfe318dfe318dfe318dfe318dfe318dfe318dfe318dfe318dfe318dfe318dfe318dfe318dfe318dde318dde318dde318dde318dde318dd -e318dde318dde318dde318dde318dde318dde318dde318dde318dde318dde318dde318dde318dde318dde318dde318dde318dde318dde318dde318dde318dde3 -18dde318dde318dde318dde318dde318dde318dde318dde318dde318dde318dde318dde318dde318dae319dae319dae319dae319dae319dae319dae319dae319 -dae319dae319dae319dae319dae319dae319dae319dae319dae319dae319dae319dae319d8e219d8e219d8e219d8e219d8e219d8e219d8e219d8e219d8e219d8 -e219d8e219d8e219d8e219d8e219d8e219d8e219d8e219d8e219d8e219d8e219d8e219d8e219d8e219d8e219d8e219d8e219d8e219d8e219d8e219d8e219d8e2 -19d8e219d8e219d8e219d8e219d8e219d8e219d8e219d8e219d8e219d5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21a -d5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5 -e21ad5e21ad5e21ad5e21ad5e21ad5e21ad5e21ad2e21bd2e21bd2e21bd2e21bd2e21bd2e21bd2e21bd2e21bd2e21bd2e21bd2e21bd2e21bd2e21bd2e21bd2e2 -1bd2e21bd2e21bd2e21bd2e21bd2e21bd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11c -d0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0e11cd0 -e11cd0e11cd0e11ccde11dcde11dcde11dcde11dcde11dcde11dcde11dcde11dcde11dcde11dcde11dcde11dcde11dcde11dcde11dcde11dcde11dcde11dcde1 -1dcde11dcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11f -cae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fcae11fc8e020c8 -e020c8e020c8e020c8e020c8e020c8e020c8e020c8e020c8e020c8e020c8e020c8e020c8e020c8e020c8e020c8e020c8e020c8e020c8e020c5e021c5e021c5e0 -21c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021 -c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c5e021c2df23c2df23c2df23c2df23c2df23c2 -df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df -23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c2df23c0df25c0df25c0df25c0df25c0df25c0df25c0df25c0df25 -c0df25c0df25c0df25c0df25c0df25c0df25c0df25c0df25c0df25c0df25c0df25c0df25bddf26bddf26bddf26bddf26bddf26bddf26bddf26bddf26bddf26bd -df26bddf26bddf26bddf26bddf26bddf26bddf26bddf26bddf26bddf26bddf26bddf26bddf26bddf26bddf26bddf26bddf26bddf26bddf26bddf26bddf26bddf -26bddf26bddf26bddf26bddf26bddf26bddf26bddf26bddf26bddf26bade28bade28bade28bade28bade28bade28bade28bade28bade28bade28bade28bade28 -bade28bade28bade28bade28bade28bade28bade28bade28b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8 -de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de29b8de -29b8de29b8de29b8de29b8de29b8de29b5de2bb5de2bb5de2bb5de2bb5de2bb5de2bb5de2bb5de2bb5de2bb5de2bb5de2bb5de2bb5de2bb5de2bb5de2bb5de2b -b5de2bb5de2bb5de2bb5de2bb2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2 -dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd2db2dd -2db2dd2db0dd2fb0dd2fb0dd2fb0dd2fb0dd2fb0dd2fb0dd2fb0dd2fb0dd2fb0dd2fb0dd2fb0dd2fb0dd2fb0dd2fb0dd2fb0dd2fb0dd2fb0dd2fb0dd2fb0dd2f -addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30ad -dc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30addc30aadc32aadc32aadc -32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32 -aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32aadc32a8db34a8db34a8db34a8db34a8db34a8 -db34a8db34a8db34a8db34a8db34a8db34a8db34a8db34a8db34a8db34a8db34a8db34a8db34a8db34a8db34a5db36a5db36a5db36a5db36a5db36a5db36a5db -36a5db36a5db36a5db36a5db36a5db36a5db36a5db36a5db36a5db36a5db36a5db36a5db36a5db36a5db36a5db36a5db36a5db36a5db36a5db36a5db36a5db36 -a5db36a5db36a5db36a5db36a5db36a5db36a5db36a5db36a5db36a5db36a5db36a5db36a2da37a2da37a2da37a2da37a2da37a2da37a2da37a2da37a2da37a2 -da37a2da37a2da37a2da37a2da37a2da37a2da37a2da37a2da37a2da37a2da37a0da39a0da39a0da39a0da39a0da39a0da39a0da39a0da39a0da39a0da39a0da -39a0da39a0da39a0da39a0da39a0da39a0da39a0da39a0da39a0da39a0da39a0da39a0da39a0da39a0da39a0da39a0da39a0da39a0da39a0da39a0da39a0da39 -a0da39a0da39a0da39a0da39a0da39a0da39a0da39a0da399dd93b9dd93b9dd93b9dd93b9dd93b9dd93b9dd93b9dd93b9dd93b9dd93b9dd93b9dd93b9dd93b9d -d93b9dd93b9dd93b9dd93b9dd93b9dd93b9dd93b9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd9 -3c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c9bd93c -9bd93c9bd93c9bd93c9bd93c98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98 -d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d83e98d8 -3e98d83e95d84095d84095d84095d84095d84095d84095d84095d84095d84095d84095d84095d84095d84095d84095d84095d84095d84095d84095d84095d840 -93d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193 -d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74193d74190d74390d74390d7 -4390d74390d74390d74390d74390d74390d74390d74390d74390d74390d74390d74390d74390d74390d74390d74390d74390d7438ed6458ed6458ed6458ed645 -8ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458e -d6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458ed6458bd6468bd6468bd6468bd6468bd6468bd6468bd6 -468bd6468bd6468bd6468bd6468bd6468bd6468bd6468bd6468bd6468bd6468bd6468bd6468bd64689d54889d54889d54889d54889d54889d54889d54889d548 -89d54889d54889d54889d54889d54889d54889d54889d54889d54889d54889d54889d54889d54889d54889d54889d54889d54889d54889d54889d54889d54889 -d54889d54889d54889d54889d54889d54889d54889d54889d54889d54889d54886d54986d54986d54986d54986d54986d54986d54986d54986d54986d54986d5 -4986d54986d54986d54986d54986d54986d54986d54986d54986d54984d44b84d44b84d44b84d44b84d44b84d44b84d44b84d44b84d44b84d44b84d44b84d44b -84d44b84d44b84d44b84d44b84d44b84d44b84d44b84d44b84d44b84d44b84d44b84d44b84d44b84d44b84d44b84d44b84d44b84d44b84d44b84d44b84d44b84 -d44b84d44b84d44b84d44b84d44b84d44b84d44b81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d3 -4d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d81d34d -81d34d81d34d81d34d81d34d7fd34e7fd34e7fd34e7fd34e7fd34e7fd34e7fd34e7fd34e7fd34e7fd34e7fd34e7fd34e7fd34e7fd34e7fd34e7fd34e7fd34e7f -d34e7fd34e7fd34e7cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2 -507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd2507cd250 -7ad1517ad1517ad1517ad1517ad1517ad1517ad1517ad1517ad1517ad1517ad1517ad1517ad1517ad1517ad1517ad1517ad1517ad1517ad1517ad15177d15377 -d15377d15377d15377d15377d15377d15377d15377d15377d15377d15377d15377d15377d15377d15377d15377d15377d15377d15377d15377d15377d15377d1 -5377d15377d15377d15377d15377d15377d15377d15377d15377d15377d15377d15377d15377d15377d15377d15377d15377d15375d05475d05475d05475d054 -75d05475d05475d05475d05475d05475d05475d05475d05475d05475d05475d05475d05475d05475d05475d05475d05473d05673d05673d05673d05673d05673 -d05673d05673d05673d05673d05673d05673d05673d05673d05673d05673d05673d05673d05673d05673d05673d05673d05673d05673d05673d05673d05673d0 -5673d05673d05673d05673d05673d05673d05673d05673d05673d05673d05673d05673d05673d05670cf5770cf5770cf5770cf5770cf5770cf5770cf5770cf57 -70cf5770cf5770cf5770cf5770cf5770cf5770cf5770cf5770cf5770cf5770cf5770cf576ece586ece586ece586ece586ece586ece586ece586ece586ece586e -ce586ece586ece586ece586ece586ece586ece586ece586ece586ece586ece586ece586ece586ece586ece586ece586ece586ece586ece586ece586ece586ece -586ece586ece586ece586ece586ece586ece586ece586ece586ece586ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a -6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6c -cd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a6ccd5a69cd5b69cd5b69cd5b69cd5b69cd5b69cd5b69cd5b69cd5b69cd5b69cd5b69cd5b69cd5b69cd5b69cd5b69cd -5b69cd5b69cd5b69cd5b69cd5b69cd5b67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c -67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67cc5c67 -cc5c67cc5c67cc5c65cb5e65cb5e65cb5e65cb5e65cb5e65cb5e65cb5e65cb5e65cb5e65cb5e65cb5e65cb5e65cb5e65cb5e65cb5e65cb5e65cb5e65cb5e65cb -5e65cb5e63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f -63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f63cb5f60ca6060 -ca6060ca6060ca6060ca6060ca6060ca6060ca6060ca6060ca6060ca6060ca6060ca6060ca6060ca6060ca6060ca6060ca6060ca6060ca605ec9625ec9625ec9 -625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec962 -5ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625ec9625cc8635cc8635cc8635cc8635cc8635c -c8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8 -635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635cc8635ac8645ac8645ac8645ac8645ac8645ac8645ac8645ac864 -5ac8645ac8645ac8645ac8645ac8645ac8645ac8645ac8645ac8645ac8645ac8645ac86458c76558c76558c76558c76558c76558c76558c76558c76558c76558 -c76558c76558c76558c76558c76558c76558c76558c76558c76558c76558c76558c76558c76558c76558c76558c76558c76558c76558c76558c76558c76558c7 -6558c76558c76558c76558c76558c76558c76558c76558c76558c76556c66756c66756c66756c66756c66756c66756c66756c66756c66756c66756c66756c667 -56c66756c66756c66756c66756c66756c66756c66756c66754c56854c56854c56854c56854c56854c56854c56854c56854c56854c56854c56854c56854c56854 -c56854c56854c56854c56854c56854c56854c56854c56854c56854c56854c56854c56854c56854c56854c56854c56854c56854c56854c56854c56854c56854c5 -6854c56854c56854c56854c56854c56852c56952c56952c56952c56952c56952c56952c56952c56952c56952c56952c56952c56952c56952c56952c56952c569 -52c56952c56952c56952c56950c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50 -c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c46a50c4 -6a50c46a4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b -4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4ec36b4cc26c4c -c26c4cc26c4cc26c4cc26c4cc26c4cc26c4cc26c4cc26c4cc26c4cc26c4cc26c4cc26c4cc26c4cc26c4cc26c4cc26c4cc26c4cc26c4cc26c4ac16d4ac16d4ac1 -6d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d -4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d4ac16d48c16e48c16e48c16e48c16e48c16e48 -c16e48c16e48c16e48c16e48c16e48c16e48c16e48c16e48c16e48c16e48c16e48c16e48c16e48c16e48c16e46c06f46c06f46c06f46c06f46c06f46c06f46c0 -6f46c06f46c06f46c06f46c06f46c06f46c06f46c06f46c06f46c06f46c06f46c06f46c06f46c06f46c06f46c06f46c06f46c06f46c06f46c06f46c06f46c06f -46c06f46c06f46c06f46c06f46c06f46c06f46c06f46c06f46c06f46c06f46c06f46c06f44bf7044bf7044bf7044bf7044bf7044bf7044bf7044bf7044bf7044 -bf7044bf7044bf7044bf7044bf7044bf7044bf7044bf7044bf7044bf7044bf7042be7142be7142be7142be7142be7142be7142be7142be7142be7142be7142be -7142be7142be7142be7142be7142be7142be7142be7142be7142be7142be7142be7142be7142be7142be7142be7142be7142be7142be7142be7142be7142be71 -42be7142be7142be7142be7142be7142be7142be7142be7140bd7240bd7240bd7240bd7240bd7240bd7240bd7240bd7240bd7240bd7240bd7240bd7240bd7240 -bd7240bd7240bd7240bd7240bd7240bd7240bd723fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc -733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc733fbc73 -3fbc733fbc733fbc733fbc733dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743d -bc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc743dbc -743dbc743bbb753bbb753bbb753bbb753bbb753bbb753bbb753bbb753bbb753bbb753bbb753bbb753bbb753bbb753bbb753bbb753bbb753bbb753bbb753bbb75 -3aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763a -ba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba763aba7638b97738b97738b9 -7738b97738b97738b97738b97738b97738b97738b97738b97738b97738b97738b97738b97738b97738b97738b97738b97738b97737b87837b87837b87837b878 -37b87837b87837b87837b87837b87837b87837b87837b87837b87837b87837b87837b87837b87837b87837b87837b87837b87837b87837b87837b87837b87837 -b87837b87837b87837b87837b87837b87837b87837b87837b87837b87837b87837b87837b87837b87837b87835b77935b77935b77935b77935b77935b77935b7 -7935b77935b77935b77935b77935b77935b77935b77935b77935b77935b77935b77935b77935b77934b67934b67934b67934b67934b67934b67934b67934b679 -34b67934b67934b67934b67934b67934b67934b67934b67934b67934b67934b67934b67934b67934b67934b67934b67934b67934b67934b67934b67934b67934 -b67934b67934b67934b67934b67934b67934b67934b67934b67934b67934b67932b67a32b67a32b67a32b67a32b67a32b67a32b67a32b67a32b67a32b67a32b6 -7a32b67a32b67a32b67a32b67a32b67a32b67a32b67a32b67a32b67a31b57b31b57b31b57b31b57b31b57b31b57b31b57b31b57b31b57b31b57b31b57b31b57b -31b57b31b57b31b57b31b57b31b57b31b57b31b57b31b57b31b57b31b57b31b57b31b57b31b57b31b57b31b57b31b57b31b57b31b57b31b57b31b57b31b57b31 -b57b31b57b31b57b31b57b31b57b31b57b31b57b2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb4 -7c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c2fb47c -2fb47c2fb47c2fb47c2fb47c2eb37c2eb37c2eb37c2eb37c2eb37c2eb37c2eb37c2eb37c2eb37c2eb37c2eb37c2eb37c2eb37c2eb37c2eb37c2eb37c2eb37c2e -b37c2eb37c2eb37c2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db2 -7d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d2db27d -2cb17e2cb17e2cb17e2cb17e2cb17e2cb17e2cb17e2cb17e2cb17e2cb17e2cb17e2cb17e2cb17e2cb17e2cb17e2cb17e2cb17e2cb17e2cb17e2cb17e2ab07f2a -b07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab0 -7f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f2ab07f29af7f29af7f29af7f29af7f -29af7f29af7f29af7f29af7f29af7f29af7f29af7f29af7f29af7f29af7f29af7f29af7f29af7f29af7f29af7f29af7f28ae8028ae8028ae8028ae8028ae8028 -ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae -8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8028ae8027ad8127ad8127ad8127ad8127ad8127ad8127ad8127ad81 -27ad8127ad8127ad8127ad8127ad8127ad8127ad8127ad8127ad8127ad8127ad8127ad8127ad8127ad8127ad8127ad8127ad8127ad8127ad8127ad8127ad8127 -ad8127ad8127ad8127ad8127ad8127ad8127ad8127ad8127ad8127ad8127ad8126ad8126ad8126ad8126ad8126ad8126ad8126ad8126ad8126ad8126ad8126ad -8126ad8126ad8126ad8126ad8126ad8126ad8126ad8126ad8126ad8125ac8225ac8225ac8225ac8225ac8225ac8225ac8225ac8225ac8225ac8225ac8225ac82 -25ac8225ac8225ac8225ac8225ac8225ac8225ac8225ac8225ac8225ac8225ac8225ac8225ac8225ac8225ac8225ac8225ac8225ac8225ac8225ac8225ac8225 -ac8225ac8225ac8225ac8225ac8225ac8225ac8225ab8225ab8225ab8225ab8225ab8225ab8225ab8225ab8225ab8225ab8225ab8225ab8225ab8225ab8225ab -8225ab8225ab8225ab8225ab8225ab8224aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa83 -24aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324aa8324 -aa8324aa8324aa8323a98323a98323a98323a98323a98323a98323a98323a98323a98323a98323a98323a98323a98323a98323a98323a98323a98323a98323a9 -8323a98322a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a884 -22a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a88422a78522 -a78522a78522a78522a78522a78522a78522a78522a78522a78522a78522a78522a78522a78522a78522a78522a78522a78522a78522a78521a68521a68521a6 -8521a68521a68521a68521a68521a68521a68521a68521a68521a68521a68521a68521a68521a68521a68521a68521a68521a68521a68521a68521a68521a685 -21a68521a68521a68521a68521a68521a68521a68521a68521a68521a68521a68521a68521a68521a68521a68521a68521a58521a58521a58521a58521a58521 -a58521a58521a58521a58521a58521a58521a58521a58521a58521a58521a58521a58521a58521a58521a58521a58521a58521a58521a58521a58521a58521a5 -8521a58521a58521a58521a58521a58521a58521a58521a58521a58521a58521a58521a58521a58520a48620a48620a48620a48620a48620a48620a48620a486 -20a48620a48620a48620a48620a48620a48620a48620a48620a48620a48620a48620a48620a38620a38620a38620a38620a38620a38620a38620a38620a38620 -a38620a38620a38620a38620a38620a38620a38620a38620a38620a38620a38620a38620a38620a38620a38620a38620a38620a38620a38620a38620a38620a3 -8620a38620a38620a38620a38620a38620a38620a38620a38620a3861fa2871fa2871fa2871fa2871fa2871fa2871fa2871fa2871fa2871fa2871fa2871fa287 -1fa2871fa2871fa2871fa2871fa2871fa2871fa2871fa2871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871f -a1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1871fa1 -871fa1871fa1871fa1871fa1871fa1871fa1881fa1881fa1881fa1881fa1881fa1881fa1881fa1881fa1881fa1881fa1881fa1881fa1881fa1881fa1881fa188 -1fa1881fa1881fa1881fa1881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881f -a0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0881fa0 -881fa0881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f88 -1f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9f881f9e891f -9e891f9e891f9e891f9e891f9e891f9e891f9e891f9e891f9e891f9e891f9e891f9e891f9e891f9e891f9e891f9e891f9e891f9e891f9e891e9d891e9d891e9d -891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d89 -1e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9d891e9c891e9c891e9c891e9c891e9c891e -9c891e9c891e9c891e9c891e9c891e9c891e9c891e9c891e9c891e9c891e9c891e9c891e9c891e9c891e9c891e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b -8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a -1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1e9b8a1f9a8a1f9a8a1f9a8a1f9a8a1f9a8a1f9a8a1f9a8a1f9a8a1f9a8a1f -9a8a1f9a8a1f9a8a1f9a8a1f9a8a1f9a8a1f9a8a1f9a8a1f9a8a1f9a8a1f9a8a1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f99 -8a1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f998a -1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f998a1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f -988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f988b1f98 -8b1f988b1f988b1f988b1f988b1f988b1f978b1f978b1f978b1f978b1f978b1f978b1f978b1f978b1f978b1f978b1f978b1f978b1f978b1f978b1f978b1f978b -1f978b1f978b1f978b1f978b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f -968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f968b1f96 -8b1f968b1f958b1f958b1f958b1f958b1f958b1f958b1f958b1f958b1f958b1f958b1f958b1f958b1f958b1f958b1f958b1f958b1f958b1f958b1f958b1f958b -1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f -948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c1f948c20938c20938c2093 -8c20938c20938c20938c20938c20938c20938c20938c20938c20938c20938c20938c20938c20938c20938c20938c20938c20938c20928c20928c20928c20928c -20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20 -928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c2092 -8c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c20928c21918c21918c21918c21918c21918c21918c21918c21918c -21918c21918c21918c21918c21918c21918c21918c21918c21918c21918c21918c21918c21918c21918c21918c21918c21918c21918c21918c21918c21918c21 -918c21918c21918c21918c21918c21918c21918c21918c21918c21918c21918c21908d21908d21908d21908d21908d21908d21908d21908d21908d21908d2190 -8d21908d21908d21908d21908d21908d21908d21908d21908d21908d21908d21908d21908d21908d21908d21908d21908d21908d21908d21908d21908d21908d -21908d21908d21908d21908d21908d21908d21908d21908d218f8d218f8d218f8d218f8d218f8d218f8d218f8d218f8d218f8d218f8d218f8d218f8d218f8d21 -8f8d218f8d218f8d218f8d218f8d218f8d218f8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e -8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d218e8d -218e8d218e8d218e8d218e8d228d8d228d8d228d8d228d8d228d8d228d8d228d8d228d8d228d8d228d8d228d8d228d8d228d8d228d8d228d8d228d8d228d8d22 -8d8d228d8d228d8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c -8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d228c8d -228b8d228b8d228b8d228b8d228b8d228b8d228b8d228b8d228b8d228b8d228b8d228b8d228b8d228b8d228b8d228b8d228b8d228b8d228b8d228b8d238a8d23 -8a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a -8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d238a8d23898e23898e23898e23898e -23898e23898e23898e23898e23898e23898e23898e23898e23898e23898e23898e23898e23898e23898e23898e23898e23898e23898e23898e23898e23898e23 -898e23898e23898e23898e23898e23898e23898e23898e23898e23898e23898e23898e23898e23898e23898e23888e23888e23888e23888e23888e23888e2388 -8e23888e23888e23888e23888e23888e23888e23888e23888e23888e23888e23888e23888e23888e24878e24878e24878e24878e24878e24878e24878e24878e -24878e24878e24878e24878e24878e24878e24878e24878e24878e24878e24878e24878e24878e24878e24878e24878e24878e24878e24878e24878e24878e24 -878e24878e24878e24878e24878e24878e24878e24878e24878e24878e24878e24868e24868e24868e24868e24868e24868e24868e24868e24868e24868e2486 -8e24868e24868e24868e24868e24868e24868e24868e24868e24868e25858e25858e25858e25858e25858e25858e25858e25858e25858e25858e25858e25858e -25858e25858e25858e25858e25858e25858e25858e25858e25858e25858e25858e25858e25858e25858e25858e25858e25858e25858e25858e25858e25858e25 -858e25858e25858e25858e25858e25858e25858e25848e25848e25848e25848e25848e25848e25848e25848e25848e25848e25848e25848e25848e25848e2584 -8e25848e25848e25848e25848e25848e25838e25838e25838e25838e25838e25838e25838e25838e25838e25838e25838e25838e25838e25838e25838e25838e -25838e25838e25838e25838e25838e25838e25838e25838e25838e25838e25838e25838e25838e25838e25838e25838e25838e25838e25838e25838e25838e25 -838e25838e25838e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e2682 -8e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e -26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26828e26818e26 -818e26818e26818e26818e26818e26818e26818e26818e26818e26818e26818e26818e26818e26818e26818e26818e26818e26818e26818e26818e26818e2681 -8e26818e26818e26818e26818e26818e26818e26818e26818e26818e26818e26818e26818e26818e26818e26818e26818e26818e27808e27808e27808e27808e -27808e27808e27808e27808e27808e27808e27808e27808e27808e27808e27808e27808e27808e27808e27808e27808e277f8e277f8e277f8e277f8e277f8e27 -7f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f -8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277f8e277e8e277e8e277e8e277e8e277e8e277e8e277e8e277e8e -277e8e277e8e277e8e277e8e277e8e277e8e277e8e277e8e277e8e277e8e277e8e277e8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e28 -7d8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e287d -8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e287d8e287c8e287c8e287c8e287c8e287c8e287c8e287c8e287c8e287c8e287c8e287c8e287c8e -287c8e287c8e287c8e287c8e287c8e287c8e287c8e287c8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e29 -7b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b8e297b -8e297b8e297b8e297b8e297b8e297b8e297a8e297a8e297a8e297a8e297a8e297a8e297a8e297a8e297a8e297a8e297a8e297a8e297a8e297a8e297a8e297a8e -297a8e297a8e297a8e297a8e29798e29798e29798e29798e29798e29798e29798e29798e29798e29798e29798e29798e29798e29798e29798e29798e29798e29 -798e29798e29798e29798e29798e29798e29798e29798e29798e29798e29798e29798e29798e29798e29798e29798e29798e29798e29798e29798e29798e2979 -8e29798e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e -2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a788e2a778e2a -778e2a778e2a778e2a778e2a778e2a778e2a778e2a778e2a778e2a778e2a778e2a778e2a778e2a778e2a778e2a778e2a778e2a778e2a778e2a768e2a768e2a76 -8e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e -2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2a768e2b758e2b758e2b758e2b758e2b758e2b -758e2b758e2b758e2b758e2b758e2b758e2b758e2b758e2b758e2b758e2b758e2b758e2b758e2b758e2b758e2b748e2b748e2b748e2b748e2b748e2b748e2b74 -8e2b748e2b748e2b748e2b748e2b748e2b748e2b748e2b748e2b748e2b748e2b748e2b748e2b748e2b748e2b748e2b748e2b748e2b748e2b748e2b748e2b748e -2b748e2b748e2b748e2b748e2b748e2b748e2b748e2b748e2b748e2b748e2b748e2b748e2c738e2c738e2c738e2c738e2c738e2c738e2c738e2c738e2c738e2c -738e2c738e2c738e2c738e2c738e2c738e2c738e2c738e2c738e2c738e2c738e2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c72 -8e2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c728e -2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c728e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c -718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c718e2c71 -8e2c718e2c718e2c718e2c718e2c718e2d718e2d718e2d718e2d718e2d718e2d718e2d718e2d718e2d718e2d718e2d718e2d718e2d718e2d718e2d718e2d718e -2d718e2d718e2d718e2d718e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d -708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d708e2d70 -8e2d708e2e6f8e2e6f8e2e6f8e2e6f8e2e6f8e2e6f8e2e6f8e2e6f8e2e6f8e2e6f8e2e6f8e2e6f8e2e6f8e2e6f8e2e6f8e2e6f8e2e6f8e2e6f8e2e6f8e2e6f8e -2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e -6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6e8e2e6d8e2e6d8e2e6d -8e2e6d8e2e6d8e2e6d8e2e6d8e2e6d8e2e6d8e2e6d8e2e6d8e2e6d8e2e6d8e2e6d8e2e6d8e2e6d8e2e6d8e2e6d8e2e6d8e2e6d8e2f6c8e2f6c8e2f6c8e2f6c8e -2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f -6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6c8e2f6b8e2f6b8e2f6b8e2f6b8e2f6b8e2f6b8e2f6b -8e2f6b8e2f6b8e2f6b8e2f6b8e2f6b8e2f6b8e2f6b8e2f6b8e2f6b8e2f6b8e2f6b8e2f6b8e2f6b8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e -306a8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e30 -6a8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e306a8e30698e30698e30698e30698e30698e30698e30698e30698e30698e30698e3069 -8e30698e30698e30698e30698e30698e30698e30698e30698e30698e30698e30698e30698e30698e30698e30698e30698e30698e30698e30698e30698e30698e -30698e30698e30698e30698e30698e30698e30698e30698e31688e31688e31688e31688e31688e31688e31688e31688e31688e31688e31688e31688e31688e31 -688e31688e31688e31688e31688e31688e31688e31678e31678e31678e31678e31678e31678e31678e31678e31678e31678e31678e31678e31678e31678e3167 -8e31678e31678e31678e31678e31678e31678e31678e31678e31678e31678e31678e31678e31678e31678e31678e31678e31678e31678e31678e31678e31678e -31678e31678e31678e31678e31668e31668e31668e31668e31668e31668e31668e31668e31668e31668e31668e31668e31668e31668e31668e31668e31668e31 -668e31668e31668e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e3265 -8e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e32658e -32648e32648e32648e32648e32648e32648e32648e32648e32648e32648e32648e32648e32648e32648e32648e32648e32648e32648e32648e32648e33638d33 -638d33638d33638d33638d33638d33638d33638d33638d33638d33638d33638d33638d33638d33638d33638d33638d33638d33638d33638d33638d33638d3363 -8d33638d33638d33638d33638d33638d33638d33638d33638d33638d33638d33638d33638d33638d33638d33638d33638d33638d33628d33628d33628d33628d -33628d33628d33628d33628d33628d33628d33628d33628d33628d33628d33628d33628d33628d33628d33628d33628d33628d33628d33628d33628d33628d33 -628d33628d33628d33628d33628d33628d33628d33628d33628d33628d33628d33628d33628d33628d33628d34618d34618d34618d34618d34618d34618d3461 -8d34618d34618d34618d34618d34618d34618d34618d34618d34618d34618d34618d34618d34618d34608d34608d34608d34608d34608d34608d34608d34608d -34608d34608d34608d34608d34608d34608d34608d34608d34608d34608d34608d34608d34608d34608d34608d34608d34608d34608d34608d34608d34608d34 -608d34608d34608d34608d34608d34608d34608d34608d34608d34608d34608d355f8d355f8d355f8d355f8d355f8d355f8d355f8d355f8d355f8d355f8d355f -8d355f8d355f8d355f8d355f8d355f8d355f8d355f8d355f8d355f8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d -355e8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d355e8d35 -5e8d355e8d355e8d355e8d355e8d355e8d355e8d365d8d365d8d365d8d365d8d365d8d365d8d365d8d365d8d365d8d365d8d365d8d365d8d365d8d365d8d365d -8d365d8d365d8d365d8d365d8d365d8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d -365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d365c8d36 -5c8d365c8d365c8d375b8d375b8d375b8d375b8d375b8d375b8d375b8d375b8d375b8d375b8d375b8d375b8d375b8d375b8d375b8d375b8d375b8d375b8d375b -8d375b8d375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c -375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c375a8c38598c38 -598c38598c38598c38598c38598c38598c38598c38598c38598c38598c38598c38598c38598c38598c38598c38598c38598c38598c38598c38598c38598c3859 -8c38598c38598c38598c38598c38598c38598c38598c38598c38598c38598c38598c38598c38598c38598c38598c38598c38598c38588c38588c38588c38588c -38588c38588c38588c38588c38588c38588c38588c38588c38588c38588c38588c38588c38588c38588c38588c38588c39568c39568c39568c39568c39568c39 -568c39568c39568c39568c39568c39568c39568c39568c39568c39568c39568c39568c39568c39568c39568c39568c39568c39568c39568c39568c39568c3956 -8c39568c39568c39568c39568c39568c39568c39568c39568c39568c39568c39568c39568c39568c39558c39558c39558c39558c39558c39558c39558c39558c -39558c39558c39558c39558c39558c39558c39558c39558c39558c39558c39558c39558c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a -548c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a54 -8c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a548c3a538b3a538b3a538b3a538b3a538b3a538b3a538b3a538b3a538b3a538b3a538b3a538b -3a538b3a538b3a538b3a538b3a538b3a538b3a538b3a538b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b -528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b528b3b52 -8b3b528b3b528b3b528b3b528b3b528b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b -3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b518b3b -518b3b518b3b518b3c508b3c508b3c508b3c508b3c508b3c508b3c508b3c508b3c508b3c508b3c508b3c508b3c508b3c508b3c508b3c508b3c508b3c508b3c50 -8b3c508b3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a -3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3c4f8a3d4e8a3d -4e8a3d4e8a3d4e8a3d4e8a3d4e8a3d4e8a3d4e8a3d4e8a3d4e8a3d4e8a3d4e8a3d4e8a3d4e8a3d4e8a3d4e8a3d4e8a3d4e8a3d4e8a3d4e8a3d4d8a3d4d8a3d4d -8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a -3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3d4d8a3e4c8a3e4c8a3e4c8a3e4c8a3e4c8a3e -4c8a3e4c8a3e4c8a3e4c8a3e4c8a3e4c8a3e4c8a3e4c8a3e4c8a3e4c8a3e4c8a3e4c8a3e4c8a3e4c8a3e4c8a3e4a893e4a893e4a893e4a893e4a893e4a893e4a -893e4a893e4a893e4a893e4a893e4a893e4a893e4a893e4a893e4a893e4a893e4a893e4a893e4a893e4a893e4a893e4a893e4a893e4a893e4a893e4a893e4a89 -3e4a893e4a893e4a893e4a893e4a893e4a893e4a893e4a893e4a893e4a893e4a893e4a893e49893e49893e49893e49893e49893e49893e49893e49893e49893e -49893e49893e49893e49893e49893e49893e49893e49893e49893e49893e49893e49893e49893e49893e49893e49893e49893e49893e49893e49893e49893e49 -893e49893e49893e49893e49893e49893e49893e49893e49893e49893f48893f48893f48893f48893f48893f48893f48893f48893f48893f48893f48893f4889 -3f48893f48893f48893f48893f48893f48893f48893f48893f47883f47883f47883f47883f47883f47883f47883f47883f47883f47883f47883f47883f47883f -47883f47883f47883f47883f47883f47883f47883f47883f47883f47883f47883f47883f47883f47883f47883f47883f47883f47883f47883f47883f47883f47 -883f47883f47883f47883f47883f4788404688404688404688404688404688404688404688404688404688404688404688404688404688404688404688404688 -40468840468840468840468840458840458840458840458840458840458840458840458840458840458840458840458840458840458840458840458840458840 -45884045884045884045884045884045884045884045884045884045884045884045884045884045884045884045884045884045884045884045884045884045 -88404588414487414487414487414487414487414487414487414487414487414487414487414487414487414487414487414487414487414487414487414487 -41428741428741428741428741428741428741428741428741428741428741428741428741428741428741428741428741428741428741428741428741428741 -42874142874142874142874142874142874142874142874142874142874142874142874142874142874142874142874142874142874142874241864241864241 -86424186424186424186424186424186424186424186424186424186424186424186424186424186424186424186424186424186424086424086424086424086 -42408642408642408642408642408642408642408642408642408642408642408642408642408642408642408642408642408642408642408642408642408642 -4086424086424086424086424086424086424086424086424086424086424086424086424086424086424086423f85423f85423f85423f85423f85423f85423f -85423f85423f85423f85423f85423f85423f85423f85423f85423f85423f85423f85423f85423f85423f85423f85423f85423f85423f85423f85423f85423f85 -423f85423f85423f85423f85423f85423f85423f85423f85423f85423f85423f85423f85433e85433e85433e85433e85433e85433e85433e85433e85433e8543 -3e85433e85433e85433e85433e85433e85433e85433e85433e85433e85433e85433d84433d84433d84433d84433d84433d84433d84433d84433d84433d84433d -84433d84433d84433d84433d84433d84433d84433d84433d84433d84433d84433d84433d84433d84433d84433d84433d84433d84433d84433d84433d84433d84 -433d84433d84433d84433d84433d84433d84433d84433d84443b84443b84443b84443b84443b84443b84443b84443b84443b84443b84443b84443b84443b8444 -3b84443b84443b84443b84443b84443b84443b84443a83443a83443a83443a83443a83443a83443a83443a83443a83443a83443a83443a83443a83443a83443a -83443a83443a83443a83443a83443a83443a83443a83443a83443a83443a83443a83443a83443a83443a83443a83443a83443a83443a83443a83443a83443a83 -443a83443a83443a83443a8344398344398344398344398344398344398344398344398344398344398344398344398344398344398344398344398344398344 -39834439834439834538824538824538824538824538824538824538824538824538824538824538824538824538824538824538824538824538824538824538 -82453882453882453882453882453882453882453882453882453882453882453882453882453882453882453882453882453882453882453882453882453882 -45378145378145378145378145378145378145378145378145378145378145378145378145378145378145378145378145378145378145378145378145358145 -35814535814535814535814535814535814535814535814535814535814535814535814535814535814535814535814535814535814535814535814535814535 -81453581453581453581453581453581453581453581453581453581453581453581453581453581453581453581453581453581463480463480463480463480 -46348046348046348046348046348046348046348046348046348046348046348046348046348046348046348046348046348046348046348046348046348046 -348046348046348046348046348046348046348046348046348046348046348046348046348046348046348046337f46337f46337f46337f46337f46337f4633 -7f46337f46337f46337f46337f46337f46337f46337f46337f46337f46337f46337f46337f46337f46327e46327e46327e46327e46327e46327e46327e46327e -46327e46327e46327e46327e46327e46327e46327e46327e46327e46327e46327e46327e46327e46327e46327e46327e46327e46327e46327e46327e46327e46 -327e46327e46327e46327e46327e46327e46327e46327e46327e46327e46327e46307e46307e46307e46307e46307e46307e46307e46307e46307e46307e4630 -7e46307e46307e46307e46307e46307e46307e46307e46307e46307e472f7d472f7d472f7d472f7d472f7d472f7d472f7d472f7d472f7d472f7d472f7d472f7d -472f7d472f7d472f7d472f7d472f7d472f7d472f7d472f7d472f7d472f7d472f7d472f7d472f7d472f7d472f7d472f7d472f7d472f7d472f7d472f7d472f7d47 -2f7d472f7d472f7d472f7d472f7d472f7d472f7d472e7c472e7c472e7c472e7c472e7c472e7c472e7c472e7c472e7c472e7c472e7c472e7c472e7c472e7c472e -7c472e7c472e7c472e7c472e7c472e7c472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b -472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b472d7b47 -2d7b472d7b472d7b472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c -7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a472c7a -472a7a472a7a472a7a472a7a472a7a472a7a472a7a472a7a472a7a472a7a472a7a472a7a472a7a472a7a472a7a472a7a472a7a472a7a472a7a472a7a48297948 -29794829794829794829794829794829794829794829794829794829794829794829794829794829794829794829794829794829794829794829794829794829 -79482979482979482979482979482979482979482979482979482979482979482979482979482979482979482979482979482979482878482878482878482878 -48287848287848287848287848287848287848287848287848287848287848287848287848287848287848287848287848267748267748267748267748267748 -26774826774826774826774826774826774826774826774826774826774826774826774826774826774826774826774826774826774826774826774826774826 -77482677482677482677482677482677482677482677482677482677482677482677482677482677482576482576482576482576482576482576482576482576 -48257648257648257648257648257648257648257648257648257648257648257648257648247548247548247548247548247548247548247548247548247548 -24754824754824754824754824754824754824754824754824754824754824754824754824754824754824754824754824754824754824754824754824754824 -75482475482475482475482475482475482475482475482475482475482374482374482374482374482374482374482374482374482374482374482374482374 -48237448237448237448237448237448237448237448237448217348217348217348217348217348217348217348217348217348217348217348217348217348 -21734821734821734821734821734821734821734821734821734821734821734821734821734821734821734821734821734821734821734821734821734821 -73482173482173482173482173482173482071482071482071482071482071482071482071482071482071482071482071482071482071482071482071482071 -48207148207148207148207148207148207148207148207148207148207148207148207148207148207148207148207148207148207148207148207148207148 -2071482071482071481f70481f70481f70481f70481f70481f70481f70481f70481f70481f70481f70481f70481f70481f70481f70481f70481f70481f70481f -70481f70481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f -481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481d6f481c6e48 -1c6e481c6e481c6e481c6e481c6e481c6e481c6e481c6e481c6e481c6e481c6e481c6e481c6e481c6e481c6e481c6e481c6e481c6e481c6e481b6d481b6d481b -6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d -481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481b6d481a6c481a6c481a6c481a6c481a6c48 -1a6c481a6c481a6c481a6c481a6c481a6c481a6c481a6c481a6c481a6c481a6c481a6c481a6c481a6c481a6c48186a48186a48186a48186a48186a48186a4818 -6a48186a48186a48186a48186a48186a48186a48186a48186a48186a48186a48186a48186a48186a48186a48186a48186a48186a48186a48186a48186a48186a -48186a48186a48186a48186a48186a48186a48186a48186a48186a48186a48186a48186a48176948176948176948176948176948176948176948176948176948 -17694817694817694817694817694817694817694817694817694817694817694817694817694817694817694817694817694817694817694817694817694817 -69481769481769481769481769481769481769481769481769481769481668481668481668481668481668481668481668481668481668481668481668481668 -48166848166848166848166848166848166848166848166848146748146748146748146748146748146748146748146748146748146748146748146748146748 -14674814674814674814674814674814674814674814674814674814674814674814674814674814674814674814674814674814674814674814674814674814 -67481467481467481467481467481467471365471365471365471365471365471365471365471365471365471365471365471365471365471365471365471365 -47136547136547136547136547116447116447116447116447116447116447116447116447116447116447116447116447116447116447116447116447116447 -11644711644711644711644711644711644711644711644711644711644711644711644711644711644711644711644711644711644711644711644711644711 -64471164471063471063471063471063471063471063471063471063471063471063471063471063471063471063471063471063471063471063471063471063 -470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e6147 -0e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470e61470d60470d60470d -60470d60470d60470d60470d60470d60470d60470d60470d60470d60470d60470d60470d60470d60470d60470d60470d60470d60460b5e460b5e460b5e460b5e -460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e46 -0b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460b5e460a5d460a5d460a5d460a5d460a5d460a5d460a -5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d -460a5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d460a5d46085c46085c46085c46085c46085c46085c46085c46085c46085c46 -085c46085c46085c46085c46085c46085c46085c46085c46085c46085c46085c46075a46075a46075a46075a46075a46075a46075a46075a46075a46075a4607 -5a46075a46075a46075a46075a46075a46075a46075a46075a46075a46075a46075a46075a46075a46075a46075a46075a46075a46075a46075a46075a46075a -46075a46075a46075a46075a46075a46075a46075a46075a45055945055945055945055945055945055945055945055945055945055945055945055945055945 -05594505594505594505594505594505594505594504574504574504574504574504574504574504574504574504574504574504574504574504574504574504 -57450457450457450457450457450457450457450457450457450457450457450457450457450457450457450457450457450457450457450457450457450457 -45045745045745045745045744025644025644025644025644025644025644025644025644025644025644025644025644025644025644025644025644025644 -02564402564402564401544401544401544401544401544401544401544401544401544401544401544401544401544401544401544401544401544401544401 -54440154440154440154440154440154440154440154440154440154440154440154440154440154440154440154440154440154440154440154440154440154 -grestore -0.8 setlinewidth -0 setgray -gsave -/o { -gsave -newpath -translate -0.8 setlinewidth -1 setlinejoin - -0 setlinecap - -0 0 m -3.5 0 l - -gsave -0 setgray -fill -grestore -stroke -grestore -} bind def -403.2 51.0187 o -grestore -/DejaVuSans 10.000 selectfont -gsave - -410.2 47.2218 translate -0 rotate -0 0 m /six glyphshow -grestore -gsave -/o { -gsave -newpath -translate -0.8 setlinewidth -1 setlinejoin - -0 setlinecap - -0 0 m -3.5 0 l - -gsave -0 setgray -fill -grestore -stroke -grestore -} bind def -403.2 110.992 o -grestore -/DejaVuSans 10.000 selectfont -gsave - -410.2 107.195 translate -0 rotate -0 0 m /eight glyphshow -grestore -gsave -/o { -gsave -newpath -translate -0.8 setlinewidth -1 setlinejoin - -0 setlinecap - -0 0 m -3.5 0 l - -gsave -0 setgray -fill -grestore -stroke -grestore -} bind def -403.2 170.966 o -grestore -/DejaVuSans 10.000 selectfont -gsave - -410.2 167.169 translate -0 rotate -0 0 m /one glyphshow -6.3623 0 m /zero glyphshow -grestore -gsave -/o { -gsave -newpath -translate -0.8 setlinewidth -1 setlinejoin - -0 setlinecap - -0 0 m -3.5 0 l - -gsave -0 setgray -fill -grestore -stroke -grestore -} bind def -403.2 230.939 o -grestore -/DejaVuSans 10.000 selectfont -gsave - -410.2 227.142 translate -0 rotate -0 0 m /one glyphshow -6.3623 0 m /two glyphshow -grestore -gsave -/o { -gsave -newpath -translate -0.8 setlinewidth -1 setlinejoin - -0 setlinecap - -0 0 m -3.5 0 l - -gsave -0 setgray -fill -grestore -stroke -grestore -} bind def -403.2 290.913 o -grestore -/DejaVuSans 10.000 selectfont -gsave - -410.2 287.116 translate -0 rotate -0 0 m /one glyphshow -6.3623 0 m /four glyphshow -grestore -0 setlinejoin -2 setlinecap -gsave -388.8 36 m -396 36 l -403.2 36 l -403.2 324 l -396 324 l -388.8 324 l -388.8 36 l -cl -stroke -grestore -/DejaVuSans 12.000 selectfont -gsave - -175.383 343.675 translate -0 rotate -0 0 m /R glyphshow -8.08789 0 m /a glyphshow -15.4414 0 m /n glyphshow -23.0469 0 m /d glyphshow -30.6641 0 m /o glyphshow -38.0059 0 m /m glyphshow -49.6953 0 m /space glyphshow -53.5098 0 m /F glyphshow -59.5371 0 m /i glyphshow -62.8711 0 m /e glyphshow -70.2539 0 m /l glyphshow -73.5879 0 m /d glyphshow -grestore - -end -showpage diff --git a/tests/test_conditional_rf.py b/tests/test_conditional_rf.py new file mode 100644 index 0000000..04d593b --- /dev/null +++ b/tests/test_conditional_rf.py @@ -0,0 +1,89 @@ +import os +import pickle +from pathlib import Path +import matplotlib.pyplot as plt +import numpy as np +import pytest + +from random_fields.geostatistical_cpt_interpretation import CPT_data, MarginalTransformation, GeostatisticalModel +from random_fields.generate_field import RandomFields, ModelName + +SHOW_RESULTS = False + + +@pytest.mark.parametrize("cpt_folder_path, test_file", [("./tests/cpts/gef", "./tests/data/2d_rf_gef.pickle"), + ("./tests/cpts/xml", "./tests/data/2d_rf_xml.pickle")]) +def test_2d_random_field(cpt_folder_path, test_file): + """ + Test the generation of a conditional 2D random field with GEF & XML files. + + Args: + - cpt_folder_path (str): path to the folder containing the CPT files. + - test_file (str): path to the file containing the expected results. + """ + + cpt_folder = Path(cpt_folder_path) + cpt_data = CPT_data(cpt_directory=cpt_folder) + cpt_data.read_cpt_data() + cpt_data.interpret_cpt_data() + + cpt_data.plot_coordinates(show=False) + assert os.path.exists("coordinates.png") + os.remove("coordinates.png") + + # transform the data to a modelling domain + cpt_data.data_coordinate_change(orientation_x_axis=73, based_on_midpoint=True) + + marginal_transformator = MarginalTransformation(cpt_data.vs, min_value=50) + marginal_transformator.plot(x_label='$u$ : standard-normal variable', y_label='$v$ : shear wave velocity [m/s]') + + np.random.seed(14) + index_selection = np.random.choice(len(cpt_data.vs), size=2000, replace=False) + coords = cpt_data.data_coords[index_selection] + z_data = marginal_transformator.x_to_z(x=cpt_data.vs[index_selection]) + + geo_model = GeostatisticalModel(nb_dimensions=2, v_dim=1) + geo_model.calibrate(coords=coords[:, [2, 1]], values=z_data) + + random_field_generator = RandomFields(model_name=ModelName.Gaussian, + n_dim=2, + mean=0, + variance=1, + v_scale_fluctuation=geo_model.vertical_scale_fluctuation, + anisotropy=geo_model.anisotropy, + angle=[0], + seed=14) + + I = np.random.choice(len(cpt_data.vs), size=500, replace=False) + + coords = cpt_data.data_coords[I] + values = cpt_data.vs[I] + random_field_generator.set_conditioning_points(points=coords[:, [2, 1]], + values=marginal_transformator.x_to_z(x=values), + noise_level=geo_model.noise_level) + + # create grit of points on the domnain (-220,220) by (-24,-1) to generate a field for. + x = np.linspace(-220, 220, 250) + z = np.linspace(-24, -1, 250) + X, Z = np.meshgrid(x, z) + + # generate a conditioned random field + sample_coords = np.array([X.ravel(), Z.ravel()]).T + random_field_generator.generate_conditioned(nodes=sample_coords) + + # Transform the generated standard-normal field to the distribution of the shear wave velocity + z_map = random_field_generator.conditioned_random_field + vs_map = marginal_transformator.z_to_x(z_map[:250 * 250].reshape([250, 250])) + + # check the results + with open(test_file, "rb") as f: + vs_test = pickle.load(f) + + assert np.allclose(vs_map, vs_test) + + if SHOW_RESULTS: + fig, ax = plt.subplots(figsize=(10, 5)) + plt.contourf(X, Z, vs_map, vmin=50, vmax=400) + scatter = plt.scatter(cpt_data.data_coords[:, 2], cpt_data.data_coords[:, 1], c=cpt_data.vs, vmin=50, vmax=400) + plt.colorbar(scatter, ax=ax, label="Vs [m/s]") + plt.show() diff --git a/tests/test_random_field.py b/tests/test_random_field.py index d766764..df80d75 100644 --- a/tests/test_random_field.py +++ b/tests/test_random_field.py @@ -1,8 +1,11 @@ +import os import pickle import numpy as np import pytest from scipy.stats import norm from random_fields.generate_field import RandomFields, ModelName +from random_fields.geostatistical_cpt_interpretation import ElasticityFieldsFromCpt, RandomFieldProperties +from random_fields.utils import plot3D def test_model_names(): @@ -19,11 +22,13 @@ def test_model_names(): rf = RandomFields(ModelName.Linear, 2, 2, 2, 2, [2], [2]) assert rf.random_field_model.__name__ == 'Linear' + def test_failure_ndim(): "test failure with number of dimensions" with pytest.raises(ValueError): RandomFields(ModelName.Gaussian, 4, 2, 2, 2, [2], [2]) + def test_model_name_failure(): """test failure with wrong model name""" with pytest.raises(AttributeError): @@ -86,14 +91,121 @@ def test_distribution_RF_unstruc(): x = np.array(nodes_fields)[:, 0] y = np.array(nodes_fields)[:, 1] - rf_emsamble = [] + rf_ensamble = [] param = [] for i in range(nb_runs): rf = RandomFields(ModelName.Gaussian, 2, 10, 2, 0.05, [1], [1], seed=i) rf.generate(np.array([x.ravel(), y.ravel()]).T) - rf_emsamble.append(rf.random_field.field) + rf_ensamble.append(rf.random_field.field) mu_un, std_un = norm.fit(rf.random_field.field) param.append([mu_un, std_un]) np.testing.assert_array_almost_equal(np.mean(np.array(param)[:, 0]), 10, decimal=2) np.testing.assert_array_almost_equal(np.mean(np.array(param)[:, 1])**2, 2, decimal=2) + + +def test_conditioned_RF_3D_mean_variance(): + """test the conditioned random field for correct mean and variance""" + + # mesh coordinates + x = np.linspace(0, 100, 5) + y = np.linspace(0, 50, 5) + z = np.linspace(0, 25, 5) + x, y, z = [i.ravel() for i in np.meshgrid(x, y, z)] + + # random field properties + nb_dimensions = 3 + mean = 10 + variance = 2 + vertical_scale_fluctuation = 10 + anisotropy = [2.5, 2.5] + angle = [0, 0] + model_rf = ModelName.Gaussian + + # generate and plot random field + rf = RandomFields(model_rf, nb_dimensions, mean, variance, vertical_scale_fluctuation, anisotropy, angle, seed=14) + rf.generate(np.array([x, y, z]).T) + + # declare conditioning points + xc = np.array([50.] * 4) + yc = np.linspace(0, 50, 4) + zc = np.array([25] * 4) + vc = np.array([15] * 4) + + rf.set_conditioning_points(np.array([xc, yc, zc]).T, vc, noise_level=0.01) + + # generate conditioned random field model + rf.generate_conditioned(np.array([x, y, z]).T) + + # load reference solution + data_ref = np.loadtxt('./tests/data/conditioned_rf_3D.txt') + kriging_mean_ref = data_ref[0] + kriging_std_ref = data_ref[1] + kriging_field_ref = data_ref[2] + + # test difference in mean, std and single realisation + np.testing.assert_array_almost_equal(kriging_mean_ref, rf.kriging_mean, decimal=4) + np.testing.assert_array_almost_equal(kriging_std_ref, rf.kriging_std, decimal=4) + np.testing.assert_array_almost_equal(kriging_field_ref, rf.conditioned_random_field, decimal=4) + + +def test_conditioned_RF_helper_3D(): + """ + Test the ElasticityFieldsFromCpt class + """ + + orientation_x_axis = 72. + cpt_folder = "./tests/cpts/gef" + elastic_field_generator_cpt = ElasticityFieldsFromCpt( + cpt_file_folder=cpt_folder, + based_on_midpoint=True, + max_conditioning_points=1000, + orientation_x_axis=orientation_x_axis, + porosity=0.3, + water_density=1000, + return_property=[RandomFieldProperties.YOUNG_MODULUS, RandomFieldProperties.DENSITY_SOLID], + ) + elastic_field_generator_cpt.calibrate_geostat_model() + + # create grit of points on the domnain (-220,220) by (-24,-1) to generate a field for. + import numpy as np + x = np.linspace(-5, 5, 21) + y = np.linspace(-25, 0, 26) + z = np.linspace(0, 30, 31) + X, Y, Z = np.meshgrid(x, y, z) + + elastic_field_generator_cpt.generate(np.array([X.ravel(), Y.ravel(), Z.ravel()]).T) + + plot3D( + [np.array([X.ravel(), Y.ravel(), Z.ravel()]).T], + [elastic_field_generator_cpt.generated_field[0]], + title="Random Field", + output_folder="./", + output_name="random_field_3D.png", + figsize=(10, 10), + conditional_points=[ + elastic_field_generator_cpt.coordinates_sampled_conditioning, + elastic_field_generator_cpt.conditioning_sampled_data[0] + ], + ) + + with open("./tests/data/conditional_random_field_3D.pickle", "rb") as fi: + data_org = pickle.load(fi) + + assert os.path.isfile("random_field_3D.png") + os.remove("random_field_3D.png") + np.testing.assert_allclose(data_org[0], elastic_field_generator_cpt.generated_field[0], rtol=1e-3) + np.testing.assert_allclose(data_org[1], elastic_field_generator_cpt.generated_field[1], rtol=1e-3) + + +def test_RF_properties(): + """ + Test the RandomFieldProperties enum + """ + # Check that the enum members are instances of RandomFieldProperties + assert isinstance(RandomFieldProperties.YOUNG_MODULUS, RandomFieldProperties) + assert isinstance(RandomFieldProperties.DENSITY_SOLID, RandomFieldProperties) + + # Check that the names match correctly + assert RandomFieldProperties.YOUNG_MODULUS.name == "YOUNG_MODULUS" + assert RandomFieldProperties.DENSITY_SOLID.name == "DENSITY_SOLID" diff --git a/tests/test_random_field_utils.py b/tests/test_random_field_utils.py index adf3478..a2961af 100644 --- a/tests/test_random_field_utils.py +++ b/tests/test_random_field_utils.py @@ -1,7 +1,9 @@ import numpy as np import pytest +import pickle import os import sys +import sys import pickle from random_fields.generate_field import RandomFields, ModelName from random_fields.utils import plot2D, plot3D @@ -26,7 +28,10 @@ def test_distribution_RF_struc(cleanup_generated_files): rf = RandomFields(ModelName.Gaussian, 2, 10, 2, 1, [1], [1], seed=14) rf.generate(np.array([x.ravel(), y.ravel()]).T) - plot2D([np.array([x.ravel(), y.ravel()]).T], [rf.random_field], title="Random Field", output_folder="./", output_name="random_field.eps") + plot2D([np.array([x.ravel(), y.ravel()]).T], [rf.random_field], + title="Random Field", + output_folder="./", + output_name="random_field.eps") with open("./tests/data/random_field.eps", "r") as fi: data_org = fi.read().splitlines()