From 61910cb382c5122d38997377eda699a8ee066440 Mon Sep 17 00:00:00 2001 From: hmbemba Date: Tue, 11 Apr 2023 00:02:14 -0400 Subject: [PATCH 1/5] first --- .gitignore | 168 +++- cli.py | 210 ++++ content/db/db.json | 29 + ...79e911713ecbd83a6d4c97_FrequencyFrames.txt | 1 + internals/__init__.py | 0 internals/db.py | 101 ++ internals/media.py | 43 + polymath.py => internals/old/polymath.py | 0 internals/processors.py | 917 ++++++++++++++++++ internals/utils.py | 191 ++++ requirements.txt | 112 ++- 11 files changed, 1761 insertions(+), 11 deletions(-) create mode 100644 cli.py create mode 100644 content/db/db.json create mode 100644 content/db/frequencyFrames/FlyLike_52_72bebf3a5fc36b049bf11d355784b3660ad20c17fe79e911713ecbd83a6d4c97_FrequencyFrames.txt create mode 100644 internals/__init__.py create mode 100644 internals/db.py create mode 100644 internals/media.py rename polymath.py => internals/old/polymath.py (100%) mode change 100755 => 100644 create mode 100644 internals/processors.py create mode 100644 internals/utils.py diff --git a/.gitignore b/.gitignore index e969c78..2adcec7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,170 @@ input/ library/ processed/ -separated/ \ No newline at end of file +separated/ + +#Mine +.vscode/ +.mypy_cache + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +#pdm.lock +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it +# in version control. +# https://pdm.fming.dev/#use-with-ide +.pdm.toml + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ + \ No newline at end of file diff --git a/cli.py b/cli.py new file mode 100644 index 0000000..4967a05 --- /dev/null +++ b/cli.py @@ -0,0 +1,210 @@ +from internals.media import Media +from internals.processors import AudioProcessor,VideoProcessor +from internals import utils +from internals.db import TinyDBWrapper +import fire + + +utils.PathConfig.initFolders() +utils.createDBFile(utils.PathConfig.dbDir, utils.PathConfig.dbFile) +utils.printPolymath() + +db = TinyDBWrapper(utils.PathConfig.dbFile) + +def splitStems(cleanedFile:str, stemsOutputDir:str = str(utils.PathConfig.stemsDir)) -> None: + # check if audio is clean + print("splitting stems") + AudioProcessor.split_stems(cleanedFile, stemsOutputDir) + +def addSong(songPath: str, ss: bool = False) -> None: + """ + Overview + -------- + Process a single song from local hard drive,\nthen add it to the database + + + Parameters + ---------- + songPath : str + Path to song to be added + + Returns + ------- + None + + """ + + # check if song exists and is a valid file + songPath = utils.strictFile( + songPath, + lambda: print( + f"The path you specified is not a valid file path:\n\t{songPath}" + ), + ).allowedExtensions([".mp3", ".wav"]) + + # generate song ID + # The id will look like this: "song_name_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6q7r8s9t0u1v2w3x4y5z" + songID = Media.generateID(songPath.path.replace(" ", "_")) + print(f"Song ID: {songID}") + + + def upsert() -> str: + cleanedFile, features, frequencyFrames = db.upsertSong( + songPath.path, + songID, + str(utils.PathConfig.processed), + str(utils.PathConfig.frequencyFramesOutDir), + ) + return cleanedFile + + + # add song to db if not already there + if not db.idExists(songID): + cleanedFile = upsert() + if ss: + splitStems(cleanedFile, utils.PathConfig().stemsDir) + + # if song is already in db, ask if user wants to overwrite + else: + ii = input( + f""" + {songPath.pathObj.stem} is already in the database with the following ID: {songID} + Do you want to overwrite it? (y/n): """ + ) + + # if user wants to overwrite, update the song + if ii.lower() == "y": + cleanedFile = upsert() + if ss: + splitStems(cleanedFile, str(utils.PathConfig.stemsDir)) + # if user doesn't want to overwrite, exit + else: + print("Goodbye") + exit() + +def addVideo(youtubeUrl: str, ss: bool = False) -> None: + """ + Overview + -------- + Extract the audio from a SINGLE youtube video and add it to the database\n + Will not accept a playlist url, only a single video url + + Parameters + ---------- + youtubeUrl : str + The url of the youtube video to be added + + ss : bool, optional + Whether or not to split the stems, by default False + + Returns + ------- + None + + """ + if not VideoProcessor.is_youtube_url(youtubeUrl): + print(f"The url you entered is not a youtube url: {youtubeUrl}") + return + + if VideoProcessor.is_playlist(youtubeUrl): + print( + f"""The url you entered is a playlist url:\n\t{youtubeUrl} + \nPlease enter a video url instead + \nUse the 'addPlaylist' command to add a playlist""" + ) + return + + """ + Begin processing the video + """ + info = VideoProcessor.get_video_info_filtered(youtubeUrl) + + # The id will look like this: "Ciara - Da Girls [Official Video]_M2z-RZR0P3Y" + id = info["title"].replace(" ", "_") + "_" + info["id"] + + def upsert() -> str: + mp3 = VideoProcessor.download_audio( + youtubeUrl, str(utils.PathConfig.ytdl_content), format="mp3" + ) + + cleanedFile, features, frequencyFrames = db.upsertSong( + mp3, + id, + str(utils.PathConfig.processed), + str(utils.PathConfig.frequencyFramesOutDir), + ) + return cleanedFile + + + if not db.idExists(id): + # add song to db, split stems if specified and seperate frequency frames into their own text file + cleanedFile = upsert() + + if ss: + splitStems(cleanedFile, str(utils.PathConfig.stemsDir)) + else: + # Let user know that the song is already in the database + # Ask if they want to overwrite it + ii = input( + f""" + {info['title']} is already in the database with the following ID: {id} + Do you want to overwrite it? (y/n): """ + ) + + # if user wants to overwrite, update the song + if ii.lower() == "y": + cleanedFile = upsert() + + if ss: + splitStems(cleanedFile, str(utils.PathConfig.stemsDir)) + # if user doesn't want to overwrite, exit + else: + print("Goodbye") + exit() + +def allSongs() -> None: + """ """ + return db.tdb.all() + +# def rmSong(songID: str) -> None: +# """ """ +# pass + + +# # def addPlaylist(): -> None: + +# # def addSongs() -> None: +# # ''' +# # process one or more songs +# # ''' +# # pass + + +# # def addVideos() -> None: +# # ''' +# # Process one or more videos +# # ''' +# # pass + +# # def audioToMidi(audioPath:str) -> None: +# # ''' + +# # ''' +# # pass + +# # def search(query:str) -> None: +# # ''' + +# # ''' +# # pass + +if __name__ == "__main__": + fire.Fire( + { + "addSong": addSong, + "addVideo": addVideo, + "all": allSongs, + "splitStems": splitStems, + 'mp32wav': AudioProcessor.mp3ToWav, + } + ) diff --git a/content/db/db.json b/content/db/db.json new file mode 100644 index 0000000..c69776b --- /dev/null +++ b/content/db/db.json @@ -0,0 +1,29 @@ +{ + "_default": { + "1": { + "id": "FlyLike_52_72bebf3a5fc36b049bf11d355784b3660ad20c17fe79e911713ecbd83a6d4c97", + "songName": "FlyLike_52", + "pathToFile": "C:\\Users\\hmbem\\Desktop\\Scripts\\Temp_Projects\\polymath_fork_04_10_2023-02_08PM\\polymath\\content\\processed\\FlyLike_52_72bebf3a5fc36b049bf11d355784b3660ad20c17fe79e911713ecbd83a6d4c97.wav", + "features": { + "id": "FlyLike_52_72bebf3a5fc36b049bf11d355784b3660ad20c17fe79e911713ecbd83a6d4c97", + "tempo": "129.19921875", + "duration": "180.03591836734694", + "timbre": "-10.74387", + "timbre_frames": "[[-9.03672974e+02 2.01312256e+00 2.01264548e+00 ... -4.22781426e-03\n -4.21025464e-03 -4.19113366e-03]\n [-8.81323547e+02 1.11527767e+01 4.34591627e+00 ... 1.68069713e-02\n 4.91377488e-02 4.10064533e-02]\n [-5.26526672e+02 1.15208565e+02 -1.90118275e+01 ... -7.75071532e-02\n -2.81857811e-02 -8.23639147e-03]\n ...\n [-5.54064453e+02 1.02463989e+02 -1.46656046e+01 ... -3.33146341e-02\n -6.42591193e-02 7.94802979e-02]\n [-8.93061829e+02 6.77764893e+00 2.71999741e+00 ... -4.71838973e-02\n 5.08473590e-02 -6.10819981e-02]\n [-9.03629211e+02 2.07524133e+00 2.07477045e+00 ... 9.26544380e-05\n 8.91687741e-05 8.53855672e-05]]", + "pitch": "0.32957405", + "pitch_frames": "[[0.5014807 0.2953108 0.35332465 ... 0.65337265 0.5453273 0.37238643]\n [0.5928171 0.3456033 0.24486387 ... 0.48708895 1. 0.90425026]\n [0.36124313 0.41023892 1. ... 0.21514902 0.20937248 0.29639077]\n ...\n [0.5429713 0.57276535 0.19736767 ... 0.1519197 0.49718088 0.24916063]\n [0.7534299 0.47032836 0.5275282 ... 0.48575184 0.37796748 0.8329442 ]\n [0.5346024 0.06591911 0.09868778 ... 0.18692125 0.12507176 0.23826317]]", + "intensity": "-52.960995579585294", + "intensity_frames": "[[-108.55711553 -107.54799355 -106.56084047 ... -79.90661083\n -80.09973204 -80.31283042]\n [-108.55711553 -107.54799355 -106.56084047 ... -79.90661083\n -80.09973204 -80.31283042]\n [ -97.5584812 -95.38000954 -93.13034426 ... -59.1932777\n -60.57690489 -61.54267738]\n ...\n [ -91.39332006 -89.7150811 -89.25202166 ... -61.56917415\n -63.93786299 -63.34231422]\n [-108.55711553 -107.54799355 -106.56084047 ... -79.90661083\n -80.09973204 -80.31283042]\n [-108.55711553 -107.54799355 -106.56084047 ... -79.90661083\n -80.09973204 -80.31283042]]", + "volume": "[0.00027038 0.00041029 0.00050493 ... 0.00063084 0.00056505 0.00046881]", + "avg_volume": "0.19482724", + "loudness": "0.24210354685783386", + "beats": "[ 2.92571429 3.39011338 3.77324263 4.29569161 4.80653061\n 5.29414966 5.77015873 6.19972789 6.64090703 7.07047619\n 7.51165533 7.95283447 8.40562358 8.83519274 9.2647619\n 9.69433107 10.18195011 10.64634921 11.12235828 11.55192744\n 12.06276644 12.56199546 12.99156463 13.39791383 13.82748299\n 14.28027211 14.69823129 15.05814059 15.51092971 15.96371882\n 16.43972789 16.92734694 17.40335601 17.85614512 18.3321542\n 18.79655329 19.26095238 19.7137415 20.20136054 20.67736961\n 21.14176871 21.6061678 22.07056689 22.54657596 23.02258503\n 23.47537415 23.97460317 24.41578231 24.89179138 25.36780045\n 25.83219955 26.29659864 26.76099773 27.22539683 27.73623583\n 28.17741497 28.64181406 29.10621315 29.60544218 30.04662132\n 30.52263039 30.9754195 31.45142857 31.92743764 32.39183673\n 32.85623583 33.3322449 33.79664399 34.27265306 34.72544218\n 35.20145125 35.67746032 36.14185941 36.6062585 37.08226757\n 37.54666667 38.01106576 38.47546485 38.95147392 39.41587302\n 39.89188209 40.36789116 40.83229025 41.29668934 41.80752834\n 42.23709751 42.7014966 43.17750567 43.66512472 44.11791383\n 44.62875283 45.04671202 45.52272109 45.98712018 46.45151927\n 46.91591837 47.39192744 47.86793651 48.35555556 48.78512472\n 49.23791383 49.7139229 50.20154195 50.66594104 51.15356009\n 51.62956916 52.0707483 52.54675737 53.02276644 53.46394558\n 53.93995465 54.41596372 54.90358277 55.36798186 55.809161\n 56.29678005 56.79600907 57.23718821 57.68997732 58.16598639\n 58.64199546 59.10639456 59.5475737 60.04680272 60.52281179\n 60.97560091 61.45160998 61.90439909 62.39201814 62.85641723\n 63.28598639 63.78521542 64.26122449 64.73723356 65.20163265\n 65.67764172 66.14204082 66.60643991 67.08244898 67.5352381\n 68.01124717 68.48725624 68.96326531 69.4276644 69.89206349\n 70.36807256 70.83247166 71.29687075 71.7844898 72.20244898\n 72.701678 73.17768707 73.66530612 74.11809524 74.61732426\n 75.03528345 75.52290249 75.97569161 76.45170068 76.92770975\n 77.39210884 77.85650794 78.33251701 78.7969161 79.27292517\n 79.72571429 80.20172336 80.66612245 81.14213152 81.60653061\n 82.09414966 82.54693878 83.01133787 83.46412698 83.96335601\n 84.4277551 84.8921542 85.35655329 85.82095238 86.29696145\n 86.77297052 87.22575964 87.70176871 88.1661678 88.64217687\n 89.11818594 89.58258503 90.04698413 90.5229932 90.97578231\n 91.45179138 91.91619048 92.39219955 92.85659864 93.33260771\n 93.7970068 94.27301587 94.72580499 95.20181406 95.67782313\n 96.14222222 96.60662132 97.08263039 97.54702948 98.01142857\n 98.47582766 98.95183673 99.41623583 99.8922449 100.36825397\n 100.83265306 101.29705215 101.77306122 102.22585034 102.70185941\n 103.17786848 103.64226757 104.11827664 104.58267574 105.04707483\n 105.5230839 105.96426304 106.45188209 106.91628118 107.40390023\n 107.85668934 108.33269841 108.79709751 109.27310658 109.72589569\n 110.21351474 110.66630385 111.14231293 111.618322 112.08272109\n 112.54712018 113.02312925 113.47591837 113.95192744 114.41632653\n 114.8923356 115.35673469 115.82113379 116.29714286 116.77315193\n 117.21433107 117.71356009 118.16634921 118.65396825 119.11836735\n 119.59437642 120.04716553 120.51156463 120.97596372 121.46358277\n 121.91637188 122.41560091 122.86839002 123.28634921 123.79718821\n 124.2615873 124.72598639 125.17877551 125.66639456 126.17723356\n 126.59519274 127.10603175 127.54721088 128.06965986 128.46439909\n 128.91718821 129.41641723 129.8924263 130.36843537 130.82122449\n 131.29723356 131.76163265 132.20281179 132.69043084 133.16643991\n 133.64244898 134.10684807 134.62929705 135.09369615 135.55809524\n 135.97605442 136.44045351 136.91646259 137.41569161 137.89170068\n 138.37931973 138.79727891 139.31972789 139.78412698 140.27174603\n 140.68970522 141.16571429 141.60689342 142.05968254 142.54730159\n 143.03492063 143.51092971 143.98693878 144.4861678 144.96217687\n 145.41496599 145.8677551 146.35537415 146.83138322 147.26095238\n 147.73696145 148.21297052 148.66575964 149.10693878 149.6061678\n 150.03573696 150.48852608]", + "segments_boundaries": "[ 0 22 54 103 131 194 219 248 286 321 439 486 520 552\n 647 683 720 753 781 808 845 871 898 929 974 1082 1109 1136\n 1292]", + "segments_labels": "[0. 1. 2. 1. 1. 1. 3. 1. 1. 1. 1. 1. 1. 1. 3. 1. 1. 1. 1. 1. 1. 1. 1. 1.\n 1. 4. 4. 5.]", + "frequency": "230.88860214871994", + "key": "A#3", + "frequencyFramesPath": "C:\\Users\\hmbem\\Desktop\\Scripts\\Temp_Projects\\polymath_fork_04_10_2023-02_08PM\\polymath\\content\\db\\frequencyFrames\\FlyLike_52_72bebf3a5fc36b049bf11d355784b3660ad20c17fe79e911713ecbd83a6d4c97_FrequencyFrames.txt" + } + } + } +} diff --git a/content/db/frequencyFrames/FlyLike_52_72bebf3a5fc36b049bf11d355784b3660ad20c17fe79e911713ecbd83a6d4c97_FrequencyFrames.txt b/content/db/frequencyFrames/FlyLike_52_72bebf3a5fc36b049bf11d355784b3660ad20c17fe79e911713ecbd83a6d4c97_FrequencyFrames.txt new file mode 100644 index 0000000..0074e19 --- /dev/null +++ b/content/db/frequencyFrames/FlyLike_52_72bebf3a5fc36b049bf11d355784b3660ad20c17fe79e911713ecbd83a6d4c97_FrequencyFrames.txt @@ -0,0 +1 @@ +[[0.0, 1967.905278009591, 0.103709705], [0.01, 1964.9268607628826, 0.099331304], [0.02, 1958.2425715626139, 0.08645469], [0.03, 1948.9252354264033, 0.08257764], [0.04, 1946.4658145898013, 0.08408008], [0.05, 1945.7779369750822, 0.059629757], [0.06, 1942.5964935595787, 0.044744253], [0.07, 1960.3090802004226, 0.08782459], [0.08, 1971.2279699029045, 0.3090086], [0.09, 1978.1574771395867, 0.40775114], [0.1, 1985.378224830524, 0.3681484], [0.11, 1961.7153608487627, 0.13651831], [0.12, 1958.911967180277, 0.10595822], [0.13, 1947.25577763332, 0.083459556], [0.14, 1952.0193508736475, 0.06139458], [0.15, 1976.7360127989577, 0.22152248], [0.16, 1976.2093867004162, 0.20978072], [0.17, 1976.7340491372001, 0.22154064], [0.18, 1976.2088076434093, 0.20979631], [0.19, 1976.7340700308555, 0.22153495], [0.2, 1976.2091356830842, 0.20978202], [0.21, 1976.7346931023178, 0.22150563], [0.22, 1976.2090032508622, 0.20977767], [0.23, 1976.7327408409392, 0.22151719], [0.24, 1976.2081790956195, 0.20978966], [0.25, 1976.7349190944087, 0.2215116], [0.26, 1976.2065519885823, 0.209821], [0.27, 1976.7339295507627, 0.22153679], [0.28, 1976.2055181441372, 0.20986235], [0.29, 1976.7330842052365, 0.22154245], [0.3, 1976.2059881171137, 0.2098623], [0.31, 1976.733198682503, 0.22154248], [0.32, 1976.2055181441372, 0.20986235], [0.33, 1976.7330842052365, 0.22154245], [0.34, 1976.2055181441372, 0.20986235], [0.35, 1976.7330842052365, 0.22154245], [0.36, 1976.2055181441372, 0.20986235], [0.37, 1976.7330842052365, 0.22154245], [0.38, 1976.2057660562866, 0.20985632], [0.39, 1976.7326175400708, 0.22153263], [0.4, 1976.208012577148, 0.20986003], [0.41, 1976.7335551906626, 0.22156782], [0.42, 1976.2127787081579, 0.20978257], [0.43, 1976.7361027936088, 0.22157842], [0.44, 1976.214486289175, 0.20979078], [0.45, 1976.7352814699918, 0.22148085], [0.46, 1976.2047873327183, 0.20988552], [0.47, 1976.7348760917175, 0.22159299], [0.48, 1976.2080934321148, 0.20986862], [0.49, 1976.737640257469, 0.22151946], [0.5, 1976.2089056870495, 0.2098303], [0.51, 1976.7362149541268, 0.22156872], [0.52, 1976.203962819668, 0.20991892], [0.53, 1976.7342473411154, 0.22159179], [0.54, 1976.2038635171311, 0.209886], [0.55, 1976.733207062473, 0.22164774], [0.56, 1976.2069839897795, 0.21004014], [0.57, 1976.7322437313633, 0.2216134], [0.58, 1976.2098257528492, 0.21009597], [0.59, 1976.7285350522875, 0.22165897], [0.6, 1976.2057898035712, 0.21007916], [0.61, 1976.725851790734, 0.2216729], [0.62, 1976.206108816658, 0.21010317], [0.63, 1976.726249685947, 0.2216914], [0.64, 1976.2071459455217, 0.21011509], [0.65, 1976.7275108318097, 0.22175999], [0.66, 1976.204256487376, 0.21012509], [0.67, 1976.727564740205, 0.22178426], [0.68, 1976.2021650810993, 0.2101477], [0.69, 1976.7269323822006, 0.22180319], [0.7, 1976.2022325487296, 0.21013525], [0.71, 1976.7250507223948, 0.22178863], [0.72, 1976.2046000666187, 0.21006748], [0.73, 1976.725890464277, 0.22173157], [0.74, 1976.2019493727244, 0.20998573], [0.75, 1976.7238825121144, 0.22168869], [0.76, 1976.197615358099, 0.2099341], [0.77, 1976.7232709140058, 0.22169915], [0.78, 1976.1978362192779, 0.20988108], [0.79, 1976.7235292631142, 0.22169496], [0.8, 1976.194902538271, 0.20989734], [0.81, 1976.725027122701, 0.22168083], [0.82, 1976.197839783833, 0.20992583], [0.83, 1976.7260802256937, 0.22172008], [0.84, 1976.1968026791046, 0.20998253], [0.85, 1976.7264957371706, 0.22179128], [0.86, 1976.197498587687, 0.21007922], [0.87, 1976.7260470916958, 0.22179727], [0.88, 1976.1983372536495, 0.21004741], [0.89, 1976.7259615641992, 0.2217445], [0.9, 1976.1979222584823, 0.21000165], [0.91, 1976.723770736407, 0.22171135], [0.92, 1976.1979864421382, 0.2099262], [0.93, 1976.7207440651382, 0.22170989], [0.94, 1976.1971575764526, 0.2099546], [0.95, 1976.7195972944019, 0.22173761], [0.96, 1976.200342707179, 0.20995633], [0.97, 1976.7187394763341, 0.22168303], [0.98, 1976.2003061876226, 0.20993647], [0.99, 1976.713671690271, 0.2217012], [1.0, 1976.1937391805432, 0.20987396], [1.01, 1976.7162673600815, 0.22216098], [1.02, 1976.1908464686962, 0.21003719], [1.03, 1976.7155367860992, 0.22230573], [1.04, 1976.1890605783492, 0.21012013], [1.05, 1976.7128230902447, 0.22227125], [1.06, 1976.188438340204, 0.21016039], [1.07, 1976.7147430345012, 0.22230399], [1.08, 1976.185669121154, 0.21016802], [1.09, 1976.7122826633608, 0.22227192], [1.1, 1976.1860244424156, 0.21014576], [1.11, 1976.7149850421506, 0.22226906], [1.12, 1976.1875034106793, 0.21005063], [1.13, 1976.7163079683598, 0.22224115], [1.14, 1976.1877996321266, 0.21007083], [1.15, 1976.7182660259152, 0.22222483], [1.16, 1976.189834467859, 0.21007188], [1.17, 1976.7156775901099, 0.22219491], [1.18, 1976.1916558618036, 0.21002957], [1.19, 1976.717003229156, 0.22218983], [1.2, 1976.1884015534336, 0.210087], [1.21, 1976.719745800437, 0.22225781], [1.22, 1976.1935551302315, 0.21023041], [1.23, 1976.7221569243704, 0.22227822], [1.24, 1976.1989369610988, 0.21021442], [1.25, 1976.723129109017, 0.22220546], [1.26, 1976.2023806208188, 0.21016194], [1.27, 1976.722990690394, 0.22214969], [1.28, 1976.2016458556614, 0.21017034], [1.29, 1976.7226254557486, 0.22215575], [1.3, 1976.2011395175182, 0.2102429], [1.31, 1976.7271447155656, 0.22219971], [1.32, 1976.199549222314, 0.21025328], [1.33, 1976.7280244467088, 0.22213794], [1.34, 1976.2009264556739, 0.21019503], [1.35, 1976.729308421919, 0.22209607], [1.36, 1976.2004754546697, 0.2101366], [1.37, 1976.7277414927983, 0.22204335], [1.38, 1976.1998333590284, 0.21006997], [1.39, 1976.7219975976616, 0.22166114], [1.4, 1976.199433665054, 0.21006206], [1.41, 1976.7206481942662, 0.2216427], [1.42, 1976.1980387496099, 0.21006437], [1.43, 1976.7206213226066, 0.22163449], [1.44, 1976.198724639576, 0.21004808], [1.45, 1976.7179044270792, 0.2216582], [1.46, 1976.197500080677, 0.20999604], [1.47, 1976.7142087315724, 0.22164662], [1.48, 1976.2001364623532, 0.21006146], [1.49, 1976.716989829711, 0.22171417], [1.5, 1976.1984337060326, 0.21002468], [1.51, 1976.720604593022, 0.2220526], [1.52, 1976.1992451243605, 0.21007212], [1.53, 1976.7222501969509, 0.22209953], [1.54, 1976.1959612627775, 0.21021292], [1.55, 1976.7163895495562, 0.222226], [1.56, 1976.1889974411283, 0.21006598], [1.57, 1976.7136914488428, 0.22225809], [1.58, 1976.1887309036483, 0.21004854], [1.59, 1976.722019310935, 0.22230309], [1.6, 1976.196821017377, 0.21011184], [1.61, 1976.7191403554448, 0.22178106], [1.62, 1976.1968146608224, 0.21005331], [1.63, 1976.7230781642693, 0.22172342], [1.64, 1976.1971676687317, 0.2100311], [1.65, 1976.7336763370372, 0.22175321], [1.66, 1976.2021636306222, 0.21006575], [1.67, 1976.728485385339, 0.22165489], [1.68, 1976.206156032465, 0.2101531], [1.69, 1976.7249092530756, 0.2217363], [1.7, 1976.207398986448, 0.210188], [1.71, 1976.7291247951407, 0.22167152], [1.72, 1976.2040239358148, 0.21005338], [1.73, 1976.7289460454717, 0.22166875], [1.74, 1976.2016312711457, 0.20993747], [1.75, 1976.7312267197428, 0.22166085], [1.76, 1976.1980078593015, 0.20975943], [1.77, 1976.73263354112, 0.22156115], [1.78, 1976.2022309073795, 0.20971258], [1.79, 1976.7197503747718, 0.22162534], [1.8, 1976.1923222952346, 0.209929], [1.81, 1976.7135413537435, 0.22174288], [1.82, 1976.191537820093, 0.2100254], [1.83, 1976.7213625433385, 0.22178863], [1.84, 1976.1892461934103, 0.2101114], [1.85, 1976.7165206839898, 0.22181308], [1.86, 1976.1863372935863, 0.21032436], [1.87, 1976.7104929327204, 0.22195041], [1.88, 1976.1942995866766, 0.21035016], [1.89, 1976.7256032760347, 0.22189845], [1.9, 1976.1968565201532, 0.2102451], [1.91, 1976.730597764022, 0.22178702], [1.92, 1976.1944849698577, 0.21015278], [1.93, 1976.720615154293, 0.22171001], [1.94, 1976.1894562581333, 0.21017025], [1.95, 1976.7215901328764, 0.22181265], [1.96, 1976.1935057876942, 0.21016887], [1.97, 1976.7255121242456, 0.22168736], [1.98, 1976.1940901228306, 0.21006674], [1.99, 1976.7276104577265, 0.22175826], [2.0, 1976.2013957575448, 0.21010084], [2.01, 1976.731550680559, 0.22177008], [2.02, 1976.201916992553, 0.21010967], [2.03, 1976.7283248658327, 0.22154015], [2.04, 1976.203754671244, 0.21015275], [2.05, 1976.723938012883, 0.22155981], [2.06, 1976.2003881698392, 0.21017347], [2.07, 1976.7229420328586, 0.22157405], [2.08, 1976.2008919095385, 0.21017662], [2.09, 1976.7298604171756, 0.22161976], [2.1, 1976.1970599933225, 0.21016304], [2.11, 1976.7270191095974, 0.22173427], [2.12, 1976.1950842429258, 0.21030426], [2.13, 1976.726662212009, 0.22185238], [2.14, 1976.199826115799, 0.21017605], [2.15, 1976.7170478312332, 0.22168775], [2.16, 1976.1943550254687, 0.20995188], [2.17, 1976.7249972712282, 0.22162922], [2.18, 1976.197242824965, 0.20995572], [2.19, 1976.7392946521657, 0.22169964], [2.2, 1976.2085066102932, 0.20988448], [2.21, 1976.7396906652582, 0.2216015], [2.22, 1976.2138109793395, 0.2097385], [2.23, 1976.7379044679362, 0.2214839], [2.24, 1976.2084297916008, 0.2097072], [2.25, 1976.7402914142806, 0.22161126], [2.26, 1976.210668713692, 0.2099125], [2.27, 1976.74119765256, 0.22160904], [2.28, 1976.2166489169206, 0.20982546], [2.29, 1976.7413506424205, 0.22158718], [2.3, 1976.2161889063034, 0.20966722], [2.31, 1976.7415837046585, 0.22171001], [2.32, 1976.2090164297547, 0.20960794], [2.33, 1976.7378497052835, 0.22166425], [2.34, 1976.2110080524108, 0.20977981], [2.35, 1976.7387207466752, 0.22178558], [2.36, 1976.2131242071953, 0.20978273], [2.37, 1976.7422576724348, 0.22184326], [2.38, 1976.2181651175163, 0.20995247], [2.39, 1976.745014547978, 0.22187276], [2.4, 1976.2230966065458, 0.21009448], [2.41, 1976.7460917620697, 0.22197543], [2.42, 1976.222857720266, 0.21010274], [2.43, 1976.7460047631243, 0.22198753], [2.44, 1976.2258683653306, 0.21014903], [2.45, 1976.7461225524628, 0.22192101], [2.46, 1976.2234981348067, 0.21016812], [2.47, 1976.7404807236815, 0.22188993], [2.48, 1976.2227822160144, 0.21005605], [2.49, 1976.7400362730475, 0.22193357], [2.5, 1976.21714208997, 0.21002412], [2.51, 1976.736679330497, 0.22209844], [2.52, 1976.2145188490874, 0.21008809], [2.53, 1976.7413665167956, 0.22206007], [2.54, 1976.205202944751, 0.2103674], [2.55, 1976.7311915932657, 0.22213116], [2.56, 1976.2100570131872, 0.21053201], [2.57, 1976.7370948135601, 0.2223413], [2.58, 1976.2092857376094, 0.21061417], [2.59, 1976.7317652564568, 0.22234605], [2.6, 1976.1972195487076, 0.21078023], [2.61, 1976.721207892764, 0.22240375], [2.62, 1976.196986898136, 0.2108982], [2.63, 1976.717813937206, 0.22245735], [2.64, 1976.1932776171343, 0.21091561], [2.65, 1976.71506164766, 0.22250734], [2.66, 1976.1919474737706, 0.2109431], [2.67, 1976.7162459941462, 0.22256881], [2.68, 1976.18584848597, 0.21079952], [2.69, 1976.7134609236055, 0.22248407], [2.7, 1976.184025088126, 0.21060708], [2.71, 1976.7089439153574, 0.22239864], [2.72, 1976.1883430933476, 0.21056846], [2.73, 1976.7116992374727, 0.2224176], [2.74, 1976.1795975945806, 0.21070184], [2.75, 1976.7130723699463, 0.22242372], [2.76, 1976.1762399545964, 0.2107109], [2.77, 1976.7066616454188, 0.22248144], [2.78, 1976.1718843576214, 0.21075381], [2.79, 1976.7064770025686, 0.22256485], [2.8, 1976.1776131330078, 0.21084858], [2.81, 1976.7092700004282, 0.2227263], [2.82, 1976.1731272345858, 0.21098335], [2.83, 1976.7115451058328, 0.22283785], [2.84, 1976.1715712536893, 0.21088268], [2.85, 1976.710950804581, 0.22286342], [2.86, 1976.1696589892103, 0.210802], [2.87, 1976.7055298791527, 0.22278716], [2.88, 1976.1708439971276, 0.21079649], [2.89, 1976.7100951515163, 0.22277652], [2.9, 1976.1727109564142, 0.2106768], [2.91, 1976.7011599977716, 0.22266416], [2.92, 1976.1760277268359, 0.21062036], [2.93, 1976.6935045458674, 0.22261295], [2.94, 1976.175618003917, 0.2105321], [2.95, 1976.6959739335027, 0.22260317], [2.96, 1976.1773809396536, 0.21057698], [2.97, 1976.7009307640187, 0.22245207], [2.98, 1976.1819928211548, 0.21051493], [2.99, 1976.6994795563985, 0.22240652], [3.0, 1976.176839571631, 0.21044782], [3.01, 1976.6951624328644, 0.22243299], [3.02, 1976.1783830596828, 0.21058342], [3.03, 1976.6981052049032, 0.22246908], [3.04, 1976.1811448714957, 0.21055709], [3.05, 1976.7016806723636, 0.22241113], [3.06, 1976.1884765780972, 0.21029502], [3.07, 1976.7021755562507, 0.22230713], [3.08, 1976.1884724299207, 0.21025641], [3.09, 1976.706096669623, 0.22234404], [3.1, 1976.1910945288016, 0.21045871], [3.11, 1976.7052845660826, 0.22254446], [3.12, 1976.1907902155249, 0.21046369], [3.13, 1976.7056078025325, 0.22244789], [3.14, 1976.1880538586386, 0.21056116], [3.15, 1976.7025542456477, 0.22246644], [3.16, 1976.174292136817, 0.21051969], [3.17, 1976.7030284139819, 0.22248481], [3.18, 1976.17113502263, 0.2105848], [3.19, 1976.7026200183384, 0.22241803], [3.2, 1976.172663079889, 0.21058208], [3.21, 1976.6997240259363, 0.22254519], [3.22, 1976.1760256977109, 0.21052219], [3.23, 1976.698781313442, 0.22254178], [3.24, 1976.1788369939322, 0.21051838], [3.25, 1976.6967955929952, 0.22250168], [3.26, 1976.1801671079302, 0.21056533], [3.27, 1976.7023694995962, 0.22253336], [3.28, 1868.6695869318296, 0.17399807], [3.29, 1667.682173577551, 0.4812588], [3.3, 1496.109558248697, 0.5576888], [3.31, 1368.5000847534209, 0.5263448], [3.32, 1307.0873319780057, 0.0619154], [3.33, 1117.7453312374184, 0.19679557], [3.34, 1045.8649009893736, 0.3634957], [3.35, 895.3959904916628, 0.4655367], [3.36, 855.8068393175846, 0.4474632], [3.37, 733.0253430032257, 0.7360056], [3.38, 687.1680278215777, 0.75600487], [3.39, 624.469300154321, 0.76305014], [3.4, 534.1442784455348, 0.76695395], [3.41, 503.3305441350536, 0.8030491], [3.42, 442.8255426636647, 0.8465629], [3.43, 389.57480831817077, 0.8286158], [3.44, 373.2363270242654, 0.8247955], [3.45, 321.0856566479457, 0.7886169], [3.46, 300.97356322701125, 0.5969775], [3.47, 259.13946632234604, 0.3285913], [3.48, 238.43528468523758, 0.086165614], [3.49, 225.52145854857264, 0.15736178], [3.5, 211.59772593397108, 0.120807536], [3.51, 194.77994239324502, 0.25488332], [3.52, 183.53074155031752, 0.5585633], [3.53, 168.17520097462176, 0.6867483], [3.54, 149.63236958107677, 0.49925604], [3.55, 141.73926967815052, 0.64486414], [3.56, 141.8745836010794, 0.71925324], [3.57, 141.9155749316286, 0.78213954], [3.58, 142.2135713455733, 0.7915459], [3.59, 144.08857140303735, 0.7726245], [3.6, 146.72382875075124, 0.7267679], [3.61, 148.71742581195403, 0.6097387], [3.62, 150.6331984021483, 0.69848645], [3.63, 152.06331869483859, 0.70187336], [3.64, 152.16960167459993, 0.63098973], [3.65, 148.4176277710187, 0.6249575], [3.66, 145.6281520544371, 0.7699163], [3.67, 143.49424013520004, 0.6859133], [3.68, 143.5840163778072, 0.4062125], [3.69, 149.02459778075482, 0.40421832], [3.7, 151.59139258521344, 0.49111688], [3.71, 149.30523254302565, 0.37270522], [3.72, 147.49417710375928, 0.2297493], [3.73, 150.74558641456866, 0.37122774], [3.74, 150.83349076689507, 0.36564445], [3.75, 151.8674384946718, 0.36585343], [3.76, 151.40495822068044, 0.19969603], [3.77, 152.40022049450323, 0.22193846], [3.78, 151.49832468959747, 0.12943847], [3.79, 150.65486038701044, 0.3165815], [3.8, 151.25218582333235, 0.34259027], [3.81, 150.45613205753062, 0.19385931], [3.82, 148.18901800026197, 0.25491127], [3.83, 141.8966259141177, 0.4283681], [3.84, 141.35791746007308, 0.5992606], [3.85, 142.2686385748981, 0.69279736], [3.86, 144.00602067934815, 0.6530981], [3.87, 144.83463210447053, 0.7095512], [3.88, 145.13264163022734, 0.7595152], [3.89, 145.40514516387364, 0.7516349], [3.9, 145.2342158955061, 0.7393997], [3.91, 144.90862315805546, 0.6495383], [3.92, 143.86959459232594, 0.54997486], [3.93, 142.99200463615693, 0.6307792], [3.94, 142.285997932878, 0.6089376], [3.95, 142.9846287575347, 0.6098802], [3.96, 144.32455446851162, 0.44410038], [3.97, 145.76311110254525, 0.42615014], [3.98, 147.01733717651987, 0.44378623], [3.99, 149.35930056536637, 0.6043062], [4.0, 150.4059576446957, 0.6364606], [4.01, 150.21720595523124, 0.70194167], [4.02, 149.26865256428505, 0.7244012], [4.03, 147.40667117421512, 0.6459904], [4.04, 145.81201307362142, 0.72621167], [4.05, 143.76788985281115, 0.7152988], [4.06, 142.23211030726574, 0.6478965], [4.07, 140.9356672040885, 0.5784215], [4.08, 138.53869197943476, 0.3040354], [4.09, 134.4880040107946, 0.32593668], [4.1, 132.63070896565435, 0.38704523], [4.11, 133.05748595989536, 0.2542878], [4.12, 136.99241035260818, 0.31518066], [4.13, 139.97410467183445, 0.57659155], [4.14, 142.70315580033082, 0.5500247], [4.15, 146.64610341944595, 0.6904798], [4.16, 149.12055049775208, 0.7211154], [4.17, 149.81933455233002, 0.689908], [4.18, 149.90614904380368, 0.6320848], [4.19, 148.65645551481305, 0.4799073], [4.2, 147.25490740731792, 0.56921154], [4.21, 145.71516159251476, 0.3865228], [4.22, 144.8047890981584, 0.44260803], [4.23, 144.2494786650985, 0.42465213], [4.24, 144.31771805359944, 0.6880529], [4.25, 144.43854302204488, 0.8043359], [4.26, 143.8061760272852, 0.79720634], [4.27, 143.39924512871625, 0.8054492], [4.28, 143.88629140315805, 0.79936415], [4.29, 144.09581835620594, 0.7976897], [4.3, 144.2698951438235, 0.84211916], [4.31, 144.86802930688253, 0.8387061], [4.32, 146.0526594684519, 0.82500744], [4.33, 146.96252806927356, 0.81858015], [4.34, 147.5475120131683, 0.8345097], [4.35, 147.3362259631728, 0.7762152], [4.36, 146.93747384135068, 0.6017026], [4.37, 146.1071530698592, 0.43099216], [4.38, 146.55495300669344, 0.15895881], [4.39, 147.32928196210116, 0.07756882], [4.4, 147.8771035048613, 0.2572435], [4.41, 149.40406354632734, 0.28719798], [4.42, 149.4555443961581, 0.2832625], [4.43, 152.62423820926924, 0.22191547], [4.44, 152.99375532526415, 0.29184055], [4.45, 152.50233638082582, 0.13302399], [4.46, 151.32803215831206, 0.086176425], [4.47, 149.7774210887419, 0.24379644], [4.48, 147.50920591687768, 0.48169908], [4.49, 146.08231730938226, 0.63707495], [4.5, 146.51453287608416, 0.75015223], [4.51, 146.41958997275492, 0.7844654], [4.52, 146.5979295994637, 0.7858574], [4.53, 146.89422943542087, 0.6377767], [4.54, 147.54103981804133, 0.5011906], [4.55, 147.5926744586985, 0.29840386], [4.56, 147.78695931050908, 0.33992946], [4.57, 147.5467972512359, 0.22420126], [4.58, 148.86728063534144, 0.21888632], [4.59, 147.9126479510918, 0.43620512], [4.6, 147.75329768579456, 0.6543819], [4.61, 147.20361714097035, 0.75584733], [4.62, 147.32964605698075, 0.8108036], [4.63, 147.44420652031803, 0.84167874], [4.64, 147.25033359688513, 0.8107891], [4.65, 147.883586295125, 0.72224057], [4.66, 148.5267220566734, 0.634144], [4.67, 149.28722630076427, 0.44188327], [4.68, 150.47014497629232, 0.25010028], [4.69, 150.81516531910697, 0.130201], [4.7, 150.3380940437373, 0.25229555], [4.71, 149.45995689227698, 0.21074246], [4.72, 149.85364599024086, 0.2658471], [4.73, 150.40309320166452, 0.48239306], [4.74, 149.36552140272624, 0.51737535], [4.75, 148.3325070320083, 0.45587677], [4.76, 147.32188183093345, 0.46077424], [4.77, 147.01289080438426, 0.42392984], [4.78, 146.24313629500142, 0.2528956], [4.79, 148.88733411543873, 0.19009121], [4.8, 147.88000220459477, 0.20735131], [4.81, 139.6243323433429, 0.2209959], [4.82, 142.44603949369258, 0.39063406], [4.83, 144.1982329034359, 0.5572389], [4.84, 145.6443195135445, 0.6885497], [4.85, 147.1179511965321, 0.57317775], [4.86, 148.15374297505144, 0.53204453], [4.87, 148.44953428890295, 0.61839694], [4.88, 147.86377110646558, 0.80327123], [4.89, 147.37652345329784, 0.86217064], [4.9, 146.57099713893192, 0.8463574], [4.91, 145.76605740691068, 0.86427516], [4.92, 145.80943859829645, 0.7971841], [4.93, 146.18482397733348, 0.68452185], [4.94, 147.61415980772014, 0.73134965], [4.95, 149.72021491579386, 0.7447969], [4.96, 151.19261959093026, 0.75674736], [4.97, 152.68924767453817, 0.61669344], [4.98, 154.14365682354224, 0.5501341], [4.99, 154.1127342392267, 0.44238833], [5.0, 152.92519150352942, 0.56714433], [5.01, 150.91273331857715, 0.6237902], [5.02, 147.18999645633377, 0.7235423], [5.03, 145.41910855526245, 0.74716103], [5.04, 140.9128828081918, 0.57406604], [5.05, 136.11951071735425, 0.5069566], [5.06, 119.59031501538047, 0.1981522], [5.07, 118.33698169355591, 0.3530404], [5.08, 117.25610497336604, 0.5432302], [5.09, 115.36712301587065, 0.51630956], [5.1, 114.59621540327026, 0.52501166], [5.11, 113.74257327222283, 0.5626822], [5.12, 113.44454320707612, 0.5338032], [5.13, 114.84079383907826, 0.26866722], [5.14, 124.527246104533, 0.42028505], [5.15, 138.40788303237355, 0.2680519], [5.16, 139.88470734236495, 0.52378625], [5.17, 141.18177069966794, 0.6676502], [5.18, 142.90915447495993, 0.694026], [5.19, 143.97992428645264, 0.7425709], [5.2, 143.31203737576368, 0.6654592], [5.21, 143.07918417129412, 0.6891332], [5.22, 141.94489990956663, 0.68403584], [5.23, 142.29807279636492, 0.6603012], [5.24, 141.98095133732895, 0.6715893], [5.25, 143.29550972437502, 0.5535794], [5.26, 144.5267199862885, 0.37489837], [5.27, 146.28022489886865, 0.4097247], [5.28, 146.8653138432254, 0.54485404], [5.29, 146.83853118884423, 0.3369508], [5.3, 146.615493601827, 0.2969093], [5.31, 146.92310351935328, 0.42057312], [5.32, 146.70420184247928, 0.45832327], [5.33, 146.9110151698513, 0.5196791], [5.34, 145.43412198521312, 0.5364029], [5.35, 143.6091844951471, 0.3663473], [5.36, 142.03515070664747, 0.46000764], [5.37, 143.0409555951435, 0.4674178], [5.38, 145.79525215431198, 0.63678604], [5.39, 147.36614612353634, 0.7664674], [5.4, 147.8710886340533, 0.80627495], [5.41, 148.9774786908106, 0.7701431], [5.42, 149.99180586465357, 0.7483374], [5.43, 151.0244072564282, 0.7452431], [5.44, 151.19641658631826, 0.6671604], [5.45, 149.32080927313126, 0.71662766], [5.46, 147.59862206041896, 0.7643727], [5.47, 146.17762408418184, 0.75234765], [5.48, 145.3380480168366, 0.7874501], [5.49, 145.3405830542588, 0.7992428], [5.5, 145.43101564605672, 0.80152994], [5.51, 145.7864068092449, 0.7918185], [5.52, 146.278968587248, 0.7485946], [5.53, 146.70859362705943, 0.7154896], [5.54, 145.9218465071081, 0.7322272], [5.55, 145.67309454355194, 0.81341803], [5.56, 145.93215250717373, 0.843525], [5.57, 145.92190092532735, 0.85009396], [5.58, 146.69324232253967, 0.8620561], [5.59, 146.40948305684753, 0.8443146], [5.6, 146.5758067614223, 0.81938845], [5.61, 147.1464579477345, 0.81688124], [5.62, 147.2403441541414, 0.85328406], [5.63, 147.44617073128094, 0.82163054], [5.64, 147.17023226396987, 0.8380836], [5.65, 147.23987957834512, 0.831673], [5.66, 146.92057128113913, 0.8326244], [5.67, 146.26040534619997, 0.8114218], [5.68, 146.12098221195424, 0.845074], [5.69, 146.26291630754753, 0.79477054], [5.7, 145.63091688763737, 0.79402477], [5.71, 145.79532835051336, 0.7754845], [5.72, 146.80995126326152, 0.66761714], [5.73, 147.8544964898195, 0.5543067], [5.74, 149.667569307742, 0.25162917], [5.75, 149.5270231458594, 0.25633076], [5.76, 149.3870465590987, 0.3235046], [5.77, 149.53417914623535, 0.4719285], [5.78, 149.5454081938588, 0.14902915], [5.79, 149.5321108753551, 0.15601215], [5.8, 149.28002581521946, 0.13929927], [5.81, 149.04753983350278, 0.30674097], [5.82, 149.2161651058694, 0.17552847], [5.83, 148.39563764880256, 0.35095936], [5.84, 149.0389660256574, 0.60012627], [5.85, 150.65624615221213, 0.59669715], [5.86, 151.13264908067418, 0.4175697], [5.87, 150.6622453150452, 0.20836523], [5.88, 149.24828669062103, 0.0939481], [5.89, 148.1716467068686, 0.31393555], [5.9, 147.65035433662294, 0.40003175], [5.91, 148.48428114338975, 0.49027345], [5.92, 148.71716878905386, 0.5033394], [5.93, 149.10619169762262, 0.62817633], [5.94, 148.8960032495258, 0.48264003], [5.95, 149.55989825456552, 0.42027846], [5.96, 149.00639007095404, 0.53324974], [5.97, 149.04933202502042, 0.55278563], [5.98, 148.58837985314292, 0.41142142], [5.99, 147.8458009894029, 0.40120864], [6.0, 148.39212571779518, 0.51508313], [6.01, 148.06520367735365, 0.48990935], [6.02, 147.40806944787795, 0.59156084], [6.03, 147.09496392542155, 0.6696582], [6.04, 147.06374019667612, 0.73925745], [6.05, 146.98251273373867, 0.7487865], [6.06, 146.69850358666122, 0.6119457], [6.07, 146.2577651389538, 0.39496076], [6.08, 145.96460977914126, 0.48870513], [6.09, 145.88034669553065, 0.6820519], [6.1, 146.82486368188387, 0.7679799], [6.11, 147.64230325426976, 0.80160016], [6.12, 148.81410840609445, 0.793038], [6.13, 149.11449369361006, 0.7197624], [6.14, 149.35817157432328, 0.40109393], [6.15, 148.9099356199976, 0.34042865], [6.16, 149.07684169756888, 0.6344545], [6.17, 148.4843805683181, 0.72052914], [6.18, 148.04648621380426, 0.65628695], [6.19, 146.9969057551668, 0.53984654], [6.2, 145.99436079313796, 0.11685997], [6.21, 141.83102467837713, 0.12941855], [6.22, 137.3989806398107, 0.17025986], [6.23, 134.31831171107663, 0.1691201], [6.24, 137.5893513693467, 0.18769072], [6.25, 139.3901624398278, 0.3288582], [6.26, 140.95226826049634, 0.46900848], [6.27, 141.48656284183357, 0.33484966], [6.28, 146.99974238225406, 0.26256964], [6.29, 148.477274907446, 0.19754423], [6.3, 148.12909907712455, 0.13428426], [6.31, 147.9342629668555, 0.21179794], [6.32, 147.71901043370295, 0.39035928], [6.33, 147.96916695740347, 0.2988669], [6.34, 148.04296311351305, 0.21289682], [6.35, 148.1803486565588, 0.21514161], [6.36, 147.80914649744284, 0.16963707], [6.37, 146.61382987469392, 0.23552647], [6.38, 147.20066161949407, 0.10505532], [6.39, 130.02614160690018, 0.19794299], [6.4, 120.20848813728315, 0.33095905], [6.41, 122.74890871445776, 0.43601057], [6.42, 124.23527609644083, 0.39116773], [6.43, 122.76722913069574, 0.3244336], [6.44, 117.52648926595491, 0.3130904], [6.45, 115.93730476662932, 0.32177424], [6.46, 115.82340986547949, 0.27048594], [6.47, 119.56515878867044, 0.15955678], [6.48, 120.86516079679377, 0.12779093], [6.49, 119.53469475421953, 0.1153543], [6.5, 119.68465623844097, 0.16699396], [6.51, 119.79288920390759, 0.2712165], [6.52, 119.19421183979146, 0.20642188], [6.53, 119.78430885322555, 0.3313034], [6.54, 121.6820984881158, 0.14593013], [6.55, 124.6738797676852, 0.18441634], [6.56, 134.4843815287609, 0.31305528], [6.57, 142.41168940229227, 0.13886009], [6.58, 144.90230750280767, 0.11518227], [6.59, 150.47460406917082, 0.1723878], [6.6, 149.63591035467965, 0.16879751], [6.61, 145.99020269186357, 0.31894892], [6.62, 145.0710070186754, 0.5904962], [6.63, 144.91904967518684, 0.68400383], [6.64, 146.55513779874255, 0.711586], [6.65, 147.07257026143157, 0.80712265], [6.66, 146.76416089164314, 0.777919], [6.67, 145.99216531213233, 0.7799155], [6.68, 145.76431882472303, 0.75817347], [6.69, 146.2750956955238, 0.73433816], [6.7, 146.28110911334366, 0.6971625], [6.71, 146.71064423186527, 0.69455427], [6.72, 147.24731865273438, 0.7034707], [6.73, 147.58476671931018, 0.7803073], [6.74, 147.67959197109676, 0.7830005], [6.75, 147.82574625979805, 0.8309223], [6.76, 147.80814511619363, 0.82306755], [6.77, 148.89192453868554, 0.8179076], [6.78, 149.42943658656247, 0.79360867], [6.79, 150.68314602285648, 0.82128656], [6.8, 150.66398064304502, 0.78685606], [6.81, 151.05525083353584, 0.79389715], [6.82, 150.64587784917393, 0.7873104], [6.83, 149.92308708452742, 0.79721177], [6.84, 148.3690015970072, 0.722571], [6.85, 145.7224200133577, 0.6143604], [6.86, 143.48742714517704, 0.459961], [6.87, 139.2997846126485, 0.26458892], [6.88, 130.13242972253838, 0.23092496], [6.89, 127.74139888494288, 0.33044785], [6.9, 130.44476556795027, 0.5240199], [6.91, 141.12134222391242, 0.37893727], [6.92, 147.35610424611158, 0.42493296], [6.93, 147.9634366858025, 0.73833156], [6.94, 148.65655662788646, 0.82800525], [6.95, 148.80733672259598, 0.8603402], [6.96, 149.23812440293472, 0.84958047], [6.97, 148.96280534359917, 0.7510123], [6.98, 147.6714596073736, 0.6049014], [6.99, 145.88782594727184, 0.60566247], [7.0, 143.42660100888597, 0.6635916], [7.01, 142.63597753716522, 0.7262947], [7.02, 143.78290333809224, 0.7075571], [7.03, 145.25471259824138, 0.8003094], [7.04, 145.79143186397823, 0.76498395], [7.05, 146.87624820828853, 0.71156025], [7.06, 148.02498499871837, 0.73307127], [7.07, 148.87672171853353, 0.7668826], [7.08, 148.42068208489383, 0.7281707], [7.09, 147.205532423454, 0.7165765], [7.1, 146.5393353833236, 0.67912877], [7.11, 146.49757352313867, 0.66211605], [7.12, 147.3570173186354, 0.68521327], [7.13, 146.34612553294255, 0.65903467], [7.14, 143.89681668571706, 0.66817945], [7.15, 140.9859420368584, 0.6654901], [7.16, 138.6205212061231, 0.6946262], [7.17, 138.40868302641326, 0.6889139], [7.18, 138.37049678288372, 0.7067474], [7.19, 137.2919018323899, 0.6915577], [7.2, 135.51951100083937, 0.5868045], [7.21, 133.57873407376835, 0.59598833], [7.22, 133.36601748394347, 0.585875], [7.23, 134.17300477469593, 0.55072945], [7.24, 135.49100279979515, 0.5451089], [7.25, 137.98592832617524, 0.5384638], [7.26, 141.9204822564633, 0.6016275], [7.27, 144.86288227957093, 0.6623618], [7.28, 145.8510516960209, 0.72477674], [7.29, 147.1786863141353, 0.7694391], [7.3, 147.19683312244743, 0.80562866], [7.31, 147.66646067076292, 0.85449344], [7.32, 147.50256339973836, 0.86380917], [7.33, 147.5260206086722, 0.87133443], [7.34, 146.8122464206315, 0.85316163], [7.35, 146.00981531545352, 0.80917233], [7.36, 144.94343251742322, 0.81547403], [7.37, 144.10032497434102, 0.81320083], [7.38, 144.22212091458044, 0.8470305], [7.39, 143.65818694651813, 0.86056614], [7.4, 143.59026495582617, 0.8443281], [7.41, 143.44971453325851, 0.81920236], [7.42, 144.26433585321047, 0.82969373], [7.43, 145.76861603257458, 0.84048855], [7.44, 146.53903165048843, 0.85284007], [7.45, 147.20241611494475, 0.8797148], [7.46, 147.70754563236633, 0.86822206], [7.47, 147.50256427626243, 0.8219222], [7.48, 145.8537936975654, 0.79804766], [7.49, 143.16586340375392, 0.64327043], [7.5, 141.51269674006588, 0.66420627], [7.51, 139.4554970966846, 0.45972815], [7.52, 141.0607974446461, 0.1380883], [7.53, 143.01583840099298, 0.37675238], [7.54, 146.0640986363217, 0.55039483], [7.55, 146.36666582815357, 0.4511838], [7.56, 147.01270119457786, 0.36163282], [7.57, 148.4007228982046, 0.501137], [7.58, 148.10966501157006, 0.3803347], [7.59, 148.74192345009132, 0.20962593], [7.6, 148.13308749004761, 0.17785098], [7.61, 148.40763658311081, 0.26771146], [7.62, 149.58612036615077, 0.30918816], [7.63, 148.61663788070868, 0.30481303], [7.64, 148.00763382066145, 0.17409882], [7.65, 144.89094007555624, 0.15032643], [7.66, 136.74094872265383, 0.24898115], [7.67, 124.71073165539126, 0.25826374], [7.68, 116.70452670480115, 0.21027192], [7.69, 113.1821220736508, 0.1913054], [7.7, 114.3430560406466, 0.44075876], [7.71, 114.69476737540204, 0.56354773], [7.72, 115.12806687975495, 0.65838903], [7.73, 115.24038910683146, 0.66584504], [7.74, 115.56949380691657, 0.5686859], [7.75, 131.0792680217179, 0.2557739], [7.76, 147.1287356437341, 0.45384514], [7.77, 147.16447300409698, 0.64071876], [7.78, 147.4240807557461, 0.7915822], [7.79, 147.05459256812603, 0.6162186], [7.8, 146.48217656125547, 0.52722204], [7.81, 146.56507466255033, 0.31747803], [7.82, 163.42146633720833, 0.3080612], [7.83, 183.1963458175067, 0.28224474], [7.84, 202.36106678539238, 0.09433444], [7.85, 201.21531223263338, 0.1258144], [7.86, 196.9224120706119, 0.1709907], [7.87, 195.64578725682856, 0.29090038], [7.88, 196.49439399480906, 0.21393937], [7.89, 196.37151937168684, 0.35852048], [7.9, 197.01570530725843, 0.17359231], [7.91, 196.5959839908351, 0.39177835], [7.92, 197.13157757856126, 0.15291488], [7.93, 197.3524410047622, 0.27467144], [7.94, 182.81251824169607, 0.11704348], [7.95, 165.2015510939191, 0.26544458], [7.96, 154.46947987199843, 0.3273167], [7.97, 157.3193632935138, 0.4136867], [7.98, 152.67964787779897, 0.4170589], [7.99, 148.7729434375454, 0.3844104], [8.0, 148.8392151045136, 0.18890177], [8.01, 139.15308186595777, 0.35273924], [8.02, 120.60364814833905, 0.40907055], [8.03, 111.66881509531643, 0.4557821], [8.04, 112.19019295556723, 0.4683915], [8.05, 111.56574255425917, 0.37327892], [8.06, 111.76051034243876, 0.45814025], [8.07, 112.31165846387107, 0.6144972], [8.08, 113.90023693903919, 0.506881], [8.09, 116.76353443955551, 0.23909213], [8.1, 119.7165472944466, 0.62628394], [8.11, 122.42470332206325, 0.6727277], [8.12, 123.4711402824231, 0.5606222], [8.13, 125.17348557177112, 0.59069955], [8.14, 126.30248705741025, 0.5923449], [8.15, 126.56287253225244, 0.51923454], [8.16, 128.64211109371013, 0.5442809], [8.17, 129.58561840590227, 0.5856982], [8.18, 128.35917720680158, 0.56471014], [8.19, 127.0441038246671, 0.64227885], [8.2, 125.20161430997754, 0.7004657], [8.21, 123.98650357496044, 0.704689], [8.22, 122.84646958070986, 0.6062845], [8.23, 121.04147757096838, 0.7222029], [8.24, 119.72253364414334, 0.68851435], [8.25, 117.90358619108191, 0.58644533], [8.26, 114.65165481019909, 0.4957042], [8.27, 112.78546294100771, 0.571525], [8.28, 111.3363896434723, 0.653263], [8.29, 110.67157865955619, 0.70376664], [8.3, 110.44749211133819, 0.46036285], [8.31, 110.98846104211675, 0.2017449], [8.32, 111.95443967884785, 0.23263557], [8.33, 112.23318521279535, 0.10767961], [8.34, 111.9685973037938, 0.06915921], [8.35, 111.14287708122436, 0.10839764], [8.36, 111.0527366380442, 0.13974728], [8.37, 111.03549642712244, 0.12402299], [8.38, 111.18367108337108, 0.2225384], [8.39, 111.89822015079719, 0.46029675], [8.4, 111.75674321384679, 0.49784675], [8.41, 111.97546334067624, 0.43231708], [8.42, 112.38658072395417, 0.19613133], [8.43, 112.94240991996725, 0.1408995], [8.44, 112.8074980397422, 0.43481216], [8.45, 113.14120756504025, 0.52259165], [8.46, 113.79862767042987, 0.5362059], [8.47, 114.65452322808059, 0.7082782], [8.48, 114.16219016841, 0.66429263], [8.49, 113.81194938349176, 0.5426836], [8.5, 128.8298225039836, 0.14537877], [8.51, 147.33087925176343, 0.13141316], [8.52, 147.59932722686048, 0.27284053], [8.53, 153.55138396096413, 0.23027107], [8.54, 166.11342640374448, 0.39046898], [8.55, 166.76272437702062, 0.59876895], [8.56, 164.29834519047654, 0.5394873], [8.57, 161.0052840952245, 0.35938862], [8.58, 151.0835023099108, 0.3497373], [8.59, 148.85501755858738, 0.38072473], [8.6, 148.2030484851506, 0.14170326], [8.61, 146.96499531887085, 0.092594266], [8.62, 144.63355435827575, 0.11496319], [8.63, 141.03605527169077, 0.20081234], [8.64, 135.59031572722623, 0.14871325], [8.65, 130.0681480344031, 0.18587562], [8.66, 126.53168256436516, 0.14708872], [8.67, 123.04505686344083, 0.16025564], [8.68, 117.3339262176109, 0.19931234], [8.69, 116.10024285373223, 0.32856387], [8.7, 116.1105417227018, 0.39326134], [8.71, 117.0627872567488, 0.508048], [8.72, 116.93744176020013, 0.20455949], [8.73, 116.09542313613943, 0.21903878], [8.74, 113.65449526338145, 0.21905594], [8.75, 113.35544823181685, 0.20856437], [8.76, 113.4234606946473, 0.23507369], [8.77, 114.22049104217612, 0.28316566], [8.78, 113.38067312200066, 0.4336058], [8.79, 114.42788110617948, 0.4764527], [8.8, 114.07726750922698, 0.65007186], [8.81, 113.79946206569164, 0.697699], [8.82, 112.86003296645212, 0.6979222], [8.83, 112.26420442558931, 0.69194543], [8.84, 112.5157862548929, 0.6563087], [8.85, 112.33595361479547, 0.53157884], [8.86, 111.96133545260662, 0.47914907], [8.87, 111.50500946642381, 0.4609694], [8.88, 111.35283249960281, 0.5245726], [8.89, 110.95498994582597, 0.42870745], [8.9, 110.47858768770811, 0.48467147], [8.91, 109.93140496955604, 0.6523063], [8.92, 108.8644549066581, 0.5817332], [8.93, 108.10772021457224, 0.41912824], [8.94, 111.30506377771505, 0.2238684], [8.95, 115.46408249778142, 0.24559088], [8.96, 122.72641423982466, 0.26792088], [8.97, 128.5727591462091, 0.25970381], [8.98, 135.5230012500291, 0.29072303], [8.99, 141.67628771005968, 0.5647524], [9.0, 147.62416199321484, 0.59053886], [9.01, 158.42685958812447, 0.6627294], [9.02, 164.35615356394865, 0.6218491], [9.03, 165.9882434007129, 0.5580626], [9.04, 179.94985389167763, 0.26279157], [9.05, 190.56633059220792, 0.20708388], [9.06, 191.35103967894173, 0.28274104], [9.07, 191.36471918069813, 0.21478283], [9.08, 187.00150387536036, 0.2287761], [9.09, 184.10024484541648, 0.2847083], [9.1, 170.1892474007386, 0.2545645], [9.11, 164.3323492294361, 0.5880875], [9.12, 160.75764662632452, 0.22857112], [9.13, 150.24356935288378, 0.22575481], [9.14, 147.09232522041387, 0.49522796], [9.15, 148.23903649545676, 0.46551216], [9.16, 148.003558140873, 0.5667437], [9.17, 146.44243136535013, 0.4395934], [9.18, 145.77462473218407, 0.58257467], [9.19, 145.59834505640518, 0.32935116], [9.2, 157.55957408611923, 0.16981755], [9.21, 180.14058402690273, 0.17290679], [9.22, 190.56794647295538, 0.22541265], [9.23, 189.92490596913515, 0.20380878], [9.24, 188.4447591319196, 0.32662916], [9.25, 185.26532990100552, 0.42815635], [9.26, 176.95665814716853, 0.5296287], [9.27, 171.5696229899041, 0.53936803], [9.28, 167.9045929421682, 0.45820934], [9.29, 163.67092037167083, 0.5820694], [9.3, 159.05903142884426, 0.6595071], [9.31, 156.01522094107773, 0.67551297], [9.32, 153.35991958971854, 0.38030675], [9.33, 149.8290995910412, 0.20180322], [9.34, 167.29058953313432, 0.09560577], [9.35, 163.8545117992288, 0.07246297], [9.36, 154.75024936634247, 0.12656738], [9.37, 147.5610025800734, 0.47578752], [9.38, 136.52656999041412, 0.6584732], [9.39, 130.0109312963197, 0.6878234], [9.4, 116.2758190762454, 0.6547375], [9.41, 112.44036871644022, 0.5244363], [9.42, 112.90611079800803, 0.65146136], [9.43, 112.7873830773349, 0.6886822], [9.44, 112.42623783050361, 0.6635127], [9.45, 112.08726563779136, 0.6942101], [9.46, 111.96114205001798, 0.5887298], [9.47, 112.04101708238362, 0.4182908], [9.48, 113.75486509656396, 0.41187796], [9.49, 114.32527667714706, 0.56189394], [9.5, 114.48942492368255, 0.59399915], [9.51, 114.87088065009927, 0.68873], [9.52, 114.45152370826106, 0.6418159], [9.53, 115.23431391183392, 0.5986563], [9.54, 114.4869666356913, 0.4602792], [9.55, 127.53796701799578, 0.46990237], [9.56, 142.5579005700421, 0.370326], [9.57, 163.9216157692728, 0.10973759], [9.58, 181.0163165099559, 0.23953497], [9.59, 195.1686878928134, 0.1502737], [9.6, 223.49667727104287, 0.19846079], [9.61, 245.45078846410837, 0.32734188], [9.62, 245.3561584328709, 0.35967615], [9.63, 245.70335185077795, 0.23792349], [9.64, 244.09415971884283, 0.3799059], [9.65, 244.45513086387376, 0.38508412], [9.66, 234.22587973520078, 0.076438904], [9.67, 208.0979972435569, 0.14399052], [9.68, 193.47337969023005, 0.24822973], [9.69, 192.37169344141563, 0.3193355], [9.7, 192.46498851233483, 0.17902595], [9.71, 191.93688196435755, 0.24145548], [9.72, 191.31190914531604, 0.17570804], [9.73, 191.25340815808883, 0.23417039], [9.74, 191.87393007616177, 0.13266015], [9.75, 171.08806844832355, 0.1597321], [9.76, 153.89382398275552, 0.2124983], [9.77, 137.26184942784678, 0.13154364], [9.78, 121.76033461574221, 0.23486926], [9.79, 108.89513303722198, 0.30918425], [9.8, 108.95938756335595, 0.36411047], [9.81, 107.54524277591088, 0.22734103], [9.82, 103.54813439118035, 0.23438136], [9.83, 110.19998789172632, 0.10933527], [9.84, 115.23556948623097, 0.26987842], [9.85, 114.26050899035559, 0.28635195], [9.86, 114.3199240674764, 0.3709896], [9.87, 115.20698029650333, 0.4405586], [9.88, 115.84670202871918, 0.43502432], [9.89, 117.14593236070706, 0.34875458], [9.9, 117.45266712284067, 0.33741632], [9.91, 117.26666164054392, 0.3694593], [9.92, 116.89433671757955, 0.60208434], [9.93, 115.63926066391468, 0.5867563], [9.94, 113.93345414152877, 0.59471065], [9.95, 112.39168498288187, 0.56871635], [9.96, 109.82415033669243, 0.52801913], [9.97, 108.72364633763242, 0.26578808], [9.98, 108.19947901251271, 0.16757694], [9.99, 109.24268056799835, 0.2711861], [10.0, 110.10163860761267, 0.35705537], [10.01, 110.23592979888684, 0.35975358], [10.02, 110.42740893347201, 0.18066122], [10.03, 110.51252332077388, 0.10357214], [10.04, 109.25318926551874, 0.3016671], [10.05, 108.73650613340149, 0.25221717], [10.06, 108.85832905861892, 0.3116909], [10.07, 109.28438819746356, 0.25776324], [10.08, 109.95683195788348, 0.17700398], [10.09, 111.44420241887035, 0.23167612], [10.1, 111.97816631808011, 0.2604435], [10.11, 111.78923594963926, 0.33131197], [10.12, 110.81848712656605, 0.4594936], [10.13, 110.68298950336415, 0.71757925], [10.14, 110.63928403472816, 0.8183494], [10.15, 110.8158223719239, 0.77684593], [10.16, 110.16371388223192, 0.67020166], [10.17, 108.15132004310044, 0.3640957], [10.18, 105.26422283771674, 0.29653338], [10.19, 105.23701866036407, 0.19715983], [10.2, 106.56976545681107, 0.2704063], [10.21, 108.65081694631797, 0.16941664], [10.22, 109.20263720067337, 0.41911384], [10.23, 109.9864223320045, 0.1536568], [10.24, 111.2352432274949, 0.19091645], [10.25, 112.16440198233738, 0.4769774], [10.26, 112.94380849579778, 0.3828797], [10.27, 113.00716959320398, 0.45347738], [10.28, 113.6760467946257, 0.6029455], [10.29, 113.77298510433207, 0.63179135], [10.3, 113.67782444277097, 0.72460955], [10.31, 113.42614147647075, 0.6658407], [10.32, 113.29960984647165, 0.657649], [10.33, 113.14352672404637, 0.6333904], [10.34, 113.61525748264013, 0.583016], [10.35, 112.81756341157079, 0.54687923], [10.36, 111.30439302029598, 0.5727884], [10.37, 110.03007880717264, 0.55997497], [10.38, 110.2455986500285, 0.36560282], [10.39, 111.98463854813289, 0.11278587], [10.4, 114.15007903694602, 0.14535058], [10.41, 121.9399079141779, 0.2191979], [10.42, 138.2775479975952, 0.579824], [10.43, 146.53796221659343, 0.42635915], [10.44, 150.7828466556845, 0.40984988], [10.45, 153.19191649482048, 0.56043714], [10.46, 155.0321143799529, 0.7255206], [10.47, 154.52306537471608, 0.7780834], [10.48, 153.93210921234208, 0.6987611], [10.49, 151.4506162667038, 0.67008585], [10.5, 149.21109741369088, 0.74639064], [10.51, 146.99761836690902, 0.8162711], [10.52, 146.25465273301825, 0.8571265], [10.53, 145.95129691236113, 0.8624409], [10.54, 146.73863973560043, 0.86891884], [10.55, 147.72594691969596, 0.88378006], [10.56, 148.8608039666349, 0.88416445], [10.57, 149.7138736243192, 0.83507735], [10.58, 149.4055000917372, 0.79567426], [10.59, 149.1564475729246, 0.60277295], [10.6, 148.78240886270717, 0.5427425], [10.61, 149.2000766891348, 0.45688865], [10.62, 151.2378349423761, 0.57556874], [10.63, 155.0331702254326, 0.5174854], [10.64, 158.65216312587194, 0.59644634], [10.65, 163.73186954728078, 0.5577586], [10.66, 173.32773518250792, 0.5819644], [10.67, 180.83803393884938, 0.6752377], [10.68, 185.87412275585504, 0.7265266], [10.69, 189.56959034792186, 0.77755207], [10.7, 190.35157706148135, 0.75760907], [10.71, 191.91813480988742, 0.72166854], [10.72, 194.2682025354731, 0.40907714], [10.73, 196.41953110847817, 0.23755436], [10.74, 194.79185106193552, 0.16129637], [10.75, 179.31565469369974, 0.12473466], [10.76, 160.73319156426317, 0.11270688], [10.77, 144.29719855728442, 0.1294461], [10.78, 130.99090632739183, 0.15600415], [10.79, 121.3533372269321, 0.45366767], [10.8, 119.05968860069922, 0.6315514], [10.81, 117.36580139764078, 0.7638078], [10.82, 116.77282603975739, 0.8756051], [10.83, 116.62552206823436, 0.87033635], [10.84, 115.8098042655931, 0.8441728], [10.85, 116.38430493066595, 0.81709474], [10.86, 116.8366836212244, 0.83759785], [10.87, 118.31425414448589, 0.7025025], [10.88, 120.40120311666902, 0.7256986], [10.89, 121.90406623285122, 0.80486494], [10.9, 123.3484616215417, 0.7072106], [10.91, 125.39834701411421, 0.676902], [10.92, 127.74338958383346, 0.65607035], [10.93, 127.90430979891171, 0.6879762], [10.94, 128.4548860049852, 0.5198682], [10.95, 129.04067700215256, 0.37826732], [10.96, 128.18898528918118, 0.4138646], [10.97, 127.031993481422, 0.5446667], [10.98, 127.80805154701602, 0.63873065], [10.99, 127.99094611636289, 0.6947609], [11.0, 127.91781280313386, 0.7653434], [11.01, 127.96478551476804, 0.7463056], [11.02, 127.85181519460103, 0.7325707], [11.03, 127.8739223114832, 0.72104645], [11.04, 127.55162869515524, 0.6521597], [11.05, 127.2225280325271, 0.615757], [11.06, 127.20485962989605, 0.5457047], [11.07, 126.54613227000212, 0.49755096], [11.08, 129.73057977613226, 0.44920105], [11.09, 138.81879962634596, 0.39944956], [11.1, 149.46856579610008, 0.24435315], [11.11, 158.01538257833377, 0.12117201], [11.12, 160.91396068602197, 0.18303595], [11.13, 158.43634629840832, 0.16917114], [11.14, 145.75662379791177, 0.4022925], [11.15, 145.44946130548743, 0.2720825], [11.16, 141.27203753521297, 0.43324158], [11.17, 142.20207471745212, 0.30593914], [11.18, 143.89260377495665, 0.17073393], [11.19, 151.64280767283688, 0.16077477], [11.2, 169.35599921855882, 0.28770754], [11.21, 185.65320652247553, 0.32945344], [11.22, 197.03806224085906, 0.2215159], [11.23, 221.3078785254099, 0.23342012], [11.24, 225.5886047647528, 0.19164298], [11.25, 243.86257369117072, 0.23239851], [11.26, 269.93772487751176, 0.10538025], [11.27, 277.161910131994, 0.2560553], [11.28, 315.3628477691707, 0.26051435], [11.29, 330.2255110842268, 0.09957048], [11.3, 360.8965978862609, 0.3105331], [11.31, 381.6087406032082, 0.4480804], [11.32, 380.5754873905457, 0.40222996], [11.33, 383.34424314020475, 0.23365757], [11.34, 382.72707147211435, 0.23344286], [11.35, 380.0815407323543, 0.16396438], [11.36, 379.9543143279229, 0.22878012], [11.37, 382.3001819437854, 0.24219215], [11.38, 388.23161300771915, 0.3053155], [11.39, 384.12139965421096, 0.2171401], [11.4, 358.18680768381427, 0.21785708], [11.41, 338.50701250267775, 0.2372909], [11.42, 329.184311747228, 0.1597913], [11.43, 318.42546855709554, 0.17738658], [11.44, 289.7702618054674, 0.2163813], [11.45, 284.5737215632977, 0.3294498], [11.46, 283.7600215536541, 0.27370286], [11.47, 277.74754437681, 0.27500242], [11.48, 273.9752246775454, 0.21179146], [11.49, 275.2431156064988, 0.34932724], [11.5, 286.91187657477883, 0.5351952], [11.51, 293.4646118973729, 0.40060952], [11.52, 298.9479533461211, 0.6955124], [11.53, 309.073129979544, 0.7521849], [11.54, 326.5199698781402, 0.84105414], [11.55, 334.0603702049292, 0.8232428], [11.56, 335.2368823328658, 0.8818588], [11.57, 333.4730845747151, 0.8440509], [11.58, 336.1588294594279, 0.7235493], [11.59, 348.69822447493283, 0.6153189], [11.6, 355.6370457657019, 0.49896908], [11.61, 364.623764508294, 0.43429184], [11.62, 369.60497976509987, 0.44763693], [11.63, 373.64356424100976, 0.24681734], [11.64, 376.8988258385706, 0.45838323], [11.65, 377.5650278927292, 0.60756534], [11.66, 376.4158244875626, 0.79647154], [11.67, 377.8792145748835, 0.73700655], [11.68, 377.6478435020315, 0.6035636], [11.69, 376.3305726906457, 0.49456385], [11.7, 372.4710025536974, 0.42084533], [11.71, 369.4975889548688, 0.3670825], [11.72, 396.6350080156418, 0.21837965], [11.73, 426.3792687883077, 0.18585032], [11.74, 468.99790542962137, 0.21172404], [11.75, 484.2923813707659, 0.27180418], [11.76, 480.1375672363291, 0.3592056], [11.77, 479.9653976436499, 0.45018402], [11.78, 477.53995225473665, 0.53434604], [11.79, 476.11449960774473, 0.47788423], [11.8, 479.26390328827824, 0.3351048], [11.81, 474.38267941002096, 0.16076429], [11.82, 444.72811964860523, 0.15464707], [11.83, 413.1427673203408, 0.24345341], [11.84, 392.56313439998485, 0.31712398], [11.85, 384.776179665442, 0.23348618], [11.86, 383.8472206729542, 0.41022164], [11.87, 381.0395805663371, 0.39073786], [11.88, 382.30882845746953, 0.2573249], [11.89, 382.7036914269166, 0.30800042], [11.9, 382.1045117363232, 0.3720482], [11.91, 379.01117442057364, 0.35413632], [11.92, 380.87085979200685, 0.30926493], [11.93, 384.48574816684754, 0.17336753], [11.94, 384.83248992509186, 0.21144654], [11.95, 384.9191893346671, 0.2533911], [11.96, 384.7488873643647, 0.2705475], [11.97, 388.8217781601836, 0.2889579], [11.98, 387.8635692478888, 0.5145945], [11.99, 384.10670355310606, 0.4784957], [12.0, 381.0951104083856, 0.48968515], [12.01, 376.98690565665976, 0.63759923], [12.02, 374.35135300633505, 0.70006675], [12.03, 375.3219423685425, 0.66586936], [12.04, 378.32439053815995, 0.5321881], [12.05, 378.6502047500819, 0.4980969], [12.06, 379.9385157630098, 0.41866603], [12.07, 356.1975094829199, 0.29032895], [12.08, 318.44855999147165, 0.41046768], [12.09, 286.52417743356153, 0.2540135], [12.1, 267.3313805925645, 0.36123618], [12.11, 237.36284141397783, 0.3428973], [12.12, 219.04400931507553, 0.36736962], [12.13, 188.66777486039575, 0.33913162], [12.14, 179.77945194573635, 0.26089156], [12.15, 156.71368094235245, 0.2837571], [12.16, 158.44133021337439, 0.17607822], [12.17, 162.37053173000982, 0.27693483], [12.18, 166.75587864409874, 0.27063328], [12.19, 165.4768138788292, 0.33758402], [12.2, 164.49969918118154, 0.45669857], [12.21, 163.40727455779373, 0.42753562], [12.22, 163.91734053157097, 0.50612223], [12.23, 164.86707009997747, 0.42439514], [12.24, 168.48546040658925, 0.626422], [12.25, 171.18771853980704, 0.6269918], [12.26, 171.40548053566746, 0.70644736], [12.27, 170.76813545216135, 0.69206566], [12.28, 169.3051989567341, 0.5527044], [12.29, 166.24909571176977, 0.6017842], [12.3, 164.1478017004383, 0.5282222], [12.31, 162.20712789984213, 0.5355369], [12.32, 160.90664382107065, 0.4825514], [12.33, 159.53864545788383, 0.30396545], [12.34, 158.71461158430515, 0.3844385], [12.35, 155.08828450886642, 0.56933856], [12.36, 155.478293574137, 0.7006142], [12.37, 154.8743064618589, 0.7929863], [12.38, 151.59641341339682, 0.7621367], [12.39, 147.15456032899093, 0.6807269], [12.4, 144.9033202220091, 0.69026506], [12.41, 143.06380907838187, 0.65922445], [12.42, 142.05264226409255, 0.4870105], [12.43, 140.53162983049603, 0.3319178], [12.44, 138.5611251748257, 0.18901823], [12.45, 137.3924305420469, 0.15650967], [12.46, 139.85090821973972, 0.12184808], [12.47, 139.96647961278745, 0.16871592], [12.48, 140.7879798672338, 0.17974153], [12.49, 140.85732026970456, 0.12201342], [12.5, 139.38465798854406, 0.16364011], [12.51, 139.57814311748183, 0.14727369], [12.52, 139.3984491579332, 0.25184232], [12.53, 138.939278481546, 0.14403938], [12.54, 137.18448915675677, 0.1284381], [12.55, 137.54808558881925, 0.24181981], [12.56, 138.5356419712216, 0.23674579], [12.57, 138.99725093939043, 0.29718947], [12.58, 139.98267936167775, 0.44165525], [12.59, 139.79175777207723, 0.49365342], [12.6, 138.17372735479498, 0.3451468], [12.61, 139.33842594859075, 0.3322729], [12.62, 140.9429438061611, 0.29948312], [12.63, 157.26406102934044, 0.25574702], [12.64, 157.9290392619964, 0.3740665], [12.65, 160.59856011274178, 0.41656095], [12.66, 183.53738854523414, 0.3938308], [12.67, 208.21893299456048, 0.4656982], [12.68, 233.39862541057573, 0.3086164], [12.69, 264.28365522579725, 0.2654316], [12.7, 289.7302751245501, 0.22249211], [12.71, 335.6164394051241, 0.41017953], [12.72, 371.67579490420957, 0.5052944], [12.73, 370.7113536433427, 0.5473025], [12.74, 368.00966521353985, 0.6355997], [12.75, 367.96867780258486, 0.62404394], [12.76, 365.5202486251228, 0.51272315], [12.77, 361.23582816536185, 0.43888745], [12.78, 365.3500404464337, 0.489471], [12.79, 364.59432240370796, 0.52067834], [12.8, 365.84954694912426, 0.62581515], [12.81, 364.5762955341653, 0.6422051], [12.82, 363.16174761302506, 0.60214245], [12.83, 360.42566265865304, 0.68503726], [12.84, 360.6811420146374, 0.619117], [12.85, 358.74870447864225, 0.5340721], [12.86, 355.164537789569, 0.35994068], [12.87, 357.0385237239265, 0.11916199], [12.88, 353.90148891427117, 0.16042669], [12.89, 351.6308836207328, 0.34894666], [12.9, 358.9517696938901, 0.53554827], [12.91, 356.2599353870388, 0.36359566], [12.92, 360.3417706480898, 0.38436106], [12.93, 362.9698881929929, 0.3515712], [12.94, 358.9486934118247, 0.25909927], [12.95, 358.6488879567439, 0.19207393], [12.96, 356.6931318035522, 0.31959397], [12.97, 354.6747869697914, 0.28745726], [12.98, 352.22116426305786, 0.40240642], [12.99, 350.6347748746362, 0.53540057], [13.0, 347.404446722211, 0.5627362], [13.01, 345.5113313139654, 0.46311712], [13.02, 342.4537621216509, 0.6043719], [13.03, 338.1843945285698, 0.7152112], [13.04, 337.5731200417306, 0.61621433], [13.05, 333.96285162667203, 0.50243497], [13.06, 333.0873745614442, 0.5058426], [13.07, 327.0270571275256, 0.33660012], [13.08, 339.26936906513043, 0.21598126], [13.09, 355.30155646292746, 0.21174726], [13.1, 359.4375067286322, 0.45036802], [13.11, 358.5069068655352, 0.5364557], [13.12, 361.1969622271922, 0.71300775], [13.13, 360.60680454833994, 0.3437287], [13.14, 361.12998915929376, 0.4819649], [13.15, 359.9548738294459, 0.40662813], [13.16, 361.1721003507878, 0.35818684], [13.17, 359.20254943847533, 0.32798377], [13.18, 357.41426711773545, 0.5271271], [13.19, 356.2422428453791, 0.71785617], [13.2, 359.5542298550156, 0.7419715], [13.21, 360.5704261526065, 0.7311935], [13.22, 360.29100684028265, 0.76016444], [13.23, 359.82801168080016, 0.72165066], [13.24, 359.70714090215046, 0.57490623], [13.25, 358.3045631813943, 0.5747589], [13.26, 350.83204089343786, 0.28807658], [13.27, 367.31944748835025, 0.21264781], [13.28, 381.7046774550815, 0.24113329], [13.29, 388.86608548078976, 0.10547199], [13.3, 385.430075655978, 0.14762786], [13.31, 385.77893644904947, 0.1555568], [13.32, 383.7599930405502, 0.22133896], [13.33, 380.1890866366415, 0.2529796], [13.34, 387.36529151971985, 0.5137267], [13.35, 390.06284426994233, 0.6097905], [13.36, 392.39985649683706, 0.61500525], [13.37, 391.94846162770347, 0.56692284], [13.38, 396.49818135301734, 0.58532774], [13.39, 396.18091802691333, 0.606415], [13.4, 393.6299176729147, 0.5743882], [13.41, 386.65141198841764, 0.59207565], [13.42, 375.8040860941754, 0.4463045], [13.43, 370.78161330002183, 0.4947347], [13.44, 363.3912483078853, 0.295096], [13.45, 361.93550305484325, 0.37098223], [13.46, 360.05713396616505, 0.5683657], [13.47, 359.09002000239815, 0.5137727], [13.48, 355.4247749583005, 0.63686085], [13.49, 355.83122362330573, 0.768237], [13.5, 353.6678049222281, 0.7964919], [13.51, 351.51865099195686, 0.81989807], [13.52, 351.6547635519406, 0.8265725], [13.53, 349.89224192882637, 0.8319051], [13.54, 350.14631402233243, 0.8541967], [13.55, 348.9991038576561, 0.8327148], [13.56, 348.82951818114344, 0.8402325], [13.57, 348.57105698141356, 0.8289184], [13.58, 348.29848021115185, 0.81503993], [13.59, 350.3858148409556, 0.86949277], [13.6, 350.83640170684055, 0.8515597], [13.61, 350.2743649844586, 0.8461413], [13.62, 348.70013888511374, 0.79879665], [13.63, 347.2902515579393, 0.7710454], [13.64, 346.76024448764514, 0.7700782], [13.65, 346.84539479080104, 0.69213897], [13.66, 351.21803775173237, 0.5178646], [13.67, 350.4846511311894, 0.21347933], [13.68, 350.88495693809165, 0.097636916], [13.69, 351.4686184016783, 0.08529687], [13.7, 348.5118478825352, 0.18114942], [13.71, 347.7751980982881, 0.1619076], [13.72, 356.32327442317194, 0.19301054], [13.73, 364.72801728121135, 0.16002545], [13.74, 366.70367080045105, 0.16553627], [13.75, 365.74072825394063, 0.20309484], [13.76, 364.26683915041707, 0.34575576], [13.77, 362.67194849493546, 0.26021516], [13.78, 353.6200709269889, 0.16670614], [13.79, 354.73365742425847, 0.406374], [13.8, 355.62794362896335, 0.66141623], [13.81, 355.65566540447657, 0.80016714], [13.82, 353.87367697357354, 0.8065037], [13.83, 354.34804379991135, 0.78206176], [13.84, 354.6867949219562, 0.5567049], [13.85, 360.4443675104378, 0.305572], [13.86, 368.3360888897365, 0.26793507], [13.87, 373.3446087710206, 0.4323802], [13.88, 385.7075862396229, 0.5064356], [13.89, 402.99776774610837, 0.24579789], [13.9, 417.80835799719455, 0.3204729], [13.91, 420.10337348782537, 0.18748507], [13.92, 423.9026223225783, 0.21122392], [13.93, 423.27245795045985, 0.27515146], [13.94, 424.9586371070616, 0.44638532], [13.95, 421.27883169761344, 0.2891401], [13.96, 422.7599180188826, 0.16769193], [13.97, 366.52493859577623, 0.09945999], [13.98, 336.4039693189116, 0.15230818], [13.99, 339.6083565051532, 0.3102438], [14.0, 336.8625693616897, 0.6282561], [14.01, 335.35706209895636, 0.70109], [14.02, 335.51011190458803, 0.7348858], [14.03, 335.46404337944216, 0.7736521], [14.04, 334.97234784661634, 0.6936918], [14.05, 335.72049107656676, 0.7048765], [14.06, 334.4987885087213, 0.72187465], [14.07, 332.6359163984852, 0.66739553], [14.08, 331.40682745905883, 0.65441746], [14.09, 331.7234411978486, 0.4346838], [14.1, 332.7938910403591, 0.19426638], [14.11, 333.50001798242226, 0.16752318], [14.12, 335.9621592048478, 0.15434264], [14.13, 341.80985022337956, 0.27359444], [14.14, 348.33628532144354, 0.5614938], [14.15, 357.9839160677012, 0.6953921], [14.16, 362.2816823842322, 0.6766058], [14.17, 360.14240781262515, 0.6618362], [14.18, 360.5270133621665, 0.6103567], [14.19, 357.12480772124906, 0.62182045], [14.2, 359.00234808362177, 0.59479994], [14.21, 357.3070973138189, 0.452014], [14.22, 350.71561253547964, 0.36919132], [14.23, 348.1411801513211, 0.5432622], [14.24, 343.375726456352, 0.5842699], [14.25, 340.0860519116117, 0.61250645], [14.26, 339.227790282196, 0.6183626], [14.27, 339.7659657130541, 0.56602407], [14.28, 339.3389709802392, 0.47821823], [14.29, 337.36205372753295, 0.39504883], [14.3, 333.94744857248827, 0.40046546], [14.31, 331.3011137348522, 0.47103372], [14.32, 331.83022072563153, 0.28753412], [14.33, 332.6915476108252, 0.44600633], [14.34, 332.952388098268, 0.41420838], [14.35, 331.11145342777775, 0.4686419], [14.36, 329.474486287175, 0.25399902], [14.37, 331.95085746124266, 0.08683103], [14.38, 332.64497563412044, 0.19459933], [14.39, 331.07017374388016, 0.1905797], [14.4, 332.1614962822092, 0.10294408], [14.41, 329.9771350870561, 0.11640215], [14.42, 332.25198162363876, 0.10371404], [14.43, 331.83678520900355, 0.12027845], [14.44, 319.41481655777363, 0.48976263], [14.45, 284.4198982128433, 0.53462315], [14.46, 270.5916428140189, 0.42221308], [14.47, 246.86478714674746, 0.16196454], [14.48, 230.82034771021515, 0.44369575], [14.49, 231.21071346200216, 0.7542677], [14.5, 231.9225360042352, 0.800947], [14.51, 231.3250117084918, 0.76836765], [14.52, 231.39781763086, 0.8057132], [14.53, 231.2857610340612, 0.8269008], [14.54, 232.5782145818681, 0.8472465], [14.55, 233.66448909474764, 0.9040115], [14.56, 234.85253466763004, 0.88728464], [14.57, 235.9043620513321, 0.89221275], [14.58, 235.98331326027926, 0.89489186], [14.59, 235.6884046422957, 0.89768016], [14.6, 234.4554159418492, 0.88239306], [14.61, 232.37004499049775, 0.83331656], [14.62, 229.12815213543297, 0.8234293], [14.63, 225.59854277791888, 0.84124863], [14.64, 223.3504886078162, 0.82007015], [14.65, 220.46901718375975, 0.48102632], [14.66, 236.63761224514946, 0.3801976], [14.67, 245.3377858820807, 0.549016], [14.68, 252.0277595294475, 0.69250983], [14.69, 256.8419457502137, 0.7229391], [14.7, 259.8507126048435, 0.7147653], [14.71, 265.1561093068826, 0.6469593], [14.72, 271.06493586500505, 0.6408475], [14.73, 276.85320504691794, 0.71187216], [14.74, 278.28607960741067, 0.7768812], [14.75, 278.62078345418206, 0.7887108], [14.76, 277.9992177694243, 0.80338466], [14.77, 276.8129214543236, 0.79321355], [14.78, 277.3886779827187, 0.77947235], [14.79, 276.0125203166262, 0.7377989], [14.8, 277.8035960840831, 0.80061066], [14.81, 280.9718347351426, 0.8706134], [14.82, 281.6765152182947, 0.8579437], [14.83, 284.8884571171806, 0.8260075], [14.84, 285.89124015664424, 0.83412427], [14.85, 284.40010060108057, 0.7776966], [14.86, 281.479537972008, 0.715647], [14.87, 277.0549546560012, 0.5077653], [14.88, 268.4049504400289, 0.2663769], [14.89, 295.36007729309085, 0.23008263], [14.9, 321.2509433727695, 0.36273822], [14.91, 362.3339891122186, 0.4098209], [14.92, 379.5282885529744, 0.36843723], [14.93, 377.05905403640094, 0.23016688], [14.94, 369.09972924729226, 0.3103859], [14.95, 342.8719002874042, 0.14353636], [14.96, 332.7431227097841, 0.18004395], [14.97, 326.1700138305433, 0.25400808], [14.98, 308.3539827593803, 0.41355225], [14.99, 304.6663994275463, 0.42300975], [15.0, 306.58482390351435, 0.43432653], [15.01, 304.92043585032866, 0.2706942], [15.02, 306.63449812682416, 0.16361648], [15.03, 299.54826987809565, 0.21480362], [15.04, 287.4062452221186, 0.13193296], [15.05, 280.01286560542394, 0.16673037], [15.06, 275.0322405857417, 0.17584468], [15.07, 270.1400444284313, 0.15988359], [15.08, 270.6203372233642, 0.52870524], [15.09, 273.96799995120307, 0.71280414], [15.1, 275.40425468991884, 0.8065509], [15.11, 275.6883944200214, 0.82360667], [15.12, 275.60854186306756, 0.81828624], [15.13, 277.03897543808876, 0.82732457], [15.14, 277.39034744503954, 0.8678435], [15.15, 278.0019345778471, 0.89034504], [15.16, 278.3512770078226, 0.9021775], [15.17, 279.61468837195974, 0.8914854], [15.18, 280.0848663333902, 0.89962566], [15.19, 279.57149404289555, 0.90334976], [15.2, 278.8008433059877, 0.91685903], [15.21, 277.9838790328018, 0.91625017], [15.22, 277.07386644788863, 0.9025681], [15.23, 276.1996917330184, 0.8760564], [15.24, 275.7616090671031, 0.8617236], [15.25, 274.86746068952874, 0.8226772], [15.26, 273.20609352054464, 0.7655729], [15.27, 269.7762027766056, 0.7482114], [15.28, 266.10217770124524, 0.7401434], [15.29, 267.9401929534181, 0.70188355], [15.3, 271.859888049312, 0.758166], [15.31, 275.7004581472672, 0.8115985], [15.32, 279.7792170689451, 0.8808061], [15.33, 280.51436028908114, 0.9131034], [15.34, 279.66400676391623, 0.89777565], [15.35, 277.50345299277393, 0.89917904], [15.36, 275.5947449202704, 0.87804335], [15.37, 274.24682562369037, 0.85858035], [15.38, 273.4109228710834, 0.8426646], [15.39, 273.9614707022672, 0.85523725], [15.4, 274.0009635097565, 0.8527902], [15.41, 275.66650449028464, 0.8792361], [15.42, 277.30008980629975, 0.8957492], [15.43, 278.3105218801992, 0.9085032], [15.44, 278.3869513108779, 0.8997915], [15.45, 277.96943828189956, 0.882468], [15.46, 277.195919503996, 0.8690195], [15.47, 276.016606310778, 0.8459436], [15.48, 273.8079737415367, 0.8267288], [15.49, 268.2616582333193, 0.8044534], [15.5, 261.0140138429581, 0.7182889], [15.51, 256.9022057702266, 0.70331293], [15.52, 254.15358716902932, 0.7255084], [15.53, 253.85155682087384, 0.71008736], [15.54, 257.9371382210412, 0.70940274], [15.55, 263.1129494469867, 0.6439672], [15.56, 271.99254207607817, 0.69886225], [15.57, 277.77058451397943, 0.8552495], [15.58, 279.32919884042303, 0.8647756], [15.59, 278.67508881113076, 0.8499236], [15.6, 276.69914944877564, 0.82190716], [15.61, 274.50013923244205, 0.8198402], [15.62, 273.653017726975, 0.80754364], [15.63, 273.27077329427584, 0.8109778], [15.64, 273.60013009053466, 0.8323576], [15.65, 274.3118955133452, 0.8582748], [15.66, 275.4517938292786, 0.8691488], [15.67, 277.9391749495235, 0.8971662], [15.68, 279.90750492562233, 0.88761216], [15.69, 280.5293968305609, 0.8960517], [15.7, 279.7020684981733, 0.87143695], [15.71, 278.3498041182809, 0.8804439], [15.72, 275.8136617128066, 0.80801696], [15.73, 271.2122605184975, 0.7621482], [15.74, 268.37542493679996, 0.790608], [15.75, 269.4163041164627, 0.7209134], [15.76, 275.64484899609204, 0.756511], [15.77, 277.3237451079055, 0.78025866], [15.78, 278.12446190263637, 0.82941616], [15.79, 277.5600489048349, 0.770394], [15.8, 278.1286357597495, 0.7636331], [15.81, 275.2592697989149, 0.65920806], [15.82, 272.95128054492056, 0.62476987], [15.83, 276.582602575901, 0.6166531], [15.84, 278.57401940703005, 0.74417126], [15.85, 277.92061353940005, 0.6928616], [15.86, 278.21163289885465, 0.6423887], [15.87, 322.1310409465406, 0.36477703], [15.88, 354.567436918938, 0.48681852], [15.89, 353.3992106462705, 0.72711366], [15.9, 351.1523679953779, 0.80973876], [15.91, 349.80554613399727, 0.85107434], [15.92, 350.0130432259708, 0.8127779], [15.93, 350.62408024412787, 0.6368001], [15.94, 347.7467183974196, 0.18180093], [15.95, 343.40320750839345, 0.071195565], [15.96, 338.1775884422324, 0.30481538], [15.97, 328.37914287839334, 0.37914175], [15.98, 325.85095337584573, 0.21161878], [15.99, 323.24621281933105, 0.25569797], [16.0, 322.3818491783629, 0.23135565], [16.01, 321.8068308774982, 0.12705629], [16.02, 317.53107014738936, 0.12389094], [16.03, 310.5994507360571, 0.15094455], [16.04, 311.6846395952841, 0.1712364], [16.05, 307.1047725494643, 0.2558631], [16.06, 307.53693938664406, 0.57831633], [16.07, 299.96595349208957, 0.662034], [16.08, 290.75830652727814, 0.48457283], [16.09, 283.64458520292953, 0.109805316], [16.1, 278.05259779726055, 0.0484091], [16.11, 281.36008094676333, 0.37230384], [16.12, 280.6134951868322, 0.69237643], [16.13, 280.94069399888605, 0.81542635], [16.14, 281.43986129441055, 0.85789907], [16.15, 279.57543968529603, 0.8448054], [16.16, 277.07566865313345, 0.83310694], [16.17, 273.0750074261819, 0.8288885], [16.18, 272.18753281067603, 0.8491201], [16.19, 271.8157835628535, 0.8599078], [16.2, 273.1827019867765, 0.84476817], [16.21, 274.5779723260606, 0.8535628], [16.22, 275.2042068441912, 0.8421671], [16.23, 275.65279469271553, 0.8576048], [16.24, 275.84622511490574, 0.8614981], [16.25, 276.73563900439507, 0.8577956], [16.26, 276.70812871933344, 0.8371434], [16.27, 277.19814610548167, 0.838656], [16.28, 277.9627092078783, 0.8488752], [16.29, 277.93058303669176, 0.84983397], [16.3, 277.4786816936096, 0.8441682], [16.31, 276.70765069181914, 0.8308387], [16.32, 276.98540505222246, 0.8392244], [16.33, 277.7583776560774, 0.8668472], [16.34, 278.0535612114144, 0.87588525], [16.35, 278.021356823761, 0.8636975], [16.36, 277.79209935840606, 0.848671], [16.37, 278.77640814353083, 0.8226556], [16.38, 278.28358038751026, 0.76543534], [16.39, 276.756793294713, 0.6184204], [16.4, 277.69350238814764, 0.59822476], [16.41, 275.868468040318, 0.41786543], [16.42, 245.3584481837426, 0.29625124], [16.43, 217.71283629381384, 0.21302307], [16.44, 196.70212117386157, 0.1905378], [16.45, 196.28572997708548, 0.48155758], [16.46, 197.54151307176375, 0.60066336], [16.47, 200.48520737114808, 0.59160525], [16.48, 206.12658727661508, 0.6869777], [16.49, 209.14162535659653, 0.7610753], [16.5, 210.25794709407188, 0.8186631], [16.51, 209.3728845856471, 0.82363266], [16.52, 207.65037968951603, 0.8464192], [16.53, 206.64270662400884, 0.8569457], [16.54, 206.72144075382872, 0.84998614], [16.55, 207.38403500134825, 0.8675045], [16.56, 209.259763401577, 0.85293555], [16.57, 211.45654750942896, 0.8540989], [16.58, 212.4756824006346, 0.86921316], [16.59, 211.27192758434742, 0.847432], [16.6, 209.14214637937252, 0.82141167], [16.61, 206.72087845533568, 0.81855863], [16.62, 203.6054636768797, 0.7908551], [16.63, 199.5454845313628, 0.76785207], [16.64, 195.11648019126739, 0.519135], [16.65, 184.94791891359785, 0.5466969], [16.66, 177.5546619772166, 0.5950842], [16.67, 171.73285098430273, 0.76856786], [16.68, 167.5917357633184, 0.81344527], [16.69, 164.3221538321056, 0.7885926], [16.7, 162.78665969123375, 0.81680095], [16.71, 163.87892721438885, 0.7611587], [16.72, 166.8648411910832, 0.7430981], [16.73, 171.25037349966493, 0.7337541], [16.74, 174.4243309631513, 0.7010031], [16.75, 176.30288814474764, 0.7329299], [16.76, 176.45279418942874, 0.7549276], [16.77, 174.92101614754506, 0.7613428], [16.78, 173.05774222349567, 0.79656327], [16.79, 171.47201748228824, 0.77849525], [16.8, 171.3175940343042, 0.8029722], [16.81, 170.9843720465097, 0.7938482], [16.82, 170.88539088043777, 0.7978276], [16.83, 172.43556354720795, 0.803998], [16.84, 174.97184397468206, 0.751739], [16.85, 178.16820560357758, 0.735312], [16.86, 180.83857246060774, 0.80933213], [16.87, 181.75544330418745, 0.8158701], [16.88, 182.91371016900348, 0.78728443], [16.89, 183.7064309768586, 0.46211118], [16.9, 186.2400969233228, 0.40542218], [16.91, 193.8101415817065, 0.217963], [16.92, 196.22929503072842, 0.0858281], [16.93, 198.053766499095, 0.16858724], [16.94, 201.88341213373448, 0.2745647], [16.95, 205.85664372148213, 0.15537041], [16.96, 207.5131677951504, 0.07545249], [16.97, 207.10693907561037, 0.055665843], [16.98, 209.66003326713684, 0.16988997], [16.99, 210.9100463168892, 0.35045972], [17.0, 209.3551885976404, 0.5962289], [17.01, 206.53926303632738, 0.648962], [17.02, 205.45862215708706, 0.723645], [17.03, 205.58628189983023, 0.757234], [17.04, 205.24657562502352, 0.7332319], [17.05, 205.74845204400032, 0.68706185], [17.06, 206.92419597666824, 0.6183184], [17.07, 208.04384230002339, 0.6136843], [17.08, 209.0766577430597, 0.6773895], [17.09, 209.23720829458568, 0.70399225], [17.1, 209.81844445680315, 0.7300613], [17.11, 210.12280961648452, 0.7439434], [17.12, 210.2639112590505, 0.7819952], [17.13, 210.39261393798267, 0.7792886], [17.14, 210.03643437048765, 0.76863676], [17.15, 208.7051445699693, 0.78586274], [17.16, 207.7089135571831, 0.79670703], [17.17, 205.90653851035927, 0.81123364], [17.18, 204.46790790439312, 0.7917706], [17.19, 204.11317018643996, 0.8307481], [17.2, 204.5309694397594, 0.8202408], [17.21, 205.7437697794887, 0.84810835], [17.22, 207.0326796337706, 0.83872867], [17.23, 208.3661926595076, 0.85909355], [17.24, 208.9253255682773, 0.8371392], [17.25, 208.4704726726473, 0.8205433], [17.26, 207.45594698059435, 0.79438096], [17.27, 206.8505159164114, 0.7950391], [17.28, 206.48383171315112, 0.7938886], [17.29, 206.34510919764793, 0.8203916], [17.3, 205.5076608154958, 0.8403762], [17.31, 203.29402851727647, 0.81255156], [17.32, 200.01509647865234, 0.7621894], [17.33, 195.7712375754335, 0.7641802], [17.34, 191.67633781781262, 0.7862361], [17.35, 188.8766396878732, 0.8058857], [17.36, 188.3461785467293, 0.8237974], [17.37, 189.55440428503425, 0.8286267], [17.38, 192.01848732805348, 0.7678204], [17.39, 197.41397491220147, 0.50196606], [17.4, 205.2525787456383, 0.749862], [17.41, 207.14107886503368, 0.83234084], [17.42, 207.47798919681313, 0.85214126], [17.43, 206.64109463243983, 0.8242873], [17.44, 206.83333067937295, 0.8327211], [17.45, 207.5050657438893, 0.84109956], [17.46, 208.177502481702, 0.836489], [17.47, 209.71156697727994, 0.812202], [17.48, 209.8997963411111, 0.8025441], [17.49, 210.06095008672747, 0.8094343], [17.5, 209.85064871703128, 0.7985497], [17.51, 208.30847180555554, 0.84045315], [17.52, 207.39854099732207, 0.80452293], [17.53, 206.18308268697393, 0.82041794], [17.54, 205.64633943481286, 0.804443], [17.55, 204.67408938071964, 0.78224814], [17.56, 203.47146256268402, 0.7861575], [17.57, 225.33533041823137, 0.73159], [17.58, 260.10521220113, 0.59546626], [17.59, 281.8189307380713, 0.49722764], [17.6, 280.4691445329351, 0.69527125], [17.61, 280.09993162218706, 0.7284919], [17.62, 278.77483635179095, 0.82404906], [17.63, 277.64126221138747, 0.79309034], [17.64, 277.10097284460727, 0.7627976], [17.65, 277.64308721660416, 0.748833], [17.66, 275.58601629749063, 0.5963775], [17.67, 275.92930737570737, 0.50008386], [17.68, 276.7813661329715, 0.39078644], [17.69, 278.31194524601193, 0.56288254], [17.7, 278.3619884501538, 0.42565146], [17.71, 276.89643439731606, 0.342088], [17.72, 275.4781480128719, 0.43612605], [17.73, 276.5179091882607, 0.57291335], [17.74, 279.86258092933366, 0.75332516], [17.75, 280.97034782201604, 0.82687306], [17.76, 282.9231179034064, 0.81172174], [17.77, 283.94442870325213, 0.6315245], [17.78, 317.55302324968636, 0.4357035], [17.79, 351.18552316489695, 0.5356831], [17.8, 350.0896663510688, 0.6648612], [17.81, 349.5079815434001, 0.6948535], [17.82, 349.3025550617452, 0.30387592], [17.83, 352.8950418726027, 0.09763096], [17.84, 359.55828732865155, 0.098502494], [17.85, 358.30997954242673, 0.20243937], [17.86, 355.70684325161494, 0.3130479], [17.87, 356.6762940813146, 0.124988824], [17.88, 360.10988305858075, 0.28220522], [17.89, 364.7369808936554, 0.1936178], [17.9, 369.8214630976428, 0.15757671], [17.91, 371.7115614131831, 0.12875685], [17.92, 371.315888718969, 0.17288364], [17.93, 365.24936455964803, 0.13224542], [17.94, 362.6562238446132, 0.09237577], [17.95, 360.5870496934556, 0.41104823], [17.96, 356.1856626256827, 0.5694807], [17.97, 354.8706342263941, 0.7141753], [17.98, 355.1659742529039, 0.7692515], [17.99, 353.28283421059064, 0.7915736], [18.0, 351.9581650410132, 0.7788748], [18.01, 354.0469624855671, 0.7245733], [18.02, 354.1083495988655, 0.7074435], [18.03, 349.5889657730632, 0.5465311], [18.04, 341.5190501324091, 0.34504122], [18.05, 338.019073930535, 0.21947637], [18.06, 304.58537048114044, 0.21457268], [18.07, 276.5782302323249, 0.4737841], [18.08, 277.17613590207225, 0.68267924], [18.09, 274.0336496131638, 0.66652197], [18.1, 275.6694345571669, 0.7427364], [18.11, 277.24447186272664, 0.8487736], [18.12, 278.17703689329096, 0.8718192], [18.13, 278.5247850936888, 0.71793634], [18.14, 280.228880017327, 0.28863665], [18.15, 291.10108812094217, 0.045441333], [18.16, 319.0528391422043, 0.039257385], [18.17, 341.6486845639487, 0.11759734], [18.18, 354.31472514927066, 0.5199807], [18.19, 352.1170367137975, 0.62229997], [18.2, 350.16343763048656, 0.6489907], [18.21, 350.92352054476646, 0.52315], [18.22, 351.5875235891977, 0.4088346], [18.23, 354.60465383933706, 0.4125228], [18.24, 353.55138942760306, 0.40138817], [18.25, 354.0572942188719, 0.6569824], [18.26, 353.26732558874073, 0.6515715], [18.27, 350.4276291779447, 0.514632], [18.28, 347.5546446752038, 0.43673745], [18.29, 304.63877585373774, 0.3840695], [18.3, 266.52823784685535, 0.15363342], [18.31, 232.5191529714903, 0.44146895], [18.32, 208.41985297412214, 0.44434828], [18.33, 204.55229130747495, 0.27201366], [18.34, 197.4026832001632, 0.36869627], [18.35, 197.27860819242463, 0.7371231], [18.36, 198.5292364786879, 0.7721156], [18.37, 201.8245746370292, 0.75797504], [18.38, 205.23414519059858, 0.8145184], [18.39, 207.50194132132006, 0.86958665], [18.4, 208.14058065586084, 0.87166816], [18.41, 207.57800841266504, 0.87229043], [18.42, 206.82601267759884, 0.8629605], [18.43, 206.8793649743242, 0.8631313], [18.44, 206.83477297345976, 0.85878724], [18.45, 207.20349820260418, 0.87565845], [18.46, 207.3055089824034, 0.8346808], [18.47, 206.6420642011056, 0.7256138], [18.48, 207.49436627519114, 0.62065387], [18.49, 207.7176134951063, 0.5140923], [18.5, 205.2010049275725, 0.5159371], [18.51, 230.84590363737271, 0.20702958], [18.52, 257.2508134468976, 0.36234513], [18.53, 281.5831083626245, 0.62476885], [18.54, 278.9080045137274, 0.6427731], [18.55, 277.682009319877, 0.64303166], [18.56, 274.2953556873957, 0.5967821], [18.57, 264.6948996130312, 0.34934598], [18.58, 235.52470739011545, 0.52080077], [18.59, 237.13712331605444, 0.61040884], [18.6, 238.65613294588456, 0.7982474], [18.61, 238.06885501226358, 0.8341635], [18.62, 237.49920236929978, 0.83992445], [18.63, 235.2544059357923, 0.823942], [18.64, 232.59480307442217, 0.83286685], [18.65, 229.2172659272687, 0.8365483], [18.66, 226.64142778250323, 0.8188375], [18.67, 222.53431901397624, 0.73636246], [18.68, 219.9742036808293, 0.6416279], [18.69, 217.615571071126, 0.4255941], [18.7, 249.27095938031619, 0.13046524], [18.71, 280.00621105673844, 0.23248604], [18.72, 282.29093814993263, 0.26030743], [18.73, 279.8647917005606, 0.17295612], [18.74, 273.36306657171644, 0.22985342], [18.75, 266.19264602312546, 0.24881178], [18.76, 262.88259885643265, 0.12834008], [18.77, 257.93458963439394, 0.14738245], [18.78, 257.0162012118778, 0.18872236], [18.79, 255.64367738324094, 0.15862669], [18.8, 250.35421467651253, 0.15329596], [18.81, 247.32566752747186, 0.35264048], [18.82, 246.56213408062268, 0.12837876], [18.83, 241.30948122789508, 0.13478875], [18.84, 235.42229607805606, 0.2369487], [18.85, 236.352357054246, 0.32589343], [18.86, 265.29539177832015, 0.2232777], [18.87, 270.5073139795953, 0.45980936], [18.88, 276.1762435447157, 0.6511899], [18.89, 278.7044704467345, 0.8433259], [18.9, 278.58294724401, 0.868386], [18.91, 276.19660178299364, 0.82209694], [18.92, 275.00215353221404, 0.828999], [18.93, 274.2813249774458, 0.8312271], [18.94, 274.01418034290714, 0.81480116], [18.95, 274.89513713318775, 0.83476156], [18.96, 275.5128730974209, 0.8303365], [18.97, 275.7411049500118, 0.8250295], [18.98, 275.6719686383546, 0.8375507], [18.99, 276.1597827233306, 0.8390054], [19.0, 277.1461296778731, 0.8571147], [19.01, 278.771824940224, 0.8577649], [19.02, 281.12971437188867, 0.83065844], [19.03, 283.4162822311302, 0.73997617], [19.04, 284.81108787043473, 0.7800209], [19.05, 282.8731360955033, 0.81864494], [19.06, 281.62030997091284, 0.8578106], [19.07, 279.5315872835862, 0.7997021], [19.08, 277.2774067705972, 0.5935075], [19.09, 270.7044523242125, 0.4790888], [19.1, 259.91171769876394, 0.5191579], [19.11, 262.76832272367835, 0.6369655], [19.12, 260.2098114903578, 0.7704986], [19.13, 258.2283498304836, 0.6661683], [19.14, 255.9448467517349, 0.629891], [19.15, 252.93538167423839, 0.43807313], [19.16, 253.57343895998793, 0.18294092], [19.17, 246.72564435047153, 0.18912897], [19.18, 239.01330312881416, 0.17205384], [19.19, 245.57394418531806, 0.5195565], [19.2, 250.6988951010622, 0.6852912], [19.21, 255.68109551301245, 0.723771], [19.22, 261.190755484946, 0.7445594], [19.23, 264.3104115249552, 0.8402221], [19.24, 267.6949550495434, 0.8333388], [19.25, 270.54064319197124, 0.8046748], [19.26, 274.8257577016986, 0.8162436], [19.27, 277.9266996408051, 0.87469393], [19.28, 278.46804227883354, 0.8779501], [19.29, 278.1053930631718, 0.8807024], [19.3, 277.7270615471069, 0.884292], [19.31, 277.3194340811277, 0.8732988], [19.32, 276.7167738147106, 0.86921996], [19.33, 276.0100189432855, 0.8647182], [19.34, 275.3879201063971, 0.8601394], [19.35, 275.6583869701211, 0.8682215], [19.36, 276.2939414635454, 0.85473716], [19.37, 277.2588331323702, 0.8737731], [19.38, 278.5281042740706, 0.8980956], [19.39, 278.7259565010934, 0.8859544], [19.4, 279.0151151427904, 0.8829165], [19.41, 278.6212075916894, 0.8781242], [19.42, 277.8531258124172, 0.87245494], [19.43, 276.73904860935545, 0.82986975], [19.44, 276.17978357053084, 0.82181317], [19.45, 276.07107229618987, 0.84447795], [19.46, 276.0987037797991, 0.84095865], [19.47, 276.7400601651967, 0.8088264], [19.48, 276.3459226860931, 0.7846484], [19.49, 276.9145071059367, 0.71866196], [19.5, 276.29759132071825, 0.69648093], [19.51, 274.97103682369976, 0.537454], [19.52, 273.7370073427453, 0.5558129], [19.53, 272.83433221801266, 0.45254615], [19.54, 274.5607535930235, 0.59144723], [19.55, 277.1142259463777, 0.48751163], [19.56, 277.9855520376031, 0.6683311], [19.57, 278.1536811753675, 0.8523419], [19.58, 279.6389665596929, 0.8804739], [19.59, 279.9403448702201, 0.8950736], [19.6, 278.7165213229041, 0.9077556], [19.61, 277.5430315226635, 0.89086044], [19.62, 276.5102392855641, 0.865691], [19.63, 276.11767132660765, 0.8675408], [19.64, 274.9624545545827, 0.87364423], [19.65, 272.76020714882003, 0.83510214], [19.66, 269.26778553965283, 0.8059147], [19.67, 264.50550053870404, 0.78857255], [19.68, 260.4886491770119, 0.7293086], [19.69, 259.20876604962024, 0.75582993], [19.7, 262.58261999718223, 0.62088966], [19.71, 264.9220421166093, 0.388961], [19.72, 266.4820555689631, 0.23130412], [19.73, 266.56155004647417, 0.24586044], [19.74, 271.1391541627603, 0.179298], [19.75, 273.6026315120267, 0.22332944], [19.76, 274.421417022503, 0.5005584], [19.77, 275.7024845997091, 0.6854352], [19.78, 277.97506002586636, 0.8005052], [19.79, 277.5932478506751, 0.81938875], [19.8, 277.43429613154024, 0.8076051], [19.81, 277.9595631426712, 0.84251714], [19.82, 279.17861071830157, 0.8486893], [19.83, 279.15572584572095, 0.8689018], [19.84, 278.74117321867965, 0.89449453], [19.85, 277.58508988365963, 0.88652986], [19.86, 277.02213741826546, 0.8909189], [19.87, 276.7659601357272, 0.8801136], [19.88, 276.6851904491923, 0.8766074], [19.89, 277.0102198496949, 0.8834852], [19.9, 277.0594936158815, 0.8874177], [19.91, 277.31310947450635, 0.8930764], [19.92, 277.4953194617884, 0.8955664], [19.93, 277.52242316876783, 0.8907199], [19.94, 276.98107483237584, 0.8910572], [19.95, 276.0517141778427, 0.86639535], [19.96, 273.1407952068622, 0.8118777], [19.97, 272.0871946433738, 0.63982433], [19.98, 272.55147671787347, 0.36482736], [19.99, 279.25308374065867, 0.4107424], [20.0, 277.64781974157484, 0.6042137], [20.01, 276.39416650826774, 0.5862362], [20.02, 276.5509245152465, 0.7026042], [20.03, 276.9759626825077, 0.75464076], [20.04, 275.790893027965, 0.7688057], [20.05, 275.15300537476975, 0.800251], [20.06, 275.67207790742873, 0.8164817], [20.07, 275.80974213356444, 0.8434556], [20.08, 276.2885201473621, 0.81968135], [20.09, 277.2309677396809, 0.81825024], [20.1, 277.7894013025237, 0.83358794], [20.11, 278.5861095238378, 0.79541785], [20.12, 279.7211614739564, 0.5692529], [20.13, 283.2937230910812, 0.26470214], [20.14, 290.2947131094148, 0.23590702], [20.15, 289.81979642848, 0.16843167], [20.16, 292.0557067119966, 0.27688807], [20.17, 283.13906097436035, 0.1922847], [20.18, 280.45499663101606, 0.17467979], [20.19, 275.55251233981676, 0.17668818], [20.2, 248.69093577968516, 0.2725785], [20.21, 220.73358908889745, 0.16560423], [20.22, 196.64631792644417, 0.11473727], [20.23, 185.30081784857575, 0.2949121], [20.24, 187.89187655660655, 0.6034604], [20.25, 192.61904643040555, 0.5483152], [20.26, 199.33167278041714, 0.6708103], [20.27, 203.21369032937454, 0.73734796], [20.28, 205.10875763844652, 0.81196094], [20.29, 205.18477837467086, 0.7914004], [20.3, 204.49654836530493, 0.78364635], [20.31, 202.79225472973332, 0.79858845], [20.32, 200.92525749962235, 0.79536766], [20.33, 199.68509960681715, 0.76614237], [20.34, 199.73691031150335, 0.7631943], [20.35, 201.26308550845243, 0.77706563], [20.36, 204.06962062913206, 0.7053979], [20.37, 207.17880580391187, 0.68730336], [20.38, 209.53175945794627, 0.74114656], [20.39, 211.74340395739137, 0.7888224], [20.4, 213.73777344126992, 0.8518549], [20.41, 214.80880051321165, 0.8499414], [20.42, 214.78649757707382, 0.831192], [20.43, 213.74511264521502, 0.82294244], [20.44, 209.49651272162617, 0.7486491], [20.45, 207.25670322204218, 0.8083304], [20.46, 206.28684142169814, 0.8203416], [20.47, 205.67486613859327, 0.8195895], [20.48, 206.36538849632365, 0.81729114], [20.49, 207.57921212011996, 0.82160026], [20.5, 209.17787675837087, 0.79963595], [20.51, 210.54603354551705, 0.78648216], [20.52, 211.486177955733, 0.8062922], [20.53, 211.63112499556988, 0.7917702], [20.54, 210.8259391862852, 0.79859066], [20.55, 209.69703154109297, 0.76781714], [20.56, 207.07844239379344, 0.74301213], [20.57, 203.54503364476471, 0.6684747], [20.58, 196.91712578988825, 0.4981216], [20.59, 188.85254944555862, 0.5487751], [20.6, 184.8527804362513, 0.5252493], [20.61, 181.00416955096415, 0.44571677], [20.62, 176.4512085033523, 0.3346953], [20.63, 173.22615204852178, 0.61142796], [20.64, 164.86591149550702, 0.23004052], [20.65, 160.13169696735272, 0.5145046], [20.66, 151.20390186210827, 0.37030858], [20.67, 148.67295273989419, 0.22950831], [20.68, 145.66555253328656, 0.3863319], [20.69, 143.72738445401632, 0.20147103], [20.7, 161.80668435749962, 0.17999223], [20.71, 180.43594391413424, 0.068530336], [20.72, 196.3612876247529, 0.24998507], [20.73, 201.31172538418804, 0.46968126], [20.74, 205.74617871963468, 0.51785946], [20.75, 208.44849459295304, 0.761811], [20.76, 207.6985651765244, 0.8053388], [20.77, 206.532941490662, 0.7746555], [20.78, 206.19410689439087, 0.7805613], [20.79, 206.49467312897937, 0.7719123], [20.8, 208.29267829922273, 0.765659], [20.81, 209.58339022793797, 0.70364565], [20.82, 211.5250610873952, 0.5493235], [20.83, 214.7537127769634, 0.5607474], [20.84, 217.3402097196836, 0.654987], [20.85, 218.89602566943054, 0.7696221], [20.86, 218.7526251022329, 0.83509314], [20.87, 217.98766939603698, 0.86816394], [20.88, 218.32176726622004, 0.85811764], [20.89, 218.82907274031268, 0.84986645], [20.9, 219.02550349142317, 0.82865584], [20.91, 219.09752423658915, 0.78477806], [20.92, 217.0450363238933, 0.6831432], [20.93, 208.40050190578182, 0.5403927], [20.94, 206.81336108604043, 0.6780077], [20.95, 206.6135297808204, 0.62193006], [20.96, 206.86873960487532, 0.69190824], [20.97, 207.52238074998576, 0.70746714], [20.98, 208.01790771552726, 0.7304743], [20.99, 208.80288244370317, 0.74731296], [21.0, 208.66029472816672, 0.77830184], [21.01, 208.50543960269206, 0.7623738], [21.02, 207.92002157381893, 0.80131114], [21.03, 207.1704601311548, 0.77582127], [21.04, 207.16863329627273, 0.7404105], [21.05, 206.6347994724996, 0.7703467], [21.06, 206.61124477229552, 0.7683783], [21.07, 207.0956220460996, 0.70272046], [21.08, 206.84273178948163, 0.6012308], [21.09, 207.29236551624157, 0.62280375], [21.1, 207.17954690184908, 0.6081548], [21.11, 206.66456770441613, 0.7270975], [21.12, 206.68916474630169, 0.7097742], [21.13, 206.6962063654138, 0.7519711], [21.14, 206.63307321748368, 0.81181], [21.15, 206.6602249349228, 0.7981008], [21.16, 206.76071899259753, 0.8062694], [21.17, 206.97829836107974, 0.8306356], [21.18, 207.23516485547447, 0.7840079], [21.19, 207.85430020222717, 0.685686], [21.2, 207.827308657577, 0.7137167], [21.21, 207.42177213429304, 0.8076106], [21.22, 206.9976874741285, 0.803651], [21.23, 207.0529205630761, 0.8216516], [21.24, 206.81829264260287, 0.8198426], [21.25, 206.37557880548454, 0.8258175], [21.26, 205.73578911788644, 0.8150281], [21.27, 205.58047878726327, 0.7931678], [21.28, 206.22849005885473, 0.7720219], [21.29, 206.52372888649592, 0.7958565], [21.3, 206.9999791164287, 0.7977795], [21.31, 207.23356185225927, 0.8284626], [21.32, 207.3589511921364, 0.824561], [21.33, 207.20157916896252, 0.8207635], [21.34, 207.26096885762485, 0.8400764], [21.35, 207.01506866330362, 0.8266362], [21.36, 206.63695444576683, 0.8351476], [21.37, 206.50198748060288, 0.84970224], [21.38, 206.02299612784435, 0.85227627], [21.39, 205.79676657544485, 0.8212904], [21.4, 205.252338903347, 0.74702674], [21.41, 204.93990371294214, 0.64007866], [21.42, 205.3282251664335, 0.40629458], [21.43, 186.76084979129098, 0.36715797], [21.44, 185.75756221180632, 0.36835155], [21.45, 180.798452243724, 0.36058062], [21.46, 173.43571553659427, 0.26169664], [21.47, 165.048254126373, 0.5118129], [21.48, 155.62615072229713, 0.5388593], [21.49, 141.58746649176402, 0.58596593], [21.5, 138.78938102828914, 0.5218108], [21.51, 139.01089760507958, 0.6988334], [21.52, 138.8417163826848, 0.6798513], [21.53, 138.30947655269478, 0.44004416], [21.54, 136.44458661644936, 0.20690516], [21.55, 128.12034078269267, 0.5115541], [21.56, 118.99978440258111, 0.33252907], [21.57, 115.33067583482106, 0.097271524], [21.58, 121.11178909297577, 0.15941474], [21.59, 122.68760101790502, 0.163595], [21.6, 129.78894218432822, 0.12248216], [21.61, 140.89044583313932, 0.14036186], [21.62, 144.94283477528742, 0.13823633], [21.63, 151.3692106936129, 0.19966319], [21.64, 161.92563348228032, 0.24863946], [21.65, 170.7400696928312, 0.13261016], [21.66, 176.8606149616856, 0.2041183], [21.67, 184.67501775861874, 0.24373277], [21.68, 194.43110236793103, 0.1114864], [21.69, 204.62735534499163, 0.07382247], [21.7, 208.73255770571663, 0.20672299], [21.71, 206.45146766171473, 0.1363204], [21.72, 203.6805982550478, 0.10300828], [21.73, 204.42987285786597, 0.109519035], [21.74, 214.37040572118082, 0.12005449], [21.75, 227.620786618555, 0.22311053], [21.76, 237.33236972814524, 0.12534823], [21.77, 260.676470476591, 0.11495696], [21.78, 272.9531055489289, 0.15682666], [21.79, 270.15831343321986, 0.3113295], [21.8, 269.47702911085776, 0.4657658], [21.81, 271.18083682285805, 0.5225815], [21.82, 273.7670663975631, 0.5810187], [21.83, 274.51023006392774, 0.66196626], [21.84, 273.84100387562034, 0.6980188], [21.85, 274.0823326187573, 0.67794317], [21.86, 276.11346246838406, 0.668766], [21.87, 278.03862879084676, 0.6870767], [21.88, 275.9218158885406, 0.4732452], [21.89, 247.12484424542316, 0.4706073], [21.9, 218.26875892558374, 0.56076396], [21.91, 193.02961437968176, 0.6552625], [21.92, 170.59055622240464, 0.74749297], [21.93, 172.0242039678537, 0.7446626], [21.94, 172.63359215508703, 0.75135803], [21.95, 172.4737573018049, 0.7374927], [21.96, 172.94302185028258, 0.71945465], [21.97, 173.9302384535775, 0.7462213], [21.98, 173.76106621887806, 0.6708231], [21.99, 171.7149205046168, 0.6150965], [22.0, 171.12935304014994, 0.711397], [22.01, 171.60046621040595, 0.6009053], [22.02, 172.57561044304998, 0.44305146], [22.03, 172.03200550583944, 0.3574303], [22.04, 169.91610242469906, 0.35181114], [22.05, 166.00230425708372, 0.33525142], [22.06, 160.47775123679855, 0.08838855], [22.07, 158.1658552422888, 0.13734499], [22.08, 160.80763383121393, 0.12453211], [22.09, 174.77547030808697, 0.21441507], [22.1, 190.77550572629946, 0.17700358], [22.11, 203.44609802280044, 0.43872514], [22.12, 205.34550135552598, 0.63764167], [22.13, 208.0529979253746, 0.72898567], [22.14, 210.56189008179945, 0.68267226], [22.15, 213.81942840478365, 0.6659949], [22.16, 215.5660217727292, 0.7533562], [22.17, 237.1723357919047, 0.7187156], [22.18, 273.4134153185113, 0.60729235], [22.19, 304.9623307364375, 0.5268523], [22.2, 338.02456354816394, 0.5391733], [22.21, 374.9821049492277, 0.5045289], [22.22, 411.19815761000126, 0.55410475], [22.23, 412.9338304760575, 0.5418763], [22.24, 417.6681154509331, 0.57157385], [22.25, 423.0161205660949, 0.49551305], [22.26, 429.7993466497229, 0.4801253], [22.27, 435.1066942330358, 0.40047923], [22.28, 438.98227212770115, 0.19989868], [22.29, 453.2445012397533, 0.3365139], [22.3, 461.4330368641794, 0.2210057], [22.31, 464.9024723450867, 0.15716416], [22.32, 470.1049139582947, 0.15977657], [22.33, 472.67785588996264, 0.3001807], [22.34, 469.42661861053125, 0.5440433], [22.35, 468.819901379814, 0.49320528], [22.36, 467.192367431055, 0.5184209], [22.37, 465.9203237241196, 0.65138954], [22.38, 465.73861821049456, 0.72517353], [22.39, 463.35677945605994, 0.68889815], [22.4, 463.476886998997, 0.7393575], [22.41, 462.5250084042489, 0.7274325], [22.42, 464.15180347489894, 0.7351909], [22.43, 439.1321124659647, 0.53568864], [22.44, 380.9369590068497, 0.32247832], [22.45, 348.06909108934093, 0.11908907], [22.46, 321.7462133132722, 0.22621907], [22.47, 277.0581294871241, 0.5106192], [22.48, 275.07987261661896, 0.5537142], [22.49, 272.5790281121132, 0.48948547], [22.5, 270.67882966111506, 0.53705716], [22.51, 270.1041510898893, 0.20525974], [22.52, 273.4384666589008, 0.2621759], [22.53, 284.76616081565106, 0.14134797], [22.54, 282.4194914434439, 0.03447468], [22.55, 285.2874839365808, 0.51437587], [22.56, 285.32052703025647, 0.68525875], [22.57, 282.2111862569806, 0.6236497], [22.58, 284.48493571197434, 0.46517184], [22.59, 282.97010446872093, 0.53878695], [22.6, 280.3989388005495, 0.4634671], [22.61, 276.59656475693646, 0.22788338], [22.62, 275.15659162035024, 0.12375284], [22.63, 279.9394722538239, 0.26267034], [22.64, 280.5515011160552, 0.66348135], [22.65, 279.9038694462497, 0.6879469], [22.66, 278.2769525710994, 0.46517858], [22.67, 275.7237781634256, 0.46262443], [22.68, 273.9950342993331, 0.29641208], [22.69, 274.858009785947, 0.55410856], [22.7, 274.6937006424374, 0.5059253], [22.71, 277.1697784826365, 0.55406386], [22.72, 276.4829861564336, 0.579301], [22.73, 273.77450337921937, 0.6477296], [22.74, 275.6939234134627, 0.52339095], [22.75, 273.1475749184002, 0.1923622], [22.76, 274.3130418839037, 0.45898068], [22.77, 273.94204164910974, 0.66105103], [22.78, 275.40116614298955, 0.62450653], [22.79, 276.5347214152758, 0.7090079], [22.8, 277.94640953759574, 0.80205005], [22.81, 279.13506446355586, 0.86486804], [22.82, 278.63660440855335, 0.8535368], [22.83, 278.83701851189664, 0.8263993], [22.84, 277.99587957441753, 0.7803452], [22.85, 277.34329795032926, 0.5831534], [22.86, 316.42381178317, 0.19553305], [22.87, 353.2667579408448, 0.2786462], [22.88, 350.5347150787731, 0.5545875], [22.89, 355.34452787363534, 0.41755196], [22.9, 350.28826763652313, 0.6024415], [22.91, 350.23529481677195, 0.6748909], [22.92, 350.6489159874962, 0.3946952], [22.93, 350.90055280462144, 0.589213], [22.94, 352.61945611492695, 0.48090613], [22.95, 352.6167558510076, 0.48989892], [22.96, 345.413507459204, 0.370584], [22.97, 344.5106776237601, 0.26551512], [22.98, 346.6845175612931, 0.25662637], [22.99, 322.14577302894924, 0.08864966], [23.0, 281.16049150627595, 0.3251479], [23.01, 282.20782895205724, 0.6464286], [23.02, 281.9750858077456, 0.76310724], [23.03, 280.8808571190573, 0.84260285], [23.04, 280.2416710769775, 0.86650103], [23.05, 279.98860071648676, 0.86280495], [23.06, 279.06720441770807, 0.8867447], [23.07, 278.35269169779673, 0.90082663], [23.08, 276.54481402701424, 0.86829174], [23.09, 273.6417478083246, 0.8108046], [23.1, 270.9231442573121, 0.8438628], [23.11, 270.6768013306318, 0.810682], [23.12, 276.4525319086399, 0.72796154], [23.13, 282.8512411043065, 0.83935887], [23.14, 288.39425177237615, 0.7979548], [23.15, 294.9974899486126, 0.7403492], [23.16, 304.9842789524393, 0.7623302], [23.17, 309.0402852245659, 0.8708647], [23.18, 311.5927029938862, 0.8586455], [23.19, 312.64860749246856, 0.8685534], [23.2, 311.3062293629647, 0.8576955], [23.21, 309.998626535709, 0.85561997], [23.22, 309.4599386158101, 0.86569107], [23.23, 308.6541563410861, 0.84669083], [23.24, 307.9525207244463, 0.7828577], [23.25, 306.07977076103975, 0.7044551], [23.26, 305.6440460518272, 0.6522509], [23.27, 307.5809124790584, 0.39450318], [23.28, 282.14561691070924, 0.22908701], [23.29, 279.8483366952599, 0.31884292], [23.3, 277.07094295483626, 0.46268144], [23.31, 275.9965013675828, 0.6617901], [23.32, 276.8847404823022, 0.738645], [23.33, 277.22561311114055, 0.7497861], [23.34, 278.38065516411666, 0.8090181], [23.35, 278.5343057196064, 0.77649564], [23.36, 278.9242017705656, 0.62299186], [23.37, 318.4004131138282, 0.26504478], [23.38, 354.7301553553837, 0.49017763], [23.39, 351.9680508052715, 0.65197694], [23.4, 351.0283667680915, 0.74631447], [23.41, 350.89976949363256, 0.7537766], [23.42, 351.74411068085067, 0.7164083], [23.43, 353.8991393710827, 0.68608874], [23.44, 360.222530730788, 0.38040307], [23.45, 406.2436774730471, 0.12089451], [23.46, 411.5577254311143, 0.121056564], [23.47, 418.2108929436241, 0.0506999], [23.48, 430.4519598685129, 0.04606478], [23.49, 443.0499265290341, 0.047496494], [23.5, 452.1464403718194, 0.22826241], [23.51, 464.91955214989923, 0.073272325], [23.52, 484.2342401187026, 0.090236954], [23.53, 501.61692209547203, 0.23177172], [23.54, 512.7934532420533, 0.5536729], [23.55, 524.5424067481924, 0.12988755], [23.56, 533.2257383048105, 0.4418534], [23.57, 544.8676830429214, 0.53923637], [23.58, 548.0360855881438, 0.46275285], [23.59, 548.6921580451944, 0.40977988], [23.6, 548.568884104543, 0.27693337], [23.61, 549.563183503568, 0.21313633], [23.62, 551.5938851170629, 0.46008855], [23.63, 552.5296254763682, 0.253642], [23.64, 552.8243478918972, 0.3976638], [23.65, 505.9591069444269, 0.29679075], [23.66, 439.28376911845305, 0.5683801], [23.67, 398.80338760773157, 0.6122401], [23.68, 346.7866743670062, 0.50169957], [23.69, 306.07355024267514, 0.14146312], [23.7, 279.6901181013956, 0.54193425], [23.71, 278.3244715575497, 0.8293507], [23.72, 277.2849828112883, 0.8429255], [23.73, 275.5581719186557, 0.84529275], [23.74, 273.98601705907004, 0.80197763], [23.75, 271.6339829636524, 0.7225729], [23.76, 266.998231895461, 0.5642328], [23.77, 262.6399026039736, 0.5776666], [23.78, 263.59403312129257, 0.5408748], [23.79, 265.55795967436154, 0.706006], [23.8, 265.02688524780746, 0.76531047], [23.81, 264.7524401363854, 0.7691969], [23.82, 263.78868994694534, 0.7091764], [23.83, 262.98899122831756, 0.53152376], [23.84, 273.580196246019, 0.31669152], [23.85, 242.48923895869308, 0.46026808], [23.86, 218.33893124750458, 0.33189067], [23.87, 208.25975129556437, 0.37421727], [23.88, 199.48019329072682, 0.3602441], [23.89, 193.75834187898985, 0.5130835], [23.9, 188.31151747204873, 0.73189074], [23.91, 189.4689529935149, 0.6366192], [23.92, 196.3825943764317, 0.19979009], [23.93, 222.88980163047356, 0.40616372], [23.94, 226.37877555833217, 0.4490284], [23.95, 234.69574337691242, 0.33431086], [23.96, 238.2374115973726, 0.7181838], [23.97, 240.1731306283093, 0.7859866], [23.98, 241.85631588063768, 0.8346497], [23.99, 241.36770295861413, 0.7763427], [24.0, 239.27902392254308, 0.7486776], [24.01, 237.3528978388179, 0.7247673], [24.02, 233.21001318388258, 0.35236478], [24.03, 228.7779372793503, 0.42697826], [24.04, 227.98896274506862, 0.5984365], [24.05, 229.75821398889383, 0.59185946], [24.06, 231.3982765476726, 0.733664], [24.07, 232.20132176447373, 0.8089069], [24.08, 232.51007435491243, 0.79013336], [24.09, 230.99142568198334, 0.54295295], [24.1, 229.24442674683834, 0.30463463], [24.11, 224.34042981862714, 0.3490808], [24.12, 216.83924949424846, 0.3249148], [24.13, 207.1158920479607, 0.24806818], [24.14, 204.69726702352133, 0.15591441], [24.15, 209.85015928820386, 0.11980742], [24.16, 213.0601492255403, 0.36626825], [24.17, 214.52783857275875, 0.40421602], [24.18, 213.8466202706657, 0.54745686], [24.19, 213.08423646188388, 0.5544991], [24.2, 211.82847060539302, 0.6347753], [24.21, 211.5600599688818, 0.65286326], [24.22, 212.8332727904667, 0.5285531], [24.23, 212.2878781833051, 0.45940822], [24.24, 213.1295411373352, 0.37003076], [24.25, 214.0487776162195, 0.33973172], [24.26, 216.47827203005772, 0.39580038], [24.27, 217.47371133068867, 0.6298881], [24.28, 215.0846574381581, 0.5991922], [24.29, 216.1547191142607, 0.46049184], [24.3, 216.96418374710888, 0.4353882], [24.31, 216.25396982600068, 0.43516675], [24.32, 219.65104633749522, 0.41191885], [24.33, 221.82814018433828, 0.71969056], [24.34, 219.1673344111606, 0.6924631], [24.35, 217.3644586463804, 0.69166327], [24.36, 215.5487230630777, 0.38493377], [24.37, 216.60341115265118, 0.108285375], [24.38, 217.3492111863699, 0.115187354], [24.39, 217.28526718714835, 0.17334402], [24.4, 216.0665636514371, 0.2645212], [24.41, 216.34524954604115, 0.13982178], [24.42, 219.18890776931167, 0.12400379], [24.43, 219.6652060099875, 0.1204275], [24.44, 218.78367916222086, 0.056582388], [24.45, 219.37320619647755, 0.07188692], [24.46, 218.42125937917288, 0.1220486], [24.47, 216.68955849038, 0.37541863], [24.48, 216.42271177836133, 0.37389874], [24.49, 217.08449782654407, 0.321299], [24.5, 217.40980296053093, 0.36414602], [24.51, 218.94632268388352, 0.16744839], [24.52, 219.0097425108293, 0.23285374], [24.53, 219.43430887648537, 0.13285868], [24.54, 221.4891927011793, 0.2870474], [24.55, 225.12576191128628, 0.22563775], [24.56, 228.71488254459388, 0.28833443], [24.57, 231.09273138114534, 0.32904026], [24.58, 231.62983354137535, 0.3441934], [24.59, 230.19611046381655, 0.2998805], [24.6, 229.6309289396762, 0.39364702], [24.61, 224.26169579793958, 0.39995033], [24.62, 221.3657815488299, 0.33341634], [24.63, 218.41113245549974, 0.22091359], [24.64, 215.21746078506578, 0.19504383], [24.65, 214.5764639564879, 0.17618369], [24.66, 239.61964991964948, 0.09072342], [24.67, 269.27792706895445, 0.11073728], [24.68, 304.09087260052456, 0.17415766], [24.69, 336.4109450018125, 0.25698707], [24.7, 377.3124141560521, 0.18490382], [24.71, 414.92460337178187, 0.19275418], [24.72, 415.28105596507254, 0.40189776], [24.73, 419.63557412201106, 0.19486776], [24.74, 420.3897122195399, 0.30461687], [24.75, 424.35424149023453, 0.13463885], [24.76, 424.71984173561486, 0.19617014], [24.77, 426.9072654820558, 0.37435842], [24.78, 430.2391649554107, 0.20564704], [24.79, 427.3749476794077, 0.236898], [24.8, 425.50304634077924, 0.22074653], [24.81, 420.9324628688339, 0.20348085], [24.82, 419.53211924502426, 0.1990722], [24.83, 419.7727574154158, 0.23762454], [24.84, 422.03548354152076, 0.2855381], [24.85, 418.7590371363248, 0.40560624], [24.86, 375.33881728494623, 0.31376022], [24.87, 330.3293610073696, 0.4517523], [24.88, 292.4460444331598, 0.2855397], [24.89, 259.45815175213863, 0.31072015], [24.9, 232.17115952483533, 0.33117208], [24.91, 208.07656946301273, 0.30035108], [24.92, 207.51395203790352, 0.35561463], [24.93, 205.93365210680759, 0.26118466], [24.94, 206.4884761292294, 0.2555674], [24.95, 207.34919268474704, 0.39279953], [24.96, 207.65303553276124, 0.3832586], [24.97, 204.18604034075787, 0.27810323], [24.98, 203.0442541956188, 0.26950407], [24.99, 204.65004564131547, 0.3460496], [25.0, 206.2898943442983, 0.36073214], [25.01, 205.80944113453893, 0.35851413], [25.02, 203.64023225929338, 0.22649562], [25.03, 206.06566562980322, 0.15839145], [25.04, 210.06598474513342, 0.1605021], [25.05, 212.0999466617283, 0.20874311], [25.06, 216.34822818024585, 0.10370014], [25.07, 225.26918432061717, 0.17651634], [25.08, 233.30365871677918, 0.33007655], [25.09, 246.63278896079927, 0.39569274], [25.1, 252.86525813732038, 0.2950904], [25.11, 261.5718571344265, 0.121801175], [25.12, 278.94098528720565, 0.051376224], [25.13, 280.16091209236197, 0.24215694], [25.14, 278.7579116883268, 0.7599088], [25.15, 279.1189247558894, 0.80825174], [25.16, 279.17570967053143, 0.75449115], [25.17, 279.58258527476056, 0.7049304], [25.18, 279.5415129140013, 0.77225494], [25.19, 279.01411636906926, 0.716182], [25.2, 278.65511701236085, 0.5455433], [25.21, 277.530965964545, 0.6661609], [25.22, 278.4043907834716, 0.6872336], [25.23, 278.129873521855, 0.7299028], [25.24, 279.2985991094143, 0.7258207], [25.25, 280.9368972401487, 0.7666829], [25.26, 282.22839931948164, 0.7385947], [25.27, 257.6827386088468, 0.4064777], [25.28, 230.67334914480153, 0.31356987], [25.29, 205.8549309641438, 0.64085126], [25.3, 180.54283808352207, 0.656799], [25.31, 169.7762147283887, 0.74920857], [25.32, 149.93480539910252, 0.15333876], [25.33, 130.31293530333008, 0.12927072], [25.34, 119.00956681851042, 0.19291599], [25.35, 103.79989527024824, 0.08601708], [25.36, 93.71864108571849, 0.11934125], [25.37, 81.60493089003916, 0.23293163], [25.38, 75.13287070915277, 0.7031767], [25.39, 65.2696631182327, 0.7915146], [25.4, 56.396998154381535, 0.8268564], [25.41, 51.874665600124416, 0.8347679], [25.42, 51.96811477538944, 0.77881986], [25.43, 52.2164170700215, 0.8298814], [25.44, 52.01261340366344, 0.8100851], [25.45, 52.010601756490004, 0.81549734], [25.46, 51.888865269758256, 0.7876008], [25.47, 51.724753764332796, 0.77760065], [25.48, 52.309773280343, 0.7906331], [25.49, 51.93845769235163, 0.78667], [25.5, 52.2822075689795, 0.78350097], [25.51, 51.838167559464964, 0.77091986], [25.52, 52.04309980878585, 0.7825181], [25.53, 51.816945315265755, 0.7539965], [25.54, 52.22696666320901, 0.7889258], [25.55, 51.92943634550522, 0.78628314], [25.56, 52.20699206643128, 0.791974], [25.57, 52.09409021916705, 0.71875393], [25.58, 52.56114225523844, 0.7012404], [25.59, 52.31516568175238, 0.6820539], [25.6, 52.64705209103269, 0.6730745], [25.61, 52.34643477925644, 0.61259717], [25.62, 52.73969542075254, 0.6345879], [25.63, 52.4023686211536, 0.40218186], [25.64, 52.32849376750097, 0.40360793], [25.65, 52.639275765988955, 0.37387416], [25.66, 52.7263980642497, 0.39454186], [25.67, 52.370807319500045, 0.2731612], [25.68, 52.772064519989016, 0.19298021], [25.69, 53.50633125712531, 0.32907116], [25.7, 53.46372109602654, 0.5589221], [25.71, 53.27292683330587, 0.64668375], [25.72, 52.014959722345026, 0.30903676], [25.73, 52.60135829965499, 0.39587435], [25.74, 52.71619131854446, 0.1880552], [25.75, 52.793927481747396, 0.19694304], [25.76, 52.041738153333156, 0.45767295], [25.77, 52.05687039370559, 0.5748554], [25.78, 52.181203567335345, 0.6118668], [25.79, 52.57424448290462, 0.68278104], [25.8, 51.95256446906056, 0.61325884], [25.81, 51.9916711753632, 0.63879615], [25.82, 51.38981632280024, 0.5383564], [25.83, 51.88415382171762, 0.5962114], [25.84, 52.19923701958156, 0.51231766], [25.85, 52.510624816382155, 0.46393073], [25.86, 53.02559222680796, 0.2711349], [25.87, 52.53077995289282, 0.31807834], [25.88, 52.305034968708625, 0.24210493], [25.89, 51.98788720295977, 0.32823247], [25.9, 51.75673945722374, 0.2127151], [25.91, 51.775835954810894, 0.29741767], [25.92, 51.60923391101939, 0.20001383], [25.93, 51.691127956404095, 0.25947392], [25.94, 51.48840121431328, 0.20825729], [25.95, 51.585343193761766, 0.18391627], [25.96, 51.48429307104506, 0.13330793], [25.97, 51.990417733628654, 0.20967096], [25.98, 52.59877351593552, 0.25578743], [25.99, 52.87065659180285, 0.5252759], [26.0, 52.9261033304913, 0.49440593], [26.01, 52.10697419653944, 0.6576825], [26.02, 51.79325165541446, 0.62659585], [26.03, 51.20289039064291, 0.5947542], [26.04, 51.21350192446948, 0.2402625], [26.05, 53.62904354995489, 0.3651886], [26.06, 56.31855412950724, 0.17236874], [26.07, 57.6655676558157, 0.41011786], [26.08, 57.620863161390794, 0.52993333], [26.09, 57.78698131219798, 0.5575449], [26.1, 57.884282077827976, 0.5354663], [26.11, 57.54370207194475, 0.6555914], [26.12, 57.82592719979955, 0.70524824], [26.13, 57.973170702167245, 0.6946338], [26.14, 57.68350704899869, 0.52381337], [26.15, 57.751709540628376, 0.5324627], [26.16, 57.20541465320594, 0.5474908], [26.17, 57.44432988440285, 0.54444027], [26.18, 57.52782506169741, 0.624582], [26.19, 57.693771914463305, 0.58665717], [26.2, 57.377792556204135, 0.57064426], [26.21, 57.10864135415469, 0.52047604], [26.22, 57.75930830769788, 0.5796753], [26.23, 57.60579672201744, 0.5271509], [26.24, 57.692189707607085, 0.5614159], [26.25, 57.721094304726066, 0.6983463], [26.26, 58.19914897878529, 0.79473716], [26.27, 59.44206261861616, 0.6026986], [26.28, 54.777591928567034, 0.31170052], [26.29, 49.18658741380145, 0.10063176], [26.3, 45.47320014743845, 0.21824242], [26.31, 39.87116819662932, 0.28114298], [26.32, 36.221955131533875, 0.29141584], [26.33, 37.4579018406486, 0.40126535], [26.34, 38.51953118498305, 0.50977015], [26.35, 38.59367545807938, 0.59853315], [26.36, 39.17074815287642, 0.56724656], [26.37, 39.10382562271642, 0.56581056], [26.38, 38.42342723824651, 0.65650344], [26.39, 38.35955931571649, 0.36800358], [26.4, 38.48591068846659, 0.5059874], [26.41, 38.87536300075384, 0.668497], [26.42, 38.62001025312156, 0.457405], [26.43, 38.75659024948448, 0.62558323], [26.44, 38.75637689882706, 0.6432474], [26.45, 38.7914880973017, 0.6285149], [26.46, 42.50341025732692, 0.65696776], [26.47, 50.60109518381089, 0.5716757], [26.48, 56.09150200343714, 0.6797261], [26.49, 60.493430362030686, 0.6953731], [26.5, 70.04565706007413, 0.6237184], [26.51, 77.24060961954622, 0.14140189], [26.52, 89.32651100196601, 0.36155447], [26.53, 97.12535024228944, 0.28833893], [26.54, 110.42016092803098, 0.45312294], [26.55, 125.2956158480529, 0.43631572], [26.56, 139.72847622683742, 0.57859385], [26.57, 140.65712220701616, 0.5785873], [26.58, 141.0846501221242, 0.73316085], [26.59, 140.36241171040905, 0.67329055], [26.6, 139.52832801451638, 0.41353738], [26.61, 139.98258393263472, 0.28375024], [26.62, 146.04283336640606, 0.2973809], [26.63, 156.0628587781141, 0.5085733], [26.64, 166.80965579380614, 0.43061754], [26.65, 173.0943427645924, 0.17718668], [26.66, 173.0448494910891, 0.25200218], [26.67, 173.23684102182372, 0.29668415], [26.68, 175.24074456759774, 0.22868018], [26.69, 160.17934916493968, 0.26727676], [26.7, 141.4768735877777, 0.3120948], [26.71, 125.30407264771343, 0.36121833], [26.72, 125.82602327753683, 0.37266305], [26.73, 125.28230045382365, 0.4624627], [26.74, 123.37009353624671, 0.43687582], [26.75, 124.11298544900896, 0.4223388], [26.76, 128.62689523324545, 0.26269412], [26.77, 134.69896830050138, 0.43135163], [26.78, 141.43511854508236, 0.33302253], [26.79, 143.67520745401484, 0.5258645], [26.8, 150.5279484971763, 0.6076942], [26.81, 152.36295176211974, 0.65554047], [26.82, 154.67717001971957, 0.7988124], [26.83, 155.91781562245413, 0.8562748], [26.84, 156.62116418551324, 0.8313476], [26.85, 155.62276245326544, 0.82260954], [26.86, 154.54876057680667, 0.8026063], [26.87, 153.99596939862, 0.8165905], [26.88, 154.81318673566798, 0.81223804], [26.89, 155.38429207938606, 0.8378767], [26.9, 155.40008958776662, 0.8214537], [26.91, 156.34356304264338, 0.8599594], [26.92, 156.5991229972431, 0.8452361], [26.93, 156.8178648809354, 0.8075727], [26.94, 156.42602919807604, 0.8094403], [26.95, 156.09324088809697, 0.8270597], [26.96, 172.47634409829703, 0.65439534], [26.97, 195.94384201093337, 0.540752], [26.98, 219.99412290902583, 0.26555634], [26.99, 251.25461615973876, 0.387193], [27.0, 278.9588966942208, 0.5880119], [27.01, 276.73616017442635, 0.67448026], [27.02, 277.3671741980575, 0.7271021], [27.03, 279.1185873899733, 0.7101833], [27.04, 279.36163266702584, 0.6954313], [27.05, 277.51949585476996, 0.6734211], [27.06, 276.57054641227904, 0.7065532], [27.07, 274.6734121104766, 0.7309786], [27.08, 275.3597607321352, 0.7898332], [27.09, 276.3812503441686, 0.78740954], [27.1, 276.35434711575635, 0.76960176], [27.11, 275.5295546158055, 0.6879156], [27.12, 277.4692932727841, 0.43115664], [27.13, 269.9186185803898, 0.49825194], [27.14, 246.6472125750262, 0.76056063], [27.15, 233.09784463772107, 0.77556473], [27.16, 223.27998889965477, 0.83053166], [27.17, 202.03801895721887, 0.82444715], [27.18, 192.00768014283278, 0.60538507], [27.19, 176.66266117070649, 0.22902007], [27.2, 162.9567787812255, 0.28638548], [27.21, 156.2683887062625, 0.4056046], [27.22, 150.91657584753517, 0.27689782], [27.23, 151.29635320507597, 0.14950454], [27.24, 148.5168963904079, 0.26785266], [27.25, 148.76142839672275, 0.30301422], [27.26, 147.75751399088216, 0.31084788], [27.27, 146.9250519775303, 0.16100474], [27.28, 148.58718186580097, 0.1437097], [27.29, 147.07411085856796, 0.6126202], [27.3, 146.88800988417808, 0.41291794], [27.31, 145.22664916828114, 0.6707693], [27.32, 144.6874171230936, 0.672839], [27.33, 145.02898513108224, 0.72617435], [27.34, 144.98723664263682, 0.75541556], [27.35, 144.3384087945493, 0.75687885], [27.36, 144.93541821796745, 0.76317257], [27.37, 145.28126223318907, 0.71232456], [27.38, 144.3264451643844, 0.7680135], [27.39, 144.5473936238367, 0.77190477], [27.4, 143.477294466533, 0.8032778], [27.41, 143.5830951568074, 0.84465355], [27.42, 143.84546332421723, 0.82466036], [27.43, 143.29436277010961, 0.8146411], [27.44, 141.7610526389908, 0.78298235], [27.45, 139.53419055778707, 0.78534186], [27.46, 137.87040053469144, 0.5762779], [27.47, 136.77333480180386, 0.550453], [27.48, 138.89493702278997, 0.44842544], [27.49, 138.71242066805897, 0.5764416], [27.5, 138.41647327399056, 0.66716355], [27.51, 137.05123413364828, 0.59438396], [27.52, 135.70004743218198, 0.4961086], [27.53, 137.227561523836, 0.51612574], [27.54, 137.98123308773665, 0.39716956], [27.55, 139.20225676322244, 0.4965031], [27.56, 139.90513740395542, 0.44446838], [27.57, 139.6198667755924, 0.5683228], [27.58, 139.42082302638045, 0.6225395], [27.59, 138.51627452579234, 0.59087795], [27.6, 136.90538843366846, 0.6069459], [27.61, 136.24035495381872, 0.42279235], [27.62, 135.56826478330368, 0.58084065], [27.63, 135.0915472649639, 0.40402126], [27.64, 135.14995667163865, 0.55879503], [27.65, 136.64994996285583, 0.53185254], [27.66, 139.33829144596925, 0.70270133], [27.67, 141.3486507010956, 0.4971436], [27.68, 142.83582409520005, 0.1702916], [27.69, 143.52785130332882, 0.29216537], [27.7, 146.052195132669, 0.39020061], [27.71, 152.33773724806628, 0.36395872], [27.72, 157.25743917027853, 0.64058435], [27.73, 160.0438626427832, 0.6578706], [27.74, 160.98460187925568, 0.69896483], [27.75, 160.26826527635095, 0.74315464], [27.76, 158.02089981071893, 0.65826494], [27.77, 155.98770411730726, 0.6851956], [27.78, 154.34392701175557, 0.7104491], [27.79, 153.38345387730774, 0.7680826], [27.8, 152.61343596554508, 0.79581046], [27.81, 152.22767041442475, 0.79683596], [27.82, 152.01808378384254, 0.76720476], [27.83, 152.8377636098223, 0.7836915], [27.84, 153.31183115808057, 0.7572462], [27.85, 150.82387294706493, 0.70997137], [27.86, 148.5023234909105, 0.7307402], [27.87, 146.52777033321823, 0.8045451], [27.88, 144.7493058047821, 0.85001874], [27.89, 142.57304707567013, 0.8045974], [27.9, 139.86584782189672, 0.77839166], [27.91, 137.69240681429014, 0.85571206], [27.92, 136.3155646976979, 0.82163197], [27.93, 135.08849291104414, 0.8442941], [27.94, 134.9432605479262, 0.8329999], [27.95, 135.78201620228094, 0.82238674], [27.96, 136.93991894868094, 0.8258649], [27.97, 138.448772720491, 0.8345193], [27.98, 139.2084064235362, 0.82450175], [27.99, 139.52963543275726, 0.82255125], [28.0, 138.9340310698917, 0.8384619], [28.01, 138.56054887855092, 0.8155033], [28.02, 138.55649497402138, 0.8262817], [28.03, 138.41595929998064, 0.81139964], [28.04, 138.62528756372876, 0.8489621], [28.05, 138.9897147346916, 0.8711473], [28.06, 138.82174222109842, 0.8822246], [28.07, 138.79952573409577, 0.87457746], [28.08, 138.19422380277564, 0.85255027], [28.09, 137.7597665830125, 0.84169614], [28.1, 137.2383780563972, 0.83020824], [28.11, 136.2742178300744, 0.8110853], [28.12, 135.35714903884698, 0.72269547], [28.13, 134.1030665759198, 0.69093066], [28.14, 135.58066683812757, 0.22081606], [28.15, 140.89569863639227, 0.21101734], [28.16, 144.93401027894126, 0.11795901], [28.17, 139.05133917815922, 0.07220455], [28.18, 130.6647663713757, 0.10223943], [28.19, 124.15024861206972, 0.049481433], [28.2, 125.47684419163244, 0.20090862], [28.21, 129.16458844197265, 0.28624067], [28.22, 132.96851708937444, 0.4858688], [28.23, 135.19230094464922, 0.47025537], [28.24, 137.73128973256132, 0.3622027], [28.25, 140.2831725655614, 0.38410714], [28.26, 140.98716576120842, 0.47299597], [28.27, 142.82077294548185, 0.36468], [28.28, 141.66167479153307, 0.34367207], [28.29, 142.95127782423947, 0.22678272], [28.3, 143.95844915253713, 0.21156763], [28.31, 145.1806183663892, 0.17252104], [28.32, 143.5445355723648, 0.3294266], [28.33, 140.99329250542755, 0.14644817], [28.34, 137.84387966504735, 0.17594656], [28.35, 137.55359046690162, 0.18068564], [28.36, 137.17347926966082, 0.07728007], [28.37, 140.3033977025326, 0.13467571], [28.38, 145.1194644179679, 0.13027094], [28.39, 146.8455815450306, 0.30259335], [28.4, 143.58453566193327, 0.5312361], [28.41, 141.74956386377096, 0.64448094], [28.42, 140.24205315901366, 0.6648642], [28.43, 138.80049703745303, 0.8120165], [28.44, 138.29819745077276, 0.82004434], [28.45, 137.7024131730078, 0.8271445], [28.46, 137.74242554274608, 0.8494162], [28.47, 137.83255236869564, 0.8392812], [28.48, 138.1831759410503, 0.83118284], [28.49, 138.15271210974117, 0.8164407], [28.5, 138.44313839115446, 0.8366164], [28.51, 138.20938076711795, 0.7658033], [28.52, 137.7586121575587, 0.78489804], [28.53, 137.42252070851376, 0.8079817], [28.54, 137.0816407279802, 0.79790235], [28.55, 137.11780455380887, 0.80385107], [28.56, 137.6887353247494, 0.82087255], [28.57, 138.3878691900337, 0.82259405], [28.58, 138.68060298137084, 0.80485874], [28.59, 139.18624415807318, 0.83603317], [28.6, 139.17437206780482, 0.8416229], [28.61, 138.9421059623493, 0.84373486], [28.62, 138.10857833704222, 0.811272], [28.63, 137.6617512676949, 0.8191523], [28.64, 137.4107799629039, 0.81176716], [28.65, 137.10170386462713, 0.8166858], [28.66, 137.27536463872235, 0.8161049], [28.67, 137.34581589876416, 0.79270196], [28.68, 137.21298572950113, 0.7999206], [28.69, 137.35071380175881, 0.82885385], [28.7, 137.4102438487475, 0.8234331], [28.71, 137.54473141466497, 0.835072], [28.72, 137.72993130304826, 0.85811716], [28.73, 137.3783087941705, 0.83782136], [28.74, 137.15901652920846, 0.84173113], [28.75, 137.2136488721014, 0.8596105], [28.76, 137.28754652885647, 0.85270506], [28.77, 137.145798402073, 0.86221796], [28.78, 137.63440947717882, 0.8573219], [28.79, 137.77179316102158, 0.85617316], [28.8, 138.0205264168364, 0.8558416], [28.81, 137.96775936277305, 0.86124486], [28.82, 137.44562392678344, 0.8649509], [28.83, 136.9593374663935, 0.8482921], [28.84, 137.47981349782148, 0.85392123], [28.85, 138.36220832627245, 0.8165798], [28.86, 139.66786409993426, 0.77689785], [28.87, 141.071061376647, 0.75419277], [28.88, 142.42882467574867, 0.8036748], [28.89, 141.9715585543122, 0.81934637], [28.9, 140.7227326188903, 0.8049665], [28.91, 139.15700005168955, 0.84807044], [28.92, 137.3114071532276, 0.81594247], [28.93, 135.89442159710956, 0.820683], [28.94, 134.66781316073087, 0.81971306], [28.95, 134.1456031335321, 0.83540833], [28.96, 134.47353451886477, 0.83285856], [28.97, 135.8195589816567, 0.7755507], [28.98, 137.44934031356098, 0.7336732], [28.99, 141.34081849699865, 0.34089717], [29.0, 146.29143144503414, 0.62508684], [29.01, 150.18462302187208, 0.6018756], [29.02, 152.73274869593473, 0.6434296], [29.03, 151.1688585503207, 0.4335333], [29.04, 147.35275668670891, 0.25492978], [29.05, 145.74068113442743, 0.6168567], [29.06, 141.6469635638135, 0.7940802], [29.07, 140.05893574231038, 0.66657364], [29.08, 138.75526922332082, 0.60391426], [29.09, 136.67277856743604, 0.610817], [29.1, 134.63893838054506, 0.7270846], [29.11, 133.3027180579844, 0.7856515], [29.12, 133.30957869269224, 0.7174563], [29.13, 132.88042396097657, 0.7051101], [29.14, 133.80670664529424, 0.5712346], [29.15, 137.81772306937287, 0.6140092], [29.16, 140.38333919928394, 0.73051274], [29.17, 142.28328293429567, 0.81168956], [29.18, 142.14037539646006, 0.8315615], [29.19, 140.75688800289225, 0.7359955], [29.2, 138.8372241615571, 0.8624408], [29.21, 138.06051412942003, 0.8558535], [29.22, 138.5270644678321, 0.85148317], [29.23, 138.9718533890576, 0.8634797], [29.24, 140.04346514535737, 0.7879561], [29.25, 141.34088473966216, 0.71643525], [29.26, 144.93545174218647, 0.733679], [29.27, 147.92471604057465, 0.70109546], [29.28, 152.3863951454837, 0.6896963], [29.29, 154.838276267835, 0.77430254], [29.3, 155.751763777512, 0.86507595], [29.31, 155.82397211829482, 0.8452123], [29.32, 154.9216532628197, 0.78053015], [29.33, 152.84496846955616, 0.7728534], [29.34, 151.62739249925653, 0.73659676], [29.35, 151.0171977871404, 0.7310132], [29.36, 150.14147699489345, 0.7092085], [29.37, 150.7708276485188, 0.3173915], [29.38, 152.4584581640966, 0.4452212], [29.39, 162.41765818348696, 0.2588563], [29.4, 178.2605914123434, 0.2507152], [29.41, 192.69633542498713, 0.2755989], [29.42, 218.78371579885626, 0.35649177], [29.43, 227.99155879263355, 0.5384566], [29.44, 230.2158473508165, 0.6125952], [29.45, 231.43079465580823, 0.71333206], [29.46, 231.92307478158193, 0.6926636], [29.47, 232.52304033000914, 0.6367242], [29.48, 232.66624629172637, 0.5713844], [29.49, 232.41693107921674, 0.5670451], [29.5, 215.63960499975684, 0.24073745], [29.51, 186.36318559933454, 0.18585624], [29.52, 169.99268219314533, 0.18837652], [29.53, 151.44282361678012, 0.19755626], [29.54, 152.61976474740976, 0.32661995], [29.55, 152.8067850447713, 0.42701313], [29.56, 154.4439083297617, 0.4641191], [29.57, 158.65676979351275, 0.58693534], [29.58, 159.41244830017763, 0.6928239], [29.59, 159.92690350455032, 0.69642663], [29.6, 159.49673327011925, 0.73718226], [29.61, 160.3425468037221, 0.59621185], [29.62, 159.2499460812456, 0.47189623], [29.63, 157.71320641585487, 0.33822], [29.64, 155.92753121029898, 0.2375987], [29.65, 141.89458130195047, 0.24370937], [29.66, 141.78213463141773, 0.27483088], [29.67, 152.31645220751983, 0.26151535], [29.68, 156.826336358254, 0.44743827], [29.69, 158.2665712545931, 0.5991006], [29.7, 158.49637628447238, 0.5724523], [29.71, 159.83412228306403, 0.5010137], [29.72, 163.09456560199024, 0.5747571], [29.73, 164.35413459823235, 0.5869014], [29.74, 166.05654655801396, 0.6091064], [29.75, 168.89801088557536, 0.53391254], [29.76, 171.4756367082502, 0.6693185], [29.77, 173.09710870986515, 0.6742189], [29.78, 172.5585173767539, 0.5499162], [29.79, 164.83597591499247, 0.2363933], [29.8, 159.55507906142955, 0.21302389], [29.81, 153.12694364019092, 0.16802977], [29.82, 153.13926516502204, 0.1600336], [29.83, 139.1235755862977, 0.13596985], [29.84, 120.84233623755068, 0.56936896], [29.85, 114.74034134920407, 0.7606926], [29.86, 101.24472456514054, 0.7512239], [29.87, 90.64225310431227, 0.67463416], [29.88, 82.68685133304665, 0.7606846], [29.89, 73.37205859595922, 0.7082454], [29.9, 63.69254688249073, 0.7948579], [29.91, 58.307360224606846, 0.8400405], [29.92, 58.72390053566509, 0.8281612], [29.93, 58.89443595588568, 0.78198266], [29.94, 58.772814059542284, 0.8206331], [29.95, 58.47812242147597, 0.8324329], [29.96, 58.29702953508259, 0.8339828], [29.97, 58.59345877838678, 0.827292], [29.98, 58.31327304583038, 0.7983823], [29.99, 58.70359405977709, 0.7776447], [30.0, 58.61523526882049, 0.81804925], [30.01, 58.35264637178614, 0.8253113], [30.02, 58.4015100294794, 0.3570767], [30.03, 59.79364300172118, 0.08250585], [30.04, 63.63761993491211, 0.16299917], [30.05, 66.57929246667882, 0.18036506], [30.06, 71.51854770826876, 0.2882842], [30.07, 75.44962937638773, 0.27774388], [30.08, 76.76541706832965, 0.18636417], [30.09, 79.64150136379693, 0.111805126], [30.1, 83.1722070315584, 0.0805119], [30.11, 87.01835335552026, 0.18428554], [30.12, 92.56539484718581, 0.20885378], [30.13, 92.88931738797905, 0.10303694], [30.14, 95.26366560869155, 0.12224765], [30.15, 102.34512500915838, 0.34853488], [30.16, 106.30507217438665, 0.18827921], [30.17, 109.68492174264648, 0.09107166], [30.18, 114.00762726158743, 0.0654858], [30.19, 116.19894794878945, 0.1982147], [30.2, 117.3310122681066, 0.21261078], [30.21, 116.16905073761768, 0.13675974], [30.22, 115.6868792642143, 0.09902354], [30.23, 116.35355220069287, 0.40140554], [30.24, 116.76419124720695, 0.44406155], [30.25, 116.97939289167955, 0.2244943], [30.26, 115.49252279316151, 0.17466159], [30.27, 115.25830980397356, 0.1691025], [30.28, 115.48349592588627, 0.13437043], [30.29, 116.14997566387797, 0.4501205], [30.3, 116.903286181253, 0.46623707], [30.31, 116.82701202092431, 0.3919001], [30.32, 116.88885160222186, 0.12602937], [30.33, 116.77444157317376, 0.1391519], [30.34, 117.10373378015763, 0.29796737], [30.35, 122.62724077382788, 0.3572504], [30.36, 136.30649420766565, 0.5088518], [30.37, 140.34305351781796, 0.24204446], [30.38, 140.57985615094222, 0.44211465], [30.39, 139.77380627131117, 0.5587865], [30.4, 139.3589934297982, 0.43798506], [30.41, 138.37011361934887, 0.3895866], [30.42, 137.06514895295012, 0.54842705], [30.43, 136.90115304398643, 0.5126335], [30.44, 136.67964407540782, 0.392089], [30.45, 136.04156591494413, 0.24465765], [30.46, 136.94827684533354, 0.27768758], [30.47, 136.62574511413078, 0.33266243], [30.48, 135.47963948411908, 0.22598028], [30.49, 131.4285159854089, 0.07794333], [30.5, 133.091244741904, 0.08996147], [30.51, 136.30950295775224, 0.31138355], [30.52, 136.08661403621133, 0.38767743], [30.53, 135.46611149665938, 0.33470154], [30.54, 136.85652115042774, 0.2655313], [30.55, 138.74017956010005, 0.25661212], [30.56, 138.44878521373278, 0.3750422], [30.57, 138.57874015161133, 0.5068969], [30.58, 138.70820733724176, 0.20224991], [30.59, 137.15203940337273, 0.31521618], [30.6, 137.87940806470115, 0.45144355], [30.61, 137.80393244788897, 0.4901814], [30.62, 138.2301669690784, 0.53693706], [30.63, 138.2675840923353, 0.37104177], [30.64, 139.60837851992102, 0.48848283], [30.65, 139.29076301529204, 0.30098778], [30.66, 139.18731326252367, 0.2816046], [30.67, 139.88455558076635, 0.16839488], [30.68, 139.598364142138, 0.33845899], [30.69, 140.2308563752902, 0.4447354], [30.7, 140.91446419666963, 0.49696815], [30.71, 139.03127313295832, 0.6043904], [30.72, 151.8171357371873, 0.6686702], [30.73, 174.3493327288454, 0.62709683], [30.74, 184.43495550016377, 0.3901148], [30.75, 216.9523364574563, 0.30929494], [30.76, 232.11390478581762, 0.22164759], [30.77, 231.94748137196467, 0.6008188], [30.78, 231.81900243102837, 0.67646015], [30.79, 232.0288513770535, 0.6645894], [30.8, 231.92672194784188, 0.6134671], [30.81, 231.19275314977585, 0.64527905], [30.82, 231.89488775111042, 0.6079366], [30.83, 231.56875337445973, 0.7089445], [30.84, 231.95420729376193, 0.66241026], [30.85, 233.6653797270135, 0.7209517], [30.86, 233.5483333219659, 0.74665993], [30.87, 232.73265931253314, 0.76291937], [30.88, 232.61246787854316, 0.7658415], [30.89, 233.0539844431292, 0.6885585], [30.9, 233.18195334131477, 0.6029904], [30.91, 232.65860866187904, 0.6228201], [30.92, 232.95611860220367, 0.7271733], [30.93, 231.26778971298916, 0.72340137], [30.94, 231.17465701903024, 0.6524215], [30.95, 230.75496375732865, 0.3746455], [30.96, 231.02749742096182, 0.22362857], [30.97, 232.73312930326753, 0.12333032], [30.98, 229.71471268017376, 0.13758366], [30.99, 227.97098892410713, 0.50812954], [31.0, 224.6036596543608, 0.57887936], [31.01, 219.80042538240906, 0.22865143], [31.02, 218.10671994642445, 0.13444395], [31.03, 215.7880283478893, 0.08104086], [31.04, 212.4156553943183, 0.15467466], [31.05, 211.86072245335782, 0.07305845], [31.06, 210.23097383655534, 0.15690865], [31.07, 206.6076013526745, 0.43117842], [31.08, 202.6749802513511, 0.56299984], [31.09, 198.3150918350703, 0.38673675], [31.1, 196.17517270952564, 0.52074355], [31.11, 188.9182622456781, 0.5104112], [31.12, 181.9288683466309, 0.46038038], [31.13, 178.19318065527736, 0.33636796], [31.14, 176.0869937870999, 0.22303124], [31.15, 174.1993799591198, 0.47764057], [31.16, 172.06971207486237, 0.38890955], [31.17, 171.43493165154803, 0.55558085], [31.18, 166.12122617923364, 0.68035525], [31.19, 158.32437414909808, 0.36697602], [31.2, 153.14346642931594, 0.09215678], [31.21, 152.57652157600768, 0.26210162], [31.22, 153.05892677572896, 0.18116297], [31.23, 154.98186520717502, 0.55426115], [31.24, 157.12295393190453, 0.6158523], [31.25, 161.50549197740773, 0.41813183], [31.26, 163.61348394457227, 0.48891518], [31.27, 164.61114980136327, 0.49830294], [31.28, 163.9260450082424, 0.5851089], [31.29, 162.5785682348859, 0.6574331], [31.3, 160.32226086959503, 0.6261775], [31.31, 157.70303145842996, 0.6201694], [31.32, 155.5769911254925, 0.6391638], [31.33, 153.34129562484003, 0.69003206], [31.34, 152.95598774314286, 0.7294407], [31.35, 151.5055886449277, 0.7176285], [31.36, 151.62794977724508, 0.8083519], [31.37, 152.7687993777282, 0.76329094], [31.38, 155.40050084392772, 0.77296734], [31.39, 157.45304004065267, 0.8184394], [31.4, 158.67667147168012, 0.81757945], [31.41, 159.53426397126162, 0.8168936], [31.42, 159.79412300807303, 0.7644285], [31.43, 158.74751582426734, 0.7122261], [31.44, 156.0022595116266, 0.5491328], [31.45, 155.21956982191173, 0.52012104], [31.46, 153.2568077654169, 0.31711286], [31.47, 149.39623992758482, 0.30767614], [31.48, 149.30847273083114, 0.3645477], [31.49, 162.67360428834408, 0.21966417], [31.5, 185.53543797573462, 0.20646816], [31.51, 204.41182075168228, 0.30146524], [31.52, 203.6142894894306, 0.3134376], [31.53, 201.74900246813684, 0.44042638], [31.54, 200.24019239108472, 0.3655359], [31.55, 199.59492348149556, 0.23710188], [31.56, 196.55663615243117, 0.31994724], [31.57, 196.9577066584036, 0.3051452], [31.58, 201.29353814084158, 0.31297043], [31.59, 207.56434629540507, 0.34103674], [31.6, 209.96103327295026, 0.5465583], [31.61, 209.9123787833081, 0.61864525], [31.62, 209.5350997146374, 0.47327298], [31.63, 204.8153812350151, 0.41807532], [31.64, 189.7503309451697, 0.33528203], [31.65, 175.59102686374587, 0.48272294], [31.66, 175.2408583154936, 0.7453003], [31.67, 174.5447992161074, 0.7681443], [31.68, 173.22527967691406, 0.7652071], [31.69, 172.70395500596268, 0.7287664], [31.7, 174.17367501125668, 0.7630849], [31.71, 174.64560304714084, 0.7891759], [31.72, 175.9175541924, 0.7522443], [31.73, 177.68857212282032, 0.6547749], [31.74, 178.8687813448905, 0.4681303], [31.75, 181.16016287241183, 0.27552426], [31.76, 181.3364125262169, 0.5075676], [31.77, 178.48769131825202, 0.2158432], [31.78, 177.62412999864756, 0.32987744], [31.79, 177.9356796210179, 0.28962505], [31.8, 175.48964526768975, 0.18949059], [31.81, 174.98365879905978, 0.18068656], [31.82, 176.1515245100259, 0.27909672], [31.83, 174.63456055737998, 0.25505826], [31.84, 175.53723775704097, 0.2437264], [31.85, 177.61902140193357, 0.46560434], [31.86, 177.85456531670278, 0.2398443], [31.87, 175.8258023379244, 0.117389165], [31.88, 172.62200254533468, 0.09990942], [31.89, 175.82715727930423, 0.16755134], [31.9, 175.7127095848003, 0.18063618], [31.91, 174.9382607187799, 0.16453807], [31.92, 176.2206541731909, 0.1310106], [31.93, 176.40400538146596, 0.066747755], [31.94, 176.38333578644762, 0.0837047], [31.95, 175.58934591794358, 0.26072037], [31.96, 175.59738374678344, 0.3028357], [31.97, 176.75158835109517, 0.39442807], [31.98, 176.92846553470346, 0.29780307], [31.99, 175.5650080966331, 0.1600795], [32.0, 171.491245181447, 0.30854648], [32.01, 168.29344781257822, 0.16976626], [32.02, 157.71805246925726, 0.21156512], [32.03, 150.8159332722956, 0.1426509], [32.04, 148.02461669876604, 0.17122276], [32.05, 145.57525204599776, 0.14335866], [32.06, 144.16264563493976, 0.33340442], [32.07, 142.59970306375075, 0.3292624], [32.08, 142.52135518054322, 0.32241008], [32.09, 141.67587813736876, 0.16152698], [32.1, 140.97374543695818, 0.15364854], [32.11, 138.73794916307133, 0.23362237], [32.12, 138.19977365700814, 0.25227883], [32.13, 138.3268120839532, 0.36087513], [32.14, 137.01434622925186, 0.26222116], [32.15, 136.7319924610369, 0.2221078], [32.16, 136.46581366704748, 0.254598], [32.17, 136.9315532382389, 0.2736365], [32.18, 138.87254448956998, 0.27258298], [32.19, 139.88497899052476, 0.16693379], [32.2, 139.20808817010757, 0.2020676], [32.21, 139.35222846259776, 0.16357829], [32.22, 141.23022642263166, 0.15727417], [32.23, 140.87066448135772, 0.12138539], [32.24, 138.96769203839048, 0.12268862], [32.25, 137.198616780035, 0.21715915], [32.26, 136.69431588325804, 0.24787357], [32.27, 136.46414677266756, 0.12080724], [32.28, 137.1686321098377, 0.16514203], [32.29, 139.0254867456507, 0.20439583], [32.3, 141.15468170692336, 0.2334933], [32.31, 141.07352099429764, 0.24303024], [32.32, 140.51676287404788, 0.2603556], [32.33, 139.6141233847368, 0.27857128], [32.34, 139.4133196969455, 0.14443506], [32.35, 143.25941274539178, 0.15412873], [32.36, 152.10177202379435, 0.16375664], [32.37, 169.6751541901153, 0.13957465], [32.38, 176.48111676302477, 0.3179814], [32.39, 178.3030929527067, 0.30680618], [32.4, 187.30949775167034, 0.24214478], [32.41, 203.8624126960018, 0.18515745], [32.42, 207.91867144438737, 0.339166], [32.43, 210.3203118042826, 0.35705274], [32.44, 210.52184542592346, 0.4533835], [32.45, 207.7093586927464, 0.6876986], [32.46, 206.85743996475463, 0.6805538], [32.47, 206.3779658185033, 0.6041796], [32.48, 205.209671882811, 0.7760604], [32.49, 204.8987826024332, 0.7864545], [32.5, 205.10666923191113, 0.80536216], [32.51, 204.8728409056794, 0.80661416], [32.52, 205.2336494145177, 0.7978588], [32.53, 205.53561481050392, 0.76739466], [32.54, 206.39901317085014, 0.77243155], [32.55, 206.39974823440423, 0.7665877], [32.56, 207.12790450785155, 0.7281794], [32.57, 207.9939310450809, 0.5738615], [32.58, 208.400007197169, 0.3562222], [32.59, 207.9457633482465, 0.30500942], [32.6, 207.36456184884676, 0.43263867], [32.61, 205.8292978403959, 0.54145217], [32.62, 205.38074652034658, 0.5584914], [32.63, 204.46813109205243, 0.33246326], [32.64, 203.41553861692307, 0.6247665], [32.65, 202.33752909812895, 0.41741395], [32.66, 200.24633905114405, 0.59334755], [32.67, 197.2720367891084, 0.5999691], [32.68, 189.06361535849155, 0.5515872], [32.69, 182.0647734459285, 0.35532776], [32.7, 178.04693993876293, 0.3580991], [32.71, 176.514072403957, 0.45893908], [32.72, 176.1840658235806, 0.30753204], [32.73, 175.19645309923834, 0.34111533], [32.74, 176.08515003834196, 0.30307978], [32.75, 175.6690940183363, 0.35719553], [32.76, 175.9573777956196, 0.5297646], [32.77, 175.17137577408832, 0.34129936], [32.78, 175.6563591419809, 0.3885122], [32.79, 175.85156920697716, 0.34009054], [32.8, 175.81692632586285, 0.25271282], [32.81, 175.7769732636855, 0.2229464], [32.82, 174.2686082198651, 0.344423], [32.83, 174.46258394820913, 0.23445101], [32.84, 176.54309837442156, 0.30624098], [32.85, 179.37507864159426, 0.26615348], [32.86, 181.58337935754327, 0.31492046], [32.87, 180.78392449688752, 0.26343882], [32.88, 176.98620590014195, 0.46469322], [32.89, 176.114719048849, 0.35955384], [32.9, 175.53944123341952, 0.3690725], [32.91, 176.92498660033138, 0.22621161], [32.92, 168.67850706878133, 0.3293302], [32.93, 147.69790971836505, 0.4736276], [32.94, 137.60997062728066, 0.49455047], [32.95, 138.48302043896143, 0.6160864], [32.96, 138.07125585482146, 0.6528238], [32.97, 138.12140494860907, 0.64648664], [32.98, 137.84061743608396, 0.6811707], [32.99, 137.50772390861684, 0.676416], [33.0, 137.61615157239763, 0.60741425], [33.01, 155.43275517831364, 0.47388092], [33.02, 174.847543194674, 0.3327483], [33.03, 175.59566918929536, 0.38560367], [33.04, 176.32744280117433, 0.3841737], [33.05, 174.55564114208988, 0.4412805], [33.06, 175.4199538836558, 0.40507904], [33.07, 155.12714617157172, 0.3518416], [33.08, 139.27468124937414, 0.42646864], [33.09, 138.73263694243266, 0.47715288], [33.1, 138.82924050242815, 0.6190446], [33.11, 138.4483301880024, 0.5793579], [33.12, 137.84480752326903, 0.7040025], [33.13, 137.5420596657824, 0.616187], [33.14, 137.0698813027685, 0.42594892], [33.15, 136.6074666285706, 0.3524316], [33.16, 137.6658526128241, 0.3546614], [33.17, 137.88376538293178, 0.4270789], [33.18, 138.8308994327392, 0.34681755], [33.19, 141.12266080017005, 0.37791213], [33.2, 140.58182544759978, 0.5511592], [33.21, 142.201355775349, 0.65515786], [33.22, 142.23803981350892, 0.6267954], [33.23, 142.41217194923715, 0.5827117], [33.24, 144.50430215311715, 0.56993043], [33.25, 147.92829054277263, 0.4372576], [33.26, 150.86217172063675, 0.33872768], [33.27, 151.00655600678198, 0.364879], [33.28, 148.79267648345984, 0.37199163], [33.29, 147.73498342709834, 0.3437162], [33.3, 145.7281021975265, 0.36771312], [33.31, 143.61297209396304, 0.49180862], [33.32, 142.62358826610478, 0.4422344], [33.33, 139.15520570538916, 0.4682423], [33.34, 137.90206393162453, 0.50194466], [33.35, 138.7302592774908, 0.48244357], [33.36, 136.80845560689056, 0.5404728], [33.37, 137.75121632904248, 0.5017706], [33.38, 137.54643781414475, 0.5452769], [33.39, 137.35723168170148, 0.46997973], [33.4, 147.37744271940875, 0.55887383], [33.41, 168.01776340760696, 0.45040354], [33.42, 177.453942032482, 0.20965825], [33.43, 174.9308130869373, 0.18734059], [33.44, 176.66635325179374, 0.2266262], [33.45, 179.33402980741945, 0.5198349], [33.46, 178.45301574985197, 0.27022198], [33.47, 174.37308146187218, 0.2298727], [33.48, 163.75129074338844, 0.18623747], [33.49, 176.9810377498732, 0.27594957], [33.5, 178.50117819941568, 0.33150065], [33.51, 182.63709841756824, 0.35403118], [33.52, 193.0520498123642, 0.3904292], [33.53, 205.82415279008836, 0.34947488], [33.54, 219.78702836302588, 0.31285512], [33.55, 228.97010036442117, 0.12870584], [33.56, 231.18840158169388, 0.44188705], [33.57, 228.96855074460743, 0.49722502], [33.58, 230.41136983854244, 0.7053319], [33.59, 231.6479590411979, 0.6959484], [33.6, 234.05446113588408, 0.6411805], [33.61, 234.45857279329627, 0.71798646], [33.62, 233.59025470929905, 0.62361443], [33.63, 232.48860088077583, 0.7186087], [33.64, 231.9589624877185, 0.7622583], [33.65, 231.13279110236874, 0.76476604], [33.66, 231.78323097925818, 0.777457], [33.67, 232.36237197575696, 0.8110251], [33.68, 233.11371475600714, 0.8386377], [33.69, 233.59003102941554, 0.87274987], [33.7, 233.54806632589901, 0.8809592], [33.71, 233.32495185849152, 0.85805935], [33.72, 233.76075846295583, 0.8811504], [33.73, 233.3691519016752, 0.8846191], [33.74, 232.91503093677332, 0.8444532], [33.75, 233.33678427175644, 0.8680698], [33.76, 233.7206876234336, 0.7801908], [33.77, 234.73780480442178, 0.462082], [33.78, 215.2871753613559, 0.3185285], [33.79, 187.7729697680516, 0.18303366], [33.8, 171.04394702933075, 0.19960558], [33.81, 153.738245526656, 0.31144574], [33.82, 140.12553622905457, 0.39301434], [33.83, 119.78520418569556, 0.28504], [33.84, 108.38976040210733, 0.12767139], [33.85, 96.94373450021857, 0.06504825], [33.86, 84.8942911172796, 0.05585882], [33.87, 77.86308134795482, 0.04794868], [33.88, 68.03331888235459, 0.12777719], [33.89, 61.0435958240014, 0.097048625], [33.9, 56.35058035632142, 0.15717189], [33.91, 47.687351906421505, 0.19305615], [33.92, 43.163354236502144, 0.11199817], [33.93, 38.610352517671025, 0.18650667], [33.94, 38.91396162240361, 0.30244836], [33.95, 38.87974708944723, 0.31950295], [33.96, 38.39022547589914, 0.17380348], [33.97, 38.356012895208835, 0.1492077], [33.98, 38.99409975886319, 0.22153525], [33.99, 39.29450533869775, 0.25482258], [34.0, 40.22810951882317, 0.14935113], [34.01, 39.66026816051618, 0.4025919], [34.02, 39.785576893725185, 0.34563774], [34.03, 39.086507584839076, 0.53570807], [34.04, 38.29546205689446, 0.32194096], [34.05, 37.83969326070987, 0.30394894], [34.06, 38.39682802953479, 0.5840322], [34.07, 38.66248794542522, 0.38590688], [34.08, 38.88162129712012, 0.6210128], [34.09, 38.810969945629886, 0.558898], [34.1, 38.86785287058687, 0.4636166], [34.11, 39.04938231924384, 0.6122323], [34.12, 39.07968208611407, 0.5290963], [34.13, 38.91534891566656, 0.5953598], [34.14, 38.55620238998111, 0.54472786], [34.15, 38.43671152946165, 0.5114976], [34.16, 38.784830511023706, 0.5481035], [34.17, 38.90615440921845, 0.5226346], [34.18, 38.942727678086435, 0.507689], [34.19, 38.643466647913705, 0.59966296], [34.2, 38.469199166597996, 0.6569472], [34.21, 38.711272766005266, 0.7082041], [34.22, 38.81894244566666, 0.64533424], [34.23, 38.78452469748797, 0.67986584], [34.24, 43.06146212719678, 0.4829894], [34.25, 48.29174169775992, 0.632182], [34.26, 57.05782391106143, 0.56441414], [34.27, 60.340969186644514, 0.5430729], [34.28, 69.44255482677731, 0.33057758], [34.29, 78.79075011373884, 0.3328172], [34.3, 89.12213543518128, 0.58109903], [34.31, 98.07062167216914, 0.53894794], [34.32, 111.6076672179698, 0.5816463], [34.33, 126.52288936419455, 0.60765207], [34.34, 137.64025986579588, 0.5173118], [34.35, 137.40574832680358, 0.6351534], [34.36, 137.12548971464633, 0.6076258], [34.37, 137.33268461581002, 0.5079832], [34.38, 137.785393494899, 0.60376674], [34.39, 138.27567235237734, 0.5937355], [34.4, 137.70859529077154, 0.28311303], [34.41, 137.60576854586478, 0.5455756], [34.42, 137.4356047437286, 0.61172813], [34.43, 136.4302922136959, 0.67367613], [34.44, 137.2722768394895, 0.3499121], [34.45, 137.52630382791628, 0.31971908], [34.46, 138.5308247828428, 0.3994494], [34.47, 138.79255246401294, 0.3297122], [34.48, 138.94208241224757, 0.33249697], [34.49, 138.23347523559764, 0.49953467], [34.5, 138.44981770782977, 0.4925991], [34.51, 138.49960693839458, 0.57692605], [34.52, 138.08839198440944, 0.562453], [34.53, 138.04711382977476, 0.6070513], [34.54, 138.56883209463814, 0.499333], [34.55, 138.73367928952354, 0.3686955], [34.56, 138.49416115567408, 0.5066705], [34.57, 138.1678345996539, 0.38913354], [34.58, 138.00697717177843, 0.48674798], [34.59, 137.52682663884192, 0.5787619], [34.6, 138.10931931146897, 0.5441785], [34.61, 138.30429334547406, 0.47120857], [34.62, 138.47535675649414, 0.30679634], [34.63, 123.67048677385606, 0.5576409], [34.64, 116.12400371370458, 0.7334073], [34.65, 102.07636103471445, 0.7729419], [34.66, 93.4014589045875, 0.825073], [34.67, 80.04143903527492, 0.7913509], [34.68, 77.11630986698705, 0.73019916], [34.69, 66.81183067761671, 0.55508286], [34.7, 59.33752861871195, 0.48811233], [34.71, 54.952812976994, 0.16581318], [34.72, 48.57034860841725, 0.1205305], [34.73, 44.01703385193763, 0.13691702], [34.74, 39.3146806262354, 0.37870336], [34.75, 39.044255247802624, 0.44268575], [34.76, 38.590144872404856, 0.15569313], [34.77, 39.90600006914761, 0.25607762], [34.78, 41.188809494680314, 0.4674574], [34.79, 42.212355855103645, 0.4780005], [34.8, 45.05016711675542, 0.299672], [34.81, 46.03877658284943, 0.15598749], [34.82, 46.40457365443122, 0.44469443], [34.83, 45.904761020670975, 0.66258466], [34.84, 45.645002038062266, 0.5653244], [34.85, 44.417434969023375, 0.45122853], [34.86, 43.913684376323936, 0.33117792], [34.87, 43.9473016886794, 0.2819029], [34.88, 43.92249572141921, 0.29694745], [34.89, 44.14855055333533, 0.43891186], [34.9, 43.53470961719854, 0.43924725], [34.91, 43.58131062010734, 0.41789916], [34.92, 43.72490398534023, 0.65580916], [34.93, 44.07510519736266, 0.6948821], [34.94, 44.072201456704576, 0.65358025], [34.95, 44.288240864663436, 0.68263036], [34.96, 44.06231353806177, 0.7141689], [34.97, 43.60529008051902, 0.6812512], [34.98, 43.598983718581096, 0.5277784], [34.99, 43.29212196808571, 0.50293577], [35.0, 43.852047165211644, 0.5184724], [35.01, 43.71085868978785, 0.63683575], [35.02, 43.63104225568969, 0.58233035], [35.03, 43.82416292341076, 0.4735285], [35.04, 43.45882775981146, 0.5483148], [35.05, 43.01594307835907, 0.4234621], [35.06, 43.272475268836985, 0.5258824], [35.07, 43.59744745238998, 0.6666873], [35.08, 43.73275767281815, 0.61521846], [35.09, 43.744829434176, 0.6851415], [35.1, 43.85872104045066, 0.6277703], [35.11, 43.85084557337356, 0.6475429], [35.12, 43.744376608844576, 0.5852337], [35.13, 43.62497875974213, 0.6197995], [35.14, 43.720868768433704, 0.74056095], [35.15, 43.47214334299811, 0.6566634], [35.16, 43.66594023014943, 0.7643163], [35.17, 43.84911970346919, 0.5842603], [35.18, 44.35011762117008, 0.29156035], [35.19, 47.2849516277321, 0.40413442], [35.2, 52.93071940325277, 0.30911663], [35.21, 57.85172780938717, 0.13963018], [35.22, 65.20695812664444, 0.15783218], [35.23, 70.26410504963404, 0.17454478], [35.24, 77.78994679237182, 0.18159693], [35.25, 86.89228793118205, 0.33317956], [35.26, 91.0168919883167, 0.68845075], [35.27, 105.0138747461748, 0.6906871], [35.28, 108.03146915519896, 0.64279455], [35.29, 119.84984664154582, 0.69113624], [35.3, 135.47050049132548, 0.7446032], [35.31, 139.56606435460412, 0.7692456], [35.32, 155.2758806347121, 0.6400591], [35.33, 173.1912440419929, 0.6496608], [35.34, 181.88979181753908, 0.6223914], [35.35, 205.14722314100382, 0.3716533], [35.36, 215.90321782860687, 0.38351384], [35.37, 218.40908217229594, 0.6584634], [35.38, 218.06914711621388, 0.6775956], [35.39, 215.47728149882323, 0.68422663], [35.4, 213.68724702476044, 0.7297355], [35.41, 210.16420604010264, 0.67737395], [35.42, 207.43922002544662, 0.732995], [35.43, 205.84574279744996, 0.64911795], [35.44, 205.17565159469282, 0.3701762], [35.45, 205.5411027883697, 0.41835484], [35.46, 206.24447906633802, 0.50525254], [35.47, 207.36296207702136, 0.50851154], [35.48, 208.6403118317628, 0.36260542], [35.49, 220.48278865693462, 0.5368643], [35.5, 250.84763852329957, 0.4551214], [35.51, 272.31094279359354, 0.46844515], [35.52, 293.32677280174437, 0.14138386], [35.53, 332.9063380179417, 0.13270357], [35.54, 350.2830240313586, 0.10448888], [35.55, 351.3025068626639, 0.36899468], [35.56, 352.767133604382, 0.5831978], [35.57, 352.51683246309767, 0.60776734], [35.58, 353.27728701553224, 0.589964], [35.59, 352.4184466507563, 0.67422587], [35.6, 351.32496418738094, 0.63157976], [35.61, 351.9681970013813, 0.56046623], [35.62, 350.9554853923453, 0.3406129], [35.63, 373.7908190708598, 0.48891374], [35.64, 408.0667459048923, 0.25005117], [35.65, 421.34102138763006, 0.24204175], [35.66, 422.5279120902027, 0.2332731], [35.67, 420.76521495724717, 0.17444348], [35.68, 421.60980734452863, 0.1386643], [35.69, 419.8876404288137, 0.15870818], [35.7, 418.46855809635855, 0.52525634], [35.71, 417.52048220301157, 0.5442873], [35.72, 418.34549339858194, 0.3318979], [35.73, 422.07002921545126, 0.40654886], [35.74, 425.72073262426494, 0.4458624], [35.75, 425.5129694861239, 0.31717822], [35.76, 426.27442760073336, 0.29219288], [35.77, 422.3372225075077, 0.18896683], [35.78, 425.6177030059014, 0.26244697], [35.79, 428.15755763605927, 0.15425745], [35.8, 429.16099945619777, 0.21345659], [35.81, 429.0229286064631, 0.66938525], [35.82, 430.7617126142883, 0.45684966], [35.83, 431.7151725805152, 0.59971005], [35.84, 428.66141649599024, 0.29432732], [35.85, 429.9895483317025, 0.34878024], [35.86, 427.03358519636083, 0.3533503], [35.87, 425.59074502822557, 0.5045554], [35.88, 424.6320749061575, 0.5019572], [35.89, 416.9968549265542, 0.40725678], [35.9, 414.10795663168403, 0.26774108], [35.91, 412.28430488105636, 0.36874133], [35.92, 411.98384783634566, 0.54663044], [35.93, 411.6006342039805, 0.45186257], [35.94, 414.92553441074017, 0.3917977], [35.95, 415.0429192382169, 0.54179114], [35.96, 418.34327029246356, 0.20369618], [35.97, 417.48360165304297, 0.40379444], [35.98, 418.6200374773972, 0.20350552], [35.99, 418.3346841455181, 0.17258212], [36.0, 420.88869313565675, 0.25495648], [36.01, 419.2281231073965, 0.37533817], [36.02, 417.9465991169425, 0.44891194], [36.03, 415.8227739600212, 0.48934978], [36.04, 416.8230667212292, 0.5447261], [36.05, 415.55688244389967, 0.58224857], [36.06, 415.3680408349576, 0.67689276], [36.07, 416.95767945096117, 0.6457863], [36.08, 416.5208565859766, 0.63615954], [36.09, 417.95442130823915, 0.5647868], [36.1, 419.2274358346976, 0.60631233], [36.11, 418.6196482306155, 0.64632076], [36.12, 418.78654625917466, 0.76720965], [36.13, 419.36951818429134, 0.6893278], [36.14, 417.669046784656, 0.58054155], [36.15, 417.55949178175575, 0.5496431], [36.16, 416.6173327810601, 0.58893347], [36.17, 414.0467619040245, 0.41331694], [36.18, 397.1330411680881, 0.17470406], [36.19, 351.19438110206136, 0.5594901], [36.2, 344.7542812394133, 0.7040561], [36.21, 316.24848303677885, 0.7190631], [36.22, 293.2719134095893, 0.64957875], [36.23, 269.32862621835505, 0.7366367], [36.24, 258.11450998435424, 0.76225084], [36.25, 236.79234529197646, 0.60352695], [36.26, 212.77211986265485, 0.31710297], [36.27, 203.0244722122672, 0.6082864], [36.28, 203.28928209392973, 0.79660875], [36.29, 204.9385761470469, 0.786748], [36.3, 207.48622385770545, 0.8250081], [36.31, 208.47855738044348, 0.83813584], [36.32, 208.75604450503448, 0.8070752], [36.33, 208.41359721378416, 0.76062965], [36.34, 207.05284585503134, 0.7214488], [36.35, 205.77542575377012, 0.72666126], [36.36, 204.91304597438494, 0.70104903], [36.37, 204.05033125660577, 0.6484947], [36.38, 203.90538868568794, 0.62144226], [36.39, 204.87550058412072, 0.6376339], [36.4, 204.93682304207414, 0.6559452], [36.41, 205.01327526872532, 0.6355435], [36.42, 203.5529755273248, 0.52649784], [36.43, 180.07006915434434, 0.31857818], [36.44, 177.5608858479163, 0.5900083], [36.45, 175.4006239296314, 0.6655924], [36.46, 173.15786542649306, 0.7158177], [36.47, 173.46727031405462, 0.734721], [36.48, 173.72787331515667, 0.7242033], [36.49, 174.6625221540254, 0.7140299], [36.5, 175.5153006595367, 0.73306924], [36.51, 175.99872950218426, 0.71769536], [36.52, 175.66196168753177, 0.7381821], [36.53, 175.73709780364308, 0.73340225], [36.54, 175.57614973712617, 0.7365833], [36.55, 175.61263739899954, 0.7432617], [36.56, 175.98040896368346, 0.7109096], [36.57, 175.32385094754636, 0.55655134], [36.58, 174.07468613968894, 0.378284], [36.59, 169.28861457279837, 0.31872165], [36.6, 163.7806300812744, 0.06607143], [36.61, 155.3672901983958, 0.15702085], [36.62, 147.91276573715425, 0.21003827], [36.63, 156.06318445691917, 0.16167183], [36.64, 164.41702382848237, 0.1530737], [36.65, 169.2552844103025, 0.16381621], [36.66, 168.83968407943718, 0.24101311], [36.67, 192.71092099762262, 0.21980986], [36.68, 193.447137637171, 0.18865155], [36.69, 209.73777288080248, 0.3934484], [36.7, 211.5281018753787, 0.47389182], [36.71, 212.51976448848094, 0.37710777], [36.72, 211.0729874721089, 0.24050389], [36.73, 206.33668185374086, 0.17560713], [36.74, 207.07499776006478, 0.138218], [36.75, 208.56996028751124, 0.14949399], [36.76, 209.65966335737986, 0.16510814], [36.77, 210.69666299352465, 0.12723333], [36.78, 212.11333583388233, 0.26352918], [36.79, 213.9124486385067, 0.17503124], [36.8, 210.45012213378658, 0.1701727], [36.81, 189.91609775977957, 0.38137543], [36.82, 181.17093919612768, 0.21779951], [36.83, 173.9521444287051, 0.18679911], [36.84, 163.56606689480188, 0.16840908], [36.85, 165.9044176388505, 0.29700592], [36.86, 171.8734918177196, 0.22665818], [36.87, 174.15309155562312, 0.3399424], [36.88, 175.41028093172085, 0.36733714], [36.89, 174.32787961097586, 0.4238832], [36.9, 173.6951982350681, 0.19254243], [36.91, 178.1635675720284, 0.26532203], [36.92, 181.1613401971198, 0.15808092], [36.93, 162.52573659337568, 0.10554638], [36.94, 148.07603913872373, 0.071015924], [36.95, 130.82354430974775, 0.08684021], [36.96, 115.98105878700179, 0.06041828], [36.97, 105.11344428059178, 0.04288654], [36.98, 94.2495463215144, 0.05353423], [36.99, 83.69461665830195, 0.07004996], [37.0, 74.69944124287784, 0.10139277], [37.01, 64.16054309529473, 0.051180124], [37.02, 58.33891322823773, 0.09280636], [37.03, 51.92715862318125, 0.069262356], [37.04, 52.43972591968354, 0.100374736], [37.05, 52.30319481404785, 0.22030273], [37.06, 51.901634168596985, 0.1874685], [37.07, 50.7308109291974, 0.06886297], [37.08, 50.42376186938982, 0.11454126], [37.09, 49.732338908400706, 0.14321768], [37.1, 51.24665520220575, 0.33784813], [37.11, 53.620003031740424, 0.16948783], [37.12, 54.60841909189193, 0.40167612], [37.13, 53.880753221732796, 0.2677084], [37.14, 53.5190521800559, 0.49940482], [37.15, 53.1654896103517, 0.38370135], [37.16, 56.10985329375289, 0.29940683], [37.17, 65.24571725953925, 0.16576], [37.18, 69.91369774173678, 0.1287196], [37.19, 77.7939041937145, 0.10060173], [37.2, 83.25865594213218, 0.13241246], [37.21, 92.8523050632194, 0.13735247], [37.22, 101.85437204632058, 0.09959907], [37.23, 107.04546558949218, 0.115405835], [37.24, 107.19306649940899, 0.17707929], [37.25, 107.73509218213532, 0.23770577], [37.26, 107.47974219996911, 0.3331816], [37.27, 106.99583231032804, 0.24411514], [37.28, 114.20520679218052, 0.117641315], [37.29, 125.93613999003463, 0.23336211], [37.3, 135.72023480228006, 0.20207109], [37.31, 143.5379279232572, 0.12299462], [37.32, 146.36176156395743, 0.114199854], [37.33, 142.06686897094002, 0.14753032], [37.34, 131.49416895581984, 0.25357014], [37.35, 126.67164174827062, 0.30119225], [37.36, 118.39422717377752, 0.3187922], [37.37, 115.72090685379818, 0.6548424], [37.38, 117.00775240950219, 0.6106523], [37.39, 117.49159014051304, 0.7035344], [37.4, 117.49078825539485, 0.6682001], [37.41, 117.43845353547795, 0.70619345], [37.42, 117.4007448371901, 0.46180478], [37.43, 118.09046840698726, 0.48775572], [37.44, 118.59832044205564, 0.22622165], [37.45, 119.22005215868484, 0.43269798], [37.46, 119.9446340785403, 0.777093], [37.47, 122.23686432006524, 0.8005746], [37.48, 126.51695643664002, 0.7807463], [37.49, 131.9113916021922, 0.7764833], [37.5, 132.5707392167578, 0.82306874], [37.51, 135.49242417514213, 0.7096319], [37.52, 139.1087266507594, 0.31101936], [37.53, 141.22369792461575, 0.21719517], [37.54, 140.09021731363185, 0.15883134], [37.55, 154.04129671711036, 0.13259262], [37.56, 175.45497867657147, 0.3394268], [37.57, 191.10692693748032, 0.16467293], [37.58, 217.5678185519011, 0.12645757], [37.59, 233.4012920596716, 0.26512766], [37.6, 234.93085814736173, 0.20024656], [37.61, 235.23003203445802, 0.2584739], [37.62, 233.5324964498197, 0.12123543], [37.63, 233.55505689139878, 0.19339705], [37.64, 233.3443965638045, 0.1783561], [37.65, 233.93058538596532, 0.25288552], [37.66, 234.0743576326655, 0.25906226], [37.67, 237.61809738118927, 0.13260503], [37.68, 245.64735965285448, 0.1985861], [37.69, 252.57863434641774, 0.2919047], [37.7, 265.57743117470284, 0.47769997], [37.71, 273.1466008209998, 0.22000295], [37.72, 274.8787579480557, 0.12542374], [37.73, 270.3854653502561, 0.28594804], [37.74, 258.0591011193278, 0.27786568], [37.75, 246.00590649498113, 0.18491186], [37.76, 240.60346374457666, 0.101361014], [37.77, 233.702525246407, 0.15961295], [37.78, 233.61598592675517, 0.37642813], [37.79, 233.0911441225963, 0.5166706], [37.8, 232.51716788742644, 0.5686987], [37.81, 232.70988086873166, 0.5572464], [37.82, 233.23281247777115, 0.64613247], [37.83, 231.91780524318239, 0.639846], [37.84, 233.2007073121362, 0.7643516], [37.85, 232.44222938047943, 0.67092675], [37.86, 231.67080781939387, 0.71174794], [37.87, 231.33665517271777, 0.626497], [37.88, 232.47636343657715, 0.60243875], [37.89, 231.92857500179073, 0.6780697], [37.9, 231.98433723537119, 0.66868937], [37.91, 231.5906602412568, 0.5566336], [37.92, 233.1289096744325, 0.7143242], [37.93, 233.63564846903705, 0.58153635], [37.94, 233.58696521977657, 0.6459857], [37.95, 232.9904897424869, 0.6909553], [37.96, 233.22056876302693, 0.68786216], [37.97, 233.0251218533094, 0.74318063], [37.98, 232.6984037230563, 0.5515246], [37.99, 234.0015141445352, 0.17233115], [38.0, 223.35814690622112, 0.16786331], [38.01, 200.1936223132155, 0.67585784], [38.02, 190.1303241127021, 0.79811156], [38.03, 179.26042475221334, 0.780802], [38.04, 164.38770821932405, 0.7133361], [38.05, 147.2812926703193, 0.54552907], [38.06, 140.88964671414283, 0.58517206], [38.07, 140.6247193910698, 0.64833575], [38.08, 139.0955267583743, 0.7746893], [38.09, 138.95725389490423, 0.724527], [38.1, 139.03169999534913, 0.70242345], [38.11, 139.6344602637947, 0.77812165], [38.12, 140.78403875086752, 0.60077363], [38.13, 144.22217368463063, 0.3657253], [38.14, 147.4652240609672, 0.22329621], [38.15, 150.86909762234063, 0.24592566], [38.16, 153.09082410685426, 0.44015747], [38.17, 153.06860976233986, 0.43343583], [38.18, 154.0025322520271, 0.44435525], [38.19, 154.41970323544618, 0.43044633], [38.2, 154.31410251955384, 0.46149233], [38.21, 154.55372493287302, 0.48442483], [38.22, 154.86180313645517, 0.55429417], [38.23, 154.21523375647644, 0.55093044], [38.24, 154.30313607034344, 0.35832185], [38.25, 155.2624522041139, 0.5247991], [38.26, 155.19100770066308, 0.34574977], [38.27, 155.46374043417126, 0.32445467], [38.28, 161.45111713098572, 0.20282711], [38.29, 182.89058342090183, 0.17746416], [38.3, 191.87667208095644, 0.17488267], [38.31, 204.72352322953122, 0.16134915], [38.32, 228.2574465406633, 0.22135226], [38.33, 233.9121654493998, 0.23420006], [38.34, 233.96953088065044, 0.5334967], [38.35, 232.9866642690446, 0.69022745], [38.36, 231.33356558513418, 0.6850662], [38.37, 231.86762935049072, 0.71395564], [38.38, 232.65682683147912, 0.6753765], [38.39, 233.6609684571819, 0.743827], [38.4, 233.5115691512598, 0.7002879], [38.41, 232.95375423680463, 0.70440465], [38.42, 233.32733882781267, 0.7307174], [38.43, 231.77694019980464, 0.49738702], [38.44, 230.01499286322198, 0.23949596], [38.45, 228.34485334244533, 0.25855932], [38.46, 230.71399912409476, 0.093862526], [38.47, 233.76741723250458, 0.069057725], [38.48, 236.59144405989534, 0.052072413], [38.49, 237.26575134828852, 0.529636], [38.5, 239.96793651231965, 0.53527784], [38.51, 242.92961694871875, 0.17317638], [38.52, 244.61572655469783, 0.18515852], [38.53, 250.66104364026967, 0.17398167], [38.54, 252.698561656651, 0.20166044], [38.55, 258.28865760342734, 0.094429], [38.56, 257.24902816696084, 0.10319393], [38.57, 259.65405381132535, 0.4255339], [38.58, 261.6370412402769, 0.45174092], [38.59, 262.0192640333105, 0.39149517], [38.6, 268.24596984804685, 0.4307793], [38.61, 273.53125839412246, 0.4746463], [38.62, 272.6367722955447, 0.4131835], [38.63, 274.78787916465654, 0.23217922], [38.64, 272.1056652311277, 0.14353094], [38.65, 273.57112039644545, 0.515866], [38.66, 272.1009348077412, 0.51203984], [38.67, 270.605295251824, 0.7187499], [38.68, 271.6576867858908, 0.73369896], [38.69, 269.3373560104339, 0.41496444], [38.7, 273.23529348227936, 0.3004467], [38.71, 273.1678788408145, 0.11952176], [38.72, 274.0874742792983, 0.17127682], [38.73, 271.46336444289767, 0.37205645], [38.74, 268.94344408134305, 0.6713855], [38.75, 266.0697815928628, 0.70645183], [38.76, 263.026839898669, 0.5833602], [38.77, 261.4896582393068, 0.40694904], [38.78, 260.31521240533453, 0.31518477], [38.79, 261.6646416472993, 0.37052882], [38.8, 262.8949677552321, 0.2360469], [38.81, 261.8128522911637, 0.37046552], [38.82, 261.45202243857386, 0.2347452], [38.83, 254.07058111300734, 0.28844565], [38.84, 251.69736885354965, 0.4539097], [38.85, 251.99748355179253, 0.2566676], [38.86, 244.62080112305495, 0.2081551], [38.87, 239.09507945443357, 0.34339356], [38.88, 227.8263373631883, 0.21667494], [38.89, 216.59537254538137, 0.31559074], [38.9, 211.66484726652314, 0.31950414], [38.91, 208.6254152389999, 0.47974792], [38.92, 209.01848482030852, 0.47462994], [38.93, 212.51021173233494, 0.3984477], [38.94, 226.0596377675927, 0.4894304], [38.95, 247.53711266953385, 0.3760485], [38.96, 251.8130756648085, 0.40188685], [38.97, 247.26582255180506, 0.565871], [38.98, 244.04139544358577, 0.69110465], [38.99, 242.17532797495878, 0.6891407], [39.0, 238.27444245595984, 0.72295856], [39.01, 236.4040438316664, 0.7656906], [39.02, 235.45002726194045, 0.7525826], [39.03, 234.6829106813305, 0.67241496], [39.04, 235.08058674186992, 0.69952446], [39.05, 235.02732094806538, 0.559013], [39.06, 234.73098336035488, 0.6413466], [39.07, 231.68745179585517, 0.7596416], [39.08, 229.484066688645, 0.80186635], [39.09, 228.36533972202704, 0.8181524], [39.1, 226.50555524085388, 0.8156246], [39.11, 224.29102793403646, 0.7437937], [39.12, 223.98749590386961, 0.5210647], [39.13, 221.21069496481869, 0.13899826], [39.14, 208.9297200432099, 0.1171357], [39.15, 203.88655880940127, 0.3840681], [39.16, 190.7263006431903, 0.5340127], [39.17, 169.0708293395677, 0.5611786], [39.18, 155.77222003296458, 0.60005385], [39.19, 138.56209692177566, 0.5761775], [39.2, 129.21657250109374, 0.6120443], [39.21, 115.03226749836094, 0.323677], [39.22, 105.83509159400818, 0.19135806], [39.23, 104.74888883546079, 0.1972818], [39.24, 94.40932618178118, 0.21015431], [39.25, 84.5285977455857, 0.29060584], [39.26, 77.51877034510547, 0.19164637], [39.27, 68.67438266673804, 0.37423068], [39.28, 60.461556313213684, 0.25364366], [39.29, 53.80065526285601, 0.28567138], [39.3, 48.1409310513217, 0.19455294], [39.31, 43.16333640316215, 0.31296813], [39.32, 43.910289633180206, 0.2726293], [39.33, 47.017152221500744, 0.564665], [39.34, 47.999463131081875, 0.6702402], [39.35, 48.975031808546625, 0.7127482], [39.36, 51.28403545124654, 0.44560823], [39.37, 51.74288850838642, 0.10464542], [39.38, 47.34710892023297, 0.07413937], [39.39, 41.652723971732684, 0.14146939], [39.4, 42.93956041173267, 0.16292888], [39.41, 44.53437448732637, 0.19246028], [39.42, 45.17813072038645, 0.14143449], [39.43, 43.82802416084776, 0.11348189], [39.44, 44.389751831816284, 0.08062406], [39.45, 44.54063779603155, 0.100289315], [39.46, 44.35270703314999, 0.39853257], [39.47, 44.72404252463057, 0.3836726], [39.48, 45.455430296524, 0.1791071], [39.49, 45.84890254327721, 0.19612692], [39.5, 46.76471839060555, 0.342996], [39.51, 46.85195029623049, 0.42580006], [39.52, 46.90276680545102, 0.2922169], [39.53, 47.3148776371029, 0.26497918], [39.54, 47.93810553548808, 0.28930876], [39.55, 47.419437764817985, 0.23239514], [39.56, 47.42726263928948, 0.6383166], [39.57, 47.202506796387205, 0.4529549], [39.58, 47.196515406231626, 0.54222333], [39.59, 46.8867221927632, 0.17062342], [39.6, 46.59942669469469, 0.27991506], [39.61, 45.32948471319318, 0.28208658], [39.62, 44.97893399588018, 0.37224433], [39.63, 44.619530691027734, 0.30348098], [39.64, 44.30194146123671, 0.21753614], [39.65, 45.0604331461104, 0.21050654], [39.66, 45.077771825753885, 0.34939376], [39.67, 44.689714102785494, 0.29795432], [39.68, 45.03403099834565, 0.3023149], [39.69, 45.50349771273889, 0.33786517], [39.7, 45.35039831497994, 0.25810426], [39.71, 45.25962790890347, 0.26151377], [39.72, 45.706990491555274, 0.19049871], [39.73, 46.23240656237215, 0.29954064], [39.74, 46.88424541363767, 0.35412323], [39.75, 46.8366007341404, 0.4828806], [39.76, 46.31277077237863, 0.4937895], [39.77, 45.85199529571601, 0.53654844], [39.78, 45.97927489220122, 0.45632184], [39.79, 45.47090549408772, 0.4555027], [39.8, 45.25683875303166, 0.40445602], [39.81, 45.289044814937824, 0.337486], [39.82, 45.77256614506656, 0.43693936], [39.83, 45.65033270393191, 0.47821006], [39.84, 46.72391819932053, 0.4579584], [39.85, 47.4041736563406, 0.3387311], [39.86, 45.727492614207094, 0.37695098], [39.87, 44.96211421788965, 0.5690136], [39.88, 45.356042206604734, 0.38040373], [39.89, 45.72319806635665, 0.2895355], [39.9, 47.18803851091948, 0.19648834], [39.91, 48.49214505271653, 0.2443713], [39.92, 48.69659947295033, 0.13044308], [39.93, 48.55442746737235, 0.26103693], [39.94, 46.830881174481966, 0.47878763], [39.95, 46.27828852079369, 0.56146806], [39.96, 45.803163188702214, 0.28134558], [39.97, 45.17202949057102, 0.16239217], [39.98, 44.85970116455357, 0.15650249], [39.99, 44.8958664846608, 0.16651465], [40.0, 44.55410191804254, 0.15323664], [40.01, 45.20766493449807, 0.1511577], [40.02, 45.31957307163655, 0.22967121], [40.03, 46.11164007073835, 0.16762634], [40.04, 46.47259836011811, 0.3372972], [40.05, 46.13401864052021, 0.353282], [40.06, 45.42271382909501, 0.49887055], [40.07, 44.95520387365794, 0.5535663], [40.08, 45.57287561933822, 0.43679145], [40.09, 45.6324683334304, 0.54043895], [40.1, 45.67467324286467, 0.64204514], [40.11, 44.9622748648373, 0.57577384], [40.12, 44.918571852692175, 0.44931653], [40.13, 44.78400597007997, 0.4562273], [40.14, 44.290179180956756, 0.3157162], [40.15, 45.7317233984978, 0.34902447], [40.16, 45.80789097953101, 0.61706823], [40.17, 45.53575387469007, 0.5828048], [40.18, 44.91642921497625, 0.6422369], [40.19, 45.070828402824276, 0.6283806], [40.2, 45.20604831172817, 0.6147796], [40.21, 45.88508528218718, 0.7102633], [40.22, 46.35461914843329, 0.75119925], [40.23, 46.97589919344166, 0.61009294], [40.24, 46.69337697410745, 0.64940053], [40.25, 46.90985880948354, 0.6862806], [40.26, 51.31755546380616, 0.64656085], [40.27, 60.32137318254122, 0.71605045], [40.28, 65.56753099932062, 0.67722124], [40.29, 74.05794353008248, 0.6330815], [40.3, 86.64303917382821, 0.5987566], [40.31, 90.93729678391537, 0.618432], [40.32, 104.98557814917972, 0.5257206], [40.33, 118.1169339681181, 0.18237785], [40.34, 132.68581653184398, 0.46769357], [40.35, 145.4354984886084, 0.25565553], [40.36, 164.02974302008306, 0.31363434], [40.37, 179.56398744197526, 0.50204945], [40.38, 178.86028370866623, 0.72935635], [40.39, 178.8347616766225, 0.7658103], [40.4, 179.25995763676502, 0.75036496], [40.41, 180.504079389354, 0.72422725], [40.42, 181.44532467532142, 0.7412551], [40.43, 181.77406194123623, 0.72089976], [40.44, 181.0215909524714, 0.61326545], [40.45, 181.3837715377084, 0.52340597], [40.46, 176.69625992010543, 0.36182043], [40.47, 187.4635878493481, 0.18845618], [40.48, 199.93751330985194, 0.29053202], [40.49, 200.87725200054993, 0.4159583], [40.5, 204.81193361823554, 0.5677389], [40.51, 208.10348368253014, 0.70617837], [40.52, 210.85932713835345, 0.6650204], [40.53, 210.87977289671971, 0.7000103], [40.54, 210.01754297986196, 0.70890707], [40.55, 208.13765312261563, 0.7259767], [40.56, 206.30698564373873, 0.78451115], [40.57, 206.04373997076266, 0.7642457], [40.58, 206.1931602583928, 0.69554245], [40.59, 206.557409999637, 0.66510737], [40.6, 207.82943331906094, 0.6482525], [40.61, 201.87959683068257, 0.4892672], [40.62, 183.52907966588964, 0.3090985], [40.63, 175.85799745158184, 0.46877304], [40.64, 166.0710158641046, 0.6804225], [40.65, 157.93909708396356, 0.544334], [40.66, 143.5714371878354, 0.4280494], [40.67, 137.14796513332266, 0.21249142], [40.68, 136.91234317993826, 0.3569478], [40.69, 136.01861655375487, 0.43371883], [40.7, 135.53414407997968, 0.6327092], [40.71, 136.04458495695806, 0.6510254], [40.72, 137.52171519714767, 0.59049046], [40.73, 139.34501341448168, 0.66609454], [40.74, 140.61170319427043, 0.59685475], [40.75, 139.82881315670167, 0.53212816], [40.76, 139.17832287536763, 0.65872633], [40.77, 139.48698362203206, 0.6408458], [40.78, 139.19796740044487, 0.40388358], [40.79, 131.1467605250387, 0.16548622], [40.8, 120.1294568136335, 0.29740655], [40.81, 109.23581931378608, 0.1745898], [40.82, 102.50176990348888, 0.21719077], [40.83, 93.30937043702441, 0.09300719], [40.84, 83.45701550416982, 0.19985281], [40.85, 79.80582752832932, 0.30492863], [40.86, 72.11425754895566, 0.20020679], [40.87, 65.79500980854814, 0.3227277], [40.88, 60.813968774942204, 0.33850724], [40.89, 53.92207669928588, 0.10163171], [40.9, 50.8490886702854, 0.26332122], [40.91, 46.04267548286286, 0.11442096], [40.92, 40.52916935297777, 0.23192698], [40.93, 37.624901911076876, 0.19610544], [40.94, 34.61187929375318, 0.3166336], [40.95, 34.77907056770968, 0.48436984], [40.96, 35.08366805415832, 0.2514433], [40.97, 34.884001311026864, 0.29515335], [40.98, 35.17474159557629, 0.14045763], [40.99, 34.982881542017275, 0.254711], [41.0, 34.73825872246475, 0.38331634], [41.01, 34.76761325747909, 0.3260739], [41.02, 34.59839545361493, 0.38460675], [41.03, 34.53360276215377, 0.37822452], [41.04, 34.97770328186411, 0.38054872], [41.05, 36.297550837263024, 0.09644336], [41.06, 37.613097704736354, 0.08981721], [41.07, 38.93751238339921, 0.15057795], [41.08, 38.72308389346235, 0.09936811], [41.09, 38.79280137287036, 0.22999959], [41.1, 38.38239083022306, 0.44438314], [41.11, 38.064581499277914, 0.38991073], [41.12, 38.57314586069912, 0.58867353], [41.13, 38.582089726183206, 0.6724857], [41.14, 38.57355367587101, 0.6110841], [41.15, 38.64582348912572, 0.6587621], [41.16, 38.264950938178906, 0.57118756], [41.17, 38.48796012358676, 0.7408291], [41.18, 38.652689311986805, 0.7787945], [41.19, 38.626643621996394, 0.77576596], [41.2, 38.562659918199046, 0.7970247], [41.21, 38.577020086955514, 0.79882216], [41.22, 38.63539998422549, 0.80665547], [41.23, 38.96801452625978, 0.79094756], [41.24, 38.627692937253045, 0.7899371], [41.25, 38.63946028499198, 0.82018584], [41.26, 38.53729045228561, 0.8059157], [41.27, 37.95512088796531, 0.49625713], [41.28, 36.839789959126705, 0.49096403], [41.29, 36.79901386103574, 0.33113834], [41.3, 38.33885491217665, 0.21069512], [41.31, 39.83513822684864, 0.09546256], [41.32, 40.744304161665056, 0.21479517], [41.33, 41.95468234268687, 0.20675877], [41.34, 43.54698725620334, 0.49581978], [41.35, 45.58564691980537, 0.5230192], [41.36, 46.09876322632958, 0.5174876], [41.37, 46.36424215080964, 0.441101], [41.38, 46.82314626777884, 0.28123173], [41.39, 48.039128610656256, 0.27080575], [41.4, 51.31819866905954, 0.187685], [41.41, 51.69244343960354, 0.108981736], [41.42, 51.935344060518176, 0.13551624], [41.43, 48.3420213673375, 0.10258216], [41.44, 48.09602971131399, 0.33139083], [41.45, 47.584292495189445, 0.3431178], [41.46, 47.49376443436111, 0.49444723], [41.47, 47.06676941711481, 0.3533878], [41.48, 47.061788929397, 0.32430694], [41.49, 46.76521421164268, 0.16694543], [41.5, 46.64144861907162, 0.15886891], [41.51, 46.317089306149114, 0.3721935], [41.52, 46.32691734181408, 0.3005454], [41.53, 46.18858656044893, 0.19495563], [41.54, 46.09502835328229, 0.2910974], [41.55, 46.17176934056878, 0.4587938], [41.56, 46.43860130009119, 0.32906243], [41.57, 46.50221263709164, 0.40457168], [41.58, 46.38789175231614, 0.2552904], [41.59, 46.396965021989885, 0.49525905], [41.6, 46.38822778560944, 0.42114234], [41.61, 46.32396228189318, 0.53289497], [41.62, 46.34219310611406, 0.5195238], [41.63, 46.60176110609367, 0.55255044], [41.64, 46.406839112180755, 0.63575035], [41.65, 47.08381643634866, 0.6073806], [41.66, 47.470511084020856, 0.49242815], [41.67, 47.015013506942466, 0.558586], [41.68, 46.655673108496636, 0.5689372], [41.69, 46.626018382040414, 0.6024761], [41.7, 46.48297982267897, 0.60063], [41.71, 46.362059621244555, 0.59505737], [41.72, 46.371184633556965, 0.5992979], [41.73, 46.17373400911673, 0.61236525], [41.74, 46.39047070239525, 0.5740653], [41.75, 46.46382504732249, 0.4428503], [41.76, 46.54233491575668, 0.4742826], [41.77, 46.2089051294588, 0.44475502], [41.78, 46.34486028714555, 0.39669457], [41.79, 46.38102550395196, 0.28080115], [41.8, 46.52228704827664, 0.25703153], [41.81, 46.27239969893661, 0.17939983], [41.82, 46.830658483058876, 0.30189145], [41.83, 46.732555618186396, 0.1740001], [41.84, 46.70393417035186, 0.19543682], [41.85, 46.54960891794992, 0.15894416], [41.86, 46.5168403727818, 0.19845141], [41.87, 47.32108592812217, 0.13168019], [41.88, 47.11956113399131, 0.144971], [41.89, 46.90380026766917, 0.21337035], [41.9, 46.717056591570355, 0.19970725], [41.91, 46.805391056155486, 0.2613756], [41.92, 46.69557076148383, 0.27323568], [41.93, 46.8750200005877, 0.14678971], [41.94, 47.73107377181317, 0.18974426], [41.95, 47.50962390042288, 0.23533319], [41.96, 47.42010642579637, 0.19482906], [41.97, 47.78865945987886, 0.29064053], [41.98, 46.69498298910817, 0.38901728], [41.99, 46.57472875145524, 0.45388618], [42.0, 46.68069489888677, 0.5244614], [42.01, 46.39115252894857, 0.4691864], [42.02, 46.54236753319086, 0.575108], [42.03, 46.57474379255512, 0.4750478], [42.04, 46.840831613238336, 0.6055517], [42.05, 46.504409939427376, 0.47934], [42.06, 46.75202740350127, 0.64579475], [42.07, 46.6201815970159, 0.6441266], [42.08, 46.79470255164638, 0.7432654], [42.09, 46.64627884179943, 0.75784844], [42.1, 46.5458227576508, 0.78159624], [42.11, 46.50830775873239, 0.7867032], [42.12, 46.478419662088434, 0.8068611], [42.13, 46.70161006287317, 0.8067067], [42.14, 46.610928153445926, 0.82329977], [42.15, 46.9080567240527, 0.761241], [42.16, 46.4557434956742, 0.65593934], [42.17, 44.91858810158223, 0.5923234], [42.18, 44.817660852489105, 0.49147508], [42.19, 47.81638092402912, 0.3053591], [42.2, 50.542336050018655, 0.26831016], [42.21, 51.32498224759929, 0.15474378], [42.22, 52.045119838870264, 0.12838216], [42.23, 52.39794253893126, 0.14294377], [42.24, 52.23391434448232, 0.21349923], [42.25, 52.25224273004349, 0.4839656], [42.26, 52.46061610304369, 0.5593988], [42.27, 52.27022064771985, 0.31662267], [42.28, 52.825568953545464, 0.5547319], [42.29, 52.8511486382742, 0.66937757], [42.3, 52.75277841794677, 0.65964097], [42.31, 52.28432784846408, 0.7500179], [42.32, 52.034123644707805, 0.7631932], [42.33, 51.913180135863755, 0.7537751], [42.34, 51.822296105168675, 0.74196434], [42.35, 51.75921484248722, 0.64216745], [42.36, 52.01937650882624, 0.6535621], [42.37, 52.67132129402752, 0.4256148], [42.38, 52.51197226740146, 0.5807535], [42.39, 51.84509818432301, 0.69844604], [42.4, 51.63324919740354, 0.7638956], [42.41, 51.71730719070227, 0.6606108], [42.42, 52.21574669132912, 0.6662062], [42.43, 53.29817759800112, 0.39799863], [42.44, 53.84059673470132, 0.3835248], [42.45, 53.79342087033848, 0.29745054], [42.46, 53.8073213802861, 0.24231048], [42.47, 53.8613919835737, 0.15973242], [42.48, 52.92290329640042, 0.24887714], [42.49, 52.852992491088045, 0.17102177], [42.5, 54.04841480683008, 0.124674074], [42.51, 57.27870095384723, 0.1399973], [42.52, 61.97820318546099, 0.17724276], [42.53, 67.0378692065014, 0.1858299], [42.54, 69.07260832394228, 0.17818943], [42.55, 74.1462269816944, 0.13848591], [42.56, 80.54589663571383, 0.41936648], [42.57, 85.95950122421036, 0.43483073], [42.58, 88.7079720584773, 0.47867337], [42.59, 92.54577630200231, 0.1358763], [42.6, 102.14544758292773, 0.31382167], [42.61, 105.31255524430853, 0.086451605], [42.62, 105.72136438639225, 0.13059776], [42.63, 105.798103669823, 0.263589], [42.64, 106.18943668848674, 0.2851248], [42.65, 105.70562063844334, 0.32646385], [42.66, 106.2070567915971, 0.280872], [42.67, 106.2915627458729, 0.19644023], [42.68, 106.12552463698196, 0.31893012], [42.69, 117.17980921347645, 0.3261878], [42.7, 129.62808663340226, 0.3133575], [42.71, 145.47478082365453, 0.31873462], [42.72, 155.8525654742748, 0.32524183], [42.73, 154.75347358425836, 0.40804148], [42.74, 153.61260602162395, 0.27988896], [42.75, 156.47590556593903, 0.575728], [42.76, 163.9734226454539, 0.66038257], [42.77, 177.04826096447195, 0.7159314], [42.78, 186.17648479701202, 0.6808967], [42.79, 196.7364289139266, 0.5336503], [42.8, 207.41836701674026, 0.53370464], [42.81, 210.24237978256875, 0.54068273], [42.82, 214.6467570071469, 0.40760264], [42.83, 223.14454533971085, 0.16984326], [42.84, 234.97003664760905, 0.20089135], [42.85, 247.49469624363897, 0.21133022], [42.86, 258.99946636695137, 0.15919942], [42.87, 266.24624485397146, 0.13180669], [42.88, 270.41408544661823, 0.37877795], [42.89, 268.42098673375335, 0.28617582], [42.9, 268.79020068032423, 0.1610298], [42.91, 300.4901105388651, 0.20152695], [42.92, 352.81171423925446, 0.17361061], [42.93, 387.1861417340982, 0.20441583], [42.94, 388.88789126663147, 0.18542124], [42.95, 393.47158021980135, 0.2101172], [42.96, 358.9641372315072, 0.23452424], [42.97, 358.9286955654412, 0.24225841], [42.98, 362.35204108318874, 0.30462217], [42.99, 367.55140992354285, 0.2702063], [43.0, 372.8224327832761, 0.12870911], [43.01, 380.22430471228597, 0.1891759], [43.02, 380.7527041429028, 0.101824634], [43.03, 379.3897332479102, 0.1957398], [43.04, 375.1826090985371, 0.13995834], [43.05, 374.98458473188475, 0.1748602], [43.06, 371.0423502457479, 0.14122027], [43.07, 365.4453701027038, 0.19578576], [43.08, 358.28534889114223, 0.24737768], [43.09, 334.65953059578703, 0.26399618], [43.1, 328.8250378213715, 0.31437173], [43.11, 320.35800511527265, 0.37552395], [43.12, 298.7231424561932, 0.38125426], [43.13, 286.87080814185873, 0.3110524], [43.14, 284.7131511865042, 0.4654708], [43.15, 287.79174632224664, 0.30643502], [43.16, 294.58196356530294, 0.10427424], [43.17, 309.5549306260038, 0.19531888], [43.18, 313.9711570454074, 0.4019492], [43.19, 330.8105750776713, 0.286722], [43.2, 346.497763863801, 0.14885525], [43.21, 366.5397657088397, 0.2502116], [43.22, 369.7542388652851, 0.38204917], [43.23, 377.9887543954869, 0.19050956], [43.24, 399.3066457393446, 0.16114713], [43.25, 419.58790062227246, 0.06543408], [43.26, 435.5740719977, 0.20980707], [43.27, 456.14853490477515, 0.21882358], [43.28, 459.8009993458586, 0.28500682], [43.29, 462.3347338088645, 0.29641846], [43.3, 462.68196875142445, 0.15662788], [43.31, 467.1011722375178, 0.20286623], [43.32, 477.3826765422427, 0.15640292], [43.33, 462.21611154914206, 0.0876761], [43.34, 438.6523536403808, 0.096732125], [43.35, 409.27437705925445, 0.23636019], [43.36, 398.77930945958656, 0.24934208], [43.37, 385.64591047271216, 0.4685057], [43.38, 358.35868386606825, 0.45866358], [43.39, 331.12403224817797, 0.26625973], [43.4, 311.51605873835103, 0.33849654], [43.41, 289.03836597168254, 0.22005822], [43.42, 280.38161379996336, 0.2097837], [43.43, 278.50298154486904, 0.2481381], [43.44, 280.67041549211433, 0.26570547], [43.45, 317.0123366469289, 0.20690438], [43.46, 374.48515621037757, 0.1696869], [43.47, 409.3392774732842, 0.17097695], [43.48, 410.7430761742926, 0.462029], [43.49, 413.00644283790945, 0.6012651], [43.5, 415.88503596483497, 0.6954848], [43.51, 416.10247392190473, 0.6727164], [43.52, 418.858470076722, 0.64716035], [43.53, 416.36913532393066, 0.5816453], [43.54, 417.5191004869698, 0.64279085], [43.55, 415.92992253996135, 0.6946826], [43.56, 413.94812820194267, 0.64430183], [43.57, 412.3280409156745, 0.60218096], [43.58, 408.9038113684817, 0.527671], [43.59, 410.7695561840432, 0.30434853], [43.6, 402.87564069507437, 0.14507236], [43.61, 404.61385489289796, 0.3008784], [43.62, 406.84947775796763, 0.44773024], [43.63, 411.6643931630098, 0.5060075], [43.64, 417.9117321628118, 0.46209696], [43.65, 416.5653422326017, 0.5514677], [43.66, 418.5275916521269, 0.5006161], [43.67, 417.4696628596429, 0.7403412], [43.68, 416.94848657659867, 0.7353222], [43.69, 415.6548682178886, 0.6900625], [43.7, 416.5758276668196, 0.62672573], [43.71, 419.09559879834654, 0.7112796], [43.72, 422.3957974504965, 0.5912293], [43.73, 383.88115242444474, 0.35905895], [43.74, 332.2995116088245, 0.23644854], [43.75, 290.6461303141651, 0.22638965], [43.76, 268.7683659000948, 0.37645322], [43.77, 232.65209986200324, 0.54079074], [43.78, 213.34944665130462, 0.43691182], [43.79, 181.96898478868218, 0.41659623], [43.8, 164.84264273369854, 0.3796682], [43.81, 143.0485664711934, 0.42136663], [43.82, 136.16481508506672, 0.505755], [43.83, 116.43186049156301, 0.5252991], [43.84, 107.4081570134766, 0.5677041], [43.85, 92.92050252960051, 0.38501728], [43.86, 82.47704876315316, 0.3181427], [43.87, 72.90634992073593, 0.21725011], [43.88, 65.13684622708743, 0.45026922], [43.89, 57.85135746660815, 0.6554531], [43.9, 57.594836004121404, 0.6287766], [43.91, 57.49081586300382, 0.570846], [43.92, 57.22583932302243, 0.57093936], [43.93, 57.43971184340995, 0.58365965], [43.94, 57.51135885634394, 0.5805966], [43.95, 57.39207314133492, 0.4129195], [43.96, 56.18793008441368, 0.4472622], [43.97, 57.42113171575934, 0.24403451], [43.98, 58.367068606893326, 0.5522437], [43.99, 58.89812283894321, 0.6651428], [44.0, 58.8220430325649, 0.70832705], [44.01, 58.50986464220388, 0.8312101], [44.02, 58.741231880693825, 0.7604166], [44.03, 58.095332434058705, 0.7178804], [44.04, 58.462894487062286, 0.74671423], [44.05, 58.52420761710068, 0.76733124], [44.06, 58.727871167073566, 0.76626974], [44.07, 58.78716636998306, 0.7314901], [44.08, 58.653520837291104, 0.5464786], [44.09, 57.8381020041935, 0.07826208], [44.1, 56.46151581526215, 0.10477563], [44.11, 55.13872256193687, 0.2039853], [44.12, 52.694587835855046, 0.1626636], [44.13, 51.55977036529173, 0.14973733], [44.14, 49.56094643102644, 0.15311167], [44.15, 46.867892168381104, 0.12883042], [44.16, 44.81826891077194, 0.13123086], [44.17, 43.767965863579605, 0.082084276], [44.18, 43.37541568658174, 0.1871182], [44.19, 43.99829127103958, 0.30993602], [44.2, 43.60154466502293, 0.16276614], [44.21, 43.35127768880693, 0.19802596], [44.22, 43.22808695880974, 0.10631692], [44.23, 43.887447017176356, 0.16366911], [44.24, 44.181701150540135, 0.15978196], [44.25, 43.641797449357504, 0.18367545], [44.26, 43.45507527189298, 0.18445763], [44.27, 43.550741975829936, 0.31428784], [44.28, 43.909628301807864, 0.40377825], [44.29, 44.15725028619051, 0.27132258], [44.3, 44.291418289559836, 0.2448486], [44.31, 44.31057053110578, 0.2063065], [44.32, 44.23598128893367, 0.33391774], [44.33, 44.54219035787213, 0.50761515], [44.34, 44.47122889372259, 0.46675542], [44.35, 44.66859343565417, 0.5218689], [44.36, 44.38017649239572, 0.3938307], [44.37, 44.3078011437036, 0.4179178], [44.38, 43.89327288674083, 0.3818711], [44.39, 44.024478205627034, 0.20686124], [44.4, 44.2026759060729, 0.21612668], [44.41, 43.56375865024384, 0.29350173], [44.42, 43.67462646500529, 0.3642808], [44.43, 43.856898859866206, 0.22813244], [44.44, 43.881330934011345, 0.24796371], [44.45, 44.52464356880255, 0.3556513], [44.46, 44.56062342457032, 0.45394], [44.47, 43.96701978089329, 0.26468006], [44.48, 43.023400822219855, 0.16627158], [44.49, 43.770724839711505, 0.22616568], [44.5, 43.97246990236002, 0.5048145], [44.51, 44.010960188168475, 0.663021], [44.52, 43.84315069994496, 0.59821886], [44.53, 43.78201057653172, 0.65009123], [44.54, 43.90604302022484, 0.46389848], [44.55, 43.987149184215546, 0.6393453], [44.56, 43.860396324104194, 0.61392546], [44.57, 43.15725862160144, 0.60461956], [44.58, 43.099855219322826, 0.6479794], [44.59, 43.10967069464919, 0.58735317], [44.6, 43.68268073693646, 0.5442227], [44.61, 43.66551386564698, 0.31265834], [44.62, 43.67165216683531, 0.48147908], [44.63, 43.907142009258365, 0.24798666], [44.64, 43.907319568805306, 0.15716478], [44.65, 44.402968249019835, 0.13920861], [44.66, 43.4378776061874, 0.1621435], [44.67, 43.37454988049519, 0.077748716], [44.68, 43.292164344132104, 0.098281555], [44.69, 43.816410613174966, 0.15601023], [44.7, 43.89136714623056, 0.2743929], [44.71, 44.1251359352142, 0.50736403], [44.72, 44.48587432402682, 0.57196915], [44.73, 44.37427963654422, 0.63176024], [44.74, 43.9398233240161, 0.6987444], [44.75, 43.89427136458277, 0.6171581], [44.76, 44.04265103984855, 0.50901115], [44.77, 43.87471820622182, 0.19067095], [44.78, 44.651484022064416, 0.11885606], [44.79, 45.736264667406786, 0.18826498], [44.8, 46.60174849761993, 0.17661496], [44.81, 47.467108362309105, 0.25017148], [44.82, 48.09571167220618, 0.16493031], [44.83, 49.18162950612482, 0.3522753], [44.84, 49.61125224130737, 0.389577], [44.85, 49.6295312935662, 0.36796558], [44.86, 50.32089378901753, 0.49004364], [44.87, 51.15759121654608, 0.5972327], [44.88, 51.85354185183732, 0.7164739], [44.89, 52.344009288885694, 0.7314899], [44.9, 54.03250114080394, 0.6240204], [44.91, 54.77109080013647, 0.46025023], [44.92, 55.96016713032447, 0.54704356], [44.93, 56.806701748160464, 0.41826716], [44.94, 57.641220078080224, 0.44825274], [44.95, 57.95560205280494, 0.37411243], [44.96, 57.81614722873405, 0.14082727], [44.97, 58.0404400317387, 0.18159842], [44.98, 57.635871073509534, 0.56220347], [44.99, 58.20096000281285, 0.68998647], [45.0, 57.7938335248868, 0.7953014], [45.01, 57.82111174491048, 0.75473315], [45.02, 58.7014519227818, 0.27641448], [45.03, 62.43741847712079, 0.33572784], [45.04, 69.93107558896752, 0.44071737], [45.05, 74.34491438616205, 0.31855333], [45.06, 76.59333640135122, 0.2887074], [45.07, 81.18626511865406, 0.21858296], [45.08, 90.42505727369809, 0.20857662], [45.09, 96.10854260792294, 0.14037985], [45.1, 103.80510490256795, 0.08151213], [45.11, 109.89449457418951, 0.27377567], [45.12, 116.83385852087291, 0.156726], [45.13, 123.96368409759502, 0.11649024], [45.14, 135.38479176443437, 0.1698576], [45.15, 146.02184945872682, 0.19338399], [45.16, 158.03278503786817, 0.14018783], [45.17, 167.55023622035932, 0.07029826], [45.18, 172.41137929567185, 0.06651037], [45.19, 175.4237273904746, 0.09113392], [45.2, 175.59420204032105, 0.19417578], [45.21, 175.53069392376753, 0.2780378], [45.22, 175.1116018747933, 0.31740472], [45.23, 175.81080159765148, 0.2617096], [45.24, 176.19935680825216, 0.18177049], [45.25, 175.7033334297805, 0.2850576], [45.26, 174.18960021716708, 0.4252838], [45.27, 174.4974536771869, 0.26110196], [45.28, 175.2928322225125, 0.29053393], [45.29, 176.76779301304717, 0.5943777], [45.3, 176.206911610755, 0.5722211], [45.31, 175.61473998524903, 0.6199897], [45.32, 174.72257026509496, 0.5133232], [45.33, 186.5043546242239, 0.51369977], [45.34, 213.99849328554384, 0.2760514], [45.35, 231.57291961542086, 0.28643098], [45.36, 232.9810448084457, 0.45144212], [45.37, 231.44646390984462, 0.42498773], [45.38, 232.39165211159667, 0.49323484], [45.39, 231.34656931702014, 0.63697094], [45.4, 231.4763391226557, 0.61319417], [45.41, 230.8073958173054, 0.656575], [45.42, 231.47309406389863, 0.70034164], [45.43, 231.42647843165176, 0.69796884], [45.44, 231.22679482005483, 0.66307217], [45.45, 231.07167995673092, 0.7012067], [45.46, 231.9222870409847, 0.72469497], [45.47, 232.08331448791927, 0.7285692], [45.48, 232.06194905416154, 0.7566257], [45.49, 232.27082858301145, 0.7781226], [45.5, 232.06899124632687, 0.8093718], [45.51, 207.57361898402075, 0.77876943], [45.52, 179.01289050474088, 0.6914677], [45.53, 156.16348690888964, 0.5050452], [45.54, 139.3436190139169, 0.3270925], [45.55, 138.03763200744743, 0.64452034], [45.56, 136.75407686518264, 0.78704405], [45.57, 135.5027574360595, 0.78550273], [45.58, 135.3482954277773, 0.7783366], [45.59, 133.90564200978017, 0.72857904], [45.6, 133.00428952733006, 0.76716536], [45.61, 132.52870134652767, 0.7580622], [45.62, 131.55457010368306, 0.5807724], [45.63, 132.6547299472077, 0.5519062], [45.64, 132.18648078633237, 0.5374046], [45.65, 133.95443322805977, 0.640965], [45.66, 135.6895494365203, 0.7426864], [45.67, 136.38284144818016, 0.766998], [45.68, 137.41432872329557, 0.77267766], [45.69, 139.12417518294512, 0.7897301], [45.7, 140.5450179305526, 0.7225281], [45.71, 142.52421216479982, 0.6670927], [45.72, 146.16462672267323, 0.75805366], [45.73, 147.99942122726543, 0.66058356], [45.74, 148.41520674032824, 0.62503517], [45.75, 146.31322388322215, 0.65592444], [45.76, 142.56637681919574, 0.70070326], [45.77, 141.17387275307837, 0.74186295], [45.78, 139.18820972698117, 0.8185813], [45.79, 137.43905906157545, 0.7574016], [45.8, 137.26861378687482, 0.6950511], [45.81, 137.5231813049566, 0.6624286], [45.82, 138.86971349748148, 0.6735356], [45.83, 141.86939800258085, 0.38404965], [45.84, 145.85784356386785, 0.25464082], [45.85, 152.07514532093592, 0.43894324], [45.86, 166.5543124040849, 0.43120712], [45.87, 186.93507971086063, 0.2069715], [45.88, 211.3861814453776, 0.46340975], [45.89, 231.23175158006322, 0.4001842], [45.9, 231.62103852360605, 0.24744616], [45.91, 232.6715760713555, 0.3276595], [45.92, 231.39555051220927, 0.3660035], [45.93, 231.95526400157294, 0.56909513], [45.94, 232.29143368509952, 0.6110896], [45.95, 229.87727254093474, 0.39384392], [45.96, 228.2446617291036, 0.23073955], [45.97, 223.59355387000332, 0.07574413], [45.98, 219.84787273387406, 0.059548676], [45.99, 216.80971528571777, 0.11126549], [46.0, 213.79805713774377, 0.12982865], [46.01, 210.2703048002196, 0.40375045], [46.02, 206.0024834853185, 0.7057445], [46.03, 194.36793568357592, 0.6971804], [46.04, 185.08306836133107, 0.56194615], [46.05, 179.2593755925142, 0.5561579], [46.06, 176.67901689915016, 0.6741049], [46.07, 176.23479935010874, 0.68403506], [46.08, 174.063345417194, 0.7313596], [46.09, 169.41205220032174, 0.74831086], [46.1, 163.3425209790861, 0.61128116], [46.11, 152.2973946050249, 0.56006813], [46.12, 146.37843985688292, 0.33097804], [46.13, 141.09065825967778, 0.2878187], [46.14, 138.40953101405273, 0.22992977], [46.15, 133.1782432641864, 0.5014581], [46.16, 129.6851416630023, 0.28380212], [46.17, 124.74995095497209, 0.36297202], [46.18, 119.74571159424536, 0.2571604], [46.19, 116.92144183781815, 0.31059867], [46.2, 115.73758602921859, 0.51971513], [46.21, 115.75245351007071, 0.68577254], [46.22, 117.0990258016486, 0.75253075], [46.23, 118.03581589024496, 0.8169765], [46.24, 118.08855681882896, 0.8548993], [46.25, 128.7695667238933, 0.8399243], [46.26, 147.98115219970282, 0.82481235], [46.27, 171.15270111611454, 0.7302343], [46.28, 188.03336163140753, 0.72034127], [46.29, 212.45354220845167, 0.5725441], [46.3, 231.8357145365278, 0.37194955], [46.31, 232.04469541125405, 0.4541732], [46.32, 234.1601508154159, 0.53971255], [46.33, 234.19457548641017, 0.2701892], [46.34, 234.3718275759059, 0.33371946], [46.35, 234.27927866360474, 0.36049858], [46.36, 234.0249275250606, 0.4190712], [46.37, 233.29014042219023, 0.53968006], [46.38, 233.63222874729118, 0.5919797], [46.39, 232.80188366149514, 0.68449694], [46.4, 233.6218095795208, 0.6393563], [46.41, 233.8514819035633, 0.6348075], [46.42, 233.90911773142165, 0.6115148], [46.43, 232.8926873126576, 0.6395695], [46.44, 231.44493918042758, 0.5721855], [46.45, 206.55095117897076, 0.2699401], [46.46, 180.3782574470009, 0.48488918], [46.47, 157.8239513495939, 0.46162176], [46.48, 141.19455554667167, 0.56479394], [46.49, 142.3680860542437, 0.6780497], [46.5, 142.6246168086418, 0.7689349], [46.51, 142.11854985589747, 0.76554066], [46.52, 140.71641905942806, 0.7461071], [46.53, 138.58964229647975, 0.7094119], [46.54, 135.6628065403466, 0.73673797], [46.55, 133.4621292355149, 0.8187102], [46.56, 132.4613286438921, 0.843105], [46.57, 132.7612428000116, 0.76819795], [46.58, 134.7048038736345, 0.64992225], [46.59, 138.2689523340721, 0.56886876], [46.6, 140.87639051977686, 0.594068], [46.61, 144.64221179697887, 0.62797856], [46.62, 147.05202992854, 0.67793715], [46.63, 146.99364983608538, 0.48704788], [46.64, 145.11579319981013, 0.49997428], [46.65, 142.0270885079932, 0.6081565], [46.66, 138.92110449757263, 0.7378064], [46.67, 137.13858324574932, 0.77486867], [46.68, 136.4155032444593, 0.7683881], [46.69, 136.6736707237965, 0.74422646], [46.7, 138.25405592546014, 0.761664], [46.71, 139.35024567977874, 0.77447367], [46.72, 140.02149363925966, 0.69194824], [46.73, 140.18250894889817, 0.66557103], [46.74, 140.37324755083117, 0.5271037], [46.75, 138.44249121760834, 0.2609568], [46.76, 139.91765329631093, 0.05583561], [46.77, 141.00402703259454, 0.18918166], [46.78, 141.87362858693172, 0.40153235], [46.79, 142.84112693808436, 0.5826028], [46.8, 145.67476778002225, 0.48558426], [46.81, 145.75551129461232, 0.2763657], [46.82, 146.90330508541618, 0.41070318], [46.83, 148.02275351300943, 0.7102546], [46.84, 149.8650944384914, 0.72016877], [46.85, 152.59524946993952, 0.7254391], [46.86, 154.8271623965596, 0.41881278], [46.87, 157.7897078428271, 0.13706578], [46.88, 162.27698801716002, 0.1111707], [46.89, 165.85546800730353, 0.18529509], [46.9, 167.98295114741785, 0.17546023], [46.91, 167.89438309849626, 0.2335404], [46.92, 170.23749902408125, 0.17175487], [46.93, 172.44493140728028, 0.11280013], [46.94, 173.10476071281187, 0.09424426], [46.95, 175.65448998726464, 0.060817197], [46.96, 173.242161429286, 0.18244861], [46.97, 169.29317778372263, 0.35228786], [46.98, 166.10116645587905, 0.43963385], [46.99, 163.94227608889932, 0.23322962], [47.0, 163.473326022692, 0.24548447], [47.01, 162.96482749503238, 0.1286517], [47.02, 162.25960582427862, 0.2218651], [47.03, 160.89091622769553, 0.2049479], [47.04, 153.8879107583409, 0.097088575], [47.05, 154.91194871657714, 0.17007868], [47.06, 159.10048272004812, 0.47831285], [47.07, 163.80271271682065, 0.23572068], [47.08, 167.35360971494822, 0.14659442], [47.09, 171.54727946723676, 0.3001718], [47.1, 173.75883632152167, 0.3433702], [47.11, 175.63960370528605, 0.5005854], [47.12, 175.05240516712723, 0.5263165], [47.13, 174.9049339689283, 0.5704881], [47.14, 174.66839192570097, 0.49576312], [47.15, 174.77184771294316, 0.58962584], [47.16, 174.8250460647876, 0.5760981], [47.17, 175.36838193059583, 0.59172374], [47.18, 176.06877385750005, 0.6279422], [47.19, 177.1833095603877, 0.69453794], [47.2, 177.4631101545657, 0.68833745], [47.21, 178.2651138577878, 0.61379254], [47.22, 177.68669161009737, 0.57866293], [47.23, 175.32538291132636, 0.16725059], [47.24, 174.1269817703667, 0.13679767], [47.25, 173.7772569747525, 0.35237208], [47.26, 176.5128416570661, 0.5834211], [47.27, 178.78676572294594, 0.5038156], [47.28, 179.6643711486503, 0.590105], [47.29, 179.79074348466338, 0.5656588], [47.3, 178.32048234965248, 0.49140713], [47.31, 178.29667373243745, 0.42307946], [47.32, 177.84934499494904, 0.41497546], [47.33, 177.57767563264522, 0.4598003], [47.34, 180.49604784370234, 0.673869], [47.35, 179.4770596355129, 0.62089884], [47.36, 179.1161180533033, 0.64979047], [47.37, 178.28662239213966, 0.59743136], [47.38, 176.76432979582114, 0.23145027], [47.39, 174.76802466950159, 0.46732298], [47.4, 175.80315257880872, 0.55383235], [47.41, 175.01961574537808, 0.7197252], [47.42, 174.7047734360119, 0.7892823], [47.43, 174.7051648903145, 0.795356], [47.44, 174.76427506671112, 0.8219297], [47.45, 174.82391756070953, 0.8349032], [47.46, 174.73657499047195, 0.8238405], [47.47, 174.43320494192534, 0.8060351], [47.48, 174.35799735326412, 0.8455854], [47.49, 174.47344009734837, 0.84093577], [47.5, 174.79406667458707, 0.84855056], [47.51, 174.83538223886507, 0.81931055], [47.52, 175.02052194226485, 0.8108956], [47.53, 174.72770081348182, 0.8155841], [47.54, 174.63635000164112, 0.8066142], [47.55, 174.58074909954456, 0.78761095], [47.56, 174.9493058833693, 0.8185626], [47.57, 174.8655926194473, 0.82463795], [47.58, 174.7657921056615, 0.82374525], [47.59, 174.61697168936018, 0.80485946], [47.6, 174.91253996502735, 0.7877125], [47.61, 174.4785629025607, 0.7736708], [47.62, 173.7751872215481, 0.73996], [47.63, 173.25802210029894, 0.7006156], [47.64, 173.6929873780311, 0.6767219], [47.65, 174.91232582958062, 0.41476664], [47.66, 176.71584110779204, 0.22070104], [47.67, 177.0013675596423, 0.42004266], [47.68, 176.23224492275116, 0.41735774], [47.69, 176.85012071227374, 0.49334252], [47.7, 176.68379363014648, 0.47460163], [47.71, 176.40788875670623, 0.47212288], [47.72, 177.41383734719176, 0.30925527], [47.73, 175.97481673760996, 0.2942782], [47.74, 175.6139123134072, 0.5641855], [47.75, 175.4334589704466, 0.6641551], [47.76, 175.8286608817798, 0.70186216], [47.77, 175.50745057532424, 0.75109], [47.78, 175.39736577572353, 0.78238785], [47.79, 175.5358855839492, 0.78950655], [47.8, 174.8162115966681, 0.7607542], [47.81, 174.4628058634986, 0.7530252], [47.82, 174.5367720328335, 0.74707544], [47.83, 175.18172229318228, 0.75141656], [47.84, 174.9240016634311, 0.7037209], [47.85, 174.9675257818439, 0.6466803], [47.86, 173.7628942300512, 0.55590665], [47.87, 175.04362016850843, 0.6247282], [47.88, 175.74156310828096, 0.6559909], [47.89, 176.04773187249108, 0.6658278], [47.9, 175.36112993955655, 0.54351944], [47.91, 174.9273293562899, 0.6208535], [47.92, 175.59347297152408, 0.3994718], [47.93, 158.25170572438213, 0.37839854], [47.94, 136.26705070073302, 0.6677114], [47.95, 120.76704328255417, 0.75135654], [47.96, 120.13159581905234, 0.65787673], [47.97, 118.80094710815541, 0.6657452], [47.98, 116.65562809573589, 0.7176884], [47.99, 115.1436243849004, 0.75668955], [48.0, 113.87295545853857, 0.80779594], [48.01, 113.13425279159821, 0.76810694], [48.02, 114.28080442087051, 0.7139429], [48.03, 116.12802788775555, 0.5586984], [48.04, 119.76624192413468, 0.39931616], [48.05, 126.32326037243215, 0.4272683], [48.06, 127.65856484348853, 0.76307136], [48.07, 129.12359247308805, 0.7917612], [48.08, 129.63444000821323, 0.8457036], [48.09, 130.52856661749377, 0.8724954], [48.1, 129.9272823988162, 0.83371943], [48.11, 128.12402147451675, 0.7375774], [48.12, 124.54933653695733, 0.50025564], [48.13, 135.5571067289174, 0.46610242], [48.14, 146.83871119262344, 0.46922642], [48.15, 168.33391410032402, 0.38248068], [48.16, 175.42124968666965, 0.3556162], [48.17, 175.38692252326913, 0.37730324], [48.18, 176.38992377624493, 0.41428605], [48.19, 175.4917957694606, 0.4718241], [48.2, 173.57602373153523, 0.39044777], [48.21, 175.85001894035062, 0.53673166], [48.22, 176.08154468637713, 0.6307371], [48.23, 175.45056561372775, 0.66109896], [48.24, 175.24996303875702, 0.7369269], [48.25, 174.62461222431637, 0.7538021], [48.26, 175.11363560349514, 0.7814033], [48.27, 174.86458200363626, 0.757831], [48.28, 174.93546878683168, 0.7827199], [48.29, 174.72661256452204, 0.77078956], [48.3, 175.4906760994565, 0.776804], [48.31, 175.20543509900773, 0.7498075], [48.32, 175.0863544571909, 0.7926009], [48.33, 174.9927985005962, 0.75328904], [48.34, 175.34257960156435, 0.68927807], [48.35, 155.61098497360192, 0.41654322], [48.36, 137.83434512137143, 0.3615086], [48.37, 137.64114949710165, 0.6857764], [48.38, 138.01536427477996, 0.75502104], [48.39, 138.85077186675122, 0.7837361], [48.4, 139.87390234216602, 0.7783476], [48.41, 141.16127219763848, 0.77273387], [48.42, 141.36231968327647, 0.7342315], [48.43, 141.2470612981207, 0.7774199], [48.44, 139.93888514339608, 0.8134508], [48.45, 138.68173789156128, 0.8537933], [48.46, 137.3417358203593, 0.8488505], [48.47, 137.3357753796776, 0.8567301], [48.48, 137.69836286292698, 0.83681023], [48.49, 137.88722361916743, 0.8426732], [48.5, 138.87615716785854, 0.85169345], [48.51, 139.4745043491701, 0.8475755], [48.52, 139.386508957426, 0.8559713], [48.53, 139.8561875656503, 0.84592855], [48.54, 139.3058286983206, 0.86260265], [48.55, 138.58229782251098, 0.86118305], [48.56, 138.03793066038645, 0.84949917], [48.57, 137.60674285363362, 0.8613674], [48.58, 137.73066251136947, 0.84989697], [48.59, 137.79266553757867, 0.8482207], [48.6, 138.57536736499785, 0.8431415], [48.61, 138.16173563746838, 0.7498177], [48.62, 138.85189844167104, 0.6748264], [48.63, 140.45218747624182, 0.51002735], [48.64, 141.7588544592584, 0.4791371], [48.65, 143.70836044770806, 0.5220974], [48.66, 142.85820200169655, 0.62557346], [48.67, 142.22514471424026, 0.48011217], [48.68, 140.18827013078254, 0.58626527], [48.69, 138.61668281786325, 0.44104737], [48.7, 135.82017187868342, 0.2939989], [48.71, 127.04754970194621, 0.24305141], [48.72, 118.03231254311095, 0.47056827], [48.73, 118.15673193320579, 0.5298037], [48.74, 123.27299414616337, 0.80527186], [48.75, 138.38508095932406, 0.8088509], [48.76, 147.8041623915002, 0.6773987], [48.77, 155.84555722786558, 0.22587632], [48.78, 163.82359636301277, 0.13238719], [48.79, 159.33141363720316, 0.24847297], [48.8, 155.4522716450286, 0.2042388], [48.81, 153.1347960396962, 0.15635446], [48.82, 157.3803402561179, 0.2992654], [48.83, 161.41542226426526, 0.37646323], [48.84, 161.37330573090978, 0.49365664], [48.85, 163.492654068815, 0.5177292], [48.86, 164.56035214274547, 0.2928572], [48.87, 162.78019628908172, 0.13102852], [48.88, 162.10553187315247, 0.17590447], [48.89, 164.6492639384721, 0.31552204], [48.9, 168.03745510324163, 0.28141022], [48.91, 169.30165183008796, 0.21184838], [48.92, 172.6090028458645, 0.14451844], [48.93, 172.28677742680014, 0.11179204], [48.94, 172.84384924126098, 0.25354725], [48.95, 174.7970363417723, 0.10640906], [48.96, 178.49060874166275, 0.33236635], [48.97, 177.9886706690732, 0.33609024], [48.98, 176.07602898362572, 0.30832854], [48.99, 174.12327174353592, 0.09584869], [49.0, 174.3070105863487, 0.2406846], [49.01, 174.63505433550014, 0.20035654], [49.02, 174.09602022169128, 0.0858762], [49.03, 173.01321864958638, 0.14998268], [49.04, 172.98307231782772, 0.27244088], [49.05, 174.70514472664684, 0.336427], [49.06, 176.51804000068606, 0.32098258], [49.07, 175.84176272069217, 0.30086505], [49.08, 172.64410561810024, 0.22150493], [49.09, 171.06193995225507, 0.23205967], [49.1, 170.36640252933978, 0.38478115], [49.11, 172.71510936429377, 0.5741995], [49.12, 174.7132566784349, 0.65031046], [49.13, 172.92838032000526, 0.7123978], [49.14, 170.58692306779625, 0.76061696], [49.15, 167.68373477068633, 0.75122947], [49.16, 164.71962184197088, 0.78640634], [49.17, 162.01356922488281, 0.7668764], [49.18, 160.01994619112037, 0.7689268], [49.19, 159.13388235351948, 0.7689624], [49.2, 156.7872356368275, 0.7976657], [49.21, 156.04155642605673, 0.78618234], [49.22, 154.9374943842502, 0.78662753], [49.23, 154.926536387567, 0.7383223], [49.24, 150.74879506530328, 0.32629493], [49.25, 147.23211556259028, 0.15523016], [49.26, 145.3612563316589, 0.26039204], [49.27, 145.14516003492386, 0.5965646], [49.28, 145.9587560167712, 0.6484042], [49.29, 144.3498909563736, 0.32611963], [49.3, 141.8187452368899, 0.5238244], [49.31, 141.14232599420174, 0.71567196], [49.32, 140.25875151433206, 0.7975376], [49.33, 140.169857099626, 0.8080185], [49.34, 139.64170175542418, 0.8577727], [49.35, 138.66103909417677, 0.84616977], [49.36, 137.54644021962014, 0.8277507], [49.37, 135.73041482492326, 0.8043133], [49.38, 134.6005603184237, 0.82497203], [49.39, 134.8965972723607, 0.81705505], [49.4, 136.03945650017457, 0.7891811], [49.41, 137.58627782704485, 0.75762135], [49.42, 140.07404838014696, 0.78516704], [49.43, 142.90344300795033, 0.7861142], [49.44, 144.40722651034676, 0.6914981], [49.45, 146.87560811244003, 0.7153936], [49.46, 148.1776050480762, 0.7457342], [49.47, 148.04431686096873, 0.7879488], [49.48, 147.25489259112152, 0.74979556], [49.49, 144.2705338857075, 0.6419143], [49.5, 141.90576202115318, 0.6650313], [49.51, 140.26774652729816, 0.71612966], [49.52, 139.14141633649172, 0.7704306], [49.53, 138.93267598128944, 0.8039213], [49.54, 140.38333249443232, 0.7347502], [49.55, 142.49961357188485, 0.64557785], [49.56, 145.6469445622317, 0.5326822], [49.57, 147.85063675258368, 0.6472599], [49.58, 149.93369228587736, 0.75583786], [49.59, 150.56381001913113, 0.79120725], [49.6, 150.12546904178802, 0.72708833], [49.61, 147.88482368614427, 0.6698879], [49.62, 145.56185401163322, 0.7267179], [49.63, 143.5293739774219, 0.6388378], [49.64, 141.95324170325253, 0.4447273], [49.65, 137.26465153251758, 0.21109009], [49.66, 120.51297317089697, 0.23062238], [49.67, 112.9843044220356, 0.26610968], [49.68, 97.6598433855159, 0.49349427], [49.69, 85.90126389262706, 0.5065661], [49.7, 76.34129829509108, 0.4513942], [49.71, 66.8724755430564, 0.34269482], [49.72, 58.59122107040954, 0.16680215], [49.73, 50.87082743974176, 0.06594111], [49.74, 45.639061198411966, 0.2029233], [49.75, 44.892953966915684, 0.07737232], [49.76, 43.58129096894986, 0.4896676], [49.77, 43.21911242884372, 0.59499913], [49.78, 43.37875587850773, 0.61222607], [49.79, 43.35147815144475, 0.61439186], [49.8, 43.2778891364796, 0.62386787], [49.81, 43.519657413754615, 0.6556228], [49.82, 43.507970869041216, 0.5723893], [49.83, 43.16767306875251, 0.44075617], [49.84, 43.08771318035689, 0.4962354], [49.85, 43.16690453254223, 0.59078634], [49.86, 43.62628772076918, 0.5976295], [49.87, 43.541933054526574, 0.3627635], [49.88, 43.77731482063048, 0.5788899], [49.89, 43.617218755495024, 0.4426116], [49.9, 43.60902645397769, 0.5335025], [49.91, 43.7554390314784, 0.47217354], [49.92, 43.10148829788191, 0.52776045], [49.93, 42.29195925122141, 0.4642253], [49.94, 42.23803832927922, 0.22902548], [49.95, 43.088333955977625, 0.33336127], [49.96, 43.23056916660842, 0.1246278], [49.97, 43.28846733579398, 0.1745295], [49.98, 43.57884424448277, 0.20551881], [49.99, 43.02715658513155, 0.4090751], [50.0, 43.191796781765824, 0.61444646], [50.01, 43.10714186858232, 0.6263028], [50.02, 43.65839919971437, 0.729069], [50.03, 43.622451881691255, 0.670898], [50.04, 43.674601596382985, 0.76739883], [50.05, 43.51798008779437, 0.7457539], [50.06, 43.48216945465572, 0.7740749], [50.07, 43.62102671539117, 0.80863774], [50.08, 43.488870542726126, 0.7401671], [50.09, 43.774457578889134, 0.78723145], [50.1, 43.79311295853134, 0.780023], [50.11, 43.632389830886794, 0.7892257], [50.12, 43.560393286515186, 0.7015666], [50.13, 43.61614490611271, 0.7903558], [50.14, 43.623315403066805, 0.7983538], [50.15, 43.46345554680693, 0.7368255], [50.16, 43.62017329050143, 0.80317974], [50.17, 43.67694548281483, 0.673311], [50.18, 44.34577188127424, 0.38733995], [50.19, 49.065354513442514, 0.06669362], [50.2, 57.84770194777895, 0.19641422], [50.21, 66.02383753324456, 0.19761139], [50.22, 73.25777876076452, 0.68490547], [50.23, 84.15237441647162, 0.84697646], [50.24, 90.73351024850965, 0.89224017], [50.25, 106.17644638942502, 0.8898797], [50.26, 120.89655217031995, 0.88685054], [50.27, 130.80549976237313, 0.8842088], [50.28, 130.28590833236865, 0.8151625], [50.29, 129.90478815760432, 0.79955715], [50.3, 131.22786431963408, 0.86786574], [50.31, 131.22155727007504, 0.87545794], [50.32, 132.2092052212921, 0.8187152], [50.33, 133.1581751850314, 0.8258264], [50.34, 133.7080172744769, 0.73649025], [50.35, 135.2249881524368, 0.67996377], [50.36, 136.9328316349429, 0.75729764], [50.37, 138.2023857041052, 0.82112676], [50.38, 138.91101178399038, 0.8465162], [50.39, 138.78691802064557, 0.8441467], [50.4, 138.45500378458988, 0.83276796], [50.41, 137.5132505121424, 0.81696236], [50.42, 135.7667889956528, 0.7090833], [50.43, 132.13890276408213, 0.7605903], [50.44, 130.54372654271856, 0.8492556], [50.45, 129.92209070641712, 0.8494548], [50.46, 130.98990955509842, 0.8466205], [50.47, 132.2495246853513, 0.7954743], [50.48, 132.99410961208065, 0.67537534], [50.49, 135.43628946188772, 0.6152043], [50.5, 138.69988678212502, 0.83331007], [50.51, 140.15711395538716, 0.83104414], [50.52, 140.32157853003392, 0.8556485], [50.53, 139.80086691688862, 0.85628265], [50.54, 137.98891536304, 0.80304974], [50.55, 135.5399783275148, 0.7304479], [50.56, 133.26436890602702, 0.8020698], [50.57, 131.5952384013233, 0.79541326], [50.58, 129.42432549234528, 0.7333987], [50.59, 128.19915848598492, 0.6962524], [50.6, 128.0066383226999, 0.76437145], [50.61, 127.50932455965929, 0.7698932], [50.62, 126.9515185068404, 0.6876034], [50.63, 125.3983006646994, 0.48089027], [50.64, 127.76131669053262, 0.17260139], [50.65, 129.73024984648399, 0.051598173], [50.66, 143.71693770865846, 0.049193025], [50.67, 128.73700287732586, 0.07312554], [50.68, 125.33643221075917, 0.068995185], [50.69, 123.60155271818516, 0.06384149], [50.7, 130.87244273734964, 0.11111377], [50.71, 139.4470922572483, 0.24240494], [50.72, 148.30964220792998, 0.29160315], [50.73, 154.11572549235058, 0.23669034], [50.74, 159.29075084167727, 0.253434], [50.75, 161.09727832153837, 0.5566336], [50.76, 161.96334487762417, 0.5145344], [50.77, 160.8547364534725, 0.32913342], [50.78, 161.61812664539917, 0.36477253], [50.79, 163.1999062009562, 0.2610128], [50.8, 166.4797313678095, 0.1080926], [50.81, 169.91455345820268, 0.3584561], [50.82, 174.85024207365225, 0.21261017], [50.83, 174.56048582433107, 0.17307895], [50.84, 175.30304814967238, 0.35455558], [50.85, 176.65173985485836, 0.4166222], [50.86, 176.23905035070288, 0.5105736], [50.87, 175.3568221804137, 0.6284677], [50.88, 175.0002585128354, 0.6713328], [50.89, 173.74337106702103, 0.5683938], [50.9, 172.4540334085492, 0.56208473], [50.91, 169.77836067044007, 0.5156904], [50.92, 168.60858782963157, 0.47553718], [50.93, 164.26159026809222, 0.40715215], [50.94, 159.72611382068493, 0.30043945], [50.95, 155.94506912329453, 0.29508403], [50.96, 154.3088631590773, 0.2565827], [50.97, 155.88062319853722, 0.14928237], [50.98, 157.92362991584707, 0.19756144], [50.99, 155.84293361976196, 0.20204867], [51.0, 144.19732025854793, 0.13909423], [51.01, 146.20045086031308, 0.21837346], [51.02, 148.53743688278945, 0.18866257], [51.03, 151.17063143953683, 0.2667099], [51.04, 157.4963920460917, 0.26657534], [51.05, 159.00428655766194, 0.20862304], [51.06, 162.01031592995875, 0.33934256], [51.07, 165.86500708479477, 0.5504559], [51.08, 169.17542648505543, 0.6110724], [51.09, 171.05044886514676, 0.6682746], [51.1, 173.75637550860722, 0.59040546], [51.11, 175.25936836462705, 0.527874], [51.12, 176.6292284522727, 0.51122], [51.13, 174.5191109715593, 0.2867726], [51.14, 173.04006711643382, 0.5440041], [51.15, 174.90869761438287, 0.5654691], [51.16, 175.71108096634111, 0.7336183], [51.17, 175.16872059099268, 0.8108574], [51.18, 175.39220240327765, 0.8252323], [51.19, 174.80315653984917, 0.80683994], [51.2, 174.67378237597006, 0.80249584], [51.21, 174.820262832512, 0.7825537], [51.22, 174.3964186806939, 0.7650205], [51.23, 174.9706420455796, 0.78145075], [51.24, 174.73349928650293, 0.75908315], [51.25, 174.48143306267923, 0.7194015], [51.26, 175.26359758602672, 0.7189231], [51.27, 175.32637989816135, 0.71212006], [51.28, 175.86532332493138, 0.7097389], [51.29, 175.4994833354495, 0.73430324], [51.3, 174.841993167539, 0.7551967], [51.31, 175.16171450711317, 0.7456704], [51.32, 175.33344321664632, 0.7636237], [51.33, 175.35912454887324, 0.7636305], [51.34, 175.30804184368554, 0.77048254], [51.35, 174.70326022687374, 0.77386105], [51.36, 174.61916359710847, 0.7574175], [51.37, 175.45855245012748, 0.7546443], [51.38, 175.87281342736122, 0.7179808], [51.39, 174.5926124362774, 0.7516893], [51.4, 173.98519792011317, 0.7512963], [51.41, 172.82958723756576, 0.7503039], [51.42, 172.60209425591125, 0.67752767], [51.43, 173.09938462078233, 0.6469089], [51.44, 175.2042513987506, 0.5919467], [51.45, 177.84626676168315, 0.6972731], [51.46, 178.71394556474218, 0.7433882], [51.47, 176.6013664838962, 0.63001275], [51.48, 174.78865363722616, 0.628658], [51.49, 174.50553256089248, 0.49094635], [51.5, 175.31754519371856, 0.4483034], [51.51, 175.9352135495633, 0.39569145], [51.52, 175.6945587769603, 0.5107323], [51.53, 175.241588610121, 0.46935537], [51.54, 174.7607048613625, 0.60849357], [51.55, 173.66296511581868, 0.6712913], [51.56, 174.79846735163784, 0.62058467], [51.57, 173.91004488747524, 0.4039555], [51.58, 173.85323252505225, 0.2636598], [51.59, 166.54335392491743, 0.26701605], [51.6, 153.411248501209, 0.11033646], [51.61, 144.7983774067951, 0.12972423], [51.62, 140.9142454502824, 0.43866932], [51.63, 127.06946345795166, 0.6510833], [51.64, 119.38967350697992, 0.33690137], [51.65, 108.42876543995953, 0.4006751], [51.66, 106.2232580238491, 0.48243526], [51.67, 96.73047989580053, 0.34325576], [51.68, 93.0716555947191, 0.20639198], [51.69, 83.87936678398307, 0.18224563], [51.7, 77.54472260048372, 0.1096813], [51.71, 74.58536966146332, 0.11993053], [51.72, 68.75453628779911, 0.11404716], [51.73, 62.67134921171579, 0.24824136], [51.74, 60.65606117027747, 0.30481258], [51.75, 55.47526687983733, 0.10508906], [51.76, 52.180146288059994, 0.15883482], [51.77, 51.845617216122626, 0.22646208], [51.78, 51.89403656746829, 0.17580391], [51.79, 52.82176815412192, 0.22461137], [51.8, 52.183424858678755, 0.15978704], [51.81, 52.2863558020527, 0.18498696], [51.82, 53.21542334586142, 0.29895714], [51.83, 54.30447588459966, 0.451995], [51.84, 53.88688663309481, 0.22660156], [51.85, 52.31746619827108, 0.20427279], [51.86, 53.84429190646608, 0.091556065], [51.87, 55.53448169234824, 0.13792324], [51.88, 53.50617059851912, 0.15968315], [51.89, 52.91677541991069, 0.40764222], [51.9, 52.49275318757298, 0.23621729], [51.91, 52.58888162235425, 0.3250876], [51.92, 52.959027711550426, 0.27359268], [51.93, 52.61302891365033, 0.14872858], [51.94, 51.85503002775506, 0.15747254], [51.95, 51.67458081909874, 0.106032915], [51.96, 51.48977041177326, 0.15917562], [51.97, 52.048860316482376, 0.15486078], [51.98, 52.310851611995275, 0.11392309], [51.99, 52.36468977076708, 0.1473168], [52.0, 52.211446367953386, 0.24742496], [52.01, 52.05298465652798, 0.26128602], [52.02, 51.935090742492555, 0.38360217], [52.03, 52.09498949830011, 0.5344873], [52.04, 52.0878959406881, 0.7123728], [52.05, 51.42494958138526, 0.5015402], [52.06, 51.11300563179678, 0.43847215], [52.07, 51.62583537581579, 0.5011427], [52.08, 52.461023316853996, 0.674699], [52.09, 52.319603348814425, 0.66585106], [52.1, 52.2359310960637, 0.6708977], [52.11, 51.37831136966669, 0.4991299], [52.12, 51.63553691249546, 0.5724088], [52.13, 52.107671872091444, 0.6706397], [52.14, 52.67011467074936, 0.7412117], [52.15, 52.085198627101825, 0.6675886], [52.16, 52.21989244638487, 0.75612956], [52.17, 51.94692483410712, 0.666414], [52.18, 52.01903369388827, 0.75319207], [52.19, 51.90105351178869, 0.67747897], [52.2, 52.137957805855336, 0.75817007], [52.21, 52.00500006603957, 0.68174237], [52.22, 52.248402343586505, 0.74397725], [52.23, 52.06858993437873, 0.70584065], [52.24, 52.01427558343888, 0.71884024], [52.25, 52.38295199403164, 0.6716722], [52.26, 52.42463182274781, 0.7160098], [52.27, 53.263461696442135, 0.6703339], [52.28, 53.84083269057002, 0.4139384], [52.29, 54.552589003000264, 0.26902634], [52.3, 53.71739843469285, 0.16086744], [52.31, 53.9524351659087, 0.17054543], [52.32, 53.19263012615576, 0.2782556], [52.33, 53.49710065923382, 0.58442354], [52.34, 54.19554808930231, 0.63721365], [52.35, 54.282583631346384, 0.590439], [52.36, 53.994962550300265, 0.66989726], [52.37, 53.58554749231786, 0.6480782], [52.38, 54.38866541536057, 0.5757405], [52.39, 54.49754337699363, 0.68277377], [52.4, 54.39161679378651, 0.6635456], [52.41, 54.68727347822175, 0.64860404], [52.42, 55.44878711820527, 0.5196157], [52.43, 55.45928996980395, 0.57656145], [52.44, 54.387814074521756, 0.40300912], [52.45, 52.76773777163649, 0.12216055], [52.46, 53.05435638956815, 0.13571694], [52.47, 53.165063760719555, 0.1300602], [52.48, 54.86617352908445, 0.22606443], [52.49, 57.24659558765125, 0.18033122], [52.5, 57.49976940433464, 0.3236549], [52.51, 58.246458659370006, 0.35372385], [52.52, 60.136998311638436, 0.14604661], [52.53, 66.23258929863049, 0.14931296], [52.54, 72.78949475181464, 0.22843689], [52.55, 77.72388752792416, 0.43217894], [52.56, 88.06080525070186, 0.6686604], [52.57, 96.10974416768231, 0.5121437], [52.58, 104.13440083694069, 0.47966433], [52.59, 112.30713989670673, 0.26556018], [52.6, 122.91422555413136, 0.06794201], [52.61, 133.43075447154257, 0.29370955], [52.62, 146.73539096299618, 0.13067098], [52.63, 154.37042079861155, 0.08035816], [52.64, 170.1847540543127, 0.44833574], [52.65, 184.6980952553705, 0.1740186], [52.66, 184.38076508582427, 0.098491654], [52.67, 185.39458090743642, 0.13285972], [52.68, 183.7351805575404, 0.113433756], [52.69, 187.18847370946048, 0.106819406], [52.7, 186.97436548694168, 0.21267764], [52.71, 185.85770090195166, 0.39272135], [52.72, 184.04092635838, 0.467468], [52.73, 185.35508557238938, 0.3583463], [52.74, 186.43363411009364, 0.38572586], [52.75, 184.8408036244408, 0.2971387], [52.76, 182.27212512283165, 0.46202654], [52.77, 182.96026710345959, 0.53969043], [52.78, 183.993312113377, 0.60012245], [52.79, 183.8705707977187, 0.7320865], [52.8, 184.01181665848748, 0.74751997], [52.81, 184.6944245934473, 0.7671935], [52.82, 185.32240037922375, 0.74856335], [52.83, 186.06490643296468, 0.705876], [52.84, 186.24651360678885, 0.76646674], [52.85, 186.19778948964293, 0.79367435], [52.86, 186.04406696242256, 0.75258106], [52.87, 185.284173310954, 0.784209], [52.88, 184.88864065311802, 0.80439836], [52.89, 183.7741066785119, 0.7893938], [52.9, 183.37011752474527, 0.7979589], [52.91, 182.61251031294253, 0.814373], [52.92, 183.84099910167822, 0.8065063], [52.93, 183.00247176110759, 0.80273175], [52.94, 182.96335966009337, 0.82100695], [52.95, 183.1923898314563, 0.8325454], [52.96, 184.07677334986374, 0.8209689], [52.97, 183.915361156119, 0.8208152], [52.98, 185.20998757186302, 0.83894473], [52.99, 185.33681682524556, 0.81997967], [53.0, 186.73067798947335, 0.7818574], [53.01, 190.00119962769904, 0.7607493], [53.02, 191.23736890393735, 0.7540389], [53.03, 192.4621937962795, 0.7922326], [53.04, 192.46886736694987, 0.8071815], [53.05, 192.4514323524225, 0.79096293], [53.06, 191.77991580338843, 0.783008], [53.07, 188.95990873856323, 0.75867254], [53.08, 185.76643597384108, 0.83463293], [53.09, 184.6873807968903, 0.8336087], [53.1, 184.42553862076187, 0.83823854], [53.11, 184.64857359451844, 0.86774176], [53.12, 184.6114400698471, 0.8628411], [53.13, 184.80585708659345, 0.8769188], [53.14, 184.8315183195307, 0.84861785], [53.15, 185.13777680551328, 0.8598419], [53.16, 185.93720563175194, 0.8465799], [53.17, 185.99795363181659, 0.86052793], [53.18, 185.55670542428868, 0.8627907], [53.19, 184.5794847281353, 0.8391715], [53.2, 183.2844830309284, 0.80154765], [53.21, 179.9199386570549, 0.7202191], [53.22, 177.740730611298, 0.7742413], [53.23, 177.42490240588637, 0.83336556], [53.24, 177.98734797728488, 0.84518814], [53.25, 178.47099689161266, 0.8621916], [53.26, 178.6702677832606, 0.85676754], [53.27, 178.10337844799844, 0.8537221], [53.28, 177.06621474585165, 0.8375374], [53.29, 175.3638718138021, 0.8116268], [53.3, 173.9542394237045, 0.81392616], [53.31, 173.13258727685437, 0.81395376], [53.32, 172.57057046854985, 0.75541353], [53.33, 173.32822936503067, 0.7573949], [53.34, 174.65878260049433, 0.7389659], [53.35, 175.56761116337768, 0.7893464], [53.36, 175.9975827466983, 0.7692741], [53.37, 176.0714903392812, 0.77314585], [53.38, 175.23218589010085, 0.7251515], [53.39, 175.43339142762645, 0.79159695], [53.4, 175.10167150052433, 0.7865947], [53.41, 175.20133614754906, 0.7946024], [53.42, 175.17673899298876, 0.75566584], [53.43, 174.59452099772864, 0.7502728], [53.44, 174.12317655954467, 0.7327736], [53.45, 173.5668494914341, 0.5972808], [53.46, 172.61244814073513, 0.5806331], [53.47, 172.90414732458368, 0.29471064], [53.48, 176.4450448426203, 0.14713243], [53.49, 180.00376791155378, 0.30164313], [53.5, 181.74954397833824, 0.22679925], [53.51, 180.73497903750038, 0.67278767], [53.52, 180.8306216843418, 0.7272175], [53.53, 182.46465885111837, 0.6488378], [53.54, 185.3808465387121, 0.72947055], [53.55, 189.19500389401452, 0.6015719], [53.56, 199.11325757834015, 0.6984416], [53.57, 203.98704563770846, 0.71535647], [53.58, 208.00842692695187, 0.7143275], [53.59, 211.01190784898478, 0.738084], [53.6, 212.8716991805826, 0.6553257], [53.61, 215.523401846644, 0.73326707], [53.62, 216.913939438758, 0.6522361], [53.63, 218.22588788712602, 0.7609368], [53.64, 219.66944802468473, 0.7279034], [53.65, 220.15666510224816, 0.7616567], [53.66, 221.29663844334226, 0.78425413], [53.67, 222.29360919612301, 0.7650548], [53.68, 224.31801874389805, 0.7780254], [53.69, 226.80650127332024, 0.6126144], [53.7, 232.13198911398368, 0.32984266], [53.71, 234.38404451155088, 0.033940338], [53.72, 237.53694972276827, 0.13364701], [53.73, 235.39384932962952, 0.39461505], [53.74, 233.28946027658785, 0.57848316], [53.75, 232.57751387614402, 0.5668533], [53.76, 233.23331189601515, 0.550054], [53.77, 233.13131689938092, 0.6325015], [53.78, 232.80825227768423, 0.7250319], [53.79, 232.4817190015885, 0.7240526], [53.8, 231.42052247901844, 0.68391275], [53.81, 232.02179209286362, 0.6625929], [53.82, 233.4145872133654, 0.5606896], [53.83, 233.0380648627061, 0.46320382], [53.84, 233.5849166583502, 0.54039574], [53.85, 233.51045944529437, 0.553705], [53.86, 233.0546218794184, 0.58362746], [53.87, 232.30813278154386, 0.59808284], [53.88, 232.92141497613898, 0.63060933], [53.89, 233.03383699546728, 0.6065778], [53.9, 232.7869249075367, 0.4606491], [53.91, 232.83360661207578, 0.57330084], [53.92, 232.9732312804794, 0.420408], [53.93, 233.12874727379432, 0.43094146], [53.94, 232.98372214330726, 0.5610087], [53.95, 231.26839719554374, 0.14676678], [53.96, 212.86989792856878, 0.261877], [53.97, 188.23370067018658, 0.51968837], [53.98, 167.98484115982762, 0.7268614], [53.99, 156.5930416841405, 0.8294315], [54.0, 157.05272712548916, 0.8268316], [54.01, 156.84794039260362, 0.8068567], [54.02, 155.1202192972438, 0.7790449], [54.03, 154.3536402895155, 0.8025588], [54.04, 154.61975414425314, 0.7564507], [54.05, 155.76802643325817, 0.77665764], [54.06, 156.760799412701, 0.753943], [54.07, 158.3266747746017, 0.74907804], [54.08, 160.15271975196902, 0.7513795], [54.09, 162.31902083792068, 0.75903726], [54.1, 165.18779491762172, 0.7409355], [54.11, 169.26749674700173, 0.78077525], [54.12, 171.6185672389109, 0.81843853], [54.13, 172.563113977265, 0.84613067], [54.14, 172.79846400009873, 0.8523925], [54.15, 172.78801548948638, 0.82732296], [54.16, 170.90748579779924, 0.7996448], [54.17, 168.64382497773335, 0.7667933], [54.18, 166.05054696429744, 0.7060793], [54.19, 161.67885858445743, 0.6647038], [54.2, 157.45382455083742, 0.6885551], [54.21, 155.42569905994765, 0.7322606], [54.22, 154.72802275428927, 0.7479742], [54.23, 154.60731560471777, 0.78395325], [54.24, 154.82398773696818, 0.8373357], [54.25, 154.3830476637896, 0.8234893], [54.26, 154.17943474236546, 0.7796174], [54.27, 153.7811624830209, 0.7760405], [54.28, 154.16681454377127, 0.76963854], [54.29, 152.4474448592854, 0.6849476], [54.3, 151.0514761571319, 0.6860742], [54.31, 150.1217779970438, 0.5513519], [54.32, 146.10706506934804, 0.42796803], [54.33, 143.58480991538053, 0.58617824], [54.34, 142.29839103168743, 0.5397858], [54.35, 142.20834639564262, 0.4224604], [54.36, 146.7993939436913, 0.30565912], [54.37, 147.364846118981, 0.2862858], [54.38, 148.77431577838638, 0.113751456], [54.39, 148.2917608739796, 0.12707081], [54.4, 146.82618903549636, 0.09853801], [54.41, 145.6421455385772, 0.12317399], [54.42, 139.26570283403905, 0.07398964], [54.43, 125.7826946394211, 0.11158712], [54.44, 117.1663758521781, 0.13292626], [54.45, 106.38990953862113, 0.0877286], [54.46, 95.8994445452102, 0.15629753], [54.47, 87.30283684056704, 0.1316051], [54.48, 81.05827672190475, 0.09014564], [54.49, 72.36653474734946, 0.1749275], [54.5, 66.84080084891306, 0.14910856], [54.51, 58.53723737668574, 0.19349295], [54.52, 55.13970836341136, 0.14521293], [54.53, 48.21652840910615, 0.13173015], [54.54, 48.67231270930066, 0.51148665], [54.55, 48.55358329763118, 0.5467991], [54.56, 47.6286936440666, 0.70825565], [54.57, 46.98393129299525, 0.68312246], [54.58, 46.62888638473801, 0.67035335], [54.59, 45.856547798288354, 0.51366633], [54.6, 45.25752030511025, 0.41671804], [54.61, 44.64934498621477, 0.39872462], [54.62, 44.023526660776426, 0.46489462], [54.63, 44.04521157651839, 0.22828859], [54.64, 43.8682563865444, 0.29908535], [54.65, 43.856365083217, 0.35855854], [54.66, 43.74345536444916, 0.49988073], [54.67, 43.91234613248099, 0.6341977], [54.68, 44.10098602138434, 0.3781723], [54.69, 44.36827852773063, 0.3153539], [54.7, 44.361743145369616, 0.17581856], [54.71, 44.22756373778953, 0.28889617], [54.72, 43.77182287478685, 0.2536526], [54.73, 44.33767188926762, 0.26558292], [54.74, 45.26786546061867, 0.4101771], [54.75, 46.12660096018203, 0.54530567], [54.76, 45.83485317927017, 0.6394003], [54.77, 45.03405475194725, 0.6165788], [54.78, 44.59831897456539, 0.62417847], [54.79, 45.182933776526426, 0.5143454], [54.8, 46.01164464613588, 0.47209668], [54.81, 45.86974616547826, 0.40081307], [54.82, 45.74826513664186, 0.47378772], [54.83, 45.51976421976793, 0.4446746], [54.84, 46.1965966791417, 0.6774869], [54.85, 45.76369530259321, 0.6351571], [54.86, 45.87051385274111, 0.6843883], [54.87, 45.37583569134234, 0.6780423], [54.88, 45.59246113674375, 0.64841324], [54.89, 45.295726388345514, 0.64540607], [54.9, 45.00748478587185, 0.51691574], [54.91, 46.13757019253555, 0.47378966], [54.92, 45.91200875088441, 0.5375636], [54.93, 46.50092469299971, 0.6118268], [54.94, 45.849554242817014, 0.5998881], [54.95, 45.36865067024644, 0.59094334], [54.96, 45.19195273105785, 0.57334673], [54.97, 45.80931219365452, 0.6003675], [54.98, 45.49886772124505, 0.54152477], [54.99, 46.21391213312728, 0.60870856], [55.0, 46.2942106004957, 0.63744676], [55.01, 46.46799316444998, 0.66817224], [55.02, 46.334559232184915, 0.6504236], [55.03, 46.21940038762723, 0.740103], [55.04, 45.45884704776213, 0.6133092], [55.05, 45.40114857198546, 0.63337445], [55.06, 45.65460219320849, 0.6261812], [55.07, 45.7266894865339, 0.6453206], [55.08, 46.411109020360385, 0.76932114], [55.09, 46.27683890638565, 0.63408256], [55.1, 46.48843695860781, 0.24658227], [55.11, 43.53155866367307, 0.21324462], [55.12, 39.124150118361996, 0.57260597], [55.13, 36.012759111587364, 0.60288364], [55.14, 33.73015698702393, 0.52732766], [55.15, 32.416472705900375, 0.60113645], [55.16, 32.61689071701288, 0.4825158], [55.17, 32.78467505343479, 0.55608773], [55.18, 32.838978852375035, 0.6102515], [55.19, 32.837310406599144, 0.65958893], [55.2, 32.788854023087524, 0.5637406], [55.21, 32.70688708753561, 0.52725554], [55.22, 32.62812449144776, 0.6404836], [55.23, 32.62624898657976, 0.73163015], [55.24, 32.665499102925736, 0.6675606], [55.25, 32.620512674928506, 0.6475305], [55.26, 32.623070253104025, 0.65548533], [55.27, 32.67032502175453, 0.6931356], [55.28, 32.68849916123421, 0.6921085], [55.29, 32.694179823392815, 0.7000488], [55.3, 32.70201782135913, 0.69034886], [55.31, 34.59660153065733, 0.6524905], [55.32, 35.68896281051209, 0.60898036], [55.33, 40.80890595598473, 0.600923], [55.34, 42.62047332776814, 0.40360293], [55.35, 47.78519946486735, 0.12095608], [55.36, 50.54311155197446, 0.21605888], [55.37, 50.83428834129588, 0.60505193], [55.38, 51.10031920016796, 0.70238614], [55.39, 51.715301805586805, 0.7858157], [55.4, 52.24410487324108, 0.81745666], [55.41, 52.228416504481146, 0.82098895], [55.42, 51.66735356104417, 0.7421396], [55.43, 51.89393922482219, 0.78517544], [55.44, 52.298326711084485, 0.7685852], [55.45, 52.56749340067103, 0.7683756], [55.46, 52.213981946579594, 0.78801984], [55.47, 51.82669937355282, 0.73937446], [55.48, 51.66372510531151, 0.7398907], [55.49, 51.691027083801806, 0.7450644], [55.5, 52.499661025982874, 0.7323148], [55.51, 52.322174058016984, 0.8123761], [55.52, 52.1723180022359, 0.781076], [55.53, 51.76592124535122, 0.71699387], [55.54, 52.06973314867872, 0.75409025], [55.55, 51.95883335814021, 0.74694973], [55.56, 52.543780150449564, 0.7267781], [55.57, 52.17941447628323, 0.69625795], [55.58, 52.12677544092361, 0.72112346], [55.59, 51.71817155980756, 0.61558235], [55.6, 52.180899830211914, 0.67711174], [55.61, 52.260785482172274, 0.58131284], [55.62, 52.3464224574844, 0.35799462], [55.63, 51.553235264140085, 0.115898065], [55.64, 51.40696944576917, 0.27420565], [55.65, 51.72698664301003, 0.2326094], [55.66, 52.297001009740846, 0.36494908], [55.67, 51.19825490757514, 0.26885414], [55.68, 50.94298691479197, 0.36463273], [55.69, 51.005408689799154, 0.3212116], [55.7, 52.15281697417683, 0.30708644], [55.71, 51.62455878238309, 0.14400691], [55.72, 51.44238637756156, 0.17617181], [55.73, 52.205338113058204, 0.23828495], [55.74, 51.54812398851577, 0.36362422], [55.75, 51.221217894609, 0.40921414], [55.76, 51.317943009900155, 0.5330394], [55.77, 52.31046946934605, 0.57811177], [55.78, 51.91231546072625, 0.57108593], [55.79, 51.85398274919075, 0.52694947], [55.8, 51.310899795592, 0.49286953], [55.81, 52.708160393035335, 0.59952545], [55.82, 52.37029951178903, 0.62596726], [55.83, 52.45030613511744, 0.5955473], [55.84, 51.28148775397318, 0.37189773], [55.85, 51.59280597675596, 0.46779475], [55.86, 52.28405169505477, 0.5580343], [55.87, 52.93245483848725, 0.51228774], [55.88, 53.66598222455189, 0.30725998], [55.89, 53.859983175578364, 0.2311177], [55.9, 54.36368368203614, 0.2205184], [55.91, 54.730163476198314, 0.2341408], [55.92, 54.41397209867716, 0.5079714], [55.93, 54.3983774714827, 0.5956143], [55.94, 53.859212409659484, 0.52671766], [55.95, 53.804582571532706, 0.42981446], [55.96, 54.49045043717986, 0.42373574], [55.97, 54.219520968124186, 0.14501148], [55.98, 54.46621482392827, 0.10198259], [55.99, 54.335568549861804, 0.22386336], [56.0, 54.4133901687724, 0.27024236], [56.01, 53.47401210517536, 0.17239106], [56.02, 54.371175482972085, 0.12672597], [56.03, 54.36415777261227, 0.2310295], [56.04, 54.47129532673662, 0.11405965], [56.05, 55.951722642333465, 0.16999231], [56.06, 57.32453322407451, 0.09362481], [56.07, 57.114334050812076, 0.20413043], [56.08, 56.34047514977912, 0.20822206], [56.09, 56.13829512322247, 0.12914707], [56.1, 56.4615188529969, 0.089948274], [56.11, 55.76096371583532, 0.163973], [56.12, 56.36222054497138, 0.13694277], [56.13, 55.88994061777654, 0.21684936], [56.14, 56.70073634330806, 0.117137775], [56.15, 58.67255715537801, 0.10234435], [56.16, 59.157249125357865, 0.2368428], [56.17, 59.810723043015095, 0.29794297], [56.18, 57.436682317867295, 0.5317192], [56.19, 57.532535618711336, 0.19591323], [56.2, 58.8256599894843, 0.28799674], [56.21, 59.656344863116985, 0.36402723], [56.22, 59.30723760290661, 0.5630604], [56.23, 57.59774988817944, 0.60911256], [56.24, 57.72303402053059, 0.6302387], [56.25, 58.21877700553188, 0.7674348], [56.26, 58.16347750662405, 0.7955845], [56.27, 58.71106475663649, 0.5077193], [56.28, 62.63979122346298, 0.15356612], [56.29, 69.53982937342955, 0.1430047], [56.3, 75.22343108348657, 0.15257621], [56.31, 78.68727669364216, 0.56555915], [56.32, 88.85068512544584, 0.4250054], [56.33, 94.20372234802298, 0.315836], [56.34, 102.62409226502598, 0.14073065], [56.35, 109.38948845683372, 0.119676545], [56.36, 122.89519221206304, 0.13796288], [56.37, 126.68981966553594, 0.116439454], [56.38, 138.56061801903058, 0.23138164], [56.39, 152.63441861955752, 0.17536189], [56.4, 158.6640953166944, 0.37201378], [56.41, 159.3140226463426, 0.46121296], [56.42, 157.08614641204807, 0.27909738], [56.43, 158.9011060766881, 0.18058772], [56.44, 166.95900960471678, 0.26181698], [56.45, 180.1032550115967, 0.19588098], [56.46, 184.39816402930734, 0.1740466], [56.47, 185.1699800979412, 0.09776058], [56.48, 185.8866275451948, 0.32019532], [56.49, 186.01001042680718, 0.32860446], [56.5, 186.41895770196976, 0.2580899], [56.51, 188.23490171530082, 0.17902915], [56.52, 184.52137786764592, 0.3115836], [56.53, 181.98033083888419, 0.48298132], [56.54, 180.68637851050295, 0.7627009], [56.55, 180.27614682998146, 0.7829032], [56.56, 178.82240166242252, 0.7192242], [56.57, 177.89023765179732, 0.5938776], [56.58, 177.82900490349323, 0.637855], [56.59, 178.20589760051305, 0.6965306], [56.6, 178.33455887774352, 0.6827858], [56.61, 177.78013361165569, 0.4817957], [56.62, 179.35383667429235, 0.51087373], [56.63, 180.9003777309995, 0.70588297], [56.64, 181.48850805877703, 0.82119083], [56.65, 181.25206285541304, 0.792175], [56.66, 180.08817180908508, 0.61045754], [56.67, 182.88367501353434, 0.46525633], [56.68, 185.82682557847727, 0.3750149], [56.69, 188.22862473083973, 0.37393913], [56.7, 185.93785186858707, 0.64232], [56.71, 184.82142483093295, 0.711249], [56.72, 185.0050000939021, 0.81409687], [56.73, 185.36843025194312, 0.8260517], [56.74, 185.4121492313613, 0.81949407], [56.75, 185.39361031579315, 0.75430787], [56.76, 185.07450181461263, 0.7760503], [56.77, 184.8989336607508, 0.7675407], [56.78, 185.99403632739748, 0.70498514], [56.79, 186.94585240706886, 0.7439826], [56.8, 186.14077847878235, 0.7246614], [56.81, 186.19596191761002, 0.7420606], [56.82, 185.7273828175251, 0.7040903], [56.83, 185.673484140663, 0.4474722], [56.84, 185.72549934452496, 0.3035064], [56.85, 184.89880017744258, 0.34336802], [56.86, 185.46148092235754, 0.29829964], [56.87, 186.59268918703816, 0.3627574], [56.88, 185.74006972635132, 0.379106], [56.89, 186.38036450752475, 0.27826428], [56.9, 185.43447220223487, 0.3453865], [56.91, 185.39617700279305, 0.32685298], [56.92, 184.97063083304485, 0.35674348], [56.93, 186.0681680918227, 0.39720652], [56.94, 185.41649517809827, 0.38803723], [56.95, 175.1445000694093, 0.5268454], [56.96, 150.6452191593889, 0.4163135], [56.97, 138.8849683411093, 0.48603457], [56.98, 139.07176380893316, 0.38321966], [56.99, 138.65109364872032, 0.2428141], [57.0, 138.83298066403492, 0.34778222], [57.01, 139.10924959617486, 0.24011324], [57.02, 139.28850723328236, 0.31365725], [57.03, 139.3378303707703, 0.3023598], [57.04, 139.25500784618725, 0.44557762], [57.05, 138.5217480544319, 0.35257566], [57.06, 138.074182951379, 0.37984738], [57.07, 136.94008148846757, 0.5136099], [57.08, 136.60691839586056, 0.5279462], [57.09, 136.0363934393325, 0.6339801], [57.1, 136.08281899294278, 0.67071056], [57.11, 136.2731651733127, 0.6564268], [57.12, 136.63210800293695, 0.6604711], [57.13, 137.1709012645858, 0.74726385], [57.14, 137.19632028821826, 0.7724042], [57.15, 138.01183813078705, 0.7694506], [57.16, 137.00504048350612, 0.6696312], [57.17, 135.9268647134795, 0.34940964], [57.18, 129.77851273392614, 0.1984796], [57.19, 120.78801137937998, 0.4319652], [57.2, 106.82217298471619, 0.690887], [57.21, 103.94085796338403, 0.612714], [57.22, 99.2315494644549, 0.4846922], [57.23, 89.24511677942598, 0.23089324], [57.24, 83.16766865889696, 0.11321228], [57.25, 77.20046578899155, 0.30514058], [57.26, 71.97397793974937, 0.36560693], [57.27, 65.54538767410371, 0.17803991], [57.28, 60.402085982134885, 0.23760077], [57.29, 55.44942799975294, 0.5017573], [57.3, 52.60568214355135, 0.2878802], [57.31, 46.59361691612929, 0.10123897], [57.32, 43.96955378826581, 0.2063578], [57.33, 44.14121437198351, 0.2779561], [57.34, 44.149360141571734, 0.2293192], [57.35, 43.9725338455053, 0.38481763], [57.36, 43.96103864411259, 0.32178044], [57.37, 44.03993297986311, 0.1833447], [57.38, 44.07599744481371, 0.26650545], [57.39, 44.500034394306184, 0.35426465], [57.4, 44.04894357457542, 0.20692451], [57.41, 44.09593594755877, 0.13472953], [57.42, 43.64079221107769, 0.23691596], [57.43, 43.795778716521866, 0.2170216], [57.44, 44.28074241472497, 0.26500154], [57.45, 44.41984204031069, 0.49997523], [57.46, 44.294382042386424, 0.47216007], [57.47, 44.23915603424192, 0.45856878], [57.48, 44.05921725343545, 0.5112781], [57.49, 43.80861327680406, 0.41360566], [57.5, 43.72912531989886, 0.5212362], [57.51, 43.81041385686785, 0.38238874], [57.52, 43.78862771497397, 0.41964105], [57.53, 43.7586405337896, 0.20372434], [57.54, 43.66261008181458, 0.34304914], [57.55, 43.41119437453446, 0.44575474], [57.56, 43.336626331227265, 0.28023344], [57.57, 43.71854496987737, 0.3964267], [57.58, 43.748235607722066, 0.40861872], [57.59, 43.5722393741255, 0.55135167], [57.6, 43.734210401283434, 0.59491336], [57.61, 43.782764318938476, 0.6105128], [57.62, 48.49891770836406, 0.50998515], [57.63, 55.963149563339314, 0.5633915], [57.64, 60.921751456901475, 0.6133064], [57.65, 69.35226950436609, 0.5619601], [57.66, 78.46182008818629, 0.5819273], [57.67, 85.86846992217666, 0.41299444], [57.68, 94.98185507265384, 0.12317875], [57.69, 105.07777394819401, 0.37878162], [57.7, 116.0935054902065, 0.4707851], [57.71, 133.03127731435222, 0.6707579], [57.72, 151.7152422532598, 0.76895255], [57.73, 167.42973271853123, 0.7522249], [57.74, 193.5837255633349, 0.75315195], [57.75, 207.8802619304409, 0.7584931], [57.76, 208.00382410458442, 0.6862551], [57.77, 208.162262885087, 0.7341661], [57.78, 208.22370044402538, 0.7686827], [57.79, 208.14634534576842, 0.8173748], [57.8, 208.10657778324048, 0.83178395], [57.81, 207.93638236425363, 0.84370565], [57.82, 207.97020649954345, 0.79642755], [57.83, 207.7381798728588, 0.72217256], [57.84, 207.94700414979985, 0.70111597], [57.85, 208.03420697915186, 0.6961207], [57.86, 207.64167661347997, 0.6168776], [57.87, 207.98304652106862, 0.6812667], [57.88, 208.02412058231283, 0.72638583], [57.89, 207.9838829276551, 0.76636034], [57.9, 208.1763728112065, 0.7623939], [57.91, 208.3386798327929, 0.7702924], [57.92, 208.18875873595744, 0.70775473], [57.93, 207.87217962049522, 0.6454948], [57.94, 207.90950644081374, 0.51191276], [57.95, 189.49657052328627, 0.2806034], [57.96, 170.56675622575625, 0.3958885], [57.97, 156.07032149163683, 0.5464495], [57.98, 155.8510220627273, 0.5190962], [57.99, 153.964211055652, 0.3899576], [58.0, 152.62416133315799, 0.25133836], [58.01, 150.1423919018902, 0.18181746], [58.02, 149.68382238686672, 0.19694036], [58.03, 150.61663933166014, 0.22888008], [58.04, 153.06334488855742, 0.14775561], [58.05, 153.54643417619388, 0.25070632], [58.06, 155.28289669614597, 0.13445963], [58.07, 156.4962675262921, 0.13909842], [58.08, 159.532597717018, 0.32732576], [58.09, 158.23713905745825, 0.42860618], [58.1, 156.61490042059214, 0.53803366], [58.11, 155.87464548070153, 0.5027517], [58.12, 157.67817081990324, 0.14944911], [58.13, 157.46346754910402, 0.31326938], [58.14, 160.19056900312177, 0.11140051], [58.15, 160.5941993264227, 0.32353497], [58.16, 158.89546956489522, 0.14739977], [58.17, 159.33608322224725, 0.07267786], [58.18, 157.4726954185021, 0.08261516], [58.19, 158.59449470522313, 0.24186724], [58.2, 159.89117545415414, 0.1979185], [58.21, 159.40513206441966, 0.3523956], [58.22, 159.4135081428639, 0.4917942], [58.23, 157.71082891650852, 0.5156563], [58.24, 155.86451642911666, 0.48237324], [58.25, 155.6912413227454, 0.5781948], [58.26, 155.8342595443729, 0.57262945], [58.27, 155.43173169258205, 0.600294], [58.28, 155.5615655467211, 0.36591375], [58.29, 152.95717687052533, 0.22132649], [58.3, 151.89524383459383, 0.30680078], [58.31, 150.91448859949222, 0.3361637], [58.32, 150.66201581170188, 0.143597], [58.33, 156.23172640007695, 0.18064366], [58.34, 170.94615676212504, 0.24217306], [58.35, 175.9724746834817, 0.32378438], [58.36, 176.73337705569932, 0.42983374], [58.37, 175.5833487031867, 0.3924246], [58.38, 174.9457058257102, 0.44660753], [58.39, 173.75758541719205, 0.54949605], [58.4, 173.6729046437998, 0.621635], [58.41, 173.81326768666548, 0.6042099], [58.42, 175.94787220537035, 0.6464639], [58.43, 177.41957486302792, 0.6093519], [58.44, 177.68781406371446, 0.5215507], [58.45, 177.34446630282963, 0.50442797], [58.46, 186.81781942083052, 0.32848665], [58.47, 221.10984809304117, 0.30118454], [58.48, 234.89642663324727, 0.3938037], [58.49, 234.22691116561313, 0.6622179], [58.5, 234.11253026618422, 0.7982643], [58.51, 233.7878310202355, 0.86177623], [58.52, 233.40000424312407, 0.8527486], [58.53, 232.81762925428936, 0.87272996], [58.54, 233.46452579103897, 0.8809782], [58.55, 233.4773563055717, 0.8950941], [58.56, 232.4150899091553, 0.860503], [58.57, 232.66946883255358, 0.8580638], [58.58, 233.09627456422697, 0.88556296], [58.59, 233.16732456266595, 0.8789039], [58.6, 233.08417907827038, 0.8502852], [58.61, 232.37704560321777, 0.8265316], [58.62, 232.70512412122002, 0.86184853], [58.63, 233.1022703968088, 0.8468861], [58.64, 233.62194903269864, 0.8501592], [58.65, 232.85483377320006, 0.82782024], [58.66, 232.2386884846132, 0.81006074], [58.67, 232.27635039241378, 0.8115368], [58.68, 232.62547228750168, 0.8057288], [58.69, 232.23465157627427, 0.75960153], [58.7, 231.9519250831112, 0.70088756], [58.71, 233.85864984963064, 0.7100043], [58.72, 233.87947576414703, 0.67473453], [58.73, 233.05135773478455, 0.60431343], [58.74, 231.31247640802545, 0.59846723], [58.75, 232.3488861192746, 0.6613456], [58.76, 233.61767549987977, 0.6432673], [58.77, 232.77555943827454, 0.5152798], [58.78, 230.66073136278905, 0.3648424], [58.79, 232.7985256498459, 0.4367934], [58.8, 233.63583275061995, 0.40193802], [58.81, 231.9530153338739, 0.38851276], [58.82, 210.10706318204308, 0.3874191], [58.83, 182.34575021145866, 0.49052724], [58.84, 164.11491941903168, 0.38442084], [58.85, 143.30087056598694, 0.17482837], [58.86, 132.34655447809882, 0.13339299], [58.87, 112.1332735781509, 0.21380989], [58.88, 97.92523868018196, 0.51206654], [58.89, 88.53734970843735, 0.65250164], [58.9, 87.04054515152217, 0.58989435], [58.91, 86.54438975583898, 0.4406626], [58.92, 87.37004660554435, 0.42569876], [58.93, 87.14292689191655, 0.38824654], [58.94, 86.24773972944423, 0.4110789], [58.95, 86.64090350752254, 0.497105], [58.96, 86.79033720996834, 0.4476985], [58.97, 86.1593707683125, 0.42078382], [58.98, 86.22741343465044, 0.4333845], [58.99, 86.18574775974577, 0.43957072], [59.0, 85.03244062529971, 0.3365629], [59.01, 84.4212668093833, 0.42453137], [59.02, 84.58131626198534, 0.5200522], [59.03, 84.64208314965671, 0.55145884], [59.04, 84.60988241397068, 0.49159932], [59.05, 85.93879587602936, 0.22367275], [59.06, 87.2061339857732, 0.14990719], [59.07, 83.98108466516503, 0.31056687], [59.08, 77.96280618995216, 0.29362544], [59.09, 70.71580531365964, 0.13246687], [59.1, 66.25138068842217, 0.130471], [59.11, 61.28098531678826, 0.15754642], [59.12, 54.65093090724718, 0.23938213], [59.13, 51.77899372363265, 0.15764712], [59.14, 51.757577815843774, 0.27274317], [59.15, 52.1607360255432, 0.42056552], [59.16, 52.70309695519142, 0.63006836], [59.17, 52.5659223629172, 0.5224343], [59.18, 52.489026551779354, 0.47468254], [59.19, 52.007905858933924, 0.48412144], [59.2, 52.05938186350818, 0.5874915], [59.21, 52.42738766478638, 0.4531675], [59.22, 53.116170621842976, 0.55699915], [59.23, 53.448189739974566, 0.4739953], [59.24, 52.80045665973347, 0.28442705], [59.25, 54.947645369271285, 0.07732697], [59.26, 59.53390769029077, 0.13052756], [59.27, 64.12423852878933, 0.20965877], [59.28, 70.66063795322319, 0.20136237], [59.29, 75.54107092583554, 0.11924894], [59.3, 79.78997939359073, 0.14946628], [59.31, 85.54976148877834, 0.100162886], [59.32, 91.53489426358442, 0.15073887], [59.33, 98.13669129498547, 0.14781062], [59.34, 107.74065742774226, 0.24500518], [59.35, 116.00787535204633, 0.31384373], [59.36, 120.9529012913235, 0.19338417], [59.37, 121.18788654115079, 0.18256646], [59.38, 121.4139033856454, 0.29583955], [59.39, 121.0442656234949, 0.3282023], [59.4, 119.10379713333582, 0.21233371], [59.41, 117.26531884806947, 0.21269941], [59.42, 108.38592522205826, 0.24289139], [59.43, 96.01625626187439, 0.27243125], [59.44, 85.43275568710243, 0.4101737], [59.45, 76.37021249293488, 0.38517538], [59.46, 70.38313905544611, 0.24111556], [59.47, 61.07194906038398, 0.15277901], [59.48, 56.39750071842825, 0.17345469], [59.49, 55.57478006340148, 0.12695064], [59.5, 55.578565055991646, 0.23764542], [59.51, 54.457275983589064, 0.19230676], [59.52, 54.5589200763164, 0.34730285], [59.53, 53.91976920752931, 0.27807924], [59.54, 54.65639587806283, 0.18397176], [59.55, 53.80608938294778, 0.055737145], [59.56, 55.47081025660968, 0.084976256], [59.57, 53.3826378330981, 0.12739705], [59.58, 53.698946005013475, 0.17991672], [59.59, 53.70266730507764, 0.115742], [59.6, 53.88665996761773, 0.19586077], [59.61, 54.38302696110112, 0.14523035], [59.62, 54.749899586774696, 0.24919052], [59.63, 55.03345612513945, 0.15031344], [59.64, 55.08020418238595, 0.124886215], [59.65, 55.31515027822789, 0.12673983], [59.66, 55.07460528433772, 0.09854133], [59.67, 54.64531652573616, 0.057886265], [59.68, 54.94979828936752, 0.24085955], [59.69, 54.862070899346875, 0.15387486], [59.7, 55.146779154294244, 0.09353325], [59.71, 55.48000349127371, 0.094771825], [59.72, 55.24262293270107, 0.13435847], [59.73, 55.19271976009547, 0.29697394], [59.74, 54.94305362292855, 0.29633364], [59.75, 54.66450492167518, 0.1797769], [59.76, 53.84714772478739, 0.1071144], [59.77, 53.49642755975139, 0.10963492], [59.78, 55.07528167783747, 0.09782923], [59.79, 55.952787928691876, 0.13120428], [59.8, 56.22477296537141, 0.06626467], [59.81, 57.18420169001074, 0.08148624], [59.82, 58.62189892845349, 0.15520015], [59.83, 58.69411012777549, 0.2225139], [59.84, 56.988436374774444, 0.24177517], [59.85, 56.970000276316604, 0.13353479], [59.86, 57.476802409242126, 0.18780246], [59.87, 58.20060352781248, 0.24868326], [59.88, 58.84322509341981, 0.41935], [59.89, 58.75116735303838, 0.58159226], [59.9, 58.34555849958811, 0.4072034], [59.91, 57.472921444921845, 0.29327625], [59.92, 58.09753059598441, 0.28780463], [59.93, 58.09036680928643, 0.29071802], [59.94, 58.24679479573482, 0.37519935], [59.95, 58.744721088218974, 0.40012124], [59.96, 58.239570655118236, 0.6043202], [59.97, 58.31002928345331, 0.64223564], [59.98, 58.0791273983224, 0.70172596], [59.99, 58.40148109797302, 0.71008074], [60.0, 58.586784346860384, 0.78701377], [60.01, 58.46676638884144, 0.8132157], [60.02, 58.831136525701694, 0.40441525], [60.03, 64.39824461827006, 0.120818414], [60.04, 71.9662034348262, 0.093786195], [60.05, 78.72711419681765, 0.1664114], [60.06, 88.39664869278623, 0.7283863], [60.07, 97.30097051015895, 0.49985117], [60.08, 107.9709230231928, 0.58079106], [60.09, 115.01277731234369, 0.443057], [60.1, 127.52701442135998, 0.20786078], [60.11, 144.2843973334385, 0.22928405], [60.12, 154.12994481762289, 0.16881256], [60.13, 158.18494390999257, 0.52248466], [60.14, 158.7942304804241, 0.6034532], [60.15, 158.23661845128436, 0.56875217], [60.16, 157.59751880600538, 0.51745754], [60.17, 154.41783470443147, 0.51020914], [60.18, 155.09065831157497, 0.3245492], [60.19, 155.4658178695597, 0.32184702], [60.2, 158.2010898977283, 0.4156863], [60.21, 160.96929220774524, 0.55658555], [60.22, 162.1043491640255, 0.5615072], [60.23, 164.19146381929292, 0.620915], [60.24, 167.27215150982065, 0.45430502], [60.25, 171.81976178733845, 0.43261066], [60.26, 176.88751262147144, 0.5602715], [60.27, 177.30355205663642, 0.7370729], [60.28, 176.86047803918302, 0.7628481], [60.29, 175.35730428833813, 0.7780456], [60.3, 173.99637346743157, 0.7597942], [60.31, 173.4766449944458, 0.8222437], [60.32, 173.47301964970964, 0.760312], [60.33, 174.29897260968178, 0.78743297], [60.34, 174.85500580886853, 0.7821265], [60.35, 174.5555082645743, 0.80139804], [60.36, 175.10742781841128, 0.73017293], [60.37, 176.30098582315955, 0.66766185], [60.38, 178.64150464560402, 0.6588111], [60.39, 178.48019408130597, 0.65305334], [60.4, 177.25516225735205, 0.55787504], [60.41, 174.03369651473503, 0.46998942], [60.42, 170.9284014655941, 0.48310062], [60.43, 169.4976353549618, 0.34353432], [60.44, 168.70275386366728, 0.19295458], [60.45, 158.2844158998822, 0.25612712], [60.46, 175.39123438567123, 0.15300807], [60.47, 174.5306781114003, 0.17986196], [60.48, 168.89099653767644, 0.37064162], [60.49, 171.7915643371251, 0.28802896], [60.5, 173.19647459553556, 0.3031148], [60.51, 173.1487717114841, 0.29473078], [60.52, 170.8380634375682, 0.3203478], [60.53, 169.90838534146476, 0.27413982], [60.54, 161.3961313069696, 0.41271704], [60.55, 153.32904926033893, 0.63796693], [60.56, 138.68307391286382, 0.7050966], [60.57, 135.94598238005744, 0.5636767], [60.58, 136.91521767362352, 0.6656858], [60.59, 137.66123933973884, 0.6814372], [60.6, 137.3350914614411, 0.68448436], [60.61, 135.52723458771698, 0.6868715], [60.62, 133.68551924473547, 0.5072961], [60.63, 131.09875820128138, 0.37625504], [60.64, 132.30414683291653, 0.37574306], [60.65, 134.1900713847922, 0.6318584], [60.66, 135.22738072427626, 0.6423797], [60.67, 136.40734988627932, 0.5642069], [60.68, 137.41200224801275, 0.7688118], [60.69, 138.2023898391841, 0.79394335], [60.7, 138.52478904333458, 0.78598547], [60.71, 138.76769810642813, 0.81318814], [60.72, 139.15448138118057, 0.8563661], [60.73, 139.6561638553161, 0.8485135], [60.74, 139.77549565929988, 0.7286768], [60.75, 140.99552830091753, 0.46083388], [60.76, 144.72926619282032, 0.41694555], [60.77, 146.63547192402373, 0.2956401], [60.78, 147.85492263699453, 0.255991], [60.79, 137.85163548001765, 0.17600566], [60.8, 143.37542744755348, 0.26973382], [60.81, 142.1181162923318, 0.5093094], [60.82, 140.73283446500147, 0.74616945], [60.83, 139.6452136078115, 0.82344145], [60.84, 138.39744143261007, 0.790184], [60.85, 137.36192191264158, 0.7140832], [60.86, 135.47153462849363, 0.57798684], [60.87, 132.93891354846136, 0.4720818], [60.88, 131.57647220839007, 0.4640078], [60.89, 140.87277628367423, 0.2335566], [60.9, 141.80135933015026, 0.39294872], [60.91, 141.19281803055006, 0.37992293], [60.92, 140.6962050871203, 0.42184654], [60.93, 138.89965063537085, 0.46830136], [60.94, 137.1479063441255, 0.56109786], [60.95, 136.17905433817083, 0.51670676], [60.96, 135.41673699890353, 0.30930814], [60.97, 140.382712884999, 0.29130584], [60.98, 140.46717862497277, 0.21918756], [60.99, 139.55882578004918, 0.104282685], [61.0, 139.1234453820497, 0.10989808], [61.01, 137.12336144163504, 0.22999738], [61.02, 138.26502533817995, 0.42634466], [61.03, 139.59615422588595, 0.4367375], [61.04, 140.90533217862938, 0.60756147], [61.05, 142.3208338493898, 0.23384403], [61.06, 144.74149660974004, 0.44000342], [61.07, 147.61589721587282, 0.3102621], [61.08, 149.68268606719946, 0.18477242], [61.09, 150.15196716239547, 0.23032409], [61.1, 152.8531222966614, 0.16834515], [61.11, 156.19947329082856, 0.13814104], [61.12, 157.23567340870264, 0.2561812], [61.13, 160.04089862471022, 0.54608685], [61.14, 164.40354966062512, 0.4694323], [61.15, 167.58955539044172, 0.55663395], [61.16, 168.46646049468916, 0.36555713], [61.17, 171.58628756519846, 0.27836695], [61.18, 172.69124670257906, 0.18928315], [61.19, 170.64491434352846, 0.17141329], [61.2, 169.20488781461665, 0.47084865], [61.21, 169.03401623485144, 0.5287591], [61.22, 170.31305479033645, 0.59442735], [61.23, 171.9011890186094, 0.61111146], [61.24, 175.45823347354485, 0.691473], [61.25, 176.99393713444215, 0.7697866], [61.26, 179.1598026807253, 0.7742078], [61.27, 182.4215283282119, 0.72147745], [61.28, 183.41035272522032, 0.7159879], [61.29, 183.60402261945336, 0.54655474], [61.3, 182.47185977147933, 0.38156316], [61.31, 175.31727496203135, 0.16269977], [61.32, 169.70128683324492, 0.0942835], [61.33, 146.50080733393725, 0.13306175], [61.34, 134.11088238659087, 0.19714579], [61.35, 115.71678820930182, 0.42139992], [61.36, 115.73970496792515, 0.6225631], [61.37, 115.43480824037447, 0.5133569], [61.38, 115.48953876923875, 0.48886007], [61.39, 121.2914557282614, 0.18985234], [61.4, 134.68631343072326, 0.22570214], [61.41, 139.67703439084164, 0.15516666], [61.42, 139.2021452881224, 0.12994935], [61.43, 133.36439677303275, 0.15446982], [61.44, 126.00978500585995, 0.19941328], [61.45, 118.56703676352646, 0.16103214], [61.46, 115.26908427221551, 0.20573065], [61.47, 115.81587586559515, 0.2976294], [61.48, 116.25683788933807, 0.32670844], [61.49, 125.90514048191199, 0.33039895], [61.5, 139.2037182909025, 0.32624638], [61.51, 140.09477977377634, 0.33016664], [61.52, 137.65776528339012, 0.3958236], [61.53, 137.44280283482112, 0.5642336], [61.54, 138.3296587272448, 0.63563484], [61.55, 138.81148169465607, 0.71503407], [61.56, 138.5498476422007, 0.6990138], [61.57, 138.75425635122465, 0.7615595], [61.58, 139.03839298275471, 0.73280275], [61.59, 139.30926886027953, 0.73456436], [61.6, 138.85337784900145, 0.77688974], [61.61, 138.27957259636895, 0.7257098], [61.62, 136.8795497874412, 0.5937483], [61.63, 136.75866387094493, 0.47931123], [61.64, 130.44701301906525, 0.41811422], [61.65, 119.00814964924386, 0.45720083], [61.66, 108.38447713766331, 0.46157402], [61.67, 99.94695228515845, 0.64799213], [61.68, 92.56002845221008, 0.63039196], [61.69, 83.05364707796137, 0.7492433], [61.7, 78.10914442493217, 0.66242236], [61.71, 71.18794441115455, 0.46532288], [61.72, 64.1167807411353, 0.3307586], [61.73, 58.58978739618646, 0.3215731], [61.74, 52.3982329239356, 0.26075682], [61.75, 48.44586504966469, 0.19085765], [61.76, 44.3506026818097, 0.20586233], [61.77, 39.664324231092166, 0.17478906], [61.78, 36.82706867589729, 0.20670176], [61.79, 36.86221431607534, 0.31414017], [61.8, 38.44352733680727, 0.32772025], [61.81, 40.769156495589066, 0.1611537], [61.82, 45.14943285523576, 0.09517439], [61.83, 46.797422495792425, 0.62130857], [61.84, 47.07767631762376, 0.631453], [61.85, 43.54576637268689, 0.39472172], [61.86, 37.95900775746091, 0.15029997], [61.87, 37.9386573818243, 0.38514924], [61.88, 37.04272558458921, 0.10350918], [61.89, 41.31843851207326, 0.12400173], [61.9, 41.990874994779205, 0.1378155], [61.91, 43.252562176235315, 0.1433777], [61.92, 44.09913543243644, 0.26569107], [61.93, 44.04654331768411, 0.7066575], [61.94, 44.095918442493286, 0.609063], [61.95, 44.77619272390541, 0.5544582], [61.96, 45.215097971102374, 0.5116586], [61.97, 45.3625242645803, 0.6485845], [61.98, 45.40025784889579, 0.6999569], [61.99, 45.602502513893086, 0.6918383], [62.0, 45.58590871910372, 0.6692895], [62.01, 46.01035711578325, 0.65256214], [62.02, 46.17243960577737, 0.605582], [62.03, 46.17123515955531, 0.6729695], [62.04, 45.93603981519191, 0.6059413], [62.05, 46.2504043808526, 0.72996134], [62.06, 46.4549255798255, 0.7947056], [62.07, 46.410711577044594, 0.7101948], [62.08, 46.375872696602556, 0.7550222], [62.09, 46.20438037392181, 0.62025076], [62.1, 45.949441618030704, 0.59598684], [62.11, 46.43312528827949, 0.6963716], [62.12, 46.52801914042627, 0.6990767], [62.13, 46.732050632531156, 0.6560838], [62.14, 46.278182776152015, 0.6302996], [62.15, 46.46405447415668, 0.6677653], [62.16, 46.146494025761626, 0.67805934], [62.17, 46.16162892041301, 0.61391014], [62.18, 45.58119465873213, 0.53043884], [62.19, 46.12529324181499, 0.71347314], [62.2, 46.17678953054916, 0.61369395], [62.21, 46.49403021602605, 0.6801207], [62.22, 46.50086624878693, 0.63906324], [62.23, 46.86244803744128, 0.69321364], [62.24, 46.696646726731146, 0.60804343], [62.25, 46.627893331400294, 0.77280223], [62.26, 46.32087147125294, 0.7020826], [62.27, 46.20507816945607, 0.727584], [62.28, 46.40687582051519, 0.72510797], [62.29, 46.17529317548649, 0.7293762], [62.3, 46.2944666052402, 0.7294391], [62.31, 46.38511670685713, 0.7722395], [62.32, 46.55180980142559, 0.7282927], [62.33, 46.2698582553519, 0.7396023], [62.34, 46.88262265647416, 0.7915827], [62.35, 46.64812656075104, 0.7318768], [62.36, 46.51052020847766, 0.78702706], [62.37, 45.81006164322833, 0.7272101], [62.38, 46.13041413334605, 0.7460899], [62.39, 45.852681830584494, 0.7397413], [62.4, 45.39305078339196, 0.55074793], [62.41, 46.00409701802676, 0.6681346], [62.42, 46.188502866046676, 0.69332814], [62.43, 46.2548763893149, 0.72797483], [62.44, 46.15520363418384, 0.72076255], [62.45, 46.018887696642985, 0.67313576], [62.46, 45.865625798882675, 0.6383823], [62.47, 45.96012837067537, 0.67230445], [62.48, 45.64467578150125, 0.37023222], [62.49, 46.07277183495423, 0.58001983], [62.5, 45.9590849257454, 0.6046268], [62.51, 46.59706852104465, 0.71829593], [62.52, 46.76067262303465, 0.7171788], [62.53, 46.67846353501513, 0.77088195], [62.54, 46.6238731259293, 0.76296985], [62.55, 46.47554494194604, 0.82914644], [62.56, 46.235982323460895, 0.7716717], [62.57, 46.17291313985461, 0.794874], [62.58, 46.282953360997006, 0.81255335], [62.59, 46.27842022669724, 0.81616473], [62.6, 46.56226093449425, 0.82285297], [62.61, 46.6489100479157, 0.7516797], [62.62, 47.123559209660755, 0.74406284], [62.63, 46.718687328196744, 0.6454679], [62.64, 46.7934643589692, 0.6919389], [62.65, 46.12767792919377, 0.5817595], [62.66, 46.10541915051777, 0.5947272], [62.67, 45.84712454068939, 0.59753513], [62.68, 46.128986106392915, 0.6447962], [62.69, 46.56391243497799, 0.71652293], [62.7, 46.83530549939598, 0.76709294], [62.71, 47.16053076050226, 0.7149814], [62.72, 47.05393700614442, 0.72226995], [62.73, 46.466315829084394, 0.69004124], [62.74, 45.71489151083754, 0.641735], [62.75, 46.94728118306914, 0.65953463], [62.76, 46.75735224574006, 0.48523816], [62.77, 46.42375531334718, 0.33084124], [62.78, 44.99278859565649, 0.35598427], [62.79, 46.976331924283926, 0.6486603], [62.8, 47.539579453697094, 0.7153192], [62.81, 47.36365942805736, 0.648071], [62.82, 46.58839488656869, 0.50093395], [62.83, 45.624599531261836, 0.40721717], [62.84, 46.482298703031574, 0.25823656], [62.85, 46.56026161134612, 0.37250265], [62.86, 46.52427812447823, 0.42511114], [62.87, 45.9208333640552, 0.33757052], [62.88, 45.128683297998535, 0.22538097], [62.89, 44.87115277498572, 0.18778501], [62.9, 47.02439545893159, 0.22424771], [62.91, 46.3385478784615, 0.20002967], [62.92, 45.814882305099324, 0.30908114], [62.93, 45.86843210847189, 0.24653503], [62.94, 44.03994396557394, 0.11797933], [62.95, 45.54804098134856, 0.16153093], [62.96, 46.018923658775876, 0.24614798], [62.97, 45.689516993040236, 0.36658263], [62.98, 45.863555978895086, 0.49127558], [62.99, 45.851530112999804, 0.542532], [63.0, 45.851344213755496, 0.553236], [63.01, 46.68034259964504, 0.557237], [63.02, 46.55978257796646, 0.56069076], [63.03, 46.48935443625806, 0.58028686], [63.04, 45.90738207538279, 0.5504003], [63.05, 46.078932677378354, 0.62227166], [63.06, 46.07777975997014, 0.56021476], [63.07, 45.61483609184286, 0.62021005], [63.08, 45.56939749802295, 0.554007], [63.09, 45.56875776268805, 0.31987095], [63.1, 45.954623433071234, 0.47604796], [63.11, 46.33726923588033, 0.5261113], [63.12, 46.92503454118099, 0.3534078], [63.13, 47.10170900306168, 0.24456644], [63.14, 47.11511031216462, 0.1892372], [63.15, 46.355635157050045, 0.26714745], [63.16, 46.52183175273742, 0.22070119], [63.17, 46.638606084471384, 0.17173484], [63.18, 46.94793250441944, 0.19896768], [63.19, 47.3483090451974, 0.083731376], [63.2, 47.03396259537521, 0.20886217], [63.21, 46.448845901269635, 0.31170523], [63.22, 46.29680526834484, 0.63650054], [63.23, 45.816295018389084, 0.6222612], [63.24, 46.201787832069414, 0.6999488], [63.25, 46.334724167740006, 0.635651], [63.26, 46.40970422026838, 0.65885097], [63.27, 46.32390179125862, 0.6335327], [63.28, 46.283881296194906, 0.6827376], [63.29, 46.55822056105163, 0.661103], [63.3, 46.21765639329939, 0.6566257], [63.31, 46.42958298507392, 0.6791013], [63.32, 46.50134321294856, 0.58060646], [63.33, 46.11600590093871, 0.3563465], [63.34, 45.36334149948188, 0.34979117], [63.35, 45.75189707279986, 0.39457235], [63.36, 45.924076918493796, 0.43344146], [63.37, 46.112506679812924, 0.5493445], [63.38, 45.785264174488375, 0.5400513], [63.39, 45.63634854832387, 0.3799495], [63.4, 45.00161476432267, 0.29588494], [63.41, 44.87321415587956, 0.24825665], [63.42, 45.56140008433058, 0.20780712], [63.43, 45.42130412406905, 0.29868826], [63.44, 45.93058295236801, 0.35439357], [63.45, 45.63789314876996, 0.43011117], [63.46, 45.962947854234706, 0.50261194], [63.47, 45.915221014180496, 0.61521673], [63.48, 46.238499199938694, 0.6613365], [63.49, 46.16440849272563, 0.67868775], [63.5, 46.21411246512519, 0.7169182], [63.51, 46.28284877732558, 0.7200764], [63.52, 46.317819326715224, 0.7541186], [63.53, 46.4265716558331, 0.7107601], [63.54, 46.42947526979431, 0.7309601], [63.55, 46.43789179667911, 0.7726498], [63.56, 46.1356018089504, 0.67950636], [63.57, 46.62775700158136, 0.642473], [63.58, 46.57835644608184, 0.410729], [63.59, 46.662069045986584, 0.28321344], [63.6, 47.0447933021132, 0.18205674], [63.61, 46.984898747123374, 0.20529456], [63.62, 47.071431725740894, 0.21157789], [63.63, 47.42512740910355, 0.42259163], [63.64, 47.21150485210672, 0.34967795], [63.65, 48.09293039973134, 0.2284076], [63.66, 47.89320887136867, 0.39475763], [63.67, 47.822216978274525, 0.5815903], [63.68, 47.407590328275894, 0.6637008], [63.69, 46.805783136318375, 0.50612736], [63.7, 47.28829853801271, 0.659643], [63.71, 47.06112295005299, 0.53718674], [63.72, 46.601723505733624, 0.61811924], [63.73, 46.77277741216506, 0.44761723], [63.74, 46.70301516382924, 0.62726986], [63.75, 46.51892949843116, 0.6401729], [63.76, 46.404878519348, 0.63001806], [63.77, 46.390438126700886, 0.1178144], [63.78, 52.52686273852608, 0.1502281], [63.79, 56.14752244805036, 0.31020564], [63.8, 62.18211751996682, 0.27566302], [63.81, 72.52405891962563, 0.43774897], [63.82, 77.4414069616529, 0.4859391], [63.83, 85.13578122569311, 0.32672113], [63.84, 98.43696220560355, 0.2487911], [63.85, 107.03413994064177, 0.12757005], [63.86, 124.1050890571296, 0.24509758], [63.87, 141.58329531407097, 0.18604495], [63.88, 152.82318395835813, 0.24679296], [63.89, 155.4171156394929, 0.27174896], [63.9, 157.78158315797276, 0.1060406], [63.91, 161.9374718055026, 0.05577616], [63.92, 152.18740725789922, 0.1078807], [63.93, 153.80198789886225, 0.095808774], [63.94, 156.62650758173478, 0.26301652], [63.95, 158.05564972323023, 0.36002856], [63.96, 161.12226495488989, 0.11077884], [63.97, 165.40878685958089, 0.22237663], [63.98, 170.68000314407936, 0.20274365], [63.99, 171.25723098123063, 0.17852598], [64.0, 173.51033311474976, 0.35553166], [64.01, 173.2553535118484, 0.48792464], [64.02, 175.14171279614956, 0.5197539], [64.03, 174.80346836565954, 0.5581108], [64.04, 173.9944928655174, 0.6755952], [64.05, 173.37220014360878, 0.71575385], [64.06, 173.48579246637811, 0.76420736], [64.07, 173.48915274835943, 0.73108196], [64.08, 175.2008266687322, 0.75422066], [64.09, 177.25796859741723, 0.7401242], [64.1, 177.4148079480305, 0.7055958], [64.11, 175.2865096633193, 0.49369714], [64.12, 169.96969673720173, 0.45454597], [64.13, 170.25233596390112, 0.20803812], [64.14, 173.59043507747475, 0.28418526], [64.15, 173.05830778305688, 0.4721602], [64.16, 173.322259517951, 0.29041308], [64.17, 175.8910003678918, 0.28958878], [64.18, 177.402732093089, 0.32026199], [64.19, 176.35691048491648, 0.319547], [64.2, 175.91786038672808, 0.43810594], [64.21, 175.11461537666037, 0.4746354], [64.22, 175.46743277439134, 0.6139265], [64.23, 175.34179786741862, 0.6309262], [64.24, 175.54081409456458, 0.582337], [64.25, 175.06281490355437, 0.5245854], [64.26, 165.65243310288332, 0.17985782], [64.27, 146.27801953316006, 0.36042204], [64.28, 135.8856646393369, 0.50594884], [64.29, 135.15592663873184, 0.68338037], [64.3, 134.14134227750236, 0.7807346], [64.31, 132.84070314531667, 0.8098328], [64.32, 132.2501799133515, 0.8091694], [64.33, 131.97288174946613, 0.8118213], [64.34, 131.88107989887757, 0.85382515], [64.35, 132.02222238825863, 0.6721501], [64.36, 132.2453725746348, 0.7262313], [64.37, 132.8784612665472, 0.6789517], [64.38, 134.48015134445873, 0.6952887], [64.39, 136.2056579859026, 0.71214175], [64.4, 138.35135971245242, 0.80892986], [64.41, 139.135742231089, 0.88753825], [64.42, 139.44117104736864, 0.9039534], [64.43, 139.30171438626226, 0.91157615], [64.44, 138.71730317572076, 0.91469765], [64.45, 137.99053598419545, 0.8957311], [64.46, 137.33251066003623, 0.86972874], [64.47, 136.4834828498368, 0.76598567], [64.48, 134.50634337486173, 0.72877187], [64.49, 134.14983856887338, 0.63571686], [64.5, 135.26167211199706, 0.44316384], [64.51, 137.23768432886789, 0.69222206], [64.52, 137.55498403522807, 0.75124985], [64.53, 137.51121911304887, 0.77596253], [64.54, 138.2272964801933, 0.8179055], [64.55, 139.48861771641273, 0.8509177], [64.56, 139.48676861757585, 0.83308035], [64.57, 138.89904545558653, 0.73466396], [64.58, 138.7061721533667, 0.6192731], [64.59, 154.0811679977435, 0.28448087], [64.6, 175.33637929700302, 0.511811], [64.61, 174.57646938123582, 0.6488932], [64.62, 175.59682883709542, 0.73537725], [64.63, 175.65665873562224, 0.7692885], [64.64, 175.89385769585235, 0.74879664], [64.65, 175.76421065300303, 0.75199693], [64.66, 175.99037346824505, 0.72191954], [64.67, 175.88377152638674, 0.7034629], [64.68, 175.37923036070524, 0.7676949], [64.69, 175.32969662072446, 0.7536184], [64.7, 173.4695284485453, 0.27479392], [64.71, 173.00813222268903, 0.44808373], [64.72, 172.86216781052926, 0.11265644], [64.73, 172.36118826278783, 0.062086288], [64.74, 167.17368865082136, 0.103507474], [64.75, 161.23341182946444, 0.16561832], [64.76, 157.2867327210283, 0.48029023], [64.77, 150.70065655015782, 0.61357063], [64.78, 146.12148403047985, 0.3267031], [64.79, 142.0063567429063, 0.33547747], [64.8, 139.6351515165754, 0.19982706], [64.81, 137.73442377461325, 0.27211398], [64.82, 137.6859899340854, 0.527371], [64.83, 135.93879722558424, 0.4391459], [64.84, 137.2321441747024, 0.37725452], [64.85, 137.64897897506592, 0.47346017], [64.86, 138.70820273851322, 0.50787145], [64.87, 138.94431127216882, 0.29422942], [64.88, 137.61619416905933, 0.49621737], [64.89, 137.96080049270034, 0.107632674], [64.9, 137.10980332821867, 0.29614383], [64.91, 137.3255246231358, 0.12887558], [64.92, 142.06524448025073, 0.13467027], [64.93, 145.52716703696808, 0.06747043], [64.94, 151.1220270611392, 0.10817823], [64.95, 150.17485446511503, 0.17112684], [64.96, 150.75649856877465, 0.17514816], [64.97, 158.0857620187386, 0.16547045], [64.98, 167.58925910646872, 0.1773131], [64.99, 176.34684069059873, 0.29923406], [65.0, 177.7883635341862, 0.37841007], [65.01, 181.25514412626828, 0.43416497], [65.02, 177.99698298674656, 0.2733522], [65.03, 175.82957298380978, 0.2492242], [65.04, 176.90343857810288, 0.55370057], [65.05, 176.75405525327093, 0.6285044], [65.06, 175.7781781462835, 0.68617547], [65.07, 174.82114325451025, 0.66275907], [65.08, 174.96616004402412, 0.6421999], [65.09, 175.9216411818784, 0.5923537], [65.1, 176.2568931889171, 0.64676654], [65.11, 176.39497626974247, 0.67715913], [65.12, 176.3758355681349, 0.71996087], [65.13, 176.45095435305436, 0.70880526], [65.14, 175.40222541227163, 0.6959599], [65.15, 175.82859290476716, 0.4904412], [65.16, 176.01770649101766, 0.4792588], [65.17, 175.4460971945518, 0.61393726], [65.18, 175.71278589286376, 0.7039632], [65.19, 176.38752729440867, 0.69056135], [65.2, 175.43305792179038, 0.57557315], [65.21, 173.70903892534795, 0.2406947], [65.22, 153.64932578571296, 0.37450862], [65.23, 141.26117334183994, 0.49915084], [65.24, 140.30871608232945, 0.634124], [65.25, 139.17304030183845, 0.7863697], [65.26, 139.23212724507633, 0.81219256], [65.27, 138.9632518061617, 0.81019354], [65.28, 138.02317723666894, 0.7652087], [65.29, 138.0668029994999, 0.7906483], [65.3, 137.74165669373505, 0.7648947], [65.31, 137.8456867639532, 0.7816438], [65.32, 138.06189856451485, 0.74919826], [65.33, 138.02167611048947, 0.76114637], [65.34, 138.42525236295896, 0.8192468], [65.35, 139.15161693559716, 0.8288358], [65.36, 139.19873736896858, 0.834536], [65.37, 139.2569506138332, 0.73676294], [65.38, 139.3176426743604, 0.6100098], [65.39, 139.05488315292763, 0.45132422], [65.4, 158.54052938738232, 0.328469], [65.41, 176.18553306332612, 0.26950428], [65.42, 206.14451534171408, 0.2532162], [65.43, 226.17622007472784, 0.29029134], [65.44, 230.45719740593202, 0.29197556], [65.45, 233.43422572117888, 0.4381587], [65.46, 236.23561045943532, 0.45362526], [65.47, 238.69500859000817, 0.4569031], [65.48, 238.84792664292743, 0.49576274], [65.49, 236.58461630100715, 0.45435593], [65.5, 232.94364079881632, 0.51527905], [65.51, 230.61122033537546, 0.6139268], [65.52, 228.9917942621134, 0.6977237], [65.53, 228.31194016585812, 0.6750628], [65.54, 230.804877405514, 0.57839227], [65.55, 233.26289402627677, 0.6267397], [65.56, 235.29784299282773, 0.555136], [65.57, 235.8932264378186, 0.3824135], [65.58, 235.8483973434075, 0.4713374], [65.59, 233.48783492816892, 0.3873499], [65.6, 228.79054680533415, 0.5494843], [65.61, 227.04634494951873, 0.6026697], [65.62, 222.07671673490555, 0.6157429], [65.63, 220.98064452235636, 0.62450945], [65.64, 220.41707972170346, 0.4367597], [65.65, 217.92864064095156, 0.24812192], [65.66, 195.04092706960168, 0.033298567], [65.67, 174.83991048135914, 0.4698215], [65.68, 150.21203749799253, 0.6961923], [65.69, 135.40889823151213, 0.6346828], [65.7, 125.22290664879787, 0.59661555], [65.71, 110.85131237941928, 0.6690502], [65.72, 94.02070722476907, 0.68831134], [65.73, 89.39477993982378, 0.70386744], [65.74, 75.66398430610579, 0.628649], [65.75, 68.04763502424753, 0.60041815], [65.76, 59.44247645425137, 0.7305694], [65.77, 50.53769785769062, 0.7714507], [65.78, 46.03635315476323, 0.6861647], [65.79, 45.71059972614877, 0.6496355], [65.8, 45.7796432061749, 0.66914195], [65.81, 46.02849195230245, 0.6928871], [65.82, 45.67927638065501, 0.5451246], [65.83, 45.95903515525568, 0.5576813], [65.84, 45.86729181434041, 0.5857329], [65.85, 46.15489695761365, 0.60710937], [65.86, 46.22656512629405, 0.6358209], [65.87, 46.50947305531507, 0.7119715], [65.88, 46.54604439379127, 0.6418664], [65.89, 46.89053220291101, 0.67861193], [65.9, 47.55743612791374, 0.66770697], [65.91, 47.25110551975425, 0.6501626], [65.92, 47.11419574248752, 0.5515124], [65.93, 46.83725107125953, 0.6507453], [65.94, 46.94504294833243, 0.6504797], [65.95, 46.71428215858738, 0.6520564], [65.96, 46.621634646437435, 0.7289883], [65.97, 46.23608759905751, 0.6070969], [65.98, 46.476862868707094, 0.7264523], [65.99, 46.35990771753788, 0.69964176], [66.0, 46.41223999169668, 0.71456885], [66.01, 46.588344776478394, 0.7227633], [66.02, 46.393983522390194, 0.71948564], [66.03, 46.36535752173945, 0.6956515], [66.04, 46.155639958020124, 0.7192422], [66.05, 45.97233838042706, 0.6773945], [66.06, 45.81856378367867, 0.6384331], [66.07, 45.83324700881127, 0.63269514], [66.08, 46.13443065645378, 0.5337616], [66.09, 46.679604313269635, 0.5751889], [66.1, 46.721478202792895, 0.48008406], [66.11, 46.56986259141692, 0.67310923], [66.12, 45.61538739017726, 0.65042704], [66.13, 46.10931133043052, 0.69984084], [66.14, 46.288711917177004, 0.70493275], [66.15, 46.405405429136685, 0.7099573], [66.16, 46.47830077889934, 0.720892], [66.17, 46.47331980083117, 0.7647088], [66.18, 46.2720436819406, 0.7323398], [66.19, 46.48278192916542, 0.77873045], [66.2, 46.37660414266616, 0.8005461], [66.21, 46.32658343852057, 0.7997055], [66.22, 46.31278626418815, 0.81798303], [66.23, 46.24558842094813, 0.75932604], [66.24, 46.30322131038934, 0.7870288], [66.25, 46.21217989726286, 0.734956], [66.26, 46.33504805992591, 0.74274427], [66.27, 46.18625965065383, 0.74211925], [66.28, 46.20824999316493, 0.7229328], [66.29, 46.13746650313352, 0.6822158], [66.3, 46.17174225967897, 0.7610488], [66.31, 46.21725534399215, 0.7800024], [66.32, 46.15296562708545, 0.76480544], [66.33, 46.368928746328024, 0.81962025], [66.34, 46.320396015021494, 0.8131909], [66.35, 46.648145580927874, 0.81560475], [66.36, 46.57473699944155, 0.7894132], [66.37, 46.88795084867116, 0.7933984], [66.38, 46.94718312371453, 0.79119223], [66.39, 46.87127947693683, 0.78328574], [66.4, 46.64471318004655, 0.724023], [66.41, 46.49603451252376, 0.756899], [66.42, 46.14673736149197, 0.6171593], [66.43, 45.817712279215144, 0.56520283], [66.44, 46.177103445517304, 0.44073308], [66.45, 46.570292376438175, 0.5546315], [66.46, 46.40542401104191, 0.54366094], [66.47, 46.5190082450605, 0.60464674], [66.48, 46.574179182577566, 0.7082493], [66.49, 46.538708232777154, 0.7263789], [66.5, 46.76030194684134, 0.79596776], [66.51, 46.55509980769943, 0.76313984], [66.52, 46.769136921423495, 0.7871981], [66.53, 46.61078369863645, 0.7568442], [66.54, 46.72726689111801, 0.80214185], [66.55, 46.62027194235854, 0.7967794], [66.56, 46.29118423306699, 0.78846437], [66.57, 46.483144805532476, 0.7842099], [66.58, 46.429973186503865, 0.6273704], [66.59, 47.52005789206329, 0.35113895], [66.6, 47.46210015824324, 0.4230815], [66.61, 46.68534221813491, 0.530327], [66.62, 46.59048092497616, 0.4955917], [66.63, 45.769001023996694, 0.30404282], [66.64, 45.92960754183043, 0.32049587], [66.65, 46.42932546733827, 0.46529484], [66.66, 46.62437076534468, 0.36381137], [66.67, 47.813311963254776, 0.5762996], [66.68, 48.44010771178151, 0.67544824], [66.69, 47.89080377116851, 0.5249101], [66.7, 46.56296593600715, 0.30349365], [66.71, 45.765456272488365, 0.34875748], [66.72, 47.44714288426142, 0.36438435], [66.73, 47.80824734868756, 0.38533744], [66.74, 47.77040906395416, 0.15887646], [66.75, 45.87304336939211, 0.2766466], [66.76, 47.75697170544913, 0.4258488], [66.77, 47.79018587739137, 0.3495756], [66.78, 46.662454324841875, 0.45588955], [66.79, 45.597203960823364, 0.49532077], [66.8, 46.09941855544214, 0.29770675], [66.81, 46.59648684804513, 0.22518142], [66.82, 46.667101056124736, 0.4066659], [66.83, 45.77973370515019, 0.5120698], [66.84, 46.40665121074805, 0.636128], [66.85, 46.42825407664378, 0.65991634], [66.86, 46.36063844155405, 0.5383445], [66.87, 46.50214120468949, 0.476429], [66.88, 45.950115477999596, 0.5096653], [66.89, 45.843671051894006, 0.4330602], [66.9, 46.26961807103514, 0.17329283], [66.91, 47.44124219994142, 0.34250134], [66.92, 47.2199931491264, 0.20659588], [66.93, 47.16635557601385, 0.24629733], [66.94, 47.72296002607365, 0.11018971], [66.95, 47.863682204371855, 0.09236628], [66.96, 47.880805762872356, 0.12796657], [66.97, 47.260595339834325, 0.13840945], [66.98, 46.809060310461604, 0.1463754], [66.99, 47.751594909524684, 0.34101337], [67.0, 48.21833817293108, 0.53527874], [67.01, 47.46276507601162, 0.53262335], [67.02, 46.683760372643576, 0.5300412], [67.03, 46.370750947560865, 0.5455101], [67.04, 47.12909243654883, 0.56756544], [67.05, 47.03073372763053, 0.6308435], [67.06, 46.26964511822223, 0.68163675], [67.07, 46.360589038226045, 0.6046927], [67.08, 46.245123077330106, 0.6090207], [67.09, 46.25388693143975, 0.5467734], [67.1, 46.751743414506386, 0.28299192], [67.11, 46.27972749608729, 0.18350923], [67.12, 45.547581396998844, 0.3383137], [67.13, 44.179999901952094, 0.26528618], [67.14, 44.201892275815204, 0.3453988], [67.15, 44.180127445978314, 0.45785555], [67.16, 44.36172986283281, 0.26990217], [67.17, 44.861083727261544, 0.131427], [67.18, 45.807450555697756, 0.25624225], [67.19, 46.68573521045762, 0.29039833], [67.2, 46.00821941369708, 0.23137085], [67.21, 45.64830089078492, 0.34337696], [67.22, 45.2514451035659, 0.42220235], [67.23, 44.941305918432704, 0.51229846], [67.24, 45.23222488348178, 0.42837474], [67.25, 45.946726352173954, 0.33619583], [67.26, 46.642593752648565, 0.2870762], [67.27, 46.436327586995326, 0.4519107], [67.28, 46.072766703796475, 0.3425386], [67.29, 49.81081845529719, 0.28771293], [67.3, 58.27635106968668, 0.3209507], [67.31, 63.932084014454674, 0.23344824], [67.32, 71.829998228796, 0.17283152], [67.33, 80.16237789039359, 0.25188842], [67.34, 87.23868246504682, 0.3632696], [67.35, 97.12550045020026, 0.41778284], [67.36, 109.24984373341294, 0.43546438], [67.37, 118.65772704750044, 0.31143853], [67.38, 135.3287027914187, 0.2603827], [67.39, 147.80996851720246, 0.3706547], [67.4, 148.93370794874212, 0.25202197], [67.41, 148.84544889731484, 0.1057196], [67.42, 150.4237031669882, 0.2148003], [67.43, 149.60429401689632, 0.40751812], [67.44, 149.4949347759027, 0.29552606], [67.45, 148.53118505371972, 0.16550274], [67.46, 148.68285404717443, 0.16309354], [67.47, 148.1343591991228, 0.20022765], [67.48, 147.08156416233675, 0.20439568], [67.49, 146.7960582785048, 0.12543075], [67.5, 145.88777073875576, 0.12896006], [67.51, 144.65919460714062, 0.08514149], [67.52, 144.6893334981957, 0.043621283], [67.53, 145.29661574544633, 0.17289665], [67.54, 144.649605180465, 0.083049074], [67.55, 146.2577679608905, 0.12935466], [67.56, 146.58343129455258, 0.44042018], [67.57, 148.20144724959425, 0.4678537], [67.58, 146.05702459680205, 0.5822954], [67.59, 144.50392254356922, 0.17865622], [67.6, 143.51481456691656, 0.3894406], [67.61, 145.72222398869474, 0.24574609], [67.62, 149.30605122775705, 0.3128067], [67.63, 153.11442861787475, 0.30442694], [67.64, 156.4360662648915, 0.35635266], [67.65, 161.25794837309252, 0.4989629], [67.66, 162.39773884662142, 0.22388008], [67.67, 161.4162683429838, 0.12971598], [67.68, 160.08753214652958, 0.09157838], [67.69, 157.18834400928387, 0.1825922], [67.7, 158.2534188777298, 0.14378706], [67.71, 160.16254393048186, 0.21491592], [67.72, 161.53126672270972, 0.28335026], [67.73, 172.51968450093344, 0.07450134], [67.74, 172.9817739135869, 0.11546509], [67.75, 169.23732269091602, 0.48622975], [67.76, 169.50994926584673, 0.69345266], [67.77, 170.54752004237542, 0.6580022], [67.78, 173.95337462109072, 0.56831664], [67.79, 176.12792315776832, 0.7267461], [67.8, 176.04102278721825, 0.7658522], [67.81, 174.9613809919793, 0.7995236], [67.82, 173.48196811286402, 0.836703], [67.83, 172.7045245158397, 0.83938277], [67.84, 172.40583861892847, 0.8142057], [67.85, 172.5437403442641, 0.8090436], [67.86, 173.86619843302182, 0.7934135], [67.87, 174.7939574727519, 0.7772514], [67.88, 176.0031505859686, 0.75749516], [67.89, 176.16791585590195, 0.7414088], [67.9, 175.31440381692119, 0.7049512], [67.91, 170.72665413433808, 0.51896113], [67.92, 164.4848643553108, 0.5377764], [67.93, 157.5976208656841, 0.42097178], [67.94, 150.60672891406796, 0.48786667], [67.95, 145.1445099802277, 0.33849263], [67.96, 156.32364138073467, 0.32233888], [67.97, 172.11661302850916, 0.20811974], [67.98, 172.78999875680793, 0.35367197], [67.99, 172.99389734256272, 0.41701785], [68.0, 175.1827649669819, 0.48575988], [68.01, 175.425094483119, 0.48520806], [68.02, 175.71739264627934, 0.5568077], [68.03, 166.1332721850516, 0.26097882], [68.04, 146.63622255347715, 0.40446028], [68.05, 135.42984095694777, 0.5861067], [68.06, 135.29332043993188, 0.5433072], [68.07, 135.47694598347243, 0.50438315], [68.08, 132.46522144063695, 0.6505767], [68.09, 132.39492982445938, 0.7560966], [68.1, 133.17131967971824, 0.8671322], [68.11, 133.37257765825746, 0.8076364], [68.12, 134.3260362216613, 0.8391226], [68.13, 135.19700377762948, 0.80972844], [68.14, 136.06083822785206, 0.7708152], [68.15, 137.38190204626028, 0.7939654], [68.16, 138.56479728806207, 0.80876154], [68.17, 139.39403716971452, 0.83940053], [68.18, 139.72150957542422, 0.83020097], [68.19, 140.13056646721483, 0.7923481], [68.2, 140.51199012204157, 0.715695], [68.21, 140.0549398391414, 0.7402984], [68.22, 139.44939727634946, 0.8046378], [68.23, 137.8382437629409, 0.7558422], [68.24, 134.69440142389888, 0.6803494], [68.25, 132.7427913267261, 0.54070544], [68.26, 131.00800505027064, 0.42852858], [68.27, 128.9462372506793, 0.4386024], [68.28, 129.73714620333996, 0.61660045], [68.29, 129.09968565574243, 0.58958966], [68.3, 132.57396051588057, 0.41459885], [68.31, 139.8855371150448, 0.3927376], [68.32, 141.72873777548756, 0.7730166], [68.33, 143.35700109111065, 0.8709039], [68.34, 143.4130905126864, 0.8574877], [68.35, 141.67453192992787, 0.7418034], [68.36, 140.04255272486193, 0.71204996], [68.37, 137.38416112911105, 0.5495843], [68.38, 154.82345686884094, 0.24436952], [68.39, 176.1026651954321, 0.36362287], [68.4, 175.70788727158765, 0.6372336], [68.41, 174.839264917298, 0.7140378], [68.42, 175.17737425701628, 0.66777253], [68.43, 174.64888612363697, 0.60987616], [68.44, 175.8285580342756, 0.6587089], [68.45, 175.1031226845077, 0.3869054], [68.46, 173.50234469450697, 0.42346317], [68.47, 172.82659270673344, 0.12966327], [68.48, 172.55013931882962, 0.07385756], [68.49, 171.3939530698694, 0.11872675], [68.5, 167.57291020300343, 0.13277823], [68.51, 162.79532570830588, 0.08944784], [68.52, 160.07192032499475, 0.1289071], [68.53, 159.19110011654828, 0.09806357], [68.54, 141.36597384060923, 0.17679134], [68.55, 139.37079468681162, 0.15249117], [68.56, 139.0673022634513, 0.1624989], [68.57, 139.43775161772226, 0.22147076], [68.58, 138.78695916680874, 0.32125774], [68.59, 138.89321904746186, 0.37376928], [68.6, 137.48855624357336, 0.2297918], [68.61, 139.15315149594832, 0.2315293], [68.62, 150.65600075128512, 0.21909781], [68.63, 167.74840159822952, 0.22739282], [68.64, 169.54767505882828, 0.2588398], [68.65, 175.6319383884931, 0.20566666], [68.66, 177.51644890224503, 0.30508035], [68.67, 176.57112952400416, 0.28858608], [68.68, 174.41667221522323, 0.37521258], [68.69, 171.19458449010767, 0.36936206], [68.7, 172.36894336548653, 0.48391145], [68.71, 174.71869841230705, 0.49326116], [68.72, 175.89169535217238, 0.5628153], [68.73, 175.7780126711862, 0.46550858], [68.74, 173.6036635217717, 0.44682], [68.75, 176.84986386594605, 0.45911366], [68.76, 180.86455489874297, 0.57742447], [68.77, 181.0689809284493, 0.54879373], [68.78, 178.8371042217688, 0.5905834], [68.79, 176.8812376532769, 0.65602607], [68.8, 176.60813949038453, 0.69765484], [68.81, 176.91540964150678, 0.66568327], [68.82, 175.75252832960535, 0.5229697], [68.83, 175.01995875835988, 0.43542466], [68.84, 174.83077527893107, 0.36844906], [68.85, 175.8666484939817, 0.3294019], [68.86, 175.09243489125782, 0.3276159], [68.87, 175.17549898869945, 0.30653536], [68.88, 176.00848390216257, 0.3347191], [68.89, 175.55278817450616, 0.19810894], [68.9, 174.85481619848906, 0.17395106], [68.91, 173.66636882321953, 0.19501169], [68.92, 174.0940095830987, 0.21767603], [68.93, 174.3701585653631, 0.43914956], [68.94, 174.89271754178407, 0.21484143], [68.95, 175.18823608665724, 0.36484107], [68.96, 176.8245797588428, 0.34925655], [68.97, 177.76441246966047, 0.27014595], [68.98, 159.3354119568922, 0.3125793], [68.99, 138.29053563387714, 0.38048893], [69.0, 137.9741564522581, 0.6788966], [69.01, 138.98673337954355, 0.6469808], [69.02, 138.56087734238704, 0.48967937], [69.03, 138.7522193941988, 0.55565345], [69.04, 138.7368077840762, 0.4816885], [69.05, 139.00466832623763, 0.24253397], [69.06, 136.2342845947722, 0.17453457], [69.07, 136.04203938099977, 0.33509687], [69.08, 135.99478336602124, 0.58238643], [69.09, 135.85139361227237, 0.58863205], [69.1, 129.47652993429338, 0.67457783], [69.11, 122.62752711901197, 0.5395857], [69.12, 119.03953751575992, 0.34387952], [69.13, 117.86507792111357, 0.2774087], [69.14, 116.88052604881418, 0.17822166], [69.15, 114.69752511996725, 0.13586046], [69.16, 114.54855542949511, 0.19908533], [69.17, 114.44955115316519, 0.34158254], [69.18, 115.54891937900081, 0.33563507], [69.19, 113.91189787211528, 0.3429225], [69.2, 114.11677841905656, 0.29059717], [69.21, 111.71958395226973, 0.22456437], [69.22, 109.14777805448975, 0.1330822], [69.23, 102.46826331925541, 0.14224795], [69.24, 87.52789327130537, 0.15315057], [69.25, 83.0843376477047, 0.17807554], [69.26, 71.5263913531353, 0.099378906], [69.27, 67.05227359300534, 0.10522139], [69.28, 59.21223184248893, 0.34908357], [69.29, 52.07904330036784, 0.27952093], [69.3, 46.93655127465646, 0.20778458], [69.31, 43.02760926284547, 0.34004024], [69.32, 43.765976313706375, 0.31478134], [69.33, 46.58979971882806, 0.39469865], [69.34, 47.76694439874539, 0.5588254], [69.35, 49.044508534239206, 0.6371494], [69.36, 51.806487007627524, 0.36871856], [69.37, 49.317721183341035, 0.13736689], [69.38, 45.55243413275642, 0.10718394], [69.39, 41.284909003714404, 0.10352172], [69.4, 42.517121835113, 0.26303694], [69.41, 43.40251754631346, 0.1310107], [69.42, 44.170369996231614, 0.23566665], [69.43, 44.162692359862774, 0.6922574], [69.44, 44.71761421961083, 0.52959275], [69.45, 45.21805665834185, 0.56995803], [69.46, 45.4794980232103, 0.6025654], [69.47, 45.66916979673047, 0.642873], [69.48, 45.7773472429211, 0.63798136], [69.49, 46.090078062530495, 0.5979945], [69.5, 46.33759753927403, 0.656505], [69.51, 46.361386359250275, 0.6936856], [69.52, 46.28585315720464, 0.5988174], [69.53, 46.35443124797728, 0.60037214], [69.54, 46.312451530686644, 0.6372745], [69.55, 46.27035278847303, 0.61122864], [69.56, 46.38960173064056, 0.6441245], [69.57, 46.46976357977568, 0.51158696], [69.58, 46.61343997318752, 0.47734323], [69.59, 46.186216758268046, 0.26614016], [69.6, 46.2602411957457, 0.5067194], [69.61, 46.372813150779336, 0.30459642], [69.62, 46.62902984704229, 0.38981095], [69.63, 46.29081273240316, 0.45108035], [69.64, 46.203161918675946, 0.58185], [69.65, 45.72189206591614, 0.48090214], [69.66, 45.657087956376316, 0.3130929], [69.67, 45.62957220501153, 0.394067], [69.68, 45.32815086309767, 0.35860017], [69.69, 45.52477942690128, 0.33173606], [69.7, 45.31494068492055, 0.30204335], [69.71, 45.83857660535025, 0.41085348], [69.72, 44.16903546780279, 0.11373159], [69.73, 44.54036232137536, 0.21864748], [69.74, 45.23674120628819, 0.3167237], [69.75, 46.26017652075728, 0.34231606], [69.76, 46.63261512777683, 0.34447187], [69.77, 45.703602357782145, 0.2777142], [69.78, 44.48968434149758, 0.40579262], [69.79, 44.4652963670021, 0.39553544], [69.8, 44.559639772444406, 0.2734895], [69.81, 44.64187714286144, 0.25267747], [69.82, 46.51454492650078, 0.21153912], [69.83, 46.96266781372378, 0.21592566], [69.84, 47.42580866031393, 0.5921363], [69.85, 46.85921189096946, 0.5835945], [69.86, 46.73514814125667, 0.76878905], [69.87, 46.29098396655028, 0.7182537], [69.88, 46.30884869196434, 0.75790536], [69.89, 46.471131620649885, 0.7782968], [69.9, 46.911755550338356, 0.7871062], [69.91, 47.478958543705645, 0.7861523], [69.92, 46.924554986363425, 0.77456754], [69.93, 46.49629898163396, 0.6677532], [69.94, 45.953125930060175, 0.6428364], [69.95, 46.4868763030854, 0.6257646], [69.96, 46.56249272348948, 0.6769982], [69.97, 46.70506952657493, 0.68374014], [69.98, 46.53692876955343, 0.49791288], [69.99, 46.8930393088113, 0.688623], [70.0, 47.02119442881305, 0.54970014], [70.01, 46.36861714373302, 0.49713677], [70.02, 45.746507744184264, 0.459042], [70.03, 45.64513589464558, 0.42585614], [70.04, 45.65655194931679, 0.55554646], [70.05, 45.363481949219526, 0.526893], [70.06, 45.299113121142625, 0.54971546], [70.07, 45.591563117271264, 0.6308937], [70.08, 45.85574653783355, 0.6280236], [70.09, 45.87952215865829, 0.47638038], [70.1, 46.60272779561923, 0.34678078], [70.11, 47.426186088749496, 0.32485244], [70.12, 46.97640500806369, 0.28987643], [70.13, 44.80510013645493, 0.30290473], [70.14, 44.89927677344455, 0.33110264], [70.15, 44.96696757961628, 0.21886429], [70.16, 45.50465292930355, 0.28388345], [70.17, 45.80523454086982, 0.24629334], [70.18, 45.95686535680678, 0.22662553], [70.19, 45.94300147989606, 0.328411], [70.2, 45.9042975662199, 0.41534477], [70.21, 45.88722315755766, 0.246334], [70.22, 46.22436687902838, 0.3918939], [70.23, 45.90325859742095, 0.2903741], [70.24, 45.86686949730134, 0.386822], [70.25, 46.718650894231814, 0.4435025], [70.26, 46.666865446066765, 0.32245126], [70.27, 47.41754198825501, 0.25101122], [70.28, 48.6262797641609, 0.2802948], [70.29, 47.73073942576503, 0.33865622], [70.3, 46.9136688303145, 0.33467653], [70.31, 46.85542345290002, 0.38291353], [70.32, 46.31515345193982, 0.3445151], [70.33, 46.11023659354058, 0.22539195], [70.34, 46.680251091981305, 0.30954018], [70.35, 46.959208772871875, 0.15069638], [70.36, 45.81471421542681, 0.35318467], [70.37, 45.609660927602135, 0.3087172], [70.38, 46.114000314281725, 0.1902318], [70.39, 46.93397172188809, 0.348525], [70.4, 47.65888447015069, 0.17765237], [70.41, 47.926613978726934, 0.1395749], [70.42, 47.970307128032495, 0.1972044], [70.43, 47.291599661563, 0.16775154], [70.44, 46.71267456423095, 0.18162379], [70.45, 46.51973450719432, 0.204964], [70.46, 47.1455213868039, 0.15781328], [70.47, 47.00969302977059, 0.22536592], [70.48, 46.45649047047942, 0.22975503], [70.49, 46.27271029435792, 0.20475107], [70.5, 46.3022685518419, 0.32456076], [70.51, 46.728683467951846, 0.52953845], [70.52, 47.07357764854968, 0.21553923], [70.53, 47.17951456032815, 0.3689286], [70.54, 46.9895710260932, 0.2812208], [70.55, 47.00577582674505, 0.2610973], [70.56, 46.55540975817451, 0.32425123], [70.57, 46.99075056856475, 0.5235661], [70.58, 46.93491822725707, 0.5137721], [70.59, 46.62231431485668, 0.5837925], [70.6, 46.85470867409498, 0.5625831], [70.61, 46.66286110297473, 0.6283002], [70.62, 46.345107359027516, 0.3155761], [70.63, 46.18017055476416, 0.3052501], [70.64, 45.93997803315398, 0.2077752], [70.65, 46.450957535299764, 0.2060993], [70.66, 46.593675780019915, 0.28291205], [70.67, 46.661227492509795, 0.23153734], [70.68, 46.597146480434716, 0.27784902], [70.69, 46.54891943540722, 0.22593519], [70.7, 46.37831611868603, 0.45777157], [70.71, 46.25369042250543, 0.38670024], [70.72, 46.02707541239478, 0.54300743], [70.73, 45.85406946494239, 0.38535878], [70.74, 46.047769376978, 0.4119634], [70.75, 45.971324887738106, 0.32793927], [70.76, 46.10383367532932, 0.37427062], [70.77, 45.87550070132997, 0.4021825], [70.78, 45.99990408380432, 0.4059528], [70.79, 46.36468999703004, 0.42410484], [70.8, 45.992653483269486, 0.3601347], [70.81, 46.344144565715155, 0.2911089], [70.82, 45.86847876577255, 0.28803134], [70.83, 45.67541146602808, 0.10483797], [70.84, 46.90069931554972, 0.08119135], [70.85, 47.70082189615447, 0.103680596], [70.86, 48.001378307521954, 0.1729129], [70.87, 47.771404837480596, 0.100853585], [70.88, 47.79711926470262, 0.16039132], [70.89, 48.0464404124006, 0.21886], [70.9, 47.37268069983833, 0.51245683], [70.91, 45.76847338706174, 0.4501789], [70.92, 45.48798625141767, 0.5103609], [70.93, 45.21433791113449, 0.60707694], [70.94, 46.31171636994913, 0.19594713], [70.95, 46.52837357816101, 0.34404948], [70.96, 46.15422153646553, 0.38193497], [70.97, 45.45825420316837, 0.28484136], [70.98, 46.017686523377066, 0.2400184], [70.99, 46.341813971344806, 0.33440328], [71.0, 46.52690082804735, 0.6863847], [71.01, 46.352696599017584, 0.71583366], [71.02, 46.321884618796446, 0.76854265], [71.03, 46.22612731158317, 0.6809348], [71.04, 46.260307922783284, 0.6865619], [71.05, 46.61638218086904, 0.7478393], [71.06, 46.489539453225134, 0.7002319], [71.07, 46.551655142414035, 0.76383036], [71.08, 46.526795877424654, 0.6530738], [71.09, 46.92802624787814, 0.5059208], [71.1, 47.72165219346385, 0.28281572], [71.11, 47.18905026475298, 0.19023444], [71.12, 47.06321159337498, 0.22722083], [71.13, 47.41559697486562, 0.2583156], [71.14, 47.42835543796603, 0.36441132], [71.15, 47.502398395408534, 0.15431818], [71.16, 47.30720589447693, 0.10585707], [71.17, 46.82439907050007, 0.08952427], [71.18, 47.31267816322656, 0.17332429], [71.19, 45.7480263690936, 0.2008823], [71.2, 44.456058195331885, 0.33767366], [71.21, 44.028741952467925, 0.29832187], [71.22, 44.04163823789092, 0.29042858], [71.23, 43.681092372174476, 0.21575926], [71.24, 43.33931628115514, 0.14956997], [71.25, 42.65574953862239, 0.0754603], [71.26, 41.60001179411314, 0.16054346], [71.27, 40.505255661634294, 0.11226421], [71.28, 40.35744285445414, 0.27067983], [71.29, 39.27375185254593, 0.18140827], [71.3, 38.27598475218354, 0.24961568], [71.31, 37.90293791815864, 0.30975664], [71.32, 37.91875543521976, 0.312382], [71.33, 37.38432264911121, 0.29918697], [71.34, 35.32992844036896, 0.21814688], [71.35, 32.16483870263949, 0.23178802], [71.36, 32.06134981600578, 0.15814905], [71.37, 31.99618775867471, 0.14478615], [71.38, 32.02786481965455, 0.129553], [71.39, 32.10311295085064, 0.16782486], [71.4, 32.05667120959578, 0.28668827], [71.41, 32.67563326088085, 0.26172608], [71.42, 36.68738899635508, 0.30138698], [71.43, 38.66710408459143, 0.43651798], [71.44, 38.78272218499931, 0.5414559], [71.45, 38.661711709128454, 0.44983658], [71.46, 38.09575593640033, 0.44959494], [71.47, 37.937553939761834, 0.22280143], [71.48, 38.21454170556678, 0.5319888], [71.49, 38.683079476037825, 0.6661819], [71.5, 38.599178337342394, 0.64126956], [71.51, 39.04650909088395, 0.7385184], [71.52, 38.97788753663322, 0.6375831], [71.53, 38.78890944179289, 0.60898554], [71.54, 38.276652056042984, 0.51278216], [71.55, 38.01750198964106, 0.45372173], [71.56, 38.02697603390384, 0.5643762], [71.57, 38.17849776490236, 0.65009516], [71.58, 38.24643451891597, 0.6508678], [71.59, 38.38816131734085, 0.7462387], [71.6, 38.364126659089756, 0.7469836], [71.61, 38.43955219370114, 0.7166588], [71.62, 38.89530143498766, 0.7263416], [71.63, 38.614602114826255, 0.77831954], [71.64, 38.423609537111496, 0.66431755], [71.65, 38.55417738409738, 0.7678592], [71.66, 38.372955332406676, 0.7072425], [71.67, 38.449677222865546, 0.7001332], [71.68, 38.48054300132646, 0.7601584], [71.69, 38.26062776670763, 0.7758137], [71.7, 38.14484968879282, 0.78109205], [71.71, 38.572169674212695, 0.8112495], [71.72, 38.502225518993576, 0.7960082], [71.73, 38.434938214169186, 0.806561], [71.74, 38.432701296195894, 0.7721947], [71.75, 38.551544762082855, 0.7370409], [71.76, 38.42516701766165, 0.5938207], [71.77, 38.50943630864144, 0.5420263], [71.78, 38.74013802929242, 0.50465345], [71.79, 38.73661535541353, 0.6062401], [71.8, 38.61185694693856, 0.66780716], [71.81, 38.45400676687938, 0.6025344], [71.82, 38.37805512895593, 0.7080329], [71.83, 38.13112105294464, 0.58271617], [71.84, 38.135796251861656, 0.6509736], [71.85, 38.415888435518674, 0.51590693], [71.86, 38.15317903927573, 0.62629324], [71.87, 38.21041042939001, 0.6535443], [71.88, 38.58032271899357, 0.5810976], [71.89, 38.66966547600066, 0.67482805], [71.9, 38.35156365106719, 0.7121409], [71.91, 38.13660826991787, 0.6981975], [71.92, 38.3117345046677, 0.6862479], [71.93, 38.17952606499886, 0.7591396], [71.94, 38.32523010375024, 0.6844231], [71.95, 38.33508128993553, 0.68321675], [71.96, 38.179018999491376, 0.6538587], [71.97, 37.83830054474712, 0.6150531], [71.98, 38.704325163856, 0.53618556], [71.99, 38.43470195993157, 0.44951865], [72.0, 37.79949474494498, 0.37073743], [72.01, 38.12659820392092, 0.30450416], [72.02, 38.848526799789646, 0.31915084], [72.03, 39.529149217024354, 0.3909953], [72.04, 38.919258737879254, 0.47520953], [72.05, 38.33681187418364, 0.60025585], [72.06, 38.07469519041253, 0.62062556], [72.07, 38.15569026539874, 0.658571], [72.08, 38.595441190104296, 0.6991109], [72.09, 38.568420821597684, 0.72808814], [72.1, 38.60873921861897, 0.71842337], [72.11, 38.84300155146195, 0.6597326], [72.12, 38.84969190090835, 0.6619887], [72.13, 38.60220917645407, 0.6110042], [72.14, 38.31537528870725, 0.63349867], [72.15, 38.40205949661292, 0.62602645], [72.16, 38.22535966987375, 0.5541888], [72.17, 38.15118885233159, 0.32685125], [72.18, 38.518115428483014, 0.16175184], [72.19, 38.5046175675386, 0.2500282], [72.2, 39.43602991862085, 0.32576287], [72.21, 40.86305116729544, 0.2760059], [72.22, 41.16813865574069, 0.22314559], [72.23, 41.472382686551384, 0.21514761], [72.24, 41.162287119076176, 0.22156529], [72.25, 40.63448318182452, 0.15083846], [72.26, 41.69466959015868, 0.1911336], [72.27, 43.007715358327076, 0.276723], [72.28, 43.47783215564802, 0.29050097], [72.29, 43.31131511176011, 0.37263072], [72.3, 44.97096198574187, 0.095046476], [72.31, 45.82201150743175, 0.11074325], [72.32, 46.382145128638506, 0.26781905], [72.33, 47.09728059303607, 0.48643827], [72.34, 47.67441190081129, 0.43787476], [72.35, 44.52619935744704, 0.1859214], [72.36, 43.520484569862475, 0.14723091], [72.37, 43.7839736785138, 0.19871892], [72.38, 43.51354612107368, 0.113526076], [72.39, 43.943093276974075, 0.15495259], [72.4, 43.4105125975895, 0.35823986], [72.41, 43.32187952974551, 0.56386524], [72.42, 43.58793856734921, 0.61551666], [72.43, 44.04436172141889, 0.7008044], [72.44, 43.86721020489141, 0.62653834], [72.45, 44.0611265868167, 0.51649475], [72.46, 43.711546371568595, 0.6152369], [72.47, 43.53146853491964, 0.4023983], [72.48, 43.124757232754135, 0.30939898], [72.49, 43.04433406248214, 0.18701021], [72.5, 43.052532696050186, 0.0899398], [72.51, 42.62845058090928, 0.0910367], [72.52, 42.56147134460859, 0.15939495], [72.53, 42.779113470297844, 0.24069637], [72.54, 43.20073951312431, 0.13826266], [72.55, 43.521374283729855, 0.116370514], [72.56, 44.254968595761774, 0.16325654], [72.57, 44.222636478925295, 0.26995453], [72.58, 44.249062870266215, 0.22090547], [72.59, 43.938181633652206, 0.278348], [72.6, 43.80013955816516, 0.074870005], [72.61, 43.76896951710498, 0.26927015], [72.62, 43.48127730474871, 0.24287665], [72.63, 43.62612183720741, 0.5246348], [72.64, 43.758519210466886, 0.32417586], [72.65, 43.480823577850735, 0.58785903], [72.66, 43.34655751440685, 0.60762495], [72.67, 43.328196843277325, 0.65889984], [72.68, 43.629511571795305, 0.61660534], [72.69, 43.34572373895667, 0.53867793], [72.7, 43.62073745506815, 0.5351986], [72.71, 43.61443984928797, 0.61975443], [72.72, 43.371098475819785, 0.63737077], [72.73, 43.774416730633604, 0.604815], [72.74, 43.68587681389905, 0.5745028], [72.75, 43.78588995067237, 0.3540659], [72.76, 44.40531942725577, 0.2343237], [72.77, 44.21601485502193, 0.1773219], [72.78, 44.10712224536962, 0.2529533], [72.79, 44.617466970257276, 0.22313711], [72.8, 43.66394843703512, 0.11438675], [72.81, 43.50298190512889, 0.27796736], [72.82, 43.714202932483026, 0.44942743], [72.83, 43.59656138165809, 0.46030957], [72.84, 43.661147448878225, 0.62004995], [72.85, 43.58355353529284, 0.6711649], [72.86, 43.5860798013604, 0.762589], [72.87, 43.29489048526146, 0.7147039], [72.88, 43.2970045388665, 0.71840143], [72.89, 43.594956802869646, 0.7429009], [72.9, 43.38039326937121, 0.70771587], [72.91, 43.601455238890175, 0.7024472], [72.92, 43.411903201096194, 0.50120294], [72.93, 43.50203110790758, 0.39059213], [72.94, 43.789860249757524, 0.20916434], [72.95, 44.24584274501313, 0.2618496], [72.96, 44.437289241216156, 0.2784668], [72.97, 44.13777624517758, 0.16041283], [72.98, 44.4574323515068, 0.23626362], [72.99, 44.4035100199592, 0.22221114], [73.0, 44.20206106385882, 0.21621338], [73.01, 44.808356684564295, 0.10019133], [73.02, 43.933128170237325, 0.36951825], [73.03, 43.67960107142007, 0.59550136], [73.04, 43.492393132865, 0.5988889], [73.05, 43.82078448981944, 0.6931943], [73.06, 43.91797848771067, 0.7148706], [73.07, 43.93218606583902, 0.736432], [73.08, 43.79875867143972, 0.7236513], [73.09, 43.9194393783104, 0.73631436], [73.1, 43.73789163314548, 0.7459021], [73.11, 43.72070189639296, 0.77738], [73.12, 43.7329193075259, 0.7866223], [73.13, 43.812058202046025, 0.7592382], [73.14, 44.328785889807065, 0.41493043], [73.15, 46.45146472435711, 0.21332057], [73.16, 47.82009993161981, 0.13775687], [73.17, 47.408024187809346, 0.06671439], [73.18, 47.77169723905124, 0.15439309], [73.19, 48.23542238807061, 0.14075962], [73.2, 48.54112034197193, 0.10136997], [73.21, 47.608769673281344, 0.1877671], [73.22, 47.59639536849528, 0.23265249], [73.23, 47.45824198410314, 0.30341908], [73.24, 47.17066696111602, 0.38633633], [73.25, 47.24529940870863, 0.28200126], [73.26, 47.59948262068114, 0.28354678], [73.27, 47.92706349041785, 0.11586759], [73.28, 48.76711371869861, 0.2030005], [73.29, 49.16491598572847, 0.37770784], [73.3, 49.48803220886668, 0.424119], [73.31, 48.78874141568776, 0.65644073], [73.32, 48.09494395518513, 0.5657835], [73.33, 46.86233064401644, 0.6844297], [73.34, 46.314495059594165, 0.6247452], [73.35, 46.93381455977295, 0.5189313], [73.36, 45.9105089074413, 0.47776866], [73.37, 45.17750081478597, 0.35461956], [73.38, 44.603294423073876, 0.27291605], [73.39, 44.54092730046927, 0.20394972], [73.4, 45.22385656467609, 0.20672871], [73.41, 45.33390646361667, 0.30008358], [73.42, 46.034029191068704, 0.42596558], [73.43, 45.99167756365296, 0.46596843], [73.44, 45.67901864314531, 0.49136946], [73.45, 45.077368401488414, 0.40841967], [73.46, 45.56956998813899, 0.32798243], [73.47, 45.8097991521401, 0.24390219], [73.48, 45.92452762120886, 0.36511075], [73.49, 45.57573790549675, 0.38813058], [73.5, 45.785019317001925, 0.5610285], [73.51, 46.376848355009734, 0.46966174], [73.52, 46.640959621438384, 0.557159], [73.53, 46.1805122931525, 0.53593624], [73.54, 45.65465461853738, 0.6138673], [73.55, 46.13805727162722, 0.55500466], [73.56, 45.75115225574416, 0.52482045], [73.57, 45.67921124308258, 0.57791054], [73.58, 45.63587822809731, 0.5425703], [73.59, 46.33362971503576, 0.7183407], [73.6, 45.706008297191104, 0.51863027], [73.61, 45.69710419968238, 0.64705426], [73.62, 45.24244146434252, 0.5501329], [73.63, 46.01432759493587, 0.49694613], [73.64, 45.925986417842495, 0.5647896], [73.65, 45.66131922214034, 0.59574926], [73.66, 45.390988465868595, 0.58964866], [73.67, 46.17506652539714, 0.6116996], [73.68, 46.85686952291875, 0.65226936], [73.69, 46.34040080289401, 0.7249539], [73.7, 45.52396247465027, 0.65223294], [73.71, 45.635391613339884, 0.58665437], [73.72, 46.10557280594566, 0.36833224], [73.73, 46.0606534248396, 0.5067741], [73.74, 46.02792508010809, 0.41510707], [73.75, 45.67868746937337, 0.5001272], [73.76, 46.304809846852976, 0.4674903], [73.77, 45.87240546712391, 0.5395115], [73.78, 45.30526859978444, 0.37795225], [73.79, 44.76750918742831, 0.5329649], [73.8, 46.391552847569656, 0.47561723], [73.81, 46.905037243368206, 0.661252], [73.82, 46.36698665573975, 0.7365433], [73.83, 45.846797876710504, 0.7289344], [73.84, 46.150528570127335, 0.70375377], [73.85, 47.10903404156595, 0.6912239], [73.86, 46.54381024839185, 0.6926506], [73.87, 45.92280614203689, 0.63495386], [73.88, 44.93802816238848, 0.53524816], [73.89, 46.55291045724606, 0.36736995], [73.9, 46.93540214801313, 0.3258926], [73.91, 46.25324069912303, 0.4075982], [73.92, 45.65878245540244, 0.42208228], [73.93, 46.44052357015369, 0.5316555], [73.94, 46.235429371961764, 0.66284436], [73.95, 45.73088937278878, 0.6735269], [73.96, 46.15793401650619, 0.73636776], [73.97, 46.28617130132736, 0.6841712], [73.98, 46.4425408832794, 0.65166706], [73.99, 45.79659057204526, 0.64613116], [74.0, 46.159253949867285, 0.6625557], [74.01, 45.67845758410041, 0.5690238], [74.02, 46.23964082833709, 0.5312943], [74.03, 45.207091010044856, 0.49305025], [74.04, 45.65633143139679, 0.55139154], [74.05, 45.60371358383467, 0.4745689], [74.06, 45.83677273298782, 0.4921549], [74.07, 45.015164748257064, 0.4327884], [74.08, 43.67270221933832, 0.5679681], [74.09, 41.903051668575266, 0.19880214], [74.1, 42.4682406174241, 0.10640351], [74.11, 44.75252198867359, 0.07404432], [74.12, 45.74132623476916, 0.06299058], [74.13, 47.94892213330179, 0.13091992], [74.14, 51.21304368822294, 0.18488692], [74.15, 52.41692074265636, 0.07097464], [74.16, 53.45831544947401, 0.10574694], [74.17, 53.589684172888, 0.18938293], [74.18, 53.98735045195537, 0.23008148], [74.19, 54.72743771203856, 0.16510242], [74.2, 55.09886996405328, 0.17737593], [74.21, 55.34957735722074, 0.10128898], [74.22, 54.98776071598844, 0.12997827], [74.23, 58.68692369277579, 0.10290536], [74.24, 66.18462493380702, 0.12091146], [74.25, 71.278495022775, 0.26847005], [74.26, 78.24941020235288, 0.18725044], [74.27, 83.98950752519978, 0.13952483], [74.28, 90.81393588953767, 0.1959286], [74.29, 97.45957882249806, 0.3718966], [74.3, 108.16475422013595, 0.38986984], [74.31, 117.43553314271611, 0.27491274], [74.32, 124.69144926813445, 0.23698959], [74.33, 135.81984116035875, 0.23629162], [74.34, 149.60872325846705, 0.23284273], [74.35, 159.89411967117488, 0.30058503], [74.36, 161.23632612735696, 0.2580862], [74.37, 160.5808267731156, 0.3143055], [74.38, 156.39215010430956, 0.14467144], [74.39, 151.33668716056644, 0.31061924], [74.4, 151.25650351426637, 0.21917962], [74.41, 152.59225756542062, 0.26817867], [74.42, 153.70008163666003, 0.3984559], [74.43, 155.3164690553233, 0.4777572], [74.44, 155.7013731561328, 0.43337858], [74.45, 158.27776448786724, 0.39696953], [74.46, 161.52958587034274, 0.43245703], [74.47, 161.86914637713858, 0.43576962], [74.48, 161.81933716987692, 0.5463397], [74.49, 160.91424780067558, 0.49833703], [74.5, 159.52689694666117, 0.24947423], [74.51, 152.87940024510334, 0.42845157], [74.52, 152.7111757188407, 0.54841465], [74.53, 150.5823396589912, 0.50798243], [74.54, 150.77577012375892, 0.27144957], [74.55, 149.60881014855, 0.34774908], [74.56, 150.36467248120925, 0.44046324], [74.57, 149.11624753296016, 0.38208628], [74.58, 150.9992766755084, 0.21737517], [74.59, 150.28581024940084, 0.21685854], [74.6, 155.62780258333837, 0.10754643], [74.61, 159.05152905115813, 0.31525224], [74.62, 159.77823044589263, 0.52121663], [74.63, 159.8843692280978, 0.38628763], [74.64, 156.2271123731698, 0.22782874], [74.65, 156.481023720677, 0.16554259], [74.66, 158.2527259410882, 0.23464926], [74.67, 160.13614686958465, 0.43801656], [74.68, 160.36342480675205, 0.5612445], [74.69, 161.44218482155486, 0.4811233], [74.7, 160.94045302071464, 0.37729147], [74.71, 163.83708223114917, 0.21651693], [74.72, 173.63794305604554, 0.09849368], [74.73, 179.63496678413904, 0.22719131], [74.74, 182.19054408249798, 0.27861246], [74.75, 182.27602336121896, 0.16687621], [74.76, 164.67170989886074, 0.18996286], [74.77, 178.4219319679442, 0.13894415], [74.78, 165.94740927179862, 0.17783362], [74.79, 161.9475247936062, 0.14331491], [74.8, 159.9807989192222, 0.14041731], [74.81, 140.14658214809862, 0.1094738], [74.82, 123.84796701971793, 0.13230819], [74.83, 119.90965156775579, 0.18299021], [74.84, 118.15006373954986, 0.20083898], [74.85, 118.587328149509, 0.18524587], [74.86, 118.71492039721254, 0.46070626], [74.87, 118.27969162524455, 0.45272285], [74.88, 118.23292358614218, 0.37648514], [74.89, 117.59175911335008, 0.46524915], [74.9, 118.278824427803, 0.4155293], [74.91, 119.28457871295811, 0.36528558], [74.92, 118.90816822878578, 0.338906], [74.93, 118.40268888192689, 0.3134058], [74.94, 117.85940070928345, 0.29690704], [74.95, 118.06865465866524, 0.40579262], [74.96, 118.24797329017377, 0.37951627], [74.97, 118.21016531388445, 0.49202058], [74.98, 117.98983562210474, 0.30443844], [74.99, 118.24408212864732, 0.3120737], [75.0, 119.13161773688708, 0.3197726], [75.01, 120.35470401859526, 0.22434008], [75.02, 122.32007634400183, 0.12733851], [75.03, 126.7085553149194, 0.10254244], [75.04, 128.10912201049223, 0.07641269], [75.05, 126.6801251417222, 0.15985417], [75.06, 128.1135104490245, 0.15752594], [75.07, 130.0506754653595, 0.39972764], [75.08, 131.51520469537007, 0.52377135], [75.09, 135.83557225531104, 0.23179609], [75.1, 136.84571222461793, 0.26750207], [75.11, 137.89534547838971, 0.24511792], [75.12, 140.43981823752793, 0.2843555], [75.13, 139.69581637597648, 0.19068825], [75.14, 139.18094896702206, 0.26072314], [75.15, 137.68570634926238, 0.26663694], [75.16, 137.4883410773576, 0.3700165], [75.17, 138.0538557872781, 0.47294042], [75.18, 138.56165973933662, 0.5004282], [75.19, 138.9825827375508, 0.6166522], [75.2, 139.6024493779375, 0.5473855], [75.21, 140.1942789086613, 0.511136], [75.22, 140.65242585307107, 0.47603932], [75.23, 139.6830506510226, 0.42524588], [75.24, 138.91377997483926, 0.33901393], [75.25, 138.97422381098008, 0.35504588], [75.26, 138.233477061519, 0.6267185], [75.27, 138.83030748487013, 0.6592327], [75.28, 138.73109075779092, 0.62013406], [75.29, 138.27431962851512, 0.57273585], [75.3, 137.5307879342859, 0.441478], [75.31, 137.60453392210462, 0.4198629], [75.32, 137.7656515252003, 0.5629874], [75.33, 138.2040807406987, 0.64492244], [75.34, 138.4571974633804, 0.7563715], [75.35, 138.74132786733333, 0.80893886], [75.36, 138.81384589056282, 0.7431471], [75.37, 139.0594943923503, 0.5489492], [75.38, 138.70246146117407, 0.5179478], [75.39, 138.14773756040222, 0.62631625], [75.4, 138.05795655784627, 0.55983114], [75.41, 137.37136901588624, 0.5009807], [75.42, 136.85932098010366, 0.48588404], [75.43, 136.18551039322978, 0.48926118], [75.44, 135.68278231565301, 0.549542], [75.45, 135.53460121548892, 0.2891871], [75.46, 135.41066463953933, 0.3507234], [75.47, 135.26710734567877, 0.46933702], [75.48, 133.3208365225607, 0.6999081], [75.49, 131.479734888954, 0.7217272], [75.5, 132.52127179923374, 0.5686888], [75.51, 142.1380837284561, 0.52539253], [75.52, 154.2577864592394, 0.52428055], [75.53, 156.59027374246148, 0.3566734], [75.54, 158.38492017500346, 0.54583365], [75.55, 161.0616369289782, 0.55794907], [75.56, 161.91794144259978, 0.63510525], [75.57, 160.80344118757537, 0.5205166], [75.58, 160.2469909799383, 0.44687483], [75.59, 158.30487546610345, 0.3249029], [75.6, 158.56253058081631, 0.4515573], [75.61, 158.34279394961447, 0.65710646], [75.62, 158.42997088999726, 0.60762024], [75.63, 158.57283849782982, 0.5930341], [75.64, 159.54520566673904, 0.49590546], [75.65, 160.52400329859094, 0.3688917], [75.66, 163.08009887868542, 0.41557977], [75.67, 163.76422203190754, 0.3416769], [75.68, 166.66957641829674, 0.31317547], [75.69, 172.26404724692338, 0.5183384], [75.7, 174.95377413098112, 0.42572674], [75.71, 176.22095028102507, 0.42328238], [75.72, 176.74317046811228, 0.39814764], [75.73, 175.93265960823953, 0.59600234], [75.74, 175.27462356237353, 0.77507144], [75.75, 175.0906397816708, 0.79407436], [75.76, 174.67430015247436, 0.81587183], [75.77, 174.2337774041073, 0.8347481], [75.78, 173.78745334749365, 0.8372782], [75.79, 173.45079979069712, 0.8262803], [75.8, 173.59530667114572, 0.76846796], [75.81, 173.83436402409185, 0.59387964], [75.82, 172.40142729589667, 0.34394947], [75.83, 173.87080758211297, 0.3361892], [75.84, 175.91994540074813, 0.27387533], [75.85, 179.46357913714866, 0.16457307], [75.86, 182.21931919185394, 0.30837825], [75.87, 180.81753824080823, 0.1544408], [75.88, 175.6474066007009, 0.11928291], [75.89, 173.08814294067923, 0.13427761], [75.9, 175.11957568785868, 0.1821589], [75.91, 177.994595425351, 0.28601617], [75.92, 176.88401373687918, 0.26849395], [75.93, 177.03678233363874, 0.16501257], [75.94, 175.1531897944115, 0.16428581], [75.95, 175.51382603112665, 0.08122673], [75.96, 172.60306938307173, 0.1467251], [75.97, 162.96543209997247, 0.21647859], [75.98, 163.84707228425586, 0.17634642], [75.99, 145.1067235843292, 0.18957756], [76.0, 143.64744101714047, 0.32342196], [76.01, 140.39981023807843, 0.2021663], [76.02, 137.84656300021348, 0.1888266], [76.03, 138.1842941549864, 0.2719191], [76.04, 139.64454623322294, 0.5910153], [76.05, 141.06257838706819, 0.5025816], [76.06, 139.89000185746858, 0.5899586], [76.07, 137.69133641346946, 0.65589476], [76.08, 134.84343999186095, 0.59127647], [76.09, 133.34508962204757, 0.74761486], [76.1, 133.05943254679966, 0.7299471], [76.11, 134.70793067338985, 0.6789403], [76.12, 137.73109032518047, 0.64439934], [76.13, 139.4136732474816, 0.68144286], [76.14, 142.4514990145416, 0.7119169], [76.15, 144.72592276595987, 0.7787934], [76.16, 146.67659507806653, 0.81808907], [76.17, 147.63550328715473, 0.8459985], [76.18, 148.01112824510858, 0.80758566], [76.19, 146.74752616858598, 0.7574304], [76.2, 144.2623092429743, 0.81746036], [76.21, 141.8347008979694, 0.78471965], [76.22, 139.44757797393981, 0.80827475], [76.23, 137.64858409519024, 0.8093989], [76.24, 136.64134277626653, 0.78722733], [76.25, 136.7354747712502, 0.7862017], [76.26, 137.5129221539977, 0.8073242], [76.27, 138.37378326987022, 0.7472287], [76.28, 138.76044079930034, 0.83249], [76.29, 139.06490293197467, 0.841343], [76.3, 139.31687892007366, 0.87458587], [76.31, 138.97504945570824, 0.86727446], [76.32, 138.45570016353895, 0.8176201], [76.33, 137.55370084128754, 0.8221029], [76.34, 136.95055593629226, 0.7893372], [76.35, 136.65932563505297, 0.7857526], [76.36, 137.11276033707009, 0.82848966], [76.37, 136.95798700938698, 0.8417637], [76.38, 136.54108246437605, 0.78232294], [76.39, 134.91033529245385, 0.7715729], [76.4, 132.9516292398077, 0.8177507], [76.41, 130.8938226948216, 0.8254638], [76.42, 128.5996812652976, 0.73379123], [76.43, 125.38068526279298, 0.7612028], [76.44, 124.43965589161809, 0.7630643], [76.45, 126.4881199814636, 0.55369437], [76.46, 130.99189235213606, 0.3563957], [76.47, 135.72486679584583, 0.40021628], [76.48, 138.67755524502158, 0.6078884], [76.49, 139.64760862531114, 0.63532704], [76.5, 139.59279032869705, 0.5284839], [76.51, 138.30763692639863, 0.53910464], [76.52, 137.71869538978086, 0.51374507], [76.53, 136.8570048978066, 0.5438592], [76.54, 134.9068449328732, 0.303653], [76.55, 133.77919193395, 0.21924557], [76.56, 132.73257615002854, 0.20653182], [76.57, 133.01944297907562, 0.37272164], [76.58, 135.30789853125418, 0.3727405], [76.59, 136.39740646906642, 0.4728516], [76.6, 138.43524559089187, 0.44399452], [76.61, 138.31120170131132, 0.33492824], [76.62, 138.11293467403297, 0.28617877], [76.63, 138.60737537535934, 0.35556677], [76.64, 137.35179631313616, 0.3911682], [76.65, 136.0586440686742, 0.37133595], [76.66, 137.0805864640352, 0.14088628], [76.67, 150.99263549273095, 0.13698477], [76.68, 173.47859409865467, 0.11012778], [76.69, 172.05691952071368, 0.38947567], [76.7, 175.76573072795134, 0.6289978], [76.71, 174.58198796306124, 0.54963285], [76.72, 172.45084135271856, 0.56118417], [76.73, 173.402623892902, 0.34198615], [76.74, 176.4777023232013, 0.31383386], [76.75, 176.57778731498428, 0.46779302], [76.76, 176.3895143482991, 0.3985537], [76.77, 175.90769123969838, 0.5430799], [76.78, 175.69909018379383, 0.32289475], [76.79, 175.60475851037376, 0.5399174], [76.8, 175.67795024907727, 0.44898483], [76.81, 175.6114150109944, 0.5091371], [76.82, 174.84800761965192, 0.46599406], [76.83, 173.2681776680834, 0.37719864], [76.84, 171.71589070970813, 0.60076565], [76.85, 170.6212040228097, 0.62360257], [76.86, 168.70871012572675, 0.60887194], [76.87, 167.34256307012146, 0.59754544], [76.88, 170.7639024340839, 0.4160736], [76.89, 176.83020494717354, 0.47765195], [76.9, 177.1347868244624, 0.46601444], [76.91, 174.55964585216867, 0.28030142], [76.92, 161.00234525318913, 0.08472742], [76.93, 144.01630950574759, 0.16986462], [76.94, 143.64991247008055, 0.26015273], [76.95, 141.90844303338466, 0.3410816], [76.96, 135.49214698765837, 0.33504486], [76.97, 128.38150187478072, 0.32084304], [76.98, 123.8013269842432, 0.36599493], [76.99, 120.14693078260012, 0.44772866], [77.0, 115.89058379571314, 0.3004897], [77.01, 109.30710239459863, 0.41585892], [77.02, 105.60091979150037, 0.26193583], [77.03, 103.38851223605089, 0.12382568], [77.04, 102.29474921550973, 0.15149088], [77.05, 102.18038517778447, 0.19398604], [77.06, 103.43655900652482, 0.36895767], [77.07, 104.15514352177253, 0.63304025], [77.08, 104.50950493327329, 0.8058715], [77.09, 104.93526917901812, 0.8150816], [77.1, 105.0470288051823, 0.79319054], [77.11, 105.47356588093243, 0.7961526], [77.12, 105.80129947694908, 0.8118052], [77.13, 105.1844327702161, 0.7916552], [77.14, 104.10876355980957, 0.7270161], [77.15, 103.16868637531604, 0.48761684], [77.16, 103.40550354927379, 0.4493576], [77.17, 104.47569231667575, 0.27042797], [77.18, 104.63510411373736, 0.36364368], [77.19, 104.09559295366617, 0.5539983], [77.2, 104.48768125550814, 0.6059301], [77.21, 105.07693127991737, 0.54413414], [77.22, 105.37501529319863, 0.31708112], [77.23, 105.24607062339008, 0.19621766], [77.24, 105.21149786017713, 0.50211346], [77.25, 105.83288354455222, 0.47453898], [77.26, 106.32705932431364, 0.5541594], [77.27, 106.11284025228287, 0.581953], [77.28, 105.5377709471695, 0.6369063], [77.29, 104.88736078586271, 0.5649662], [77.3, 104.5247828974569, 0.62902826], [77.31, 104.49817577469922, 0.44969797], [77.32, 114.14763102828107, 0.62046236], [77.33, 124.17384133820974, 0.73556435], [77.34, 139.51831559870408, 0.6678301], [77.35, 147.46327256425639, 0.6125695], [77.36, 163.90459248227583, 0.38430652], [77.37, 175.95920130199414, 0.21833132], [77.38, 179.63195208256883, 0.24169996], [77.39, 182.49832191673957, 0.4070299], [77.4, 185.50299574408064, 0.31419474], [77.41, 163.9095994527739, 0.44464618], [77.42, 146.30180519184847, 0.23303567], [77.43, 146.28965277170954, 0.41277027], [77.44, 153.42031054940924, 0.41326314], [77.45, 152.80527401117556, 0.41680017], [77.46, 155.5387316131341, 0.2862957], [77.47, 157.45486857433306, 0.321833], [77.48, 157.64148651730932, 0.3649213], [77.49, 155.76218026918372, 0.26491982], [77.5, 155.34127881334567, 0.32773855], [77.51, 155.45693288606233, 0.4029797], [77.52, 156.7395735795348, 0.5075977], [77.53, 159.54754724103594, 0.5663342], [77.54, 160.35013056935895, 0.6314404], [77.55, 162.0562969975412, 0.7281257], [77.56, 163.33976201366215, 0.77271014], [77.57, 164.225269150808, 0.7642608], [77.58, 165.0180945681058, 0.81092703], [77.59, 165.2437551551941, 0.80350435], [77.6, 164.9721418694026, 0.7737682], [77.61, 162.83914040580325, 0.7193204], [77.62, 157.82322482465577, 0.5729828], [77.63, 155.76874183812185, 0.72494125], [77.64, 155.9176314500771, 0.7875609], [77.65, 156.432954319418, 0.7810724], [77.66, 156.96527561275556, 0.7935282], [77.67, 156.54359573606956, 0.826924], [77.68, 156.32462677399002, 0.82833064], [77.69, 156.03132392160916, 0.8261136], [77.7, 155.54853420279807, 0.80392146], [77.71, 154.4138562827483, 0.7704047], [77.72, 153.86559087400326, 0.7543822], [77.73, 153.44259859035898, 0.73114103], [77.74, 153.69310868438123, 0.72179776], [77.75, 155.20440544578432, 0.77861875], [77.76, 155.75605959512058, 0.8389288], [77.77, 156.22435918914738, 0.79779524], [77.78, 156.21107551369147, 0.66506565], [77.79, 153.6904034900655, 0.62141687], [77.8, 149.55545797625106, 0.70193154], [77.81, 146.54766065824032, 0.64731175], [77.82, 145.20141082940313, 0.5737154], [77.83, 145.19383665769683, 0.3357182], [77.84, 140.5327781511612, 0.30988705], [77.85, 140.54025223732137, 0.37812907], [77.86, 139.72561223626587, 0.5955457], [77.87, 140.62131416771027, 0.48820662], [77.88, 140.57211478440615, 0.457229], [77.89, 140.02079102592324, 0.6236579], [77.9, 141.20741488093242, 0.7417477], [77.91, 141.78301507807572, 0.7671921], [77.92, 141.14395100220182, 0.7531346], [77.93, 139.939275442262, 0.75357145], [77.94, 138.4976040852423, 0.72814924], [77.95, 136.24502171560846, 0.7123784], [77.96, 134.26024470462536, 0.7524689], [77.97, 133.85699752611376, 0.7874221], [77.98, 134.2846173949656, 0.7755068], [77.99, 135.50225362072803, 0.7405907], [78.0, 137.97690177210004, 0.7903942], [78.01, 139.40366557547983, 0.7532639], [78.02, 141.19245942254574, 0.7191586], [78.03, 142.73493877077144, 0.8016563], [78.04, 144.94506449451197, 0.8482374], [78.05, 146.74423713847494, 0.8630776], [78.06, 147.45528504775768, 0.88302535], [78.07, 146.91996029915435, 0.8394139], [78.08, 143.9987687310995, 0.84436846], [78.09, 141.84582633262812, 0.7887703], [78.1, 139.0053196058339, 0.79947406], [78.11, 136.8571685782906, 0.6995893], [78.12, 135.21985123405702, 0.71120685], [78.13, 134.116856628205, 0.7518947], [78.14, 133.89682528525728, 0.77159595], [78.15, 134.66682433190638, 0.6673676], [78.16, 136.46534172465965, 0.6485417], [78.17, 138.63739467458748, 0.7258154], [78.18, 139.63165327557192, 0.7950036], [78.19, 140.00314114772146, 0.8056621], [78.2, 139.78968812889644, 0.84204996], [78.21, 139.37499090894823, 0.85113704], [78.22, 138.33921192747346, 0.8447701], [78.23, 136.6156595020631, 0.801155], [78.24, 134.62235600414076, 0.80850697], [78.25, 133.08168746670327, 0.80226165], [78.26, 132.00017514329983, 0.6072755], [78.27, 119.80673512233739, 0.26091242], [78.28, 116.61908664715526, 0.5619939], [78.29, 117.36862583264096, 0.6216355], [78.3, 119.17097609274684, 0.57177836], [78.31, 125.28737025371804, 0.3239908], [78.32, 127.76692204938817, 0.5418281], [78.33, 130.92529093567148, 0.5644541], [78.34, 131.03894706102156, 0.65285337], [78.35, 132.43792722666382, 0.6383987], [78.36, 134.0254131823331, 0.7104138], [78.37, 134.59447822658748, 0.75419503], [78.38, 136.0446344422946, 0.6652301], [78.39, 137.1323884037015, 0.56533283], [78.4, 138.15340462459778, 0.4006503], [78.41, 138.58706798519938, 0.4504746], [78.42, 138.15804160113095, 0.32423574], [78.43, 137.55241114790988, 0.3720324], [78.44, 137.47270454207762, 0.62149596], [78.45, 137.63867676029318, 0.64037937], [78.46, 137.18074934813106, 0.6536655], [78.47, 136.8711866801613, 0.75897455], [78.48, 136.89587551298504, 0.7859871], [78.49, 136.7613359927799, 0.80704373], [78.5, 136.334007616713, 0.8019475], [78.51, 136.21976579442705, 0.81845057], [78.52, 136.2439274181748, 0.8370693], [78.53, 137.14384751716463, 0.77352524], [78.54, 136.03037176410714, 0.6279722], [78.55, 137.13681468018237, 0.27970698], [78.56, 125.48482781898602, 0.33449113], [78.57, 116.728678428823, 0.5180598], [78.58, 116.90996949120654, 0.5889295], [78.59, 117.16618114206324, 0.73504275], [78.6, 117.32495112195407, 0.7797245], [78.61, 117.40362456921673, 0.6866197], [78.62, 116.87929994939228, 0.63377994], [78.63, 126.24307182754609, 0.39618737], [78.64, 143.14507824302632, 0.5190108], [78.65, 159.727642939115, 0.31014082], [78.66, 170.17533724309806, 0.24739617], [78.67, 194.95615339530914, 0.3195913], [78.68, 208.84315482630214, 0.3333711], [78.69, 203.7410495773709, 0.43905622], [78.7, 201.46647036320263, 0.24537964], [78.71, 203.4022428812741, 0.26231015], [78.72, 202.0807142154871, 0.1872425], [78.73, 197.42574215858957, 0.25696003], [78.74, 193.59686310676835, 0.3739337], [78.75, 187.72607194478752, 0.48181975], [78.76, 180.3698601750081, 0.30224743], [78.77, 181.40008266876106, 0.3044875], [78.78, 181.51529530840648, 0.16548717], [78.79, 161.7695894397263, 0.09210254], [78.8, 144.156630916386, 0.122197054], [78.81, 143.56169752994123, 0.36184335], [78.82, 143.37072849459608, 0.18280628], [78.83, 143.62486004111165, 0.20827524], [78.84, 144.33007899919528, 0.2739792], [78.85, 142.06352491397834, 0.1544538], [78.86, 141.4223617526341, 0.14849874], [78.87, 138.53319545299186, 0.3953166], [78.88, 137.8458704844282, 0.6572311], [78.89, 137.25992262847927, 0.5617414], [78.9, 137.38228821577903, 0.6239632], [78.91, 137.31813677927886, 0.83874667], [78.92, 136.88538561787138, 0.8073904], [78.93, 136.20927329742895, 0.7438338], [78.94, 135.56819048718307, 0.607543], [78.95, 134.8281457938779, 0.62003565], [78.96, 134.01489451566573, 0.77266985], [78.97, 133.4656488051917, 0.7746892], [78.98, 132.4454492880899, 0.77446675], [78.99, 132.28547670018895, 0.7366573], [79.0, 133.24280521157507, 0.6449188], [79.01, 135.08714278503393, 0.53710306], [79.02, 137.14366039989557, 0.6646984], [79.03, 138.767085133852, 0.6547131], [79.04, 139.05782746356164, 0.6360736], [79.05, 139.25427996567518, 0.7398049], [79.06, 139.38841598725512, 0.71775347], [79.07, 138.38912589006935, 0.53571624], [79.08, 128.93032097249264, 0.20961769], [79.09, 115.31673706245971, 0.48869824], [79.1, 116.14310706397342, 0.6997127], [79.11, 116.98350477090682, 0.80062413], [79.12, 118.40432055687211, 0.83839524], [79.13, 118.86216115577732, 0.7593451], [79.14, 119.46000409742986, 0.7034416], [79.15, 118.65977494112005, 0.67299247], [79.16, 116.82963727382948, 0.5994143], [79.17, 114.29346954144889, 0.65212905], [79.18, 114.43548398143294, 0.7903523], [79.19, 114.13004376859269, 0.6713238], [79.2, 113.26483915218856, 0.55433863], [79.21, 113.36527397691063, 0.51845855], [79.22, 113.37292200920531, 0.45217937], [79.23, 113.1011513710528, 0.40771794], [79.24, 113.38918058438749, 0.22211698], [79.25, 127.53334758734384, 0.15457782], [79.26, 130.72450504010018, 0.18210387], [79.27, 132.4253996157881, 0.33929193], [79.28, 133.75319244264622, 0.5622703], [79.29, 134.77186211448736, 0.6002696], [79.3, 135.5680623745004, 0.735588], [79.31, 135.1004207609026, 0.7220144], [79.32, 135.19426885215015, 0.7110944], [79.33, 135.3645147869475, 0.5530347], [79.34, 136.48537771566106, 0.3809864], [79.35, 137.5141660279783, 0.3965566], [79.36, 138.6564311916923, 0.50277185], [79.37, 138.6225595534196, 0.31324214], [79.38, 137.86369690341303, 0.32928818], [79.39, 137.65943342231947, 0.3504287], [79.4, 137.22466930539622, 0.42580938], [79.41, 136.9697945315748, 0.63654894], [79.42, 136.2926176057536, 0.7151232], [79.43, 136.19933017393225, 0.8154687], [79.44, 136.259281446396, 0.822917], [79.45, 136.72659067756027, 0.6786977], [79.46, 137.51733689227348, 0.66886556], [79.47, 138.29001005750249, 0.8272137], [79.48, 138.46553013593973, 0.8634368], [79.49, 138.37975510763334, 0.84955126], [79.5, 139.4707637364156, 0.84924155], [79.51, 139.34702142683082, 0.8410004], [79.52, 139.45440321621587, 0.77905583], [79.53, 139.76082014783753, 0.72718436], [79.54, 138.69013505903405, 0.6624997], [79.55, 138.89405971669868, 0.4528088], [79.56, 138.21245568174052, 0.46461654], [79.57, 138.16402031847468, 0.41580886], [79.58, 137.39622842133653, 0.33853942], [79.59, 137.4664621615821, 0.41433853], [79.6, 137.63051573343347, 0.3733645], [79.61, 137.80841143733383, 0.5825965], [79.62, 137.83528111434566, 0.6815076], [79.63, 138.6203938880647, 0.6735701], [79.64, 138.14939872744145, 0.595626], [79.65, 136.44609392370194, 0.18643178], [79.66, 134.15454003500025, 0.19956908], [79.67, 132.85551061541807, 0.5709791], [79.68, 133.97090985279075, 0.60353017], [79.69, 133.20779259156865, 0.7172964], [79.7, 133.2531591846691, 0.5075342], [79.71, 131.62631216544855, 0.15413383], [79.72, 131.72414574391271, 0.17141856], [79.73, 130.33472543604836, 0.10417676], [79.74, 144.11248225600357, 0.10631353], [79.75, 141.49165676354835, 0.30705968], [79.76, 140.61149721556214, 0.46026975], [79.77, 140.52220030576268, 0.5542107], [79.78, 140.8730813438492, 0.4912734], [79.79, 140.59389640042406, 0.40342513], [79.8, 140.3160556784294, 0.38435167], [79.81, 138.93706417643023, 0.26344067], [79.82, 137.72086943798712, 0.27446553], [79.83, 138.19477858453178, 0.29110065], [79.84, 138.8037629816144, 0.32519045], [79.85, 138.7184297847026, 0.43164065], [79.86, 137.42953431951787, 0.5694705], [79.87, 136.88576346996908, 0.59457326], [79.88, 137.03249088789386, 0.38395226], [79.89, 136.87323534729504, 0.32842618], [79.9, 137.14996947967012, 0.32639807], [79.91, 137.0172392570786, 0.46100366], [79.92, 137.1718315050646, 0.5676687], [79.93, 137.5413215193335, 0.6859858], [79.94, 137.86188325701224, 0.70296246], [79.95, 137.950409115678, 0.73196524], [79.96, 138.75878142476412, 0.70022786], [79.97, 147.13811492579367, 0.5577728], [79.98, 173.365028850717, 0.43018496], [79.99, 181.22880545363958, 0.48590088], [80.0, 181.57047213183873, 0.5284058], [80.01, 183.44487947317026, 0.54788816], [80.02, 186.3939146930184, 0.5937361], [80.03, 187.29525795861912, 0.58881], [80.04, 185.6764325058711, 0.7017489], [80.05, 182.79398828855236, 0.72051984], [80.06, 180.09436145288052, 0.79356223], [80.07, 179.51452429272865, 0.8136732], [80.08, 179.67995377501353, 0.8306684], [80.09, 180.26751490556845, 0.8169998], [80.1, 181.62012580449027, 0.84991676], [80.11, 184.1635332071502, 0.8284278], [80.12, 185.89381209715853, 0.86817336], [80.13, 186.3380518894269, 0.856967], [80.14, 185.58855937294715, 0.87808406], [80.15, 183.80411582679784, 0.84282196], [80.16, 181.95841827498163, 0.8345848], [80.17, 179.15518188139546, 0.69029534], [80.18, 172.02706250945695, 0.49777243], [80.19, 165.30262577347258, 0.45985103], [80.2, 157.77833575110793, 0.651845], [80.21, 154.22987495107213, 0.72984475], [80.22, 154.19778428671273, 0.6282016], [80.23, 154.57032562132528, 0.6100019], [80.24, 156.89347176861148, 0.5668188], [80.25, 158.81302349286722, 0.45361948], [80.26, 162.70572928603514, 0.31807768], [80.27, 179.80459363896364, 0.23154424], [80.28, 202.91984457355778, 0.3094306], [80.29, 201.3356556247556, 0.2894125], [80.3, 198.49324915916608, 0.18183827], [80.31, 177.4950861409584, 0.30684], [80.32, 176.04382986084448, 0.38520288], [80.33, 176.71026597598015, 0.4022125], [80.34, 176.65151634847277, 0.36791036], [80.35, 176.01720658237423, 0.50692034], [80.36, 174.38118803710339, 0.36065957], [80.37, 172.84792772264834, 0.3897557], [80.38, 172.54397891279234, 0.1971026], [80.39, 177.21951493678918, 0.17283826], [80.4, 184.693271196835, 0.32228857], [80.41, 204.51090732057446, 0.5564684], [80.42, 206.1636701369917, 0.25976348], [80.43, 202.96972464175408, 0.5157665], [80.44, 200.8976910873467, 0.7082928], [80.45, 201.1268736356194, 0.74654806], [80.46, 202.08627817036643, 0.70415914], [80.47, 203.36028557431646, 0.41975766], [80.48, 207.02523013205962, 0.38628045], [80.49, 196.7457053476026, 0.29741985], [80.5, 208.4175386026472, 0.3151102], [80.51, 184.24643529967472, 0.3106957], [80.52, 181.97939682887915, 0.6424623], [80.53, 181.7321330219319, 0.67952466], [80.54, 184.1589226785608, 0.7408972], [80.55, 184.22731008086276, 0.8185694], [80.56, 184.0719825303268, 0.81601036], [80.57, 185.1589762791475, 0.8118449], [80.58, 185.6978539914567, 0.7958641], [80.59, 184.64908591599323, 0.76070935], [80.6, 183.07277425505515, 0.80884004], [80.61, 181.21811789238518, 0.85741776], [80.62, 180.01084904829253, 0.8268824], [80.63, 177.53341832387153, 0.7233021], [80.64, 175.73870613010138, 0.58302116], [80.65, 174.74068509798542, 0.5146694], [80.66, 172.3700353476861, 0.29135278], [80.67, 176.44454649367577, 0.07809031], [80.68, 182.92539869280077, 0.19529596], [80.69, 192.44191490836673, 0.18051367], [80.7, 203.12225121897893, 0.3697181], [80.71, 210.80437784823036, 0.37099695], [80.72, 214.56832106800903, 0.34199095], [80.73, 215.91671669218474, 0.56779593], [80.74, 216.72279084706912, 0.48662058], [80.75, 215.50038141125037, 0.3797487], [80.76, 205.65699029396114, 0.402294], [80.77, 182.2725114732621, 0.23360305], [80.78, 164.83290628315527, 0.17522503], [80.79, 154.39084573127445, 0.23548563], [80.8, 156.38590265978655, 0.24586356], [80.81, 157.60470990728072, 0.23199412], [80.82, 161.13618018648492, 0.32956168], [80.83, 163.05989273755276, 0.35330924], [80.84, 164.89225647139665, 0.21010049], [80.85, 169.3170789356327, 0.20549707], [80.86, 171.3167317097645, 0.23598352], [80.87, 173.99516282665357, 0.24674457], [80.88, 175.45638337862925, 0.50803745], [80.89, 175.5695083039613, 0.68599325], [80.9, 175.12534011702178, 0.74568075], [80.91, 174.29305904831597, 0.6977548], [80.92, 174.2696611490007, 0.7350025], [80.93, 173.91130983538656, 0.74886584], [80.94, 173.01922219574487, 0.7399371], [80.95, 173.60071256100736, 0.71349555], [80.96, 174.05527741579928, 0.69804037], [80.97, 175.22981903602172, 0.69991016], [80.98, 175.40847996462915, 0.7267047], [80.99, 175.00683054955448, 0.7400454], [81.0, 175.52409261508126, 0.76122564], [81.01, 175.83120895538815, 0.75849587], [81.02, 175.4210454828189, 0.72971445], [81.03, 175.2770711521461, 0.67649925], [81.04, 175.2600238854352, 0.6676014], [81.05, 175.197372452392, 0.6050508], [81.06, 173.81987070168262, 0.5491059], [81.07, 174.8028088932743, 0.43493003], [81.08, 174.52773278401597, 0.47614625], [81.09, 174.73145679894853, 0.539253], [81.1, 175.63119520496042, 0.5431672], [81.11, 175.99603688672434, 0.5627238], [81.12, 175.4025843968049, 0.6810301], [81.13, 176.16703271752806, 0.6711582], [81.14, 175.36407302515343, 0.5409225], [81.15, 174.2833555913623, 0.34931806], [81.16, 175.11161840919038, 0.5959505], [81.17, 173.63614527383987, 0.5689054], [81.18, 172.9439484769787, 0.5025117], [81.19, 173.42703931637305, 0.54003835], [81.2, 172.25414906838583, 0.616183], [81.21, 170.8429730514682, 0.59235996], [81.22, 169.32361602786247, 0.42714363], [81.23, 165.42206607842633, 0.2570824], [81.24, 161.93678397775136, 0.28680664], [81.25, 160.35484650018148, 0.26890907], [81.26, 162.01869866871397, 0.3217088], [81.27, 167.01452756898254, 0.39074942], [81.28, 173.877348589382, 0.49131668], [81.29, 185.37674050855284, 0.53204286], [81.3, 196.9641824342632, 0.68859106], [81.31, 204.4821455549861, 0.6745672], [81.32, 206.66265141334566, 0.54905117], [81.33, 207.23720594323697, 0.6716278], [81.34, 207.1667893599502, 0.7745093], [81.35, 207.6520619477972, 0.8362818], [81.36, 207.74859333914986, 0.86560446], [81.37, 208.15327260918235, 0.84922814], [81.38, 208.33650809412734, 0.86004823], [81.39, 208.26089422984768, 0.79903966], [81.4, 207.4613374063328, 0.76599914], [81.41, 206.5254467282705, 0.5804364], [81.42, 205.3658343406392, 0.6034585], [81.43, 203.79596663155758, 0.62217504], [81.44, 198.5317657041929, 0.5359078], [81.45, 190.3489148634482, 0.62629455], [81.46, 187.4582225542483, 0.78053623], [81.47, 187.33248747401728, 0.72259617], [81.48, 186.5773018559322, 0.7445395], [81.49, 186.17633402913447, 0.7415136], [81.5, 185.01293326630233, 0.67478245], [81.51, 183.8206950126529, 0.43580452], [81.52, 184.9595091024719, 0.39762694], [81.53, 185.62287788954282, 0.69385755], [81.54, 185.58076906543715, 0.7748365], [81.55, 186.51145541158544, 0.8267589], [81.56, 185.13077408577757, 0.47385725], [81.57, 189.28085017515414, 0.1047801], [81.58, 190.01218884135363, 0.21542294], [81.59, 188.94013444690304, 0.050032604], [81.6, 188.68583120268286, 0.093902044], [81.61, 200.08968551987982, 0.11729973], [81.62, 216.65385997009705, 0.1666393], [81.63, 213.46121192049696, 0.38470644], [81.64, 212.94320714319645, 0.57764184], [81.65, 212.22678546548562, 0.70560694], [81.66, 211.12959717158702, 0.7165216], [81.67, 208.42328087937847, 0.7095152], [81.68, 207.56829331271564, 0.7344992], [81.69, 206.64104977746138, 0.70650405], [81.7, 205.08143959987777, 0.5899709], [81.71, 204.33061490290862, 0.41857922], [81.72, 205.74650061223798, 0.7481244], [81.73, 207.15718087414754, 0.81379926], [81.74, 207.65238689316632, 0.7199774], [81.75, 209.19479067585223, 0.5980665], [81.76, 212.73493103614027, 0.24397855], [81.77, 213.91644800069923, 0.45573303], [81.78, 211.83694740235867, 0.5067333], [81.79, 208.26140401817133, 0.5285007], [81.8, 203.3323072682819, 0.6207134], [81.81, 198.22092560116567, 0.51256883], [81.82, 190.16898431889837, 0.5380232], [81.83, 186.24753090626425, 0.72524923], [81.84, 184.38837195300468, 0.6850139], [81.85, 182.2364124689952, 0.6154361], [81.86, 177.80444925277905, 0.6545323], [81.87, 176.60960463861886, 0.65205973], [81.88, 176.54016033733498, 0.6616634], [81.89, 176.01379390840617, 0.6384089], [81.9, 175.84445142385272, 0.56616133], [81.91, 176.3804254653667, 0.48122168], [81.92, 177.1214052155091, 0.5020153], [81.93, 177.9253079681808, 0.5429477], [81.94, 179.37004233514003, 0.45690313], [81.95, 179.08052356470407, 0.40443665], [81.96, 176.0692773759726, 0.20877928], [81.97, 174.7691602784303, 0.24980582], [81.98, 170.5888571411935, 0.4377569], [81.99, 170.67138579926606, 0.5112911], [82.0, 171.42670923924842, 0.5563422], [82.01, 173.19683467094436, 0.5896675], [82.02, 173.69185945356793, 0.637638], [82.03, 175.77115770688005, 0.57629687], [82.04, 176.46946718256953, 0.5893779], [82.05, 175.31502800814036, 0.5639148], [82.06, 175.05106956362278, 0.33332154], [82.07, 173.6046583587233, 0.21762271], [82.08, 171.42814910821488, 0.13092698], [82.09, 174.05750960458056, 0.11765015], [82.1, 180.00459055431105, 0.30838177], [82.11, 190.6724314667826, 0.273859], [82.12, 203.1058582608682, 0.47243255], [82.13, 209.0432694947582, 0.5266088], [82.14, 208.69864694198046, 0.41230506], [82.15, 206.7090654527337, 0.558684], [82.16, 205.20117117595944, 0.4271857], [82.17, 203.13812670568907, 0.33752397], [82.18, 200.68946084693633, 0.29752097], [82.19, 200.89995138370205, 0.38372335], [82.2, 201.49526477163556, 0.24116169], [82.21, 197.55776375335867, 0.21583796], [82.22, 190.31959877982706, 0.43250626], [82.23, 182.17084104006574, 0.6024206], [82.24, 177.4533398329637, 0.61387926], [82.25, 174.6744271737451, 0.46942413], [82.26, 171.00938839095465, 0.1319272], [82.27, 167.14146266717967, 0.23802458], [82.28, 165.2125199220221, 0.35203975], [82.29, 161.65847611939455, 0.5311814], [82.3, 161.87815880770154, 0.3303159], [82.31, 165.39266532248644, 0.12173066], [82.32, 182.88892303488905, 0.22140032], [82.33, 208.72850892535774, 0.13248718], [82.34, 232.3259209562944, 0.40201998], [82.35, 233.04685832689316, 0.62876827], [82.36, 234.2622004816802, 0.7494368], [82.37, 233.32276335591106, 0.8125793], [82.38, 233.93303668301186, 0.8404963], [82.39, 234.5207944716945, 0.8163913], [82.4, 235.68236969414912, 0.81449574], [82.41, 234.59141376059216, 0.7528957], [82.42, 234.23060037130213, 0.644778], [82.43, 234.39547095020717, 0.32953992], [82.44, 228.89121414226827, 0.22429089], [82.45, 223.8675231170095, 0.24444611], [82.46, 215.74386674333095, 0.32270122], [82.47, 206.10220242049226, 0.23967578], [82.48, 194.90935850992486, 0.24022242], [82.49, 189.31537245209762, 0.39678255], [82.5, 178.2208912813885, 0.3013393], [82.51, 174.23145980170904, 0.15817708], [82.52, 185.20610902996776, 0.13761654], [82.53, 192.09841205281674, 0.11738351], [82.54, 203.18336752318217, 0.08063804], [82.55, 215.1232476057736, 0.15710083], [82.56, 225.4872279580073, 0.19402574], [82.57, 231.4052509780215, 0.21853417], [82.58, 244.2585766058048, 0.10642289], [82.59, 249.97879120026568, 0.096513316], [82.6, 256.7550253292799, 0.13680327], [82.61, 279.2383303386124, 0.0674897], [82.62, 278.3753299997374, 0.1203513], [82.63, 280.3771068918918, 0.1643888], [82.64, 279.61434082157615, 0.50509405], [82.65, 279.12878420000914, 0.28745943], [82.66, 278.6060611565659, 0.24849726], [82.67, 277.28610486373054, 0.10640675], [82.68, 280.734946863243, 0.45380884], [82.69, 280.0627608870332, 0.50648177], [82.7, 277.39560058968397, 0.29536146], [82.71, 278.1547084901899, 0.13547036], [82.72, 276.17402017763504, 0.29242843], [82.73, 272.3627493886296, 0.19031663], [82.74, 252.5485890368972, 0.29053453], [82.75, 231.52664320845216, 0.23354498], [82.76, 210.90370692925345, 0.09607718], [82.77, 195.07124446601472, 0.11553934], [82.78, 181.13893823254298, 0.09146887], [82.79, 164.29527912517872, 0.0797712], [82.8, 161.07332315808685, 0.30249497], [82.81, 163.57238356566734, 0.23907498], [82.82, 178.28633203924784, 0.19676764], [82.83, 180.69455964059637, 0.48780617], [82.84, 182.45240193565155, 0.5748208], [82.85, 184.31264277750296, 0.7379608], [82.86, 184.62604514376324, 0.6741103], [82.87, 184.69431223143675, 0.58329177], [82.88, 183.77157589969087, 0.7116219], [82.89, 184.0552303785252, 0.67633003], [82.9, 183.89232138623865, 0.71543], [82.91, 183.4530117656483, 0.7536075], [82.92, 181.9097063566804, 0.67034817], [82.93, 178.44424560519246, 0.32522005], [82.94, 171.71720126258907, 0.34264648], [82.95, 169.74777022329786, 0.45847937], [82.96, 171.40949071036476, 0.38297203], [82.97, 173.3904430351683, 0.19394387], [82.98, 168.3479674001686, 0.28629187], [82.99, 162.6655629711527, 0.5791607], [83.0, 155.31555484375374, 0.6743957], [83.01, 148.17159697858838, 0.3915753], [83.02, 144.2593196744571, 0.2313661], [83.03, 145.62855698112884, 0.38254738], [83.04, 145.15685033659, 0.6585434], [83.05, 144.7692526459923, 0.6704727], [83.06, 144.61918117365232, 0.58706313], [83.07, 144.42620974349964, 0.51081663], [83.08, 158.51474891039743, 0.4293214], [83.09, 177.08777956545177, 0.7123337], [83.1, 194.41219350478633, 0.6939148], [83.11, 211.37820197931353, 0.55234826], [83.12, 209.2968296752868, 0.61685526], [83.13, 206.04138767662747, 0.42287073], [83.14, 202.82126320480612, 0.28450853], [83.15, 200.55189672317508, 0.19946383], [83.16, 199.2146219176101, 0.23210593], [83.17, 198.29662130393007, 0.25102484], [83.18, 196.203948747798, 0.45792833], [83.19, 195.09949316614262, 0.25781867], [83.2, 191.18792298143617, 0.4694716], [83.21, 185.0895262046831, 0.32272932], [83.22, 179.33498166612765, 0.18132764], [83.23, 179.16675577120054, 0.40976414], [83.24, 179.31146067931022, 0.35097343], [83.25, 180.99056300818393, 0.31678873], [83.26, 181.90090669625698, 0.27230868], [83.27, 182.51007239398245, 0.28574646], [83.28, 183.3673429527167, 0.45534733], [83.29, 183.31859085687108, 0.52958125], [83.3, 181.87800493301535, 0.56017363], [83.31, 181.27009692713762, 0.4970726], [83.32, 171.40466200887286, 0.20584854], [83.33, 161.98872519394754, 0.32013348], [83.34, 157.37244693197243, 0.31489733], [83.35, 157.46888668980017, 0.17215621], [83.36, 179.55259069813474, 0.049384493], [83.37, 183.12395440583515, 0.098723665], [83.38, 186.11351519611497, 0.14341238], [83.39, 190.5467660159462, 0.27369678], [83.4, 194.2613056270186, 0.13805756], [83.41, 199.59596479502233, 0.13735066], [83.42, 208.59439091772063, 0.12656198], [83.43, 211.16693902883028, 0.1278919], [83.44, 200.54778717721138, 0.09939545], [83.45, 185.60082435601964, 0.061527614], [83.46, 177.8379027592085, 0.17920679], [83.47, 172.8751932768177, 0.09667514], [83.48, 160.9601521622818, 0.1260721], [83.49, 143.88620257104293, 0.07605538], [83.5, 145.61576268218016, 0.16426486], [83.51, 143.40129527845787, 0.3841981], [83.52, 141.43084895306578, 0.14453277], [83.53, 135.9369000043866, 0.14806622], [83.54, 136.68090775149935, 0.35251638], [83.55, 137.64919504223104, 0.52915466], [83.56, 138.04636127646174, 0.5782122], [83.57, 139.0031951108013, 0.6129765], [83.58, 139.09232078121158, 0.39224643], [83.59, 140.71237727012868, 0.13745038], [83.6, 139.53602274692108, 0.15277417], [83.61, 137.74186160994472, 0.31519452], [83.62, 137.692610568823, 0.35067862], [83.63, 136.71858658162483, 0.30579054], [83.64, 137.7878168227693, 0.30504686], [83.65, 137.78379745489354, 0.22368596], [83.66, 137.55042916361208, 0.24016035], [83.67, 135.79497795350588, 0.19033983], [83.68, 133.203577789646, 0.10668123], [83.69, 131.06465302034945, 0.0854973], [83.7, 128.8995308398191, 0.129442], [83.71, 130.89039067403218, 0.22302306], [83.72, 132.11548860341765, 0.29865927], [83.73, 132.53639602084323, 0.38642907], [83.74, 131.70560770809405, 0.32322475], [83.75, 130.1052246206778, 0.24153048], [83.76, 128.6995054420323, 0.34056368], [83.77, 129.32135712478038, 0.4238284], [83.78, 128.71985877679933, 0.3870667], [83.79, 128.1770941822086, 0.3361659], [83.8, 128.15358289726458, 0.37058342], [83.81, 129.20306053729695, 0.21957152], [83.82, 130.06035698895826, 0.31818452], [83.83, 128.63830296832649, 0.21840893], [83.84, 137.22689620100297, 0.3303793], [83.85, 155.8671238691215, 0.21611397], [83.86, 171.96747540898167, 0.36500803], [83.87, 185.0768179464208, 0.3815423], [83.88, 182.67078160801273, 0.37670824], [83.89, 183.05483326715319, 0.4902366], [83.9, 207.67060356170805, 0.52589446], [83.91, 237.48099377381192, 0.2842081], [83.92, 256.59480326020014, 0.45731238], [83.93, 253.1101629403557, 0.68731606], [83.94, 253.01275229776164, 0.81223714], [83.95, 252.19545956819962, 0.78363997], [83.96, 249.2913607142399, 0.72224724], [83.97, 245.54223353869583, 0.753061], [83.98, 242.7130177333077, 0.774381], [83.99, 241.31292099589078, 0.7290183], [84.0, 238.9175031606983, 0.6098425], [84.01, 237.7026672314754, 0.39719105], [84.02, 236.89192601133243, 0.2663098], [84.03, 236.58075298599712, 0.40038735], [84.04, 236.01687500974157, 0.3835229], [84.05, 235.61182134970764, 0.30247068], [84.06, 234.68412458608626, 0.29700106], [84.07, 234.671572774775, 0.4387645], [84.08, 232.92440110067446, 0.59053713], [84.09, 230.21856639245857, 0.45940492], [84.1, 227.92689806661548, 0.52089226], [84.11, 226.19145082727354, 0.48543248], [84.12, 204.31844289210238, 0.2758433], [84.13, 185.95470230504617, 0.7205482], [84.14, 183.5625606270891, 0.8002675], [84.15, 182.2048405677576, 0.81307256], [84.16, 180.25946400735916, 0.7851872], [84.17, 177.79505302501164, 0.7717954], [84.18, 177.36768414187534, 0.7042329], [84.19, 177.22940883236586, 0.5724189], [84.2, 178.76611079006568, 0.5793906], [84.21, 180.4843362664616, 0.4839581], [84.22, 183.99999939492176, 0.3404401], [84.23, 188.6931011869086, 0.48249647], [84.24, 190.01350081919074, 0.660294], [84.25, 191.2861800245182, 0.6863298], [84.26, 192.60940901719368, 0.8004401], [84.27, 189.75691108579508, 0.6990146], [84.28, 185.10144991859576, 0.5823763], [84.29, 178.0772603333241, 0.59133], [84.3, 173.43727579987836, 0.49920017], [84.31, 167.5507089570807, 0.48960468], [84.32, 162.9330202342868, 0.48520428], [84.33, 157.29709672311557, 0.41445896], [84.34, 150.31626826436985, 0.33669904], [84.35, 141.14660126041096, 0.5111895], [84.36, 139.06803758338285, 0.5983102], [84.37, 138.36412106946844, 0.57914144], [84.38, 155.841631856994, 0.36252907], [84.39, 179.72958028068095, 0.1492932], [84.4, 179.46889104961727, 0.25187415], [84.41, 178.66689225761655, 0.11565863], [84.42, 179.64197040070098, 0.10339702], [84.43, 177.78608830614655, 0.09100592], [84.44, 174.0359699581718, 0.08366556], [84.45, 168.2131029477652, 0.38530552], [84.46, 167.94377605649538, 0.18217254], [84.47, 164.22512379303583, 0.14071353], [84.48, 158.13313565053897, 0.16488107], [84.49, 149.33056959176392, 0.08695654], [84.5, 145.34905520038075, 0.102234796], [84.51, 141.80568235548924, 0.20348129], [84.52, 140.31061179517965, 0.27959287], [84.53, 139.02904364804806, 0.34290993], [84.54, 138.22227899727687, 0.22961323], [84.55, 136.6095675566412, 0.19647029], [84.56, 133.90556555237194, 0.24526234], [84.57, 127.8169012480534, 0.24260145], [84.58, 119.15731618976048, 0.21749738], [84.59, 118.40763173077673, 0.27601552], [84.6, 118.25585386999855, 0.2049488], [84.61, 120.06702768531271, 0.2593639], [84.62, 125.9564730894757, 0.16539945], [84.63, 135.73483593778872, 0.23058699], [84.64, 139.00513978075455, 0.26225728], [84.65, 143.0231360002838, 0.22301996], [84.66, 149.72014989590122, 0.15786657], [84.67, 152.60922020801496, 0.19639416], [84.68, 153.8789348989568, 0.3545858], [84.69, 153.5654063122395, 0.34848946], [84.7, 154.30281458834483, 0.384938], [84.71, 154.27166333545767, 0.23069812], [84.72, 154.92547442445093, 0.4238262], [84.73, 154.05559101162996, 0.19633198], [84.74, 154.2709093029702, 0.3126633], [84.75, 152.39694801369194, 0.23063973], [84.76, 153.4232506961056, 0.21036649], [84.77, 171.6800716132625, 0.19158724], [84.78, 190.33233470909065, 0.1330976], [84.79, 208.41134563989698, 0.19128634], [84.8, 207.50080500738062, 0.13788033], [84.81, 208.8893552517198, 0.2888874], [84.82, 208.74269549255771, 0.25492486], [84.83, 208.55038322454737, 0.3572984], [84.84, 208.75190066254928, 0.3759268], [84.85, 209.48100379648636, 0.31116477], [84.86, 210.49200559037604, 0.37325692], [84.87, 209.04856555741492, 0.23741041], [84.88, 189.5384930042037, 0.2660234], [84.89, 171.16863607751839, 0.24131826], [84.9, 154.04602545318977, 0.29435095], [84.91, 133.74267099773252, 0.35127375], [84.92, 117.5988070657904, 0.31230557], [84.93, 104.6235155768162, 0.38476175], [84.94, 104.83006011896438, 0.49737766], [84.95, 105.02289060730735, 0.27191466], [84.96, 104.3826369188248, 0.46631673], [84.97, 104.05542609029135, 0.41210142], [84.98, 104.19335527792259, 0.44138232], [84.99, 103.97148934422145, 0.21952699], [85.0, 103.76705313152578, 0.36726335], [85.01, 103.99612070990769, 0.23433495], [85.02, 104.43033710570833, 0.40217948], [85.03, 104.93931626970732, 0.18389454], [85.04, 105.19143510286713, 0.23563825], [85.05, 104.0776712920612, 0.14527565], [85.06, 103.7083292746423, 0.079966426], [85.07, 104.5073292612689, 0.09245378], [85.08, 92.97546925490586, 0.32769498], [85.09, 86.23493961179832, 0.22274822], [85.1, 77.33294804369825, 0.40324828], [85.11, 69.74703008100795, 0.39057902], [85.12, 61.97251207324021, 0.3338483], [85.13, 55.67540119118404, 0.542144], [85.14, 49.472857894791915, 0.2935565], [85.15, 45.33212397644774, 0.2225482], [85.16, 45.724493734639, 0.3650516], [85.17, 46.470843866457, 0.45042866], [85.18, 46.38231428671696, 0.73448414], [85.19, 46.188499626634226, 0.7251272], [85.2, 46.28244355704727, 0.7836845], [85.21, 46.52578937186067, 0.78227884], [85.22, 46.57978874894167, 0.8099196], [85.23, 46.74034208346651, 0.7611684], [85.24, 46.36911101790366, 0.8134334], [85.25, 46.41422097319956, 0.79415756], [85.26, 46.32836319041491, 0.79916054], [85.27, 46.66021390913205, 0.7814771], [85.28, 46.69582987461672, 0.7394937], [85.29, 46.722154293687375, 0.74906725], [85.3, 46.43875868325013, 0.7508887], [85.31, 46.278771648071206, 0.7690606], [85.32, 46.1913733642779, 0.68613183], [85.33, 51.689365020324026, 0.29006502], [85.34, 58.39489020072041, 0.20693748], [85.35, 63.95515963602264, 0.22429106], [85.36, 72.39319804785559, 0.14847328], [85.37, 79.38017694664963, 0.16790466], [85.38, 91.49525764118044, 0.19818132], [85.39, 101.12095109602473, 0.15195803], [85.4, 114.87458078838898, 0.111799374], [85.41, 130.4491374229926, 0.32195133], [85.42, 146.20172919260818, 0.58648443], [85.43, 157.4151755225532, 0.74783975], [85.44, 156.62915640739675, 0.82858825], [85.45, 155.7601260284456, 0.8441084], [85.46, 155.17803869999656, 0.73585016], [85.47, 154.26420443089887, 0.7188035], [85.48, 154.0850853940597, 0.70769006], [85.49, 155.43649751601865, 0.6994974], [85.5, 156.33483472323636, 0.6735479], [85.51, 158.02231408671298, 0.5981123], [85.52, 160.90803556946167, 0.6349043], [85.53, 163.44379341531894, 0.756852], [85.54, 165.43200669257274, 0.79149884], [85.55, 167.2661575195653, 0.73809445], [85.56, 170.05047156968547, 0.6808731], [85.57, 172.05564541254336, 0.57329917], [85.58, 173.68069974919894, 0.71372765], [85.59, 174.97784664545352, 0.8107907], [85.6, 175.37055771827022, 0.823954], [85.61, 175.85789259162988, 0.7961555], [85.62, 177.5079833025676, 0.7863778], [85.63, 178.2244699908485, 0.7803575], [85.64, 177.86821003737347, 0.7816178], [85.65, 176.4576773699083, 0.7788718], [85.66, 175.57417792977168, 0.78973347], [85.67, 175.01754190439416, 0.7941365], [85.68, 174.51515656764823, 0.763586], [85.69, 174.01973250601077, 0.7783979], [85.7, 174.4630639142693, 0.7858432], [85.71, 174.84156254171393, 0.80644304], [85.72, 175.25644598997894, 0.78787297], [85.73, 175.45116237345607, 0.77732915], [85.74, 173.54848701203707, 0.68907183], [85.75, 170.9058345483378, 0.59146756], [85.76, 166.01810300405327, 0.6114801], [85.77, 161.47576263040196, 0.3968863], [85.78, 158.03894144821945, 0.40384138], [85.79, 156.08894039315487, 0.3602726], [85.8, 149.701279917537, 0.16891707], [85.81, 149.3290757044408, 0.13119389], [85.82, 143.89640854610212, 0.06654182], [85.83, 147.55233136628, 0.12813206], [85.84, 158.4812761355662, 0.19594873], [85.85, 163.8184732335635, 0.19417062], [85.86, 169.41903989797288, 0.4237438], [85.87, 173.54367743908514, 0.6448065], [85.88, 177.46328938043476, 0.7740661], [85.89, 192.95809669004345, 0.7244783], [85.9, 201.53724941270235, 0.7694392], [85.91, 206.29678189873988, 0.63705814], [85.92, 209.0926931034417, 0.39794287], [85.93, 209.53334590193896, 0.41327563], [85.94, 209.09366865623736, 0.5037503], [85.95, 207.07851468288078, 0.4105162], [85.96, 194.8302516711084, 0.17729561], [85.97, 180.62995224270142, 0.30970687], [85.98, 180.84546348605602, 0.40112337], [85.99, 177.84111965778155, 0.34236622], [86.0, 176.45696368661746, 0.3017686], [86.01, 175.63133399817394, 0.31927618], [86.02, 176.17993192058157, 0.28199118], [86.03, 177.0439591320857, 0.15174684], [86.04, 177.74387236784278, 0.2503036], [86.05, 178.7881041572423, 0.1915549], [86.06, 176.38227994539915, 0.18413328], [86.07, 176.13820844056917, 0.08968293], [86.08, 175.78778037187956, 0.12576841], [86.09, 174.5034864391644, 0.09194006], [86.1, 173.7001615709379, 0.15642402], [86.11, 174.37635015154225, 0.094442345], [86.12, 174.75265472527633, 0.44746295], [86.13, 172.57774622266754, 0.11519643], [86.14, 168.8719576771662, 0.13691927], [86.15, 169.2377388582616, 0.15002553], [86.16, 172.7610819461732, 0.15004505], [86.17, 178.55457734360758, 0.15547663], [86.18, 181.8563616268442, 0.21917108], [86.19, 182.56597904887366, 0.33335817], [86.2, 183.9239237933536, 0.5020528], [86.21, 185.88494410044706, 0.4672305], [86.22, 186.67145847916262, 0.6679348], [86.23, 187.5907594973073, 0.6472959], [86.24, 189.299228100752, 0.66241986], [86.25, 189.7001296643847, 0.7985973], [86.26, 186.99637146489118, 0.58335435], [86.27, 189.05707532216627, 0.342328], [86.28, 187.94971272235767, 0.130746], [86.29, 187.4159720814617, 0.17368826], [86.3, 185.60404400830345, 0.19381148], [86.31, 185.1037364642038, 0.2776922], [86.32, 184.71063458265644, 0.34183216], [86.33, 185.83364009010586, 0.40011716], [86.34, 185.5850274553875, 0.5750016], [86.35, 185.48214779336007, 0.49796543], [86.36, 185.83042565875206, 0.44768488], [86.37, 186.45568946470863, 0.4341326], [86.38, 187.46389113706155, 0.36004367], [86.39, 191.69111827997818, 0.41328317], [86.4, 196.1626281461264, 0.2562226], [86.41, 200.86414792815333, 0.29181808], [86.42, 205.284046738137, 0.1878107], [86.43, 207.13429521263546, 0.148065], [86.44, 210.3992302389716, 0.24219254], [86.45, 211.55922433053058, 0.261463], [86.46, 211.40643758914874, 0.24240813], [86.47, 210.48574023628936, 0.19739227], [86.48, 210.24176559814885, 0.19579454], [86.49, 210.85293894873305, 0.3444691], [86.5, 211.7902079757118, 0.2908598], [86.51, 211.11049884402672, 0.33500817], [86.52, 209.7555398050622, 0.20406096], [86.53, 209.62745375735838, 0.31952688], [86.54, 210.3238950274491, 0.35032925], [86.55, 198.98252091104123, 0.13881679], [86.56, 188.49708048900317, 0.3086382], [86.57, 187.7677811406898, 0.2950203], [86.58, 185.62204847732943, 0.46416846], [86.59, 184.3127099687781, 0.49932095], [86.6, 184.41766549560143, 0.45150253], [86.61, 184.93889322545039, 0.41800842], [86.62, 184.95660790646485, 0.4270311], [86.63, 185.6248463520616, 0.46670997], [86.64, 185.39807650755893, 0.5344094], [86.65, 185.38921651584687, 0.47704032], [86.66, 185.67488673664516, 0.49738696], [86.67, 185.8358109704813, 0.549065], [86.68, 185.08022697543393, 0.4795253], [86.69, 185.68395622075548, 0.5521215], [86.7, 184.72637001616792, 0.5242373], [86.71, 185.64304979878102, 0.53242767], [86.72, 185.8667448255846, 0.6160509], [86.73, 185.27633627325008, 0.60286826], [86.74, 184.4298727039395, 0.31144774], [86.75, 183.65596863600996, 0.18145876], [86.76, 186.01303445160602, 0.4004904], [86.77, 189.03396696877167, 0.5348206], [86.78, 190.400294227144, 0.23128548], [86.79, 212.36901209659695, 0.34184214], [86.8, 214.07434523389344, 0.6045099], [86.81, 215.0587183757939, 0.6833073], [86.82, 213.55261222108038, 0.47157666], [86.83, 208.83389326209112, 0.33900526], [86.84, 207.87877556065328, 0.39866433], [86.85, 205.57608267599304, 0.23067617], [86.86, 207.1265757087818, 0.21386288], [86.87, 209.54781957608043, 0.11741599], [86.88, 217.59566771305646, 0.3240126], [86.89, 220.6645875911202, 0.39476067], [86.9, 226.43779483324278, 0.34446275], [86.91, 231.3643220835571, 0.47113645], [86.92, 230.3211773426861, 0.4636343], [86.93, 228.42221629203055, 0.51977247], [86.94, 221.35296617647145, 0.46801046], [86.95, 218.53265345956757, 0.20626733], [86.96, 215.16406686341244, 0.102734335], [86.97, 213.92558725236677, 0.2398455], [86.98, 213.3668167977274, 0.117882505], [86.99, 213.64852072750142, 0.17239243], [87.0, 214.0140005800385, 0.10385831], [87.01, 214.44212094269812, 0.15174596], [87.02, 215.52575164389467, 0.08314997], [87.03, 214.9609600209431, 0.117998], [87.04, 214.73495776903675, 0.11051585], [87.05, 212.95457845806598, 0.15535815], [87.06, 210.2644434905957, 0.25508803], [87.07, 199.71205087288473, 0.33939502], [87.08, 195.97277396129005, 0.55918425], [87.09, 191.55872344379338, 0.26552], [87.1, 187.5873285426249, 0.24336736], [87.11, 186.0776998147944, 0.41667804], [87.12, 189.63833423862872, 0.5677666], [87.13, 192.582422458966, 0.6762841], [87.14, 194.9930228803347, 0.6840101], [87.15, 199.12539036857837, 0.6939493], [87.16, 205.60198208434434, 0.22903031], [87.17, 210.93038082291167, 0.35114476], [87.18, 211.13866610885708, 0.25785512], [87.19, 208.0591499707806, 0.33212894], [87.2, 209.66936396995698, 0.19727585], [87.21, 209.73243422526542, 0.28917846], [87.22, 211.92071187231247, 0.124306455], [87.23, 213.80500156666116, 0.15377378], [87.24, 216.08994286791375, 0.15580258], [87.25, 215.3122744356186, 0.333453], [87.26, 215.23646681668592, 0.3107142], [87.27, 215.16601471438435, 0.33245987], [87.28, 214.88559085409176, 0.3753372], [87.29, 214.16858605530905, 0.6506207], [87.3, 215.44118584235164, 0.5010583], [87.31, 216.40764862355832, 0.37609214], [87.32, 229.55319258156425, 0.16420686], [87.33, 234.9270147910505, 0.33502227], [87.34, 234.12376770352745, 0.19997425], [87.35, 233.76777911817504, 0.17066705], [87.36, 237.7766987758972, 0.21864599], [87.37, 232.9248235120957, 0.13133809], [87.38, 225.57227111418763, 0.2668555], [87.39, 225.18074205321938, 0.32290968], [87.4, 227.7735732268067, 0.4360945], [87.41, 230.84881901379848, 0.5272882], [87.42, 230.56491233946784, 0.6125478], [87.43, 231.50930517289905, 0.4532606], [87.44, 235.6976946396137, 0.5024781], [87.45, 237.99961898199453, 0.5312125], [87.46, 262.3245382466941, 0.53157145], [87.47, 304.16795454350046, 0.3376648], [87.48, 338.35706114563914, 0.39671654], [87.49, 390.3227843254765, 0.3831758], [87.5, 427.40881543300696, 0.27996618], [87.51, 465.64043833535425, 0.39728478], [87.52, 464.271257776526, 0.48830482], [87.53, 464.83695972026675, 0.563253], [87.54, 459.211444364737, 0.3589582], [87.55, 459.0155651260093, 0.3847006], [87.56, 460.31447722908786, 0.49729055], [87.57, 464.00515547889825, 0.47347134], [87.58, 461.9074859343083, 0.4778785], [87.59, 463.6008208050677, 0.3485641], [87.6, 465.70630810004536, 0.38253486], [87.61, 466.6726462999921, 0.2240314], [87.62, 462.8419062645636, 0.1540412], [87.63, 435.9867372917705, 0.19922793], [87.64, 412.4144154138903, 0.12117289], [87.65, 359.0252561677548, 0.29174823], [87.66, 328.11997662776014, 0.44266543], [87.67, 305.2757138227587, 0.39669377], [87.68, 265.5353202977933, 0.22474636], [87.69, 251.7165341241003, 0.40406814], [87.7, 249.29480645145196, 0.42926684], [87.71, 249.12626225520006, 0.5739647], [87.72, 247.4163333879331, 0.5808946], [87.73, 244.3983424934098, 0.5509809], [87.74, 239.2381991704246, 0.39724112], [87.75, 226.72913022734332, 0.33036572], [87.76, 226.0997056229297, 0.20536071], [87.77, 230.3550351960396, 0.19879507], [87.78, 234.6912034180976, 0.3468539], [87.79, 236.82975597964764, 0.41959155], [87.8, 237.56252182689096, 0.4205259], [87.81, 238.5092117054978, 0.4976162], [87.82, 231.0616954663811, 0.20705144], [87.83, 222.15381811979907, 0.18861702], [87.84, 210.62198661027332, 0.43096095], [87.85, 205.71384594072978, 0.4515877], [87.86, 193.45175924173105, 0.35833165], [87.87, 181.90493724302013, 0.10407319], [87.88, 167.8763117219216, 0.28137475], [87.89, 155.56963256454412, 0.3640084], [87.9, 148.6588545529653, 0.4938489], [87.91, 139.9967939497459, 0.09156541], [87.92, 126.24540347988241, 0.30140126], [87.93, 118.65058255052716, 0.37492913], [87.94, 107.13798955872115, 0.4107607], [87.95, 104.67769559793199, 0.40299687], [87.96, 104.52837578853894, 0.53600425], [87.97, 104.39960891395859, 0.5789202], [87.98, 103.99025780955868, 0.5724715], [87.99, 103.76342617672427, 0.48342958], [88.0, 103.537661923802, 0.5521068], [88.01, 103.34081765300573, 0.5414318], [88.02, 103.26183433643193, 0.586817], [88.03, 102.97694416931363, 0.56156415], [88.04, 103.98134370981553, 0.46752355], [88.05, 105.04487212301107, 0.3954737], [88.06, 105.58673597792365, 0.31756982], [88.07, 112.19580652694367, 0.34192652], [88.08, 123.77782579669065, 0.32332292], [88.09, 143.1051695033991, 0.48071322], [88.1, 152.15329782616297, 0.36690655], [88.11, 159.4783110405475, 0.32521126], [88.12, 178.12794907872754, 0.39997688], [88.13, 197.93897518771612, 0.48176405], [88.14, 209.2841227990824, 0.27978164], [88.15, 205.26451686891045, 0.087805316], [88.16, 214.841538002606, 0.12557997], [88.17, 228.64464663562913, 0.12560934], [88.18, 238.07633331042706, 0.15597743], [88.19, 251.14166935124632, 0.14805238], [88.2, 263.15758427202826, 0.08273444], [88.21, 275.4679581842012, 0.1076022], [88.22, 280.875870905866, 0.18426247], [88.23, 283.47869818636065, 0.23321478], [88.24, 283.553533401464, 0.25589913], [88.25, 281.4702802570845, 0.20995998], [88.26, 281.94106030237504, 0.18189275], [88.27, 284.24569258721203, 0.33176225], [88.28, 289.1164086947308, 0.2397961], [88.29, 293.4100393179208, 0.2377705], [88.3, 299.70269379502344, 0.23716395], [88.31, 290.9796064593475, 0.2819106], [88.32, 260.9355879223367, 0.27422836], [88.33, 243.4320149719652, 0.14816618], [88.34, 232.85587542588866, 0.16842286], [88.35, 233.40537165264362, 0.25876948], [88.36, 234.03533950142705, 0.25335285], [88.37, 234.39744025423877, 0.2984675], [88.38, 260.02642508569755, 0.17818893], [88.39, 280.0176433336325, 0.34381285], [88.4, 279.2315288121207, 0.41265842], [88.41, 280.83360244348034, 0.55192107], [88.42, 281.549214945602, 0.59096897], [88.43, 281.70468891454425, 0.36913684], [88.44, 282.3981628345156, 0.48810035], [88.45, 283.9763465140414, 0.30568212], [88.46, 283.2121821713044, 0.3093739], [88.47, 283.1535803362168, 0.2979775], [88.48, 281.22939109674473, 0.2756271], [88.49, 278.953065671093, 0.3145346], [88.5, 277.2351764837458, 0.3524983], [88.51, 275.1192507404715, 0.5440707], [88.52, 276.1184560886785, 0.57001036], [88.53, 276.45920328306977, 0.6568748], [88.54, 277.64362826751375, 0.615968], [88.55, 277.6960187754879, 0.6400359], [88.56, 278.669532241406, 0.7124267], [88.57, 279.2132671376064, 0.64877385], [88.58, 280.0210118576404, 0.657834], [88.59, 281.10512736212564, 0.62708384], [88.6, 279.78251163635036, 0.67745364], [88.61, 280.6373280766615, 0.724824], [88.62, 280.8015657075766, 0.7099022], [88.63, 280.866038837332, 0.74799114], [88.64, 280.72077876348254, 0.7247161], [88.65, 279.2679619025096, 0.7125051], [88.66, 279.9970280544455, 0.7241366], [88.67, 278.13285423799255, 0.7443936], [88.68, 277.8938290492439, 0.67134637], [88.69, 275.4315240700097, 0.66061604], [88.7, 274.5416725953702, 0.7175048], [88.71, 274.9907542141947, 0.6836659], [88.72, 275.02994759131013, 0.7097838], [88.73, 275.9078636646568, 0.65873724], [88.74, 276.7235925293045, 0.643727], [88.75, 277.43565964462005, 0.6453029], [88.76, 276.2604249390791, 0.52177787], [88.77, 274.4614766652013, 0.63470614], [88.78, 277.78860009517604, 0.49935192], [88.79, 278.20980084494516, 0.55904156], [88.8, 280.8135827467455, 0.632713], [88.81, 282.19919925378815, 0.4433418], [88.82, 281.04246338265216, 0.43597645], [88.83, 281.9456905068497, 0.32631868], [88.84, 280.03444354299387, 0.34856677], [88.85, 279.97684194856174, 0.4197404], [88.86, 278.2878837670477, 0.43817556], [88.87, 277.8787874148225, 0.68039507], [88.88, 278.6317285157909, 0.5419718], [88.89, 278.1470467039335, 0.6305189], [88.9, 278.2760596292643, 0.56497127], [88.91, 278.73182496058644, 0.6183932], [88.92, 280.02356781981604, 0.7057854], [88.93, 281.6677925078403, 0.6804543], [88.94, 282.7374443513343, 0.69940186], [88.95, 283.4091868105724, 0.62279904], [88.96, 282.00832192981, 0.72371274], [88.97, 282.3487796312482, 0.5187064], [88.98, 281.14773342161345, 0.44928056], [88.99, 277.8764405210081, 0.29887122], [89.0, 277.73106437468135, 0.2534472], [89.01, 274.8002113152243, 0.19114788], [89.02, 274.10701100640046, 0.17858043], [89.03, 269.5218114532439, 0.35747418], [89.04, 268.87692516607467, 0.5260339], [89.05, 262.6900977556591, 0.4042052], [89.06, 261.82627032787036, 0.5633111], [89.07, 262.7994665371268, 0.45634654], [89.08, 265.9442548321727, 0.45052865], [89.09, 268.7973786842215, 0.22446483], [89.1, 264.9488618755787, 0.122392766], [89.11, 263.3988528959775, 0.09766173], [89.12, 282.66348123448427, 0.18661325], [89.13, 280.7051794622467, 0.13407695], [89.14, 286.08120443645896, 0.28955677], [89.15, 290.6342501609689, 0.3843345], [89.16, 296.00327451881066, 0.2770288], [89.17, 301.1484537044303, 0.11726531], [89.18, 304.14640035973537, 0.097734384], [89.19, 306.09526011623217, 0.09469998], [89.2, 308.4266872904039, 0.124514125], [89.21, 308.0733391832691, 0.14724392], [89.22, 309.3348218061578, 0.11401355], [89.23, 308.0930883039555, 0.13209553], [89.24, 303.09763322420457, 0.17163135], [89.25, 292.17107033576525, 0.27495244], [89.26, 282.07534438792754, 0.33175066], [89.27, 272.1456830310401, 0.36511883], [89.28, 266.28478268449226, 0.48438358], [89.29, 262.4178801922526, 0.5043544], [89.3, 256.7263907093368, 0.38937327], [89.31, 251.6322427577606, 0.24215406], [89.32, 242.9645467360383, 0.21981366], [89.33, 233.8370107954984, 0.22660233], [89.34, 229.7923117365425, 0.2944763], [89.35, 224.98662937642078, 0.17528349], [89.36, 221.16913441625132, 0.1739232], [89.37, 220.91763537526396, 0.27963477], [89.38, 220.7612323154837, 0.25819844], [89.39, 219.37771009381567, 0.1780486], [89.4, 223.80489381853442, 0.10890059], [89.41, 237.22112510294951, 0.16176793], [89.42, 248.58404230800238, 0.13023809], [89.43, 256.837061990512, 0.119914316], [89.44, 268.0791760375977, 0.17034134], [89.45, 282.48779905050435, 0.19309075], [89.46, 295.8331392147214, 0.2670286], [89.47, 305.61005218298806, 0.25436231], [89.48, 309.5610837417642, 0.1280293], [89.49, 309.0302355507478, 0.17645076], [89.5, 309.8894505235468, 0.098280415], [89.51, 308.92837472204224, 0.15360464], [89.52, 310.34900716464426, 0.13028443], [89.53, 305.98513942577523, 0.16460966], [89.54, 304.4617106012215, 0.319434], [89.55, 298.71556739856106, 0.19372685], [89.56, 293.1156197596611, 0.14851823], [89.57, 282.7002141339519, 0.074245036], [89.58, 274.07921507600344, 0.14682901], [89.59, 271.32308266128217, 0.3469059], [89.6, 271.22396382454946, 0.33964372], [89.61, 272.12292399341277, 0.5430241], [89.62, 271.8475270774537, 0.4401033], [89.63, 273.53938483513184, 0.26734245], [89.64, 277.9590931343224, 0.15251008], [89.65, 277.70689684904437, 0.16018291], [89.66, 278.35075702524443, 0.19538967], [89.67, 277.79275743652, 0.31294096], [89.68, 274.85269649106664, 0.42824596], [89.69, 274.8330848986706, 0.57930624], [89.7, 274.283765816073, 0.65874696], [89.71, 275.94929142323014, 0.64360785], [89.72, 277.4276024292699, 0.6809902], [89.73, 278.32908625020093, 0.6133874], [89.74, 278.6772939910796, 0.59410954], [89.75, 277.55904060956556, 0.5874128], [89.76, 278.53440260661915, 0.23517288], [89.77, 271.73855932730913, 0.09828306], [89.78, 253.41767495311842, 0.041023776], [89.79, 250.80535305132213, 0.11251028], [89.8, 242.5091116691986, 0.29403853], [89.81, 236.53000389795037, 0.31472823], [89.82, 234.62190513635477, 0.24425977], [89.83, 232.5917850118631, 0.35921025], [89.84, 232.54792773438894, 0.41416138], [89.85, 234.69626967300445, 0.54564655], [89.86, 235.01141962479508, 0.6585239], [89.87, 236.0516534659514, 0.64469373], [89.88, 236.30845439775814, 0.5934682], [89.89, 236.5439416969767, 0.59718066], [89.9, 236.97078497902186, 0.63772], [89.91, 237.0796033135719, 0.6013373], [89.92, 236.3868194432235, 0.4703478], [89.93, 236.1648831085705, 0.61530846], [89.94, 237.1539522795064, 0.6270913], [89.95, 236.18412449146706, 0.64298135], [89.96, 236.45039323134793, 0.58547354], [89.97, 236.6690256824282, 0.60083956], [89.98, 236.33039292015252, 0.66046005], [89.99, 236.43243995520402, 0.6529048], [90.0, 236.65424952247716, 0.6846492], [90.01, 237.60317146310348, 0.65926087], [90.02, 242.98703656273008, 0.17257887], [90.03, 244.38547184955408, 0.11854806], [90.04, 244.2059876814401, 0.16826051], [90.05, 241.50960863732706, 0.16829209], [90.06, 239.23152457239144, 0.2891926], [90.07, 240.39541177673323, 0.18593423], [90.08, 243.8100350035329, 0.12416138], [90.09, 258.4208967807584, 0.113857016], [90.1, 278.4427617064821, 0.146795], [90.11, 278.201764594074, 0.07728752], [90.12, 275.21806421843394, 0.16288063], [90.13, 276.99122134024634, 0.12206354], [90.14, 275.0796948445242, 0.15546285], [90.15, 275.10808614719645, 0.23989327], [90.16, 276.7220130540328, 0.089016065], [90.17, 276.2777596266935, 0.05167037], [90.18, 277.87607081632626, 0.21659449], [90.19, 277.2085732551426, 0.18568568], [90.2, 275.68911391257234, 0.31937858], [90.21, 277.9759417188352, 0.10155385], [90.22, 278.7177672109397, 0.331416], [90.23, 279.70551635606523, 0.2259709], [90.24, 280.90440143696384, 0.46154058], [90.25, 279.9932833616138, 0.36225167], [90.26, 280.47355693654987, 0.07827486], [90.27, 280.02721487007153, 0.13832852], [90.28, 281.1695357862443, 0.20896198], [90.29, 281.1972511099408, 0.12532279], [90.3, 275.4148967654145, 0.34101123], [90.31, 274.37288047659865, 0.5382025], [90.32, 274.5454460114415, 0.76738304], [90.33, 276.11614295450346, 0.7844064], [90.34, 276.7137296799305, 0.80554426], [90.35, 278.1544299731094, 0.7844369], [90.36, 278.68077496270286, 0.7702717], [90.37, 278.4932955823358, 0.80676633], [90.38, 277.80993701123776, 0.62457496], [90.39, 277.08072064529665, 0.5082092], [90.4, 275.97785124058146, 0.45581698], [90.41, 275.3302013052922, 0.50890845], [90.42, 275.3133181854497, 0.40346205], [90.43, 274.22512704459444, 0.5621923], [90.44, 272.4649052675988, 0.75899774], [90.45, 271.2106809410916, 0.8241086], [90.46, 270.67047573814386, 0.80661744], [90.47, 269.4942282117919, 0.76145923], [90.48, 269.05951761069264, 0.65730196], [90.49, 264.69668155391764, 0.2075176], [90.5, 242.02370084007862, 0.105525725], [90.51, 217.88995306867716, 0.2764869], [90.52, 189.17335687490268, 0.30509368], [90.53, 171.70798816030046, 0.3937026], [90.54, 152.77263623864056, 0.3418472], [90.55, 135.2378143912841, 0.31716117], [90.56, 136.79263058466978, 0.4241065], [90.57, 136.56208085179927, 0.48076922], [90.58, 137.07631867471363, 0.5581031], [90.59, 137.8652924484247, 0.6190622], [90.6, 138.4832040507197, 0.75637627], [90.61, 139.1106615049762, 0.74443436], [90.62, 139.50891211679956, 0.65888095], [90.63, 140.12456227957466, 0.5041779], [90.64, 139.97647977100127, 0.5709119], [90.65, 139.16679329719247, 0.69350785], [90.66, 138.55244755245985, 0.7115003], [90.67, 153.45976752932432, 0.6191429], [90.68, 175.94900982259648, 0.47378814], [90.69, 193.2300054360002, 0.40430903], [90.7, 222.87148637094907, 0.51620907], [90.71, 250.4247691008864, 0.580097], [90.72, 271.25204167712207, 0.5689484], [90.73, 271.53669294290194, 0.6237592], [90.74, 272.2206522709128, 0.5835384], [90.75, 272.6621705140399, 0.49588498], [90.76, 259.9573139942479, 0.40599793], [90.77, 234.85444911614948, 0.34718117], [90.78, 233.28300467085202, 0.57600766], [90.79, 232.34002937936185, 0.6874476], [90.8, 233.23469458428988, 0.7336771], [90.81, 232.9089725185416, 0.7491229], [90.82, 233.99229513579556, 0.7393773], [90.83, 232.80061630233848, 0.73787534], [90.84, 233.24825968394904, 0.7426608], [90.85, 233.0178954380113, 0.73188776], [90.86, 232.84154090123081, 0.72935987], [90.87, 233.2658399636751, 0.7461674], [90.88, 233.36664163719064, 0.7529558], [90.89, 233.97400020255517, 0.671819], [90.9, 233.29316068132016, 0.60275084], [90.91, 232.53622539559214, 0.6295786], [90.92, 232.94871202395908, 0.619047], [90.93, 231.18880873316553, 0.6645378], [90.94, 229.7470717004595, 0.6302432], [90.95, 230.61451542270075, 0.33111104], [90.96, 231.7921743872898, 0.23782073], [90.97, 239.4020741670172, 0.08571109], [90.98, 231.19836694463385, 0.08435641], [90.99, 222.84299658502235, 0.21601562], [91.0, 208.3165875478136, 0.29384127], [91.01, 201.36988913405236, 0.16680992], [91.02, 186.6931021091833, 0.13024633], [91.03, 177.21617946802294, 0.09093946], [91.04, 173.0266416953162, 0.09656004], [91.05, 154.74650511744406, 0.12927061], [91.06, 139.38244145219502, 0.29630274], [91.07, 140.38585176595103, 0.3462594], [91.08, 140.46091615921483, 0.4270923], [91.09, 140.08109208612782, 0.34217986], [91.1, 138.31124746138104, 0.11721039], [91.11, 140.71338726110451, 0.106038384], [91.12, 141.93147039643534, 0.0847498], [91.13, 144.492820701217, 0.11672296], [91.14, 148.23607899301192, 0.11857858], [91.15, 149.16153734413356, 0.28428644], [91.16, 152.08834064940388, 0.08031494], [91.17, 150.81577236102214, 0.22743994], [91.18, 149.15107456407173, 0.5210543], [91.19, 149.98394111004072, 0.22098073], [91.2, 150.48631167805084, 0.096813485], [91.21, 152.10862794387873, 0.2155302], [91.22, 152.37486744660407, 0.21714784], [91.23, 153.76471259475403, 0.32323873], [91.24, 154.80130225951913, 0.58016145], [91.25, 155.34805813930174, 0.47635832], [91.26, 157.46081081692932, 0.4664388], [91.27, 158.41808701899348, 0.39985177], [91.28, 158.82890318654276, 0.314282], [91.29, 158.71519562545114, 0.35674873], [91.3, 158.4121793374155, 0.50477964], [91.31, 157.76069491902942, 0.6551726], [91.32, 157.182162629368, 0.68869144], [91.33, 156.40676327677446, 0.70182866], [91.34, 155.6901098009243, 0.7681506], [91.35, 154.18238385883626, 0.7484459], [91.36, 153.47645762188452, 0.6951704], [91.37, 152.152427202405, 0.7170262], [91.38, 150.69430217382714, 0.7981887], [91.39, 149.50643252207956, 0.8228573], [91.4, 147.63465352994706, 0.7841935], [91.41, 144.64921859604007, 0.6310152], [91.42, 142.4244889617125, 0.7488891], [91.43, 141.93823585663148, 0.64549184], [91.44, 141.22998704493565, 0.33963993], [91.45, 153.88488081415449, 0.39909017], [91.46, 157.4930253941693, 0.53267586], [91.47, 159.67671438837635, 0.41190597], [91.48, 169.01896598507452, 0.23002842], [91.49, 173.70948312238457, 0.2994419], [91.5, 174.64226225343438, 0.26766306], [91.51, 181.03966638491218, 0.23034087], [91.52, 201.25970737930913, 0.3380835], [91.53, 207.39116116727763, 0.2874604], [91.54, 204.9954996984332, 0.22343956], [91.55, 205.71965242004973, 0.3599784], [91.56, 201.8979677803853, 0.27391705], [91.57, 184.76944879252005, 0.17295898], [91.58, 178.3131625861074, 0.348442], [91.59, 179.55258737917674, 0.4115624], [91.6, 182.68790958900868, 0.242267], [91.61, 184.09213358292646, 0.335784], [91.62, 186.57266568391276, 0.267799], [91.63, 187.98419521372608, 0.40290913], [91.64, 186.80821217472695, 0.5112176], [91.65, 185.86413838157182, 0.55053276], [91.66, 184.20506320104835, 0.5847887], [91.67, 182.75241333324811, 0.65834], [91.68, 179.9354022801628, 0.7148409], [91.69, 178.81165782641972, 0.76555413], [91.7, 177.85801362335118, 0.7987528], [91.71, 177.34118469631224, 0.76812524], [91.72, 177.40878741516246, 0.69558626], [91.73, 176.0951958903279, 0.53063774], [91.74, 175.85044195476956, 0.3299973], [91.75, 176.25137034088968, 0.49380863], [91.76, 178.33417859324817, 0.29815763], [91.77, 177.45188966940344, 0.47478497], [91.78, 176.79624744810994, 0.44747534], [91.79, 176.2438456416458, 0.3652771], [91.8, 175.01727353963088, 0.28758824], [91.81, 175.08177889293606, 0.36120117], [91.82, 174.2194379530919, 0.21484385], [91.83, 171.31529513064953, 0.30372453], [91.84, 167.03862641455606, 0.39356735], [91.85, 163.2224194117614, 0.40481696], [91.86, 159.10553389965804, 0.28068936], [91.87, 156.39376644254475, 0.34744334], [91.88, 150.9626349527266, 0.118805006], [91.89, 147.2587346895239, 0.17673168], [91.9, 143.2419561498561, 0.09844789], [91.91, 140.9826487239382, 0.16848946], [91.92, 137.68091797745313, 0.12873544], [91.93, 137.06382551104542, 0.11648954], [91.94, 138.81866307703459, 0.17917113], [91.95, 156.53297853323016, 0.15015872], [91.96, 175.71671926945743, 0.15433306], [91.97, 178.48111120614223, 0.23312391], [91.98, 175.89630506401025, 0.19624355], [91.99, 173.3855097163032, 0.21378563], [92.0, 169.5641745355306, 0.20757751], [92.01, 161.6649905116751, 0.084321655], [92.02, 157.81175255113786, 0.056464452], [92.03, 154.46391790063439, 0.08530917], [92.04, 150.24824885225897, 0.11220581], [92.05, 148.22046413529216, 0.13762966], [92.06, 145.0478208742501, 0.1365008], [92.07, 145.66092596554296, 0.13830897], [92.08, 144.89706500125754, 0.21981221], [92.09, 144.33938094763406, 0.53769696], [92.1, 141.33711885880933, 0.3259773], [92.11, 139.03585375034723, 0.24303319], [92.12, 138.4127183949961, 0.18373096], [92.13, 136.87123814585397, 0.23270161], [92.14, 136.7722075233473, 0.2946563], [92.15, 137.7040432328327, 0.32667637], [92.16, 138.28815508600377, 0.2818803], [92.17, 137.8111851746056, 0.3446197], [92.18, 138.46345966307388, 0.23146373], [92.19, 139.5415307808432, 0.17576407], [92.2, 141.17751940294997, 0.13648877], [92.21, 140.8205387535409, 0.17924325], [92.22, 142.33284356321863, 0.37283644], [92.23, 142.1667404226589, 0.31359324], [92.24, 142.49168260087936, 0.5708777], [92.25, 142.34641576704706, 0.5089454], [92.26, 142.2544290971779, 0.40713963], [92.27, 143.26805864892327, 0.39474517], [92.28, 144.97866534833935, 0.2502234], [92.29, 144.17672190457208, 0.19765516], [92.3, 145.32608327405055, 0.19968516], [92.31, 142.05090628509532, 0.09687404], [92.32, 143.2606843966545, 0.2656065], [92.33, 145.85646558540554, 0.21782939], [92.34, 148.24802325945925, 0.3800085], [92.35, 151.9132950192888, 0.3093598], [92.36, 158.13312650207064, 0.20448516], [92.37, 168.2336386093199, 0.23421572], [92.38, 173.17917380665196, 0.3313057], [92.39, 175.90924499776213, 0.5035112], [92.4, 177.51115513475625, 0.33699763], [92.41, 178.1735209317297, 0.32406864], [92.42, 178.5738178738129, 0.36121932], [92.43, 177.28883766837325, 0.2007083], [92.44, 156.32421737209705, 0.4546654], [92.45, 136.98418325581622, 0.23064522], [92.46, 137.2094123107692, 0.20949633], [92.47, 137.52527912290552, 0.28034267], [92.48, 137.95029767029106, 0.29148698], [92.49, 138.5912228401329, 0.49144173], [92.5, 139.58027929198028, 0.50885653], [92.51, 140.4462413688909, 0.57059115], [92.52, 141.2492848937079, 0.6730952], [92.53, 142.43263329703873, 0.7321276], [92.54, 145.23457157934754, 0.7578428], [92.55, 146.99077584927616, 0.6756389], [92.56, 151.50555238537405, 0.70303243], [92.57, 151.0841310029345, 0.6482298], [92.58, 149.9805902043213, 0.5977736], [92.59, 151.06611648889663, 0.45732984], [92.6, 149.7807201113274, 0.34512225], [92.61, 151.01848803453174, 0.2800985], [92.62, 152.55063338991647, 0.1595907], [92.63, 153.40257333292382, 0.26557672], [92.64, 156.2366097897285, 0.4011955], [92.65, 156.88072604676566, 0.4723519], [92.66, 155.576419830184, 0.41660216], [92.67, 153.73761338787938, 0.3118015], [92.68, 153.16042139115245, 0.24931026], [92.69, 153.99381924928886, 0.36131015], [92.7, 153.9648196698599, 0.20647198], [92.71, 153.9129522628156, 0.27329817], [92.72, 154.6251587798358, 0.23632063], [92.73, 155.7789320182656, 0.20585527], [92.74, 157.94248815945286, 0.2154977], [92.75, 158.28799861241487, 0.3170416], [92.76, 158.2333865388457, 0.29347262], [92.77, 157.67847160829325, 0.43403882], [92.78, 155.95996187598078, 0.20363599], [92.79, 172.92241602529228, 0.24232852], [92.8, 172.26090715834607, 0.3692857], [92.81, 173.53564415536755, 0.31455263], [92.82, 173.2528215847288, 0.3425393], [92.83, 174.0774740059786, 0.21588139], [92.84, 176.07504465878452, 0.41436875], [92.85, 179.40413099905484, 0.18133909], [92.86, 181.90566514178857, 0.30056635], [92.87, 179.98748790587356, 0.34213576], [92.88, 177.38686461152736, 0.38801605], [92.89, 176.79529945517518, 0.21356505], [92.9, 175.389274434867, 0.22034843], [92.91, 157.03746949241497, 0.44747657], [92.92, 139.39608568162612, 0.5131695], [92.93, 139.31001123990194, 0.48482326], [92.94, 138.08923805671168, 0.55055016], [92.95, 138.01483150869365, 0.5505223], [92.96, 138.30109459768033, 0.46557888], [92.97, 138.35096281941813, 0.4106306], [92.98, 138.61776095033323, 0.5083359], [92.99, 138.98499030248604, 0.4015799], [93.0, 138.31582349228205, 0.329631], [93.01, 138.52964853375724, 0.3182084], [93.02, 138.2314763992479, 0.3490561], [93.03, 138.0178171440865, 0.34235024], [93.04, 138.39007221273218, 0.50914514], [93.05, 137.9128996211496, 0.52449], [93.06, 137.71522357184895, 0.53701705], [93.07, 138.32691212572018, 0.5422523], [93.08, 137.80155825411305, 0.6707243], [93.09, 137.6518338759198, 0.5781133], [93.1, 137.8870508787585, 0.53386474], [93.11, 138.13568108126253, 0.3990076], [93.12, 138.83271623764787, 0.6095322], [93.13, 139.00876558697706, 0.4982044], [93.14, 138.77586273576907, 0.52474743], [93.15, 154.98697181312247, 0.4707737], [93.16, 175.88861878409236, 0.37037173], [93.17, 175.98310346901684, 0.4302875], [93.18, 177.05105260387182, 0.51470953], [93.19, 177.2764946218387, 0.47545695], [93.2, 176.83201793322084, 0.5291868], [93.21, 176.7345921929805, 0.6176432], [93.22, 177.00788084332282, 0.6392577], [93.23, 176.50903883423095, 0.61068064], [93.24, 176.1280100281671, 0.5761718], [93.25, 175.5693293267027, 0.4698891], [93.26, 154.54527107127456, 0.35297868], [93.27, 139.5247037662677, 0.45752245], [93.28, 140.229636102203, 0.586564], [93.29, 140.57090390813636, 0.43251693], [93.3, 139.7152086563254, 0.6102107], [93.31, 140.98718287158283, 0.5064823], [93.32, 140.08522572929297, 0.6647519], [93.33, 139.31148657626076, 0.6329855], [93.34, 139.40333092394093, 0.37250316], [93.35, 137.33231309744772, 0.5152729], [93.36, 137.2329270612008, 0.33598012], [93.37, 137.14013657347562, 0.41892204], [93.38, 136.91230235894187, 0.23305397], [93.39, 137.27757242720716, 0.2265086], [93.4, 136.62333649641317, 0.2611444], [93.41, 135.54993853185715, 0.11875497], [93.42, 136.93480108544722, 0.16362585], [93.43, 136.72278800409586, 0.25852033], [93.44, 137.0118254411919, 0.44277665], [93.45, 137.9407873871787, 0.634234], [93.46, 139.03582617926563, 0.64913636], [93.47, 155.9767754698631, 0.32814267], [93.48, 177.43300236549254, 0.35859105], [93.49, 173.1680478499656, 0.36667252], [93.5, 175.85297206986812, 0.35550374], [93.51, 158.6879554354477, 0.40046614], [93.52, 143.8810657070827, 0.37608764], [93.53, 142.9723585738314, 0.42942283], [93.54, 142.56208335483248, 0.5867011], [93.55, 142.3483961426886, 0.60090756], [93.56, 141.18398743275856, 0.53954315], [93.57, 141.60742445195973, 0.17471065], [93.58, 157.214116705045, 0.22087152], [93.59, 176.6994771118528, 0.5005126], [93.6, 195.05500806956087, 0.5867808], [93.61, 223.68070431673257, 0.4977313], [93.62, 237.9269382431126, 0.32831666], [93.63, 234.60345535667517, 0.2540794], [93.64, 231.73835712630455, 0.26407963], [93.65, 231.12634596680095, 0.54022336], [93.66, 230.6924299587804, 0.69848365], [93.67, 232.1526433637162, 0.79213816], [93.68, 232.21371990144277, 0.8168239], [93.69, 233.06732883542634, 0.86993], [93.7, 233.47346565693303, 0.8834055], [93.71, 233.332829514645, 0.8569188], [93.72, 233.77812532298447, 0.88029134], [93.73, 233.43442997554638, 0.87972564], [93.74, 233.18929826340636, 0.85396147], [93.75, 233.1689788944829, 0.8604677], [93.76, 233.21049044595196, 0.77450323], [93.77, 234.12466924969308, 0.46522605], [93.78, 237.68428345318523, 0.24268888], [93.79, 237.15782307060337, 0.22494188], [93.8, 235.31363851289765, 0.1707682], [93.81, 235.89551797099637, 0.42989722], [93.82, 238.48260872316618, 0.4117116], [93.83, 239.44153777948853, 0.2916102], [93.84, 241.95809252065447, 0.15520436], [93.85, 241.50290988719541, 0.11122821], [93.86, 238.53453990199156, 0.06491206], [93.87, 235.63439121886873, 0.07671196], [93.88, 234.09959230345876, 0.10792468], [93.89, 233.3394619654731, 0.26400465], [93.9, 234.5978428112059, 0.08896882], [93.91, 233.98286616723874, 0.14853346], [93.92, 232.06139477293104, 0.063820206], [93.93, 243.38568433463416, 0.061808318], [93.94, 262.8191682109518, 0.05908794], [93.95, 275.63910436308004, 0.118876435], [93.96, 272.372437903422, 0.11607347], [93.97, 267.8576376624687, 0.1023012], [93.98, 260.9732537802656, 0.11652686], [93.99, 250.2384663214611, 0.24664138], [94.0, 242.9392982130563, 0.090249315], [94.01, 239.151911401512, 0.23417915], [94.02, 234.81425048100377, 0.42096204], [94.03, 234.02201416787335, 0.47484264], [94.04, 232.93028027374763, 0.46848756], [94.05, 232.76923347968395, 0.649512], [94.06, 232.67952128155954, 0.6413093], [94.07, 232.56236187293825, 0.7020556], [94.08, 232.5800208598741, 0.72088134], [94.09, 232.00654286827015, 0.6562301], [94.1, 232.36244267039777, 0.70045567], [94.11, 232.75347464135695, 0.7017607], [94.12, 232.2381812843757, 0.667251], [94.13, 233.16970759893024, 0.7145308], [94.14, 233.31938217241233, 0.7126599], [94.15, 233.00994690039647, 0.76272434], [94.16, 232.0851630212596, 0.75952864], [94.17, 230.78272973421264, 0.80675215], [94.18, 230.5842390732979, 0.834496], [94.19, 230.03046793122599, 0.81027824], [94.2, 229.7227905720334, 0.79412776], [94.21, 230.51028635467762, 0.7352029], [94.22, 233.32542411391353, 0.65488106], [94.23, 235.0769413110939, 0.6492396], [94.24, 234.1041908443542, 0.6521213], [94.25, 232.6590405166435, 0.7199189], [94.26, 233.01005248301337, 0.7273968], [94.27, 234.13416754846807, 0.6788858], [94.28, 234.08150920194112, 0.5635177], [94.29, 233.3287184633878, 0.44845688], [94.3, 233.5328606724412, 0.39864743], [94.31, 231.93775264760177, 0.26851204], [94.32, 232.13813930349247, 0.22142047], [94.33, 235.1218969567677, 0.23495345], [94.34, 259.2220547185467, 0.26487467], [94.35, 277.7004559325091, 0.6129357], [94.36, 276.3542504234919, 0.7558674], [94.37, 276.68027799653584, 0.7514956], [94.38, 275.3745014715401, 0.76595885], [94.39, 276.0912211916543, 0.65049744], [94.4, 277.7165292573681, 0.49619296], [94.41, 278.1968311590882, 0.26825872], [94.42, 252.43749157499485, 0.21378335], [94.43, 231.4834869416451, 0.3521765], [94.44, 231.93319470907983, 0.27543327], [94.45, 232.02821474480902, 0.35625502], [94.46, 231.48335618728464, 0.37188366], [94.47, 215.14975673871976, 0.50391793], [94.48, 187.34474841698898, 0.50135225], [94.49, 172.56111706376646, 0.5362977], [94.5, 151.12984226132997, 0.5377683], [94.51, 138.8803159202537, 0.44630507], [94.52, 140.67290282829538, 0.46375957], [94.53, 140.49098111369528, 0.36306378], [94.54, 141.0169874356664, 0.45204768], [94.55, 140.03948218639601, 0.29129994], [94.56, 139.29509174638468, 0.32811645], [94.57, 138.6638009446762, 0.36317396], [94.58, 136.79407726726512, 0.29697356], [94.59, 135.48196812158508, 0.24966294], [94.6, 137.38823726189327, 0.2779075], [94.61, 137.65490293185, 0.38889316], [94.62, 136.86979305415232, 0.25173378], [94.63, 136.5460645403955, 0.21772975], [94.64, 136.48589835561313, 0.23852023], [94.65, 136.33849644891268, 0.3102765], [94.66, 134.4830644769781, 0.44316], [94.67, 132.80191576633501, 0.5257896], [94.68, 131.47822868549616, 0.52087015], [94.69, 129.59049147752114, 0.29173285], [94.7, 127.72922484568328, 0.28519452], [94.71, 124.93786301038972, 0.31614265], [94.72, 121.71149143764625, 0.13531601], [94.73, 119.79735462478949, 0.12094993], [94.74, 117.65938905715466, 0.32780975], [94.75, 117.38867289358748, 0.302749], [94.76, 118.60756876128475, 0.10228332], [94.77, 131.95975009905567, 0.48145112], [94.78, 138.43999442135998, 0.5722743], [94.79, 138.9347701018946, 0.3256998], [94.8, 140.05233611201734, 0.22694114], [94.81, 139.8307058165891, 0.16002086], [94.82, 139.66445782222186, 0.18019475], [94.83, 138.0827219974999, 0.36676863], [94.84, 137.86748480512003, 0.27125412], [94.85, 136.93404751518858, 0.08016893], [94.86, 138.8354274932557, 0.32611778], [94.87, 138.57495828405624, 0.2602555], [94.88, 137.6049017569469, 0.35948363], [94.89, 136.95297288007322, 0.43371108], [94.9, 136.08411612309885, 0.50510883], [94.91, 136.09649439352106, 0.53403556], [94.92, 135.38301309444796, 0.47245955], [94.93, 135.33014132510698, 0.49053735], [94.94, 135.49071526663766, 0.42667544], [94.95, 137.1079317944608, 0.28988796], [94.96, 149.96005085926978, 0.21433312], [94.97, 173.83147104080652, 0.38120237], [94.98, 183.84444356363957, 0.3707359], [94.99, 218.08345642221877, 0.2245598], [95.0, 233.0707022213486, 0.4723965], [95.01, 232.81062835919826, 0.5277368], [95.02, 232.42635819615728, 0.5029968], [95.03, 233.5311106438379, 0.4371587], [95.04, 233.02897158697363, 0.3073136], [95.05, 231.62290243491768, 0.31849775], [95.06, 231.24481324509875, 0.20229848], [95.07, 230.90010862355598, 0.38443556], [95.08, 231.4339710243504, 0.33804724], [95.09, 231.70724037087507, 0.23797633], [95.1, 231.68856597079298, 0.32713372], [95.11, 233.37720304354247, 0.2490356], [95.12, 233.93139665404263, 0.29502416], [95.13, 235.36557284348498, 0.43286672], [95.14, 234.45317534904973, 0.38733718], [95.15, 233.48241694570743, 0.25191608], [95.16, 232.62521069976674, 0.14946793], [95.17, 233.25419795336003, 0.35738403], [95.18, 229.95387911337565, 0.2741186], [95.19, 230.11904323848984, 0.32632637], [95.2, 230.75960158052024, 0.39992952], [95.21, 232.45751282835542, 0.61236185], [95.22, 234.664917649465, 0.7166826], [95.23, 236.08204940151438, 0.61022604], [95.24, 228.9338024871482, 0.2565004], [95.25, 216.51011434706538, 0.44985834], [95.26, 213.1971101425852, 0.39148942], [95.27, 210.7628875093077, 0.5269913], [95.28, 208.29938286739156, 0.5865695], [95.29, 206.20371900910712, 0.61196876], [95.3, 205.5498212267234, 0.58841294], [95.31, 205.04572788792686, 0.48509085], [95.32, 206.0750721971096, 0.6680917], [95.33, 207.4940305915731, 0.66482615], [95.34, 208.66034479824404, 0.5416194], [95.35, 210.32922935148744, 0.41024774], [95.36, 211.68095789401434, 0.41855863], [95.37, 216.88781924893422, 0.35867706], [95.38, 216.93983276855857, 0.31971097], [95.39, 214.93857385211086, 0.38083184], [95.4, 211.9569104483605, 0.5303757], [95.41, 209.73672099527715, 0.5228014], [95.42, 207.53238369017748, 0.5417104], [95.43, 205.34824240499916, 0.6864868], [95.44, 205.20902809269884, 0.68946344], [95.45, 205.45998605144317, 0.5778802], [95.46, 205.51442059269925, 0.5270896], [95.47, 206.67288608519908, 0.6877925], [95.48, 208.65094985819064, 0.7381921], [95.49, 210.68427827716988, 0.65955406], [95.5, 212.26905218697044, 0.5428], [95.51, 240.93233896810858, 0.3345794], [95.52, 271.79014465667484, 0.38875216], [95.53, 308.90245231901423, 0.34651893], [95.54, 308.0060054058436, 0.5499961], [95.55, 308.798671424519, 0.58463216], [95.56, 309.96496626677106, 0.5566382], [95.57, 309.3154996709985, 0.6445494], [95.58, 309.9405249937461, 0.56382126], [95.59, 312.065287269469, 0.6926568], [95.6, 312.8232363295837, 0.7828937], [95.61, 313.6413689524229, 0.78393507], [95.62, 313.5612920102477, 0.75704443], [95.63, 313.0100751621509, 0.6274444], [95.64, 306.49005553523085, 0.16300707], [95.65, 288.16804265086836, 0.19414482], [95.66, 276.91209495532627, 0.23858266], [95.67, 261.78383299900855, 0.38047978], [95.68, 245.60496139474594, 0.29387066], [95.69, 235.33330295785717, 0.2244832], [95.7, 227.02241438359508, 0.59133667], [95.71, 211.71644077407163, 0.6257975], [95.72, 209.6345835180766, 0.68607605], [95.73, 202.068587965591, 0.6265159], [95.74, 186.47893379089373, 0.40286118], [95.75, 177.20766764176278, 0.35420132], [95.76, 168.52569874147193, 0.2521621], [95.77, 162.25473666849126, 0.15081142], [95.78, 152.15380444209174, 0.12702538], [95.79, 144.64792839122114, 0.16734722], [95.8, 142.6817912816576, 0.26002347], [95.81, 142.52197051061432, 0.28416067], [95.82, 141.11709186375768, 0.2159996], [95.83, 140.71726854317237, 0.3620245], [95.84, 141.08354505480037, 0.22151136], [95.85, 141.7570284438494, 0.282095], [95.86, 139.59263354419724, 0.20183125], [95.87, 140.6128259733875, 0.4170377], [95.88, 142.31824213018012, 0.44569886], [95.89, 142.26895196387284, 0.38654903], [95.9, 143.44896214310867, 0.24923784], [95.91, 143.037944413892, 0.20033608], [95.92, 143.51023536607067, 0.28043616], [95.93, 142.4560714709719, 0.37442952], [95.94, 141.61390565214364, 0.36145693], [95.95, 139.28303930831814, 0.25351366], [95.96, 139.68742524831046, 0.2663516], [95.97, 139.5493549359229, 0.37217152], [95.98, 139.07644734920387, 0.37959814], [95.99, 137.40228687510316, 0.40360165], [96.0, 137.3131259364684, 0.40076843], [96.01, 139.25856945274202, 0.4208941], [96.02, 140.23621380169726, 0.42037517], [96.03, 139.8162016511856, 0.49345013], [96.04, 139.05728811540519, 0.5021681], [96.05, 139.43128899614732, 0.54900575], [96.06, 139.35440830433893, 0.5378847], [96.07, 138.9215754012847, 0.5420733], [96.08, 138.0803488657369, 0.42654917], [96.09, 142.05649613469905, 0.603181], [96.1, 157.92787064410163, 0.38101655], [96.11, 171.16678272492567, 0.4147339], [96.12, 179.66642274432735, 0.5555088], [96.13, 198.28480949623253, 0.5719332], [96.14, 206.99297464573078, 0.5299588], [96.15, 224.23632505419408, 0.29077256], [96.16, 238.30826835472766, 0.2715756], [96.17, 237.59579930906955, 0.23593293], [96.18, 237.84494025714682, 0.23200244], [96.19, 235.8376105063616, 0.36168835], [96.2, 224.0719610734522, 0.28429893], [96.21, 208.0079090782064, 0.38147485], [96.22, 208.8222002627606, 0.55212086], [96.23, 209.18884501908624, 0.58966815], [96.24, 208.1123082083804, 0.59717536], [96.25, 208.64958965326593, 0.5862749], [96.26, 207.9508658669604, 0.59982455], [96.27, 206.44208601323382, 0.47617], [96.28, 206.34738828555777, 0.4266284], [96.29, 229.67208350116775, 0.32200986], [96.3, 259.33834546070625, 0.5376015], [96.31, 260.1113089072624, 0.675507], [96.32, 261.73857910625486, 0.7307552], [96.33, 261.312262217431, 0.77845293], [96.34, 261.1237984146222, 0.7718727], [96.35, 261.50277145534903, 0.80407125], [96.36, 261.2496241457149, 0.7582512], [96.37, 261.36802037658464, 0.7994421], [96.38, 261.9741970952359, 0.8058606], [96.39, 260.8738330078269, 0.6627872], [96.4, 260.0635753777899, 0.6412368], [96.41, 259.38973240629133, 0.617313], [96.42, 258.71109629933903, 0.6027526], [96.43, 257.1226583577903, 0.56669205], [96.44, 252.8556182203316, 0.5065328], [96.45, 249.90377799204572, 0.3105773], [96.46, 224.02044549825706, 0.25997895], [96.47, 201.99454460213798, 0.5814431], [96.48, 175.21485972510706, 0.71487534], [96.49, 175.86337961687505, 0.70110935], [96.5, 176.7198707481051, 0.6926888], [96.51, 176.6579277614502, 0.6699876], [96.52, 175.83569122677665, 0.6251316], [96.53, 175.5496792866964, 0.69623685], [96.54, 175.45169671181412, 0.71170694], [96.55, 175.8082590973881, 0.7463779], [96.56, 176.19414376243955, 0.70706964], [96.57, 175.4123475566108, 0.57234395], [96.58, 169.14505727058275, 0.3144944], [96.59, 165.7281126568941, 0.2631057], [96.6, 186.39940529294313, 0.53244656], [96.61, 210.33775713792863, 0.5834991], [96.62, 231.5565019022753, 0.46815336], [96.63, 230.76072063504324, 0.3915908], [96.64, 228.22063836092812, 0.22222573], [96.65, 228.05526407775835, 0.311243], [96.66, 226.20174907050338, 0.21130924], [96.67, 226.56219074331244, 0.334615], [96.68, 222.01858497194485, 0.18365103], [96.69, 219.4023062152005, 0.19350417], [96.7, 216.57362598142302, 0.10545931], [96.71, 234.19231586770422, 0.19572228], [96.72, 239.1646135535272, 0.1281944], [96.73, 246.06770038887908, 0.1299419], [96.74, 250.01732663137787, 0.19586506], [96.75, 251.24353622002496, 0.24793138], [96.76, 254.10752439899767, 0.24886431], [96.77, 254.70495832091726, 0.35102087], [96.78, 256.5977428470451, 0.32639816], [96.79, 285.2874394438441, 0.2851657], [96.8, 324.00105769061327, 0.48764157], [96.81, 378.593818902611, 0.52848613], [96.82, 418.4019971123056, 0.30685374], [96.83, 470.7466851760617, 0.114460446], [96.84, 467.79430535060334, 0.32152662], [96.85, 464.2305336525723, 0.40354022], [96.86, 464.29917673185537, 0.5242321], [96.87, 463.9827750550409, 0.48137823], [96.88, 464.25404393810334, 0.4805231], [96.89, 465.168275286532, 0.4380956], [96.9, 463.57490849805885, 0.40226173], [96.91, 463.27319982501126, 0.3726736], [96.92, 463.59149246062566, 0.40685567], [96.93, 463.1701590372502, 0.44444528], [96.94, 465.97997590618286, 0.4154257], [96.95, 467.6294939517566, 0.50050503], [96.96, 467.6126428661655, 0.4896831], [96.97, 467.78373192984657, 0.42781937], [96.98, 469.7016887534123, 0.617398], [96.99, 468.25662612469205, 0.64165], [97.0, 467.55723503092753, 0.7200007], [97.01, 460.3354504014742, 0.6351351], [97.02, 458.538255255648, 0.74593574], [97.03, 454.2916277272932, 0.7395198], [97.04, 452.61411548455504, 0.62027955], [97.05, 446.5749168195614, 0.4425105], [97.06, 446.1672395062575, 0.286913], [97.07, 447.1342063015185, 0.12738863], [97.08, 447.8739082383425, 0.0930346], [97.09, 446.4740740292104, 0.06856222], [97.1, 444.3392296147447, 0.08513941], [97.11, 439.2872261400847, 0.21289755], [97.12, 432.81638192054606, 0.2664983], [97.13, 428.1650894045031, 0.28965765], [97.14, 422.4941959428616, 0.34800464], [97.15, 417.26524256481554, 0.34215668], [97.16, 415.0997009776522, 0.4375323], [97.17, 414.48383378585055, 0.5485427], [97.18, 413.06021835619566, 0.54482234], [97.19, 417.10974292420383, 0.57896185], [97.2, 416.434952080592, 0.44779027], [97.21, 420.28770056258594, 0.2884364], [97.22, 422.27349263948213, 0.2698862], [97.23, 424.6887896996824, 0.3581974], [97.24, 427.31710492895957, 0.29492337], [97.25, 427.0960800286057, 0.2640979], [97.26, 425.88688037845003, 0.22726436], [97.27, 420.6246212282638, 0.1486254], [97.28, 411.48691705855873, 0.10066571], [97.29, 359.5419568595049, 0.22514625], [97.3, 333.28195717704267, 0.13706583], [97.31, 287.65165343889345, 0.25129333], [97.32, 262.12164852680127, 0.19881473], [97.33, 233.85108182765794, 0.2094071], [97.34, 231.99360649991365, 0.68826056], [97.35, 231.84618051923195, 0.68532383], [97.36, 230.92705676061937, 0.75822407], [97.37, 231.94631013404472, 0.788846], [97.38, 233.0092570266006, 0.80466336], [97.39, 234.02260187291662, 0.8210405], [97.4, 235.00766417891185, 0.7897661], [97.41, 235.5028588286407, 0.71262944], [97.42, 235.5514207219687, 0.45755053], [97.43, 235.40770368473642, 0.14951831], [97.44, 235.0565507168463, 0.418667], [97.45, 235.2350641947393, 0.5977686], [97.46, 232.35684124387683, 0.6891032], [97.47, 235.03183417776188, 0.6410682], [97.48, 231.49271793030735, 0.65941954], [97.49, 233.63535571246302, 0.7112748], [97.5, 233.9218239137262, 0.79682857], [97.51, 233.48672083160557, 0.7211077], [97.52, 234.74474173435124, 0.38487914], [97.53, 234.60622077298436, 0.08078175], [97.54, 233.74647138661464, 0.15243904], [97.55, 234.7984591142358, 0.13975362], [97.56, 234.71678712673722, 0.3060182], [97.57, 234.90276999774667, 0.16631973], [97.58, 235.2151848354882, 0.13460562], [97.59, 235.11171297895342, 0.089288875], [97.6, 234.78067638807673, 0.12827742], [97.61, 235.13953234890462, 0.10757908], [97.62, 231.4775123492093, 0.13837063], [97.63, 256.1527586103859, 0.14197211], [97.64, 279.9463681068485, 0.17853837], [97.65, 280.0851802685665, 0.29885668], [97.66, 278.9481226729341, 0.26941812], [97.67, 277.03668295059447, 0.13983303], [97.68, 276.23168113756884, 0.17973152], [97.69, 279.3072033010713, 0.18655956], [97.7, 277.9122149670275, 0.30673888], [97.71, 277.7256613347242, 0.13263439], [97.72, 277.1003283396051, 0.1394758], [97.73, 272.02449145067965, 0.24586867], [97.74, 257.41119663590155, 0.2751359], [97.75, 246.92994931280538, 0.13987349], [97.76, 242.29733344931148, 0.07597184], [97.77, 235.30010822695363, 0.17072022], [97.78, 234.51624947099663, 0.48498464], [97.79, 233.445875238121, 0.60752124], [97.8, 232.2737510987655, 0.7123709], [97.81, 231.75149689766425, 0.6512276], [97.82, 233.113715445711, 0.6895069], [97.83, 231.52678961921526, 0.625537], [97.84, 232.00362034642814, 0.6849201], [97.85, 231.61587705100266, 0.63145447], [97.86, 231.33599442931282, 0.52935904], [97.87, 231.46150686174343, 0.38101628], [97.88, 232.80404953586256, 0.38823518], [97.89, 231.0276663667582, 0.51488185], [97.9, 231.88170342000484, 0.66891414], [97.91, 231.60705801770547, 0.6651687], [97.92, 232.8616676266608, 0.7760038], [97.93, 232.8260917590436, 0.69134355], [97.94, 232.91267769863313, 0.7512916], [97.95, 231.55885596015344, 0.7510205], [97.96, 232.12092689866594, 0.5906149], [97.97, 231.99707468557511, 0.53544384], [97.98, 231.8948324131533, 0.36044896], [97.99, 210.91732921594325, 0.103271514], [98.0, 190.7990640614494, 0.2650118], [98.01, 173.3248006775341, 0.2583364], [98.02, 156.6001838004847, 0.097245164], [98.03, 143.7058880235232, 0.13789956], [98.04, 142.63230039274015, 0.14281161], [98.05, 142.70115587773304, 0.2022152], [98.06, 141.39626434829322, 0.07172652], [98.07, 140.5773751000363, 0.255456], [98.08, 139.97641525664775, 0.30393174], [98.09, 139.92657402905368, 0.37987012], [98.1, 139.33366162538255, 0.5026333], [98.11, 139.43281142836906, 0.3457077], [98.12, 140.97551074599642, 0.2420001], [98.13, 144.14149766799127, 0.29563913], [98.14, 145.20489215398217, 0.29634422], [98.15, 148.5289304133713, 0.26394475], [98.16, 151.23045350147487, 0.43657985], [98.17, 152.9397404028592, 0.5058004], [98.18, 154.17369439461106, 0.5059585], [98.19, 154.68128680318048, 0.42441046], [98.2, 154.48042774191032, 0.61008006], [98.21, 154.70298725377563, 0.56480443], [98.22, 154.33090154063154, 0.49261823], [98.23, 154.48188971501372, 0.4976332], [98.24, 154.67674525941013, 0.53748], [98.25, 155.56476524971532, 0.6619949], [98.26, 155.43562304324865, 0.5971016], [98.27, 155.19354287153254, 0.51402795], [98.28, 155.6752299115526, 0.39451858], [98.29, 174.39803229393112, 0.16141133], [98.3, 191.05977012376854, 0.25372356], [98.31, 212.81521203456924, 0.28592804], [98.32, 232.3268750945057, 0.20061831], [98.33, 231.6628981556221, 0.6440424], [98.34, 231.93030320660154, 0.71413124], [98.35, 233.44021975892875, 0.76671636], [98.36, 234.38683918276706, 0.7870174], [98.37, 234.44423448630712, 0.8257468], [98.38, 234.24342575297425, 0.75403714], [98.39, 233.9730279784444, 0.76186967], [98.4, 233.48171215443676, 0.71986306], [98.41, 232.7091113241732, 0.66805583], [98.42, 233.0996617347745, 0.64782685], [98.43, 231.4001123247182, 0.4198], [98.44, 230.78122349321805, 0.27993095], [98.45, 228.45411317468918, 0.28554788], [98.46, 230.87396467298447, 0.085957274], [98.47, 211.21656906565445, 0.08170897], [98.48, 190.9762464828033, 0.06761259], [98.49, 173.54547123787182, 0.50590336], [98.5, 158.0288590664248, 0.45505327], [98.51, 145.42357519154297, 0.20168309], [98.52, 139.6088463400752, 0.3972056], [98.53, 128.84471080861445, 0.43219268], [98.54, 118.09065872409859, 0.5489782], [98.55, 109.99876539229894, 0.2848826], [98.56, 100.46773159443799, 0.1482542], [98.57, 91.52826391121741, 0.27544487], [98.58, 86.92146504177161, 0.49989575], [98.59, 78.69278843829039, 0.4658972], [98.6, 72.74830770617436, 0.36753583], [98.61, 66.47606131529939, 0.13035305], [98.62, 61.18501024225714, 0.43489137], [98.63, 56.06921166770299, 0.6229671], [98.64, 52.43085791413403, 0.49257573], [98.65, 46.28381094618642, 0.19852555], [98.66, 44.16220210258502, 0.23221849], [98.67, 43.73212746837369, 0.69164604], [98.68, 44.000378210125994, 0.77424127], [98.69, 43.97056494411259, 0.725757], [98.7, 43.9654329299027, 0.6394216], [98.71, 43.96251430877327, 0.16347314], [98.72, 43.95526952849739, 0.07518996], [98.73, 44.302805384920426, 0.07213381], [98.74, 43.579604317846176, 0.07668127], [98.75, 43.483874066639565, 0.076284215], [98.76, 43.43302948603792, 0.06420685], [98.77, 43.370780366014195, 0.11645638], [98.78, 43.528484060028454, 0.12950766], [98.79, 43.58840323472635, 0.15147468], [98.8, 43.53070029873094, 0.10695283], [98.81, 43.27129681715418, 0.26015538], [98.82, 43.37118866576381, 0.35624892], [98.83, 43.519771883269684, 0.55947304], [98.84, 43.680515152726585, 0.7386242], [98.85, 43.72633495653682, 0.67035633], [98.86, 43.8550280189238, 0.73062724], [98.87, 43.75873680720724, 0.6983464], [98.88, 43.734212491361674, 0.76005626], [98.89, 43.917834267262734, 0.79000145], [98.9, 43.56836493846557, 0.6949574], [98.91, 43.35306128167328, 0.6784393], [98.92, 43.027262499034265, 0.33492908], [98.93, 41.403132509202756, 0.15359947], [98.94, 35.95727512336324, 0.51148677], [98.95, 33.5872987737978, 0.66199434], [98.96, 32.185036613492855, 0.7430963], [98.97, 32.10515921326669, 0.76076674], [98.98, 32.17676877970182, 0.5621692], [98.99, 32.31076038240146, 0.3662978], [99.0, 32.393357688188786, 0.34301752], [99.01, 32.39735892816162, 0.36763182], [99.02, 32.4524070304012, 0.2537987], [99.03, 32.50282767042033, 0.21046159], [99.04, 32.51114407810195, 0.32224974], [99.05, 32.48755118910194, 0.28842047], [99.06, 32.43610826219229, 0.32250485], [99.07, 32.470950528395136, 0.30413374], [99.08, 32.61187372959949, 0.24624854], [99.09, 32.55815690633709, 0.1419691], [99.1, 32.45068632730619, 0.18844765], [99.11, 32.32029283203249, 0.4190375], [99.12, 32.382384248023854, 0.41360214], [99.13, 32.56484605916311, 0.21399635], [99.14, 32.541216218615595, 0.17810497], [99.15, 32.5743375941044, 0.5078444], [99.16, 32.47348387456624, 0.63115025], [99.17, 32.41822195824364, 0.546581], [99.18, 32.50037083993152, 0.6921407], [99.19, 32.588860391706, 0.67145103], [99.2, 32.608707854106996, 0.7483346], [99.21, 32.70334106877451, 0.67943877], [99.22, 32.590014333477214, 0.5300208], [99.23, 32.560363484011795, 0.4264509], [99.24, 32.54907568592077, 0.39595595], [99.25, 32.68675854139028, 0.42761347], [99.26, 32.708725781375584, 0.32990152], [99.27, 33.045492645366664, 0.5303888], [99.28, 34.73039582177946, 0.2566319], [99.29, 35.044966244881195, 0.25206748], [99.3, 37.03293239556882, 0.18980813], [99.31, 41.427922850097936, 0.30890447], [99.32, 44.09758039728368, 0.31273183], [99.33, 46.938651339528484, 0.5971741], [99.34, 47.94043290860717, 0.67633015], [99.35, 48.982619883303364, 0.6674369], [99.36, 51.36847765874303, 0.43084532], [99.37, 51.695904525804906, 0.08524614], [99.38, 47.31309118904822, 0.084989004], [99.39, 41.68752448759943, 0.1505784], [99.4, 42.83506836235656, 0.14545806], [99.41, 44.0978462424954, 0.21403553], [99.42, 44.85156216059597, 0.14634995], [99.43, 44.0127909157051, 0.12105936], [99.44, 44.62055156647313, 0.08980789], [99.45, 44.40882968190881, 0.16760536], [99.46, 44.1456087752172, 0.3647022], [99.47, 44.63153415573358, 0.53579336], [99.48, 45.580558652370584, 0.66791683], [99.49, 46.17066854353969, 0.6266876], [99.5, 46.68981839920245, 0.42707023], [99.51, 47.02110537645133, 0.37587938], [99.52, 48.12388552864594, 0.26783523], [99.53, 48.29369091379743, 0.19151092], [99.54, 48.37352253046657, 0.17248917], [99.55, 47.95223223675486, 0.32446098], [99.56, 47.55006005734502, 0.62929577], [99.57, 47.68957748557628, 0.42680582], [99.58, 47.32337015342984, 0.46536955], [99.59, 47.56035928954917, 0.2828494], [99.6, 47.279970492058055, 0.38466826], [99.61, 45.3369513601116, 0.3573903], [99.62, 44.27987416924981, 0.30584818], [99.63, 44.51712024272092, 0.2833553], [99.64, 44.2670768964884, 0.18243197], [99.65, 44.61578166558382, 0.18836889], [99.66, 45.05156241826708, 0.33300674], [99.67, 45.44928360184364, 0.41321102], [99.68, 45.370006966426686, 0.32194525], [99.69, 45.38927321736044, 0.2161659], [99.7, 45.618031835812765, 0.29945457], [99.71, 46.153856854311286, 0.42247254], [99.72, 45.805785735449945, 0.29827312], [99.73, 45.260685742366896, 0.43687236], [99.74, 45.01437385430643, 0.43201333], [99.75, 46.45768243187241, 0.4237443], [99.76, 46.66096206041001, 0.2540085], [99.77, 45.267234251008574, 0.3175462], [99.78, 44.44006069110378, 0.26651067], [99.79, 45.05966495542849, 0.2869293], [99.8, 45.94792231215, 0.5368419], [99.81, 46.30255698021681, 0.6150999], [99.82, 46.42006073755758, 0.5396054], [99.83, 46.39540396568372, 0.4663028], [99.84, 46.76512566278763, 0.2451659], [99.85, 46.270042257317854, 0.09872858], [99.86, 44.972899431330255, 0.26393092], [99.87, 44.84918714196779, 0.39520037], [99.88, 45.54219933232612, 0.19772956], [99.89, 45.64294355672311, 0.09140321], [99.9, 44.46277037443579, 0.1472312], [99.91, 44.688842778384874, 0.19371742], [99.92, 45.011642921410555, 0.20328884], [99.93, 45.76199443463719, 0.18704745], [99.94, 46.16146115752458, 0.28931427], [99.95, 45.153610517449955, 0.30541503], [99.96, 43.817205969141575, 0.42099577], [99.97, 43.69187924558781, 0.44182828], [99.98, 43.889964097348894, 0.3180785], [99.99, 44.034558417174665, 0.35176247], [100.0, 43.59693700234291, 0.35079885], [100.01, 43.99611024676641, 0.50528693], [100.02, 44.46714635035117, 0.56180507], [100.03, 44.20791657931573, 0.6644868], [100.04, 43.816636470838866, 0.6690897], [100.05, 43.84274352645747, 0.58561695], [100.06, 44.289197977206825, 0.4440935], [100.07, 44.78805869359103, 0.18403588], [100.08, 45.12887091670875, 0.54703534], [100.09, 44.98609943116862, 0.6398271], [100.1, 45.827327530250564, 0.6283788], [100.11, 46.24830847114157, 0.7207778], [100.12, 45.89750288935922, 0.6224177], [100.13, 45.07772108926556, 0.58525306], [100.14, 44.57558304784374, 0.4175864], [100.15, 45.01532104662557, 0.30305225], [100.16, 45.75840309269114, 0.4776945], [100.17, 45.93153783435489, 0.56787467], [100.18, 45.08362067282451, 0.63034236], [100.19, 45.02564676251342, 0.6176783], [100.2, 44.93941638406603, 0.6407812], [100.21, 45.47387159271764, 0.60962886], [100.22, 46.19003832264848, 0.70044976], [100.23, 47.017171194076745, 0.6263166], [100.24, 46.975198370211324, 0.6765823], [100.25, 47.117425752429966, 0.6934797], [100.26, 46.353564382449065, 0.6443345], [100.27, 46.24826983935969, 0.71685594], [100.28, 45.47229314175813, 0.6634342], [100.29, 45.576699499297966, 0.6299338], [100.3, 50.12754514171027, 0.61120147], [100.31, 58.30527508386527, 0.63429946], [100.32, 64.73610925953764, 0.5782961], [100.33, 73.30153890821592, 0.20189793], [100.34, 81.67756419644209, 0.44014663], [100.35, 93.44581619745284, 0.33476722], [100.36, 104.01013304354343, 0.43288592], [100.37, 115.4041795033267, 0.4272527], [100.38, 129.6967984874166, 0.33385038], [100.39, 140.4465391591524, 0.45214796], [100.4, 161.52382694290398, 0.24988136], [100.41, 174.91290658403227, 0.3319892], [100.42, 175.1518225595226, 0.551684], [100.43, 176.73239856138966, 0.64212215], [100.44, 177.63382983746772, 0.67014855], [100.45, 178.82752100233762, 0.6485755], [100.46, 181.8433460392299, 0.59070987], [100.47, 181.68666173451274, 0.5234564], [100.48, 181.76874055720936, 0.54047984], [100.49, 181.7798167016789, 0.5573834], [100.5, 183.31046554929432, 0.43727803], [100.51, 179.3923396240008, 0.29381505], [100.52, 193.4348334369473, 0.32916313], [100.53, 202.09642517602367, 0.2131939], [100.54, 204.8131475698074, 0.21555606], [100.55, 207.3326763412241, 0.15320058], [100.56, 210.44869439773743, 0.17914508], [100.57, 211.99696599783283, 0.48282182], [100.58, 209.01566575690129, 0.63604397], [100.59, 207.57105982535228, 0.7206415], [100.6, 205.49731347215837, 0.6855278], [100.61, 205.0661483652329, 0.5836682], [100.62, 205.69720181934417, 0.36245388], [100.63, 206.2419593177275, 0.34811682], [100.64, 197.72868298205356, 0.47462294], [100.65, 189.19828265178307, 0.46087182], [100.66, 183.77169950397456, 0.3224428], [100.67, 179.18532524019824, 0.18027417], [100.68, 174.77077349209722, 0.1647806], [100.69, 171.99083489340433, 0.2161042], [100.7, 161.1934263481444, 0.21492828], [100.71, 142.15597127003042, 0.15357241], [100.72, 134.28406957884707, 0.28291237], [100.73, 135.80357448879136, 0.3710044], [100.74, 138.18693865149524, 0.3818597], [100.75, 138.6865001105004, 0.53799325], [100.76, 138.25157474310447, 0.39595404], [100.77, 139.7734171302177, 0.17933756], [100.78, 139.31248078687406, 0.12077974], [100.79, 154.9549009725411, 0.16062589], [100.8, 169.76650574145344, 0.26171172], [100.81, 168.07979774548858, 0.2499303], [100.82, 161.64355103841513, 0.12875757], [100.83, 156.89633642715887, 0.14877208], [100.84, 158.14429074993453, 0.41040975], [100.85, 159.03664085535394, 0.6086879], [100.86, 159.8154384875471, 0.65792227], [100.87, 160.6234599040182, 0.671251], [100.88, 160.1171946599025, 0.693867], [100.89, 159.12061083568335, 0.63855416], [100.9, 156.61011265791308, 0.31729746], [100.91, 155.17235204780948, 0.28782788], [100.92, 154.4504712296664, 0.114493005], [100.93, 151.75589207125282, 0.13740127], [100.94, 147.27067762887, 0.16301878], [100.95, 145.58043463791057, 0.27767304], [100.96, 151.7996649759636, 0.26599446], [100.97, 161.12693127995732, 0.24852835], [100.98, 167.31251336597538, 0.29030544], [100.99, 173.09802015919132, 0.31570598], [101.0, 175.69272737977275, 0.30465072], [101.01, 177.62179565511462, 0.23034176], [101.02, 177.2223999265378, 0.24432075], [101.03, 170.3254333678837, 0.300265], [101.04, 151.27133350473161, 0.29524052], [101.05, 140.9932319471447, 0.13782774], [101.06, 142.0801158519677, 0.21764381], [101.07, 126.12983374034059, 0.22492741], [101.08, 115.8140849179115, 0.17412437], [101.09, 106.2472899770728, 0.08492487], [101.1, 93.55823684297279, 0.2737445], [101.11, 83.71667962100219, 0.3997065], [101.12, 76.15669052489373, 0.27719325], [101.13, 69.5195048824941, 0.46348608], [101.14, 60.91059323932073, 0.64280504], [101.15, 55.202800910155744, 0.5890801], [101.16, 47.615779299955136, 0.5614121], [101.17, 42.69035078954375, 0.27674577], [101.18, 38.44028570591589, 0.31652975], [101.19, 38.61101478882978, 0.4696917], [101.2, 38.63058459935505, 0.7467296], [101.21, 38.739398290974, 0.77426004], [101.22, 38.68026902612606, 0.81470865], [101.23, 38.85926628877585, 0.8033102], [101.24, 38.54786307884729, 0.81148905], [101.25, 38.64735978092064, 0.81406057], [101.26, 38.58834015999024, 0.79539514], [101.27, 37.79093525324795, 0.49253708], [101.28, 36.953180180812424, 0.546489], [101.29, 36.933202559636705, 0.4452088], [101.3, 33.765962799513446, 0.15919895], [101.31, 32.16595329267808, 0.10865668], [101.32, 32.13751729318989, 0.25677353], [101.33, 32.14254566376986, 0.21268795], [101.34, 31.980527727700725, 0.41117415], [101.35, 31.91237622561294, 0.44758052], [101.36, 31.889967268606988, 0.42059904], [101.37, 31.85341880766497, 0.51499975], [101.38, 31.861737091042755, 0.3048083], [101.39, 31.915950012721726, 0.37669936], [101.4, 35.26005754118557, 0.19046278], [101.41, 37.293528756025964, 0.12906396], [101.42, 40.62623462378464, 0.1194106], [101.43, 45.52255208240271, 0.06468659], [101.44, 48.02946902027721, 0.16050395], [101.45, 47.5983809818739, 0.22755645], [101.46, 47.65637817776565, 0.40477777], [101.47, 46.92741130259713, 0.41123486], [101.48, 47.056422419152014, 0.41397658], [101.49, 46.582986024505345, 0.39001223], [101.5, 46.42661247807105, 0.39219368], [101.51, 46.239023243568546, 0.35782745], [101.52, 46.29072191233515, 0.43271995], [101.53, 45.911023242889726, 0.35597935], [101.54, 46.11416958805919, 0.3144683], [101.55, 45.92310829724252, 0.36711615], [101.56, 46.30084594939597, 0.29099053], [101.57, 46.2696457984335, 0.5173409], [101.58, 46.24916761952697, 0.39111003], [101.59, 46.33204206794954, 0.54333824], [101.6, 46.25455741065796, 0.40139586], [101.61, 46.17233589126917, 0.47346777], [101.62, 46.219634950137774, 0.4933617], [101.63, 46.71626677318437, 0.5447574], [101.64, 46.588353578853145, 0.56478024], [101.65, 47.077255279701504, 0.55190444], [101.66, 47.30848988174719, 0.45822734], [101.67, 46.86706829786772, 0.5331157], [101.68, 46.63518419460644, 0.495667], [101.69, 46.58398461062414, 0.55734664], [101.7, 46.53004544982453, 0.5587884], [101.71, 46.37900539209929, 0.60531366], [101.72, 46.50497551872333, 0.5843468], [101.73, 46.259931151061494, 0.65837544], [101.74, 46.48891138813777, 0.5643862], [101.75, 46.3491751889649, 0.5167759], [101.76, 46.6485728072832, 0.5082891], [101.77, 47.339652184970376, 0.38145214], [101.78, 47.82891235755126, 0.3437613], [101.79, 48.097426022259135, 0.12431988], [101.8, 47.75402991534193, 0.14170705], [101.81, 48.16134981357102, 0.1834947], [101.82, 48.277235931294086, 0.23818238], [101.83, 48.76984980895804, 0.12358137], [101.84, 48.34024322554461, 0.10019471], [101.85, 48.41893154622334, 0.09496968], [101.86, 48.38823609667698, 0.09099353], [101.87, 48.49436653315437, 0.28388885], [101.88, 48.39101728381226, 0.12809093], [101.89, 48.203316855447866, 0.12262927], [101.9, 47.5082023873702, 0.101767175], [101.91, 47.4130019469512, 0.2618549], [101.92, 47.37319906199269, 0.17660207], [101.93, 47.30640519832663, 0.49172488], [101.94, 47.59155378479551, 0.398321], [101.95, 47.187696543641124, 0.42024687], [101.96, 46.91023206715053, 0.31135163], [101.97, 47.32107868901991, 0.18080156], [101.98, 46.68508762816106, 0.45771158], [101.99, 46.66535715503008, 0.4529223], [102.0, 46.66730682110638, 0.54593945], [102.01, 46.368270994137, 0.5478734], [102.02, 46.5830685721143, 0.59474635], [102.03, 46.62450973880567, 0.5597978], [102.04, 46.89944469288962, 0.659786], [102.05, 46.527851445994486, 0.49991772], [102.06, 46.66532915574439, 0.6629463], [102.07, 46.58547574559596, 0.6335044], [102.08, 46.61407068489239, 0.7461992], [102.09, 46.48734287286058, 0.77114064], [102.1, 46.582374378381, 0.77722365], [102.11, 46.6618096324908, 0.7811196], [102.12, 46.549943864384, 0.8079806], [102.13, 46.65646462075369, 0.80725926], [102.14, 46.537531212660696, 0.82634324], [102.15, 46.765876346772316, 0.7596723], [102.16, 46.37536755711138, 0.6546933], [102.17, 44.99441780712062, 0.58322394], [102.18, 44.5878118964313, 0.47186095], [102.19, 48.93371991260228, 0.29726887], [102.2, 50.16279610063314, 0.21905352], [102.21, 51.024834639109784, 0.18464576], [102.22, 51.22484384507943, 0.17230327], [102.23, 52.020637074177785, 0.28345507], [102.24, 52.46916340308662, 0.4095148], [102.25, 52.448462528884356, 0.65282804], [102.26, 52.81646574451446, 0.6130406], [102.27, 52.47453178445628, 0.38376635], [102.28, 52.74671067013193, 0.35803536], [102.29, 52.849387041640064, 0.5957752], [102.3, 52.66835344332658, 0.7305462], [102.31, 52.296176996129574, 0.7300126], [102.32, 51.91764947010399, 0.77859473], [102.33, 51.64946052279531, 0.71432656], [102.34, 51.888306669233856, 0.78788954], [102.35, 52.14697620233694, 0.7599237], [102.36, 52.76843441077615, 0.6928103], [102.37, 52.517264555076835, 0.49036354], [102.38, 52.612084724704104, 0.4207875], [102.39, 52.409814428407216, 0.5015844], [102.4, 52.066974141526046, 0.6992738], [102.41, 51.8219352683716, 0.6567192], [102.42, 51.85182201739483, 0.7271235], [102.43, 51.8474093344074, 0.643696], [102.44, 51.820065769206494, 0.57921606], [102.45, 52.80571621779244, 0.26736417], [102.46, 52.84257902983296, 0.54710376], [102.47, 53.59934258444006, 0.39307806], [102.48, 52.543062630628484, 0.34829038], [102.49, 52.13140217077466, 0.12361377], [102.5, 54.76341512024777, 0.046746477], [102.51, 58.28914445979035, 0.16619259], [102.52, 64.00535322109226, 0.20100538], [102.53, 67.59189421814264, 0.07930958], [102.54, 70.78712654949447, 0.10225076], [102.55, 77.57666397731792, 0.14098106], [102.56, 82.07656082866924, 0.34322777], [102.57, 85.18305652410304, 0.38488987], [102.58, 88.72300001255242, 0.17025965], [102.59, 97.05060746238559, 0.08203147], [102.6, 104.51662500914763, 0.06297091], [102.61, 107.76788280982274, 0.16407152], [102.62, 106.8623029782251, 0.27723143], [102.63, 106.60629508829496, 0.20896953], [102.64, 106.60906026169279, 0.21973675], [102.65, 107.02531155853647, 0.2067623], [102.66, 110.22883533408861, 0.14148985], [102.67, 118.57167675034364, 0.27301547], [102.68, 124.44114225982567, 0.20867947], [102.69, 131.69449156173962, 0.29941374], [102.7, 142.27362811015394, 0.36201602], [102.71, 148.53646495618545, 0.28701097], [102.72, 152.47330740625708, 0.20524094], [102.73, 158.64193820389235, 0.11388456], [102.74, 169.42624660375066, 0.19664636], [102.75, 173.00690963381527, 0.37084475], [102.76, 174.5469851456063, 0.37496844], [102.77, 175.90677681030027, 0.37483904], [102.78, 174.70180294267755, 0.34984192], [102.79, 174.69296319272442, 0.3774777], [102.8, 192.07693611636117, 0.14799179], [102.81, 215.10646742162763, 0.18863814], [102.82, 243.21806608218694, 0.2229869], [102.83, 267.6300287243097, 0.122931905], [102.84, 294.9005669238999, 0.22186309], [102.85, 289.8329950706586, 0.1534828], [102.86, 280.1457831105445, 0.20698981], [102.87, 274.301748633527, 0.14273518], [102.88, 293.4701960805388, 0.25541377], [102.89, 328.99406801494047, 0.20348756], [102.9, 369.0600392111297, 0.2193554], [102.91, 388.2698828504498, 0.2695232], [102.92, 394.5428427891926, 0.4644296], [102.93, 396.78185161411227, 0.6993683], [102.94, 398.7644246935252, 0.79692227], [102.95, 398.87445761122865, 0.7176516], [102.96, 395.9848811850811, 0.59637463], [102.97, 390.3034558131453, 0.50139827], [102.98, 376.49052354905757, 0.3694804], [102.99, 376.0401761344041, 0.24039458], [103.0, 373.18134017039347, 0.1805178], [103.01, 374.50873101212403, 0.26693392], [103.02, 375.6706791383183, 0.32323316], [103.03, 378.77351049104266, 0.30112693], [103.04, 378.38036589520465, 0.33197263], [103.05, 382.0495225340971, 0.11412846], [103.06, 382.53691448880465, 0.12606567], [103.07, 379.31277133749086, 0.38941154], [103.08, 373.98111481911855, 0.38122964], [103.09, 372.6380242062672, 0.32832024], [103.1, 369.3705795998095, 0.23026589], [103.11, 365.87011021804045, 0.19406945], [103.12, 359.6040178529955, 0.19703], [103.13, 347.2139108289915, 0.31961972], [103.14, 340.1273549987984, 0.19280638], [103.15, 343.32645227415554, 0.266298], [103.16, 341.57755147980913, 0.16423896], [103.17, 334.01104697355004, 0.14714374], [103.18, 322.6227865991305, 0.29772386], [103.19, 320.48593260560824, 0.25220346], [103.2, 315.76661046875586, 0.43019432], [103.21, 315.01376498888396, 0.15534374], [103.22, 315.55257571191936, 0.20516345], [103.23, 316.66006987744777, 0.21016619], [103.24, 329.9429698565789, 0.15243132], [103.25, 346.99465600454806, 0.2726805], [103.26, 353.4729044803519, 0.47554624], [103.27, 384.10273647956814, 0.33117348], [103.28, 395.95193883289187, 0.13601772], [103.29, 404.9751662594223, 0.33718774], [103.3, 426.27848148590044, 0.18191513], [103.31, 436.7239618805741, 0.14340805], [103.32, 433.74870608910106, 0.06984222], [103.33, 471.3833553062709, 0.19306895], [103.34, 461.5359702979799, 0.11026908], [103.35, 439.0162158096414, 0.33621845], [103.36, 411.2574966422568, 0.3777831], [103.37, 397.6559412596027, 0.1760404], [103.38, 406.8530293616311, 0.22586218], [103.39, 407.6477332541393, 0.25823528], [103.4, 413.8350659312017, 0.4800998], [103.41, 416.0609895592114, 0.34748197], [103.42, 421.97115723357877, 0.28674203], [103.43, 426.9854841861977, 0.31340757], [103.44, 427.3268914157731, 0.38133767], [103.45, 424.4306807898365, 0.37709847], [103.46, 411.9008692943863, 0.33840692], [103.47, 411.2825278198401, 0.2027886], [103.48, 410.6852443699512, 0.31221065], [103.49, 411.96069088399616, 0.36838636], [103.5, 415.6464195117011, 0.46270427], [103.51, 415.5990859573007, 0.44408417], [103.52, 402.53281388273376, 0.40470603], [103.53, 369.82333729024515, 0.3733103], [103.54, 334.05909410708483, 0.405883], [103.55, 317.2923037788001, 0.287421], [103.56, 284.54996845966406, 0.44791424], [103.57, 278.6508963570519, 0.55175346], [103.58, 266.0073817662781, 0.5067866], [103.59, 235.46739282215398, 0.5420645], [103.6, 222.04233696326267, 0.6956633], [103.61, 205.7509065205362, 0.70936656], [103.62, 193.53939895589204, 0.6470061], [103.63, 175.3842362020137, 0.46944827], [103.64, 164.34817281922508, 0.5491631], [103.65, 146.1592812173027, 0.4860216], [103.66, 139.6340781568723, 0.6445468], [103.67, 139.55029932199915, 0.65266305], [103.68, 138.84495053973663, 0.6827215], [103.69, 138.9610806075545, 0.75862527], [103.7, 138.53213740911787, 0.8175831], [103.71, 138.075716080051, 0.79315436], [103.72, 137.85510824539574, 0.68154514], [103.73, 137.85318106823684, 0.609986], [103.74, 134.95244771083807, 0.5457028], [103.75, 120.90218433827147, 0.43801296], [103.76, 113.70540217174772, 0.17324895], [103.77, 111.50606465955617, 0.20653595], [103.78, 105.8615604889855, 0.39167273], [103.79, 94.67283746836793, 0.39093438], [103.8, 92.48852835275451, 0.42075637], [103.81, 88.8441305021793, 0.22110248], [103.82, 80.62683670387, 0.23041072], [103.83, 74.31008895197164, 0.29717013], [103.84, 69.9945845383645, 0.36052248], [103.85, 67.12373293281252, 0.29197833], [103.86, 58.91783038358375, 0.13654947], [103.87, 57.286754367126164, 0.2690777], [103.88, 57.23791744784022, 0.2698306], [103.89, 57.221523657380345, 0.46835345], [103.9, 57.502584492390085, 0.50444174], [103.91, 57.234803237156335, 0.45007318], [103.92, 56.863272885759656, 0.48496345], [103.93, 57.517039178037486, 0.5671231], [103.94, 57.24880054831093, 0.47997352], [103.95, 57.73302920192214, 0.37119144], [103.96, 57.37030509602416, 0.48779377], [103.97, 57.135551776270674, 0.43767765], [103.98, 56.852935204995504, 0.5788154], [103.99, 56.29923796656322, 0.47501183], [104.0, 58.051230111952215, 0.27940482], [104.01, 58.24917908406619, 0.2615967], [104.02, 58.618894053463706, 0.33373654], [104.03, 57.96553009490065, 0.61188734], [104.04, 58.32954049430428, 0.68122965], [104.05, 58.4758504265901, 0.6187806], [104.06, 57.73291119735879, 0.56216747], [104.07, 58.1026144662981, 0.64214975], [104.08, 57.73519234103859, 0.40192533], [104.09, 54.97599421767823, 0.17304863], [104.1, 51.529205938346266, 0.29755116], [104.11, 48.796175575894516, 0.1669921], [104.12, 43.632867583195676, 0.14529286], [104.13, 42.13618766478362, 0.25301802], [104.14, 42.59488802675743, 0.21259883], [104.15, 42.48391214383393, 0.19793516], [104.16, 42.47814291842114, 0.22896363], [104.17, 42.50407400627885, 0.14223377], [104.18, 43.074189468428926, 0.08045069], [104.19, 43.36923497536861, 0.20696169], [104.2, 43.7090131218169, 0.37675017], [104.21, 43.86742445154222, 0.4655357], [104.22, 43.94882665584091, 0.42732805], [104.23, 43.92216712279417, 0.6387963], [104.24, 44.12273241879429, 0.6151129], [104.25, 43.78052399854107, 0.64773786], [104.26, 43.730600406187335, 0.66692287], [104.27, 43.596923723663146, 0.50533015], [104.28, 43.742173649536404, 0.47517172], [104.29, 43.77701596024973, 0.27370164], [104.3, 43.64828101560099, 0.31456357], [104.31, 43.41682541837329, 0.26461658], [104.32, 43.34254323153921, 0.23282942], [104.33, 43.46799697495197, 0.1865127], [104.34, 43.29377646627321, 0.31441838], [104.35, 43.4233324478355, 0.3808019], [104.36, 43.24998627628382, 0.29654914], [104.37, 43.397471714802265, 0.27506796], [104.38, 43.39298783110782, 0.12929448], [104.39, 43.43656324040788, 0.1708726], [104.4, 43.65197199620802, 0.24953589], [104.41, 43.54934403022846, 0.2204007], [104.42, 43.06570246197676, 0.21285036], [104.43, 43.35972526543494, 0.23620597], [104.44, 43.79141743046227, 0.23823684], [104.45, 43.58065795834996, 0.2504935], [104.46, 43.814084476164126, 0.25582632], [104.47, 43.872932685270285, 0.29992715], [104.48, 43.9104802294812, 0.3275285], [104.49, 43.87863704724196, 0.3465079], [104.5, 43.812010520440275, 0.47521913], [104.51, 43.87202735694234, 0.62663627], [104.52, 43.78186701507218, 0.44154167], [104.53, 43.715533771984255, 0.3638171], [104.54, 43.510954374996714, 0.15191054], [104.55, 43.75061175901337, 0.23227619], [104.56, 44.234311630535444, 0.18525475], [104.57, 44.336069859027525, 0.31281668], [104.58, 43.864312185142296, 0.14419594], [104.59, 43.675669409967306, 0.45961413], [104.6, 43.72711015192923, 0.44108856], [104.61, 43.73891827111023, 0.38333872], [104.62, 43.89134613648676, 0.46774575], [104.63, 43.797847605256955, 0.39113095], [104.64, 43.65114170527379, 0.5412144], [104.65, 43.70328462263308, 0.5819542], [104.66, 43.48345880351977, 0.65080446], [104.67, 43.608608129204505, 0.7130938], [104.68, 43.57447071287035, 0.6060558], [104.69, 43.81704111171412, 0.5626423], [104.7, 43.765046004446916, 0.4714088], [104.71, 43.77580519467786, 0.54994005], [104.72, 44.03300379449509, 0.48692057], [104.73, 43.86320807950384, 0.57219094], [104.74, 43.782248452215875, 0.65824026], [104.75, 43.70615290752078, 0.6649269], [104.76, 43.71572883674464, 0.52772295], [104.77, 43.47292408290927, 0.528989], [104.78, 43.858878794156126, 0.1632051], [104.79, 44.81627737024226, 0.3254264], [104.8, 46.694013097633615, 0.23882836], [104.81, 47.432989105516306, 0.26431906], [104.82, 48.41967467044302, 0.27110946], [104.83, 49.159232423264925, 0.1489359], [104.84, 50.509757970795725, 0.2176541], [104.85, 52.646412517444794, 0.5108874], [104.86, 53.32202745722305, 0.5682127], [104.87, 54.566061031096524, 0.55111986], [104.88, 56.20373439978346, 0.4654041], [104.89, 57.15888596701213, 0.48474503], [104.9, 57.79541304693643, 0.54169875], [104.91, 58.017982068816146, 0.43696532], [104.92, 57.97947090958673, 0.25945517], [104.93, 58.88689743320558, 0.1483511], [104.94, 58.717137969295194, 0.14303158], [104.95, 58.62421319584608, 0.26163507], [104.96, 59.559862380427084, 0.10276452], [104.97, 59.52325293992086, 0.119473554], [104.98, 58.77768337935339, 0.16333471], [104.99, 59.3820986607692, 0.26960927], [105.0, 59.119794577975284, 0.43612427], [105.01, 59.72887449542647, 0.57115567], [105.02, 60.43522089147683, 0.3069732], [105.03, 62.57943352003181, 0.40639365], [105.04, 68.75056430896187, 0.15962762], [105.05, 72.030315095432, 0.15653583], [105.06, 75.46426295336988, 0.32230446], [105.07, 77.2363431934026, 0.3201697], [105.08, 84.1321820315946, 0.11992654], [105.09, 96.89044683934284, 0.30622265], [105.1, 105.37537093427292, 0.1065468], [105.11, 116.75473871201305, 0.47683963], [105.12, 126.39775190120987, 0.5763026], [105.13, 147.61750380048903, 0.51560444], [105.14, 157.5797228579247, 0.38788056], [105.15, 181.3643820827593, 0.2852889], [105.16, 193.67537021830984, 0.33086672], [105.17, 217.36537997070178, 0.28744823], [105.18, 240.1480629924848, 0.44768167], [105.19, 265.4633641241506, 0.40616834], [105.2, 286.2953224131799, 0.3026793], [105.21, 317.8882331285018, 0.3142162], [105.22, 342.76110567929277, 0.35706693], [105.23, 391.14894820181314, 0.18519741], [105.24, 418.75324080417124, 0.37810555], [105.25, 420.87822340178764, 0.39968723], [105.26, 421.9522338047545, 0.7237896], [105.27, 421.91351007813927, 0.7712169], [105.28, 420.7261357198619, 0.80154157], [105.29, 418.58787819421116, 0.82874846], [105.3, 417.5203883898523, 0.86509776], [105.31, 416.6266082575337, 0.8588851], [105.32, 417.32031043464525, 0.86912966], [105.33, 416.99416872029695, 0.87314713], [105.34, 417.65471083890196, 0.88100123], [105.35, 417.53087344291976, 0.8828127], [105.36, 417.3834923036611, 0.8891867], [105.37, 416.68837185265403, 0.89235336], [105.38, 416.46620395881484, 0.8890029], [105.39, 415.9765801237268, 0.8918745], [105.4, 415.7325916911174, 0.8843131], [105.41, 415.90459812971426, 0.8892723], [105.42, 415.68291690866533, 0.8842914], [105.43, 415.8254282988214, 0.89048785], [105.44, 415.5310554532815, 0.88862497], [105.45, 414.7537025722847, 0.86903316], [105.46, 413.6399313936034, 0.87799746], [105.47, 413.47863179597323, 0.89431983], [105.48, 413.57046311537795, 0.88458014], [105.49, 413.63836107790564, 0.88443667], [105.5, 413.6721381176583, 0.8898982], [105.51, 413.349622224904, 0.8886649], [105.52, 413.95369546610226, 0.88660264], [105.53, 415.19074306877053, 0.89155823], [105.54, 417.17088438414726, 0.89092964], [105.55, 419.5238956953301, 0.86957854], [105.56, 420.7621707511513, 0.8847272], [105.57, 422.28969479500665, 0.88635445], [105.58, 423.08742210557534, 0.8789243], [105.59, 422.67817245574395, 0.879774], [105.6, 421.6615500520271, 0.8831682], [105.61, 418.6242650217463, 0.86828995], [105.62, 416.0253217002612, 0.88030916], [105.63, 413.0953617312065, 0.8657703], [105.64, 411.65504288532696, 0.89034075], [105.65, 410.3425443611804, 0.89194304], [105.66, 410.33883974114144, 0.89211065], [105.67, 410.96693207331833, 0.8896334], [105.68, 413.22493261237577, 0.89525044], [105.69, 415.3748651704188, 0.88782245], [105.7, 416.9363527445756, 0.8894751], [105.71, 418.0228481392046, 0.8853906], [105.72, 418.1593381327689, 0.8842282], [105.73, 419.1944409536313, 0.87195945], [105.74, 421.1297368545465, 0.8805201], [105.75, 426.25205587455025, 0.8364235], [105.76, 431.09179059382984, 0.80555296], [105.77, 436.9224122382069, 0.8329117], [105.78, 438.73780272266225, 0.8823581], [105.79, 436.501661972692, 0.8289475], [105.8, 430.3483045661392, 0.8076221], [105.81, 423.3802722421084, 0.74944246], [105.82, 418.3891498796552, 0.6909243], [105.83, 413.96528898256804, 0.5021946], [105.84, 399.08381285251346, 0.51217026], [105.85, 384.7653540399151, 0.36081144], [105.86, 364.1260084267584, 0.34486935], [105.87, 322.7906976144829, 0.24771802], [105.88, 290.68428270025885, 0.438576], [105.89, 270.07549391536133, 0.18791468], [105.9, 243.3367381067854, 0.3503382], [105.91, 237.3593587550299, 0.34932053], [105.92, 228.83521258687136, 0.09945255], [105.93, 216.27961337558756, 0.2007717], [105.94, 224.06560113039143, 0.13484688], [105.95, 238.69523857533994, 0.10461646], [105.96, 250.07157131189967, 0.13178113], [105.97, 258.61216712789167, 0.2624999], [105.98, 271.4778470535796, 0.38304502], [105.99, 291.50505323445896, 0.46544147], [106.0, 303.94860725109857, 0.4735877], [106.01, 313.7608862457128, 0.35376126], [106.02, 317.1585651856411, 0.7492931], [106.03, 314.3108857042602, 0.66902214], [106.04, 309.04418621070806, 0.5635606], [106.05, 305.7669212552536, 0.40759993], [106.06, 308.46594382473575, 0.24540806], [106.07, 314.82791646774945, 0.3788167], [106.08, 320.63130379457493, 0.25200534], [106.09, 324.88154750668315, 0.26422358], [106.1, 329.48591355912475, 0.5045734], [106.11, 335.6491210570839, 0.55028534], [106.12, 342.02426371022045, 0.6139495], [106.13, 347.62819361156687, 0.78738666], [106.14, 347.66345597925755, 0.81219715], [106.15, 347.93378153389534, 0.8265899], [106.16, 345.9541150442602, 0.8296673], [106.17, 343.5788121233269, 0.80646604], [106.18, 338.01624861180363, 0.6950147], [106.19, 329.8624845323213, 0.7089739], [106.2, 323.2730188787474, 0.7449161], [106.21, 318.13070320779354, 0.8239216], [106.22, 316.17249211638045, 0.8823436], [106.23, 314.32332176923995, 0.83936334], [106.24, 312.87054450754437, 0.8688968], [106.25, 311.5481546045788, 0.85497075], [106.26, 310.05607929204257, 0.8510227], [106.27, 309.8234867225131, 0.8640946], [106.28, 309.6079918710406, 0.87018925], [106.29, 309.37496620405807, 0.8670933], [106.3, 309.3374287632732, 0.8731966], [106.31, 309.2307972381898, 0.8798803], [106.32, 309.33243138869597, 0.87089384], [106.33, 309.6539100350379, 0.8593971], [106.34, 310.3768925449456, 0.84409523], [106.35, 310.7934872821971, 0.8523762], [106.36, 311.61073967714896, 0.8713176], [106.37, 312.12105845721476, 0.8771192], [106.38, 312.8028525062147, 0.8712338], [106.39, 313.3368238871839, 0.87805146], [106.4, 313.0535813120124, 0.87474746], [106.41, 312.1277132596326, 0.8765881], [106.42, 311.27951593896785, 0.87154347], [106.43, 309.95981042551597, 0.85285276], [106.44, 309.11747493602815, 0.86307776], [106.45, 308.57100250499013, 0.8672444], [106.46, 308.30167126984753, 0.8642494], [106.47, 308.5660115184016, 0.86181414], [106.48, 309.2423738109104, 0.8501244], [106.49, 310.1447128942574, 0.8370083], [106.5, 311.0505523068409, 0.8540726], [106.51, 311.8111005439545, 0.86643213], [106.52, 312.54602645870756, 0.8725341], [106.53, 312.95388097917265, 0.8572621], [106.54, 312.91286653067357, 0.8637164], [106.55, 312.5930826260352, 0.8750112], [106.56, 312.43735063764717, 0.8685691], [106.57, 312.60367161569013, 0.87947834], [106.58, 312.73736068936364, 0.8803477], [106.59, 312.6590816516714, 0.8764998], [106.6, 312.5378540213992, 0.8770257], [106.61, 312.67413209919437, 0.869155], [106.62, 312.64707127741804, 0.8719854], [106.63, 312.843866974004, 0.8781057], [106.64, 312.87039294605074, 0.87405163], [106.65, 312.64845850975587, 0.88239634], [106.66, 312.1773015306986, 0.8767912], [106.67, 310.9329165783344, 0.8541499], [106.68, 309.2179057900184, 0.86481446], [106.69, 308.960382023581, 0.8541967], [106.7, 308.9442212773144, 0.85813403], [106.71, 308.8803756522589, 0.84489685], [106.72, 308.7213502800759, 0.8396388], [106.73, 309.0697409706489, 0.8324847], [106.74, 306.93675959373286, 0.7239199], [106.75, 301.33805164386837, 0.56494266], [106.76, 294.101756981065, 0.44867656], [106.77, 295.4528531304398, 0.21336086], [106.78, 306.3214705489894, 0.42644796], [106.79, 309.710800960023, 0.590381], [106.8, 310.84225575321676, 0.5106745], [106.81, 311.22046914153276, 0.35450062], [106.82, 314.15771894091864, 0.4393724], [106.83, 319.2914610837186, 0.7055189], [106.84, 317.13382896912765, 0.7310808], [106.85, 318.4322941052043, 0.7312511], [106.86, 314.72149261660684, 0.4362209], [106.87, 318.8676719068367, 0.11720362], [106.88, 320.9904018427669, 0.09789872], [106.89, 321.23056536673016, 0.17868209], [106.9, 320.921525726333, 0.13674879], [106.91, 319.9942217017712, 0.28248456], [106.92, 316.36797394382086, 0.17984012], [106.93, 311.6487316369213, 0.14480786], [106.94, 313.7720673979592, 0.1895506], [106.95, 314.7601345681939, 0.441354], [106.96, 314.81846011156017, 0.7354626], [106.97, 308.2307690552077, 0.55976284], [106.98, 299.32104341164745, 0.58782035], [106.99, 296.7771029913936, 0.26991978], [107.0, 297.6990772872371, 0.3307874], [107.01, 301.37934146824, 0.34372804], [107.02, 307.4676293054736, 0.33690223], [107.03, 313.29075346837317, 0.27314246], [107.04, 317.84506342298437, 0.51286286], [107.05, 319.28166540885354, 0.68193775], [107.06, 319.8921425453326, 0.7448291], [107.07, 319.8205193021892, 0.7651047], [107.08, 318.8975658578645, 0.72417545], [107.09, 315.68753775111196, 0.6922561], [107.1, 311.4395936272815, 0.6816513], [107.11, 307.87781876986173, 0.7309603], [107.12, 304.8753796009428, 0.78937435], [107.13, 304.39295438948125, 0.82337695], [107.14, 304.9995682764039, 0.83925426], [107.15, 307.83664027134483, 0.78191876], [107.16, 311.98682127993584, 0.7899323], [107.17, 316.6101838281402, 0.8357234], [107.18, 317.77177505882, 0.807113], [107.19, 320.27709005103134, 0.8238334], [107.2, 321.38256970656164, 0.84958005], [107.21, 321.341324983213, 0.8480793], [107.22, 319.9231327758145, 0.8356087], [107.23, 316.26229490597655, 0.66340727], [107.24, 302.09086070627154, 0.45047596], [107.25, 287.7875046753368, 0.5047405], [107.26, 280.1921579520637, 0.3117912], [107.27, 265.47188752222934, 0.60548645], [107.28, 262.0189936990769, 0.4202805], [107.29, 287.78041112235604, 0.21759427], [107.3, 308.19934648491574, 0.20800225], [107.31, 311.99968007639444, 0.47616047], [107.32, 315.007427345878, 0.46159786], [107.33, 315.2308356922762, 0.43915668], [107.34, 313.1973086943176, 0.5272681], [107.35, 315.97987632189535, 0.35463732], [107.36, 315.49095332833656, 0.49578503], [107.37, 314.3146345179615, 0.7165789], [107.38, 316.3766110688285, 0.8387977], [107.39, 317.9318196545228, 0.8552955], [107.4, 319.43612347256686, 0.83930624], [107.41, 320.18730552440104, 0.8400705], [107.42, 317.52050924945894, 0.8317979], [107.43, 314.66926140846203, 0.8550018], [107.44, 311.9938938261523, 0.8513337], [107.45, 310.355674228461, 0.8457891], [107.46, 309.91632224410984, 0.8623327], [107.47, 311.05141700069726, 0.8565455], [107.48, 312.770118806395, 0.85435003], [107.49, 314.98672878437145, 0.8474446], [107.5, 317.3683758276838, 0.80669403], [107.51, 322.7466536161799, 0.75718415], [107.52, 326.4674228774119, 0.5410032], [107.53, 332.6566821889784, 0.4505329], [107.54, 342.9384803686146, 0.5320538], [107.55, 348.61156496386803, 0.76539403], [107.56, 350.81050274764544, 0.8807143], [107.57, 351.1095366585633, 0.88264525], [107.58, 350.2653101587779, 0.8780548], [107.59, 349.79134270364614, 0.8644541], [107.6, 348.52141522964956, 0.8439618], [107.61, 348.81630135147014, 0.8394703], [107.62, 348.4557519426637, 0.8167323], [107.63, 348.93895965788784, 0.8394256], [107.64, 349.92112964827925, 0.8521023], [107.65, 350.4126705390965, 0.8678139], [107.66, 350.806159388024, 0.8720553], [107.67, 351.04744088083714, 0.8727046], [107.68, 350.8606664361149, 0.8730721], [107.69, 350.4949772085593, 0.8806026], [107.7, 349.5003009667787, 0.87238014], [107.71, 348.1565881746008, 0.7902289], [107.72, 343.1252759671959, 0.616186], [107.73, 327.4224480241544, 0.39800546], [107.74, 309.9554079067993, 0.4026944], [107.75, 296.77774264179914, 0.7255702], [107.76, 291.42093950538805, 0.80052626], [107.77, 285.38294672002746, 0.7901716], [107.78, 281.64654916081946, 0.86033446], [107.79, 281.78534718172034, 0.85895205], [107.8, 284.51392707058733, 0.72182316], [107.81, 291.92233316883454, 0.49069503], [107.82, 309.8616108290651, 0.46394563], [107.83, 312.2879509753762, 0.6419306], [107.84, 314.7278767473631, 0.49166977], [107.85, 326.40891743861016, 0.33565548], [107.86, 341.249783576091, 0.31767693], [107.87, 346.5141292666587, 0.44128934], [107.88, 344.69619369604675, 0.6763524], [107.89, 339.48598815633693, 0.6831208], [107.9, 333.1903222154001, 0.72365624], [107.91, 328.54419460458394, 0.7931094], [107.92, 324.96141253196197, 0.79712445], [107.93, 318.49679562107866, 0.7486501], [107.94, 312.6795347681151, 0.8572309], [107.95, 310.33608742493493, 0.85850483], [107.96, 309.58549474301884, 0.87473613], [107.97, 309.62183286291554, 0.87019366], [107.98, 310.010318549187, 0.84731215], [107.99, 310.4226483152948, 0.8269666], [108.0, 310.97462411062503, 0.8432602], [108.01, 311.7073378241118, 0.8531001], [108.02, 312.43690075868346, 0.8517534], [108.03, 311.9247382815726, 0.8566266], [108.04, 310.76569548298284, 0.8365449], [108.05, 307.5655556858763, 0.8023932], [108.06, 301.95184045786726, 0.77495414], [108.07, 293.60069976498085, 0.7903108], [108.08, 287.87472142531925, 0.8778849], [108.09, 284.69849422397664, 0.9001415], [108.1, 282.6582622080385, 0.90180844], [108.11, 281.4784864526008, 0.91548926], [108.12, 280.90814173838044, 0.90512854], [108.13, 280.2565266946826, 0.8966017], [108.14, 279.0591345244368, 0.89611274], [108.15, 277.1073905127955, 0.88717866], [108.16, 275.61127283505795, 0.87614155], [108.17, 273.29265676866436, 0.8348899], [108.18, 269.9570119668059, 0.86444175], [108.19, 268.6611241380047, 0.8827933], [108.2, 268.3112787618817, 0.86999094], [108.21, 270.8449113549742, 0.8311095], [108.22, 273.51110136494424, 0.7839377], [108.23, 275.9938804763807, 0.83857924], [108.24, 278.0556626662184, 0.8954398], [108.25, 278.4549160986585, 0.9144004], [108.26, 278.55226436948965, 0.9216723], [108.27, 279.0127010373681, 0.91717565], [108.28, 279.18362919284016, 0.9093076], [108.29, 278.86805373844777, 0.9091413], [108.3, 278.80145645778, 0.90699446], [108.31, 279.5070926578986, 0.8847504], [108.32, 281.4146938699378, 0.8881122], [108.33, 282.3856185985597, 0.86650336], [108.34, 281.1508399882306, 0.88415605], [108.35, 280.4215762862426, 0.89884555], [108.36, 280.40910450687784, 0.90215766], [108.37, 279.54938181596606, 0.8897717], [108.38, 278.6353244299368, 0.8931819], [108.39, 278.0504232977281, 0.88435376], [108.4, 277.03294965965773, 0.8586768], [108.41, 276.22930283504496, 0.85293627], [108.42, 275.82742016142237, 0.8518565], [108.43, 276.56745216236015, 0.8438135], [108.44, 277.77703743481277, 0.87008667], [108.45, 278.2476072355579, 0.88674766], [108.46, 278.14395716718093, 0.8830623], [108.47, 277.9818562513975, 0.88349026], [108.48, 277.321812375937, 0.8752557], [108.49, 275.7805480439081, 0.86813736], [108.5, 272.8233238908428, 0.82825726], [108.51, 267.8023890819257, 0.8204451], [108.52, 261.8601271442554, 0.7390348], [108.53, 251.938035181631, 0.578372], [108.54, 243.67565001604464, 0.6038322], [108.55, 238.03310811229318, 0.7786455], [108.56, 235.0269335585765, 0.86859035], [108.57, 233.1249687207419, 0.87642807], [108.58, 232.0907274379371, 0.86846733], [108.59, 231.78929063115956, 0.8820129], [108.6, 231.80721337291698, 0.8677888], [108.61, 232.30054582603302, 0.86709946], [108.62, 232.557529048335, 0.87499183], [108.63, 232.766155478729, 0.8663629], [108.64, 232.45584272925439, 0.8518159], [108.65, 231.3923297507232, 0.8294092], [108.66, 230.62409205847098, 0.762874], [108.67, 227.45151000211482, 0.70664304], [108.68, 225.6692284288982, 0.62271386], [108.69, 224.01542844422224, 0.39779186], [108.7, 210.53431992791923, 0.20656404], [108.71, 188.9382077237898, 0.4221579], [108.72, 178.36565692693188, 0.6030834], [108.73, 159.76083907734332, 0.58996195], [108.74, 148.8939076752825, 0.45827323], [108.75, 137.2784801880108, 0.1828005], [108.76, 126.58617591104574, 0.17780052], [108.77, 117.07898690207871, 0.25095478], [108.78, 107.67613518551288, 0.13326108], [108.79, 100.53748997776779, 0.2247864], [108.8, 92.71631359231712, 0.12927556], [108.81, 82.18173821057297, 0.5621411], [108.82, 77.90139256809775, 0.3329797], [108.83, 69.82127001187857, 0.27818233], [108.84, 64.32170810109534, 0.5158261], [108.85, 56.75741425524401, 0.15936892], [108.86, 55.82695160742829, 0.5033499], [108.87, 53.85510376880135, 0.5665023], [108.88, 52.58891521948016, 0.6549569], [108.89, 52.14129003829904, 0.7388504], [108.9, 52.31107637396967, 0.711869], [108.91, 53.02672646413991, 0.5532743], [108.92, 53.97574488297551, 0.44331023], [108.93, 54.21640381428432, 0.51443624], [108.94, 53.50825068906387, 0.48843646], [108.95, 52.366563240499254, 0.6643191], [108.96, 51.872461551976485, 0.69059086], [108.97, 51.95070697156887, 0.7290936], [108.98, 52.02261401647477, 0.69921094], [108.99, 51.659482357078986, 0.6641639], [109.0, 51.26921212478579, 0.53916156], [109.01, 50.6582065898806, 0.40949416], [109.02, 51.02462293719572, 0.4317272], [109.03, 56.71344940286048, 0.5067053], [109.04, 65.02828531866112, 0.43902466], [109.05, 74.60587775711053, 0.6612787], [109.06, 85.64101811147663, 0.6158944], [109.07, 95.87300713311811, 0.71611434], [109.08, 108.59349722304506, 0.56610465], [109.09, 124.09268956330074, 0.4401554], [109.1, 140.04680168898966, 0.2352961], [109.11, 151.34442316163918, 0.50215256], [109.12, 178.15225664520767, 0.61925757], [109.13, 187.59887509240593, 0.4461258], [109.14, 221.69889730117373, 0.17442954], [109.15, 248.22723319285842, 0.09742212], [109.16, 273.90549699669134, 0.48325056], [109.17, 275.4727892094611, 0.7078205], [109.18, 277.3181499249132, 0.78580976], [109.19, 278.9336970452481, 0.66241187], [109.2, 281.5174181987889, 0.5045161], [109.21, 278.15533801912903, 0.5896082], [109.22, 275.7155483974841, 0.5324123], [109.23, 274.49826564287196, 0.37160295], [109.24, 299.396783070316, 0.17208526], [109.25, 337.5074650929142, 0.2134307], [109.26, 330.3891285396977, 0.37855038], [109.27, 314.9530650142334, 0.44787797], [109.28, 315.4445267622016, 0.7382574], [109.29, 319.9869516085385, 0.5428807], [109.3, 330.81336855311355, 0.30255708], [109.31, 354.4410454215706, 0.5262575], [109.32, 358.52086993818324, 0.59653443], [109.33, 365.97382764556824, 0.67443764], [109.34, 370.63844221644615, 0.85661244], [109.35, 373.80078764527724, 0.8773529], [109.36, 375.4626253384556, 0.8758024], [109.37, 375.7158828689592, 0.88070184], [109.38, 376.1416987824573, 0.87244564], [109.39, 377.3202501504051, 0.8571593], [109.4, 380.66465664128214, 0.81353915], [109.41, 384.40382102349923, 0.68540764], [109.42, 392.6743482960445, 0.47037676], [109.43, 408.94210122746443, 0.71747893], [109.44, 413.4502354900027, 0.88354367], [109.45, 415.80023104718884, 0.89381415], [109.46, 416.0451069589704, 0.8836684], [109.47, 415.47931417246707, 0.883834], [109.48, 414.5184915640572, 0.88317156], [109.49, 414.0125459822585, 0.89384276], [109.5, 413.33132614714947, 0.902641], [109.51, 412.1980643318856, 0.91041], [109.52, 411.8056510590333, 0.9178108], [109.53, 411.8861150893136, 0.9148233], [109.54, 413.9343478531224, 0.89901054], [109.55, 416.3962612456237, 0.88724434], [109.56, 419.50864362953337, 0.86513984], [109.57, 423.3432411835721, 0.87111074], [109.58, 427.9890658034197, 0.8401424], [109.59, 433.43671735318003, 0.8015064], [109.6, 439.5002008156195, 0.8512652], [109.61, 445.6277913146007, 0.83996165], [109.62, 451.18134634945864, 0.8698361], [109.63, 450.96855802723496, 0.83513826], [109.64, 450.86970512562914, 0.7686195], [109.65, 445.9548381532122, 0.68163234], [109.66, 441.6638438833124, 0.5454853], [109.67, 389.2411430182934, 0.30221644], [109.68, 365.8314308894824, 0.39403072], [109.69, 352.25388562864174, 0.34579512], [109.7, 323.1961833485318, 0.20142442], [109.71, 288.6425449429139, 0.33027843], [109.72, 284.7732477999399, 0.5913717], [109.73, 283.407013366281, 0.3458938], [109.74, 298.20755979575495, 0.17092718], [109.75, 310.15771807127976, 0.32019645], [109.76, 318.7659589770075, 0.44445172], [109.77, 321.13337629337104, 0.71256447], [109.78, 320.23128973546386, 0.6691387], [109.79, 320.1538249241979, 0.51392454], [109.8, 315.67587997027715, 0.35776085], [109.81, 308.8624062389231, 0.384517], [109.82, 307.6930420283998, 0.26808125], [109.83, 307.95003197456407, 0.3734992], [109.84, 311.7435596236405, 0.37876502], [109.85, 317.7523321991275, 0.33931017], [109.86, 323.92090693515973, 0.21359941], [109.87, 330.09154138703536, 0.16886058], [109.88, 342.899076609977, 0.22199048], [109.89, 350.0242289915029, 0.53710365], [109.9, 350.2631701314282, 0.7940141], [109.91, 351.0341860165274, 0.86383396], [109.92, 350.6461659393523, 0.86954474], [109.93, 349.13595427166234, 0.85722595], [109.94, 348.3132709629171, 0.8325789], [109.95, 347.30383918413594, 0.8368995], [109.96, 347.374249794746, 0.83306825], [109.97, 347.6664966783895, 0.83729404], [109.98, 348.911035949863, 0.8713277], [109.99, 349.90543174472134, 0.8923995], [110.0, 350.5967431739997, 0.89353615], [110.01, 351.1539231777456, 0.88979065], [110.02, 351.2294640149133, 0.8838758], [110.03, 351.1456431941696, 0.8748646], [110.04, 350.33882834401544, 0.8728471], [110.05, 349.2672716025243, 0.82084537], [110.06, 346.83181688351965, 0.68807155], [110.07, 344.90891127345765, 0.5348229], [110.08, 341.61526621589866, 0.37866917], [110.09, 302.96610200258283, 0.07840252], [110.1, 296.5720985234267, 0.20895895], [110.11, 295.66483913750363, 0.14895624], [110.12, 297.57032402971083, 0.10410814], [110.13, 297.13452833550014, 0.27788144], [110.14, 296.2936509171525, 0.45261303], [110.15, 294.818027191958, 0.73015124], [110.16, 297.52060163001494, 0.14239551], [110.17, 299.9132133766129, 0.11668496], [110.18, 301.96748084953447, 0.19077468], [110.19, 299.4025677481834, 0.39005768], [110.2, 298.54515788845026, 0.5378859], [110.21, 301.00965807320716, 0.5890798], [110.22, 305.292349333013, 0.62534297], [110.23, 308.24437328249843, 0.65986323], [110.24, 309.6398419403676, 0.7196152], [110.25, 310.01759586788245, 0.7562953], [110.26, 309.52577087422435, 0.7851732], [110.27, 308.87864151033034, 0.8183549], [110.28, 308.12641383912097, 0.8252186], [110.29, 307.7358592390881, 0.820138], [110.3, 307.8497143707349, 0.8240113], [110.31, 308.61286832230326, 0.82844114], [110.32, 310.1277743468693, 0.82116944], [110.33, 311.4614861897135, 0.8296726], [110.34, 312.9148231495703, 0.8301725], [110.35, 314.01646156758994, 0.8158967], [110.36, 316.62157219853316, 0.76647615], [110.37, 320.43840871969195, 0.74296665], [110.38, 324.4320531821892, 0.5697184], [110.39, 328.1860694642073, 0.20822841], [110.4, 338.553792171855, 0.1864422], [110.41, 346.0295141808907, 0.4795331], [110.42, 345.6506660310986, 0.65184075], [110.43, 343.40619386096455, 0.74301744], [110.44, 339.34387020562303, 0.6435469], [110.45, 330.2409393392287, 0.64956105], [110.46, 323.4583306857205, 0.72433895], [110.47, 317.8535977068362, 0.79023975], [110.48, 315.1700769940384, 0.8701708], [110.49, 314.5885143159892, 0.868875], [110.5, 315.5904024936219, 0.89303094], [110.51, 317.3262616356865, 0.8928839], [110.52, 319.23517920602654, 0.8903141], [110.53, 319.952789159105, 0.87356347], [110.54, 320.43143591443777, 0.71350366], [110.55, 321.0307676096969, 0.51211566], [110.56, 307.1900852776493, 0.3070733], [110.57, 270.5293197030759, 0.33612362], [110.58, 263.11477189203845, 0.45973867], [110.59, 258.3065953459046, 0.30212018], [110.6, 290.9395950800995, 0.21248192], [110.61, 311.3002222921486, 0.3815413], [110.62, 312.311365519331, 0.5873464], [110.63, 311.1610496764755, 0.34787023], [110.64, 310.68374688002285, 0.2236647], [110.65, 309.1236044789074, 0.16378026], [110.66, 302.505557005361, 0.1434926], [110.67, 298.82700437694405, 0.102141395], [110.68, 300.3655981304007, 0.1351037], [110.69, 293.09198164169965, 0.26900637], [110.7, 285.2538502365746, 0.15557587], [110.71, 287.61712995654466, 0.42820305], [110.72, 295.50049953081964, 0.5780938], [110.73, 301.0284292368259, 0.558698], [110.74, 308.0998313751089, 0.44941992], [110.75, 311.2715491070582, 0.40987727], [110.76, 310.6299335372852, 0.32773435], [110.77, 309.9480281537615, 0.3596943], [110.78, 306.44810894993014, 0.6037862], [110.79, 307.5975542776339, 0.6298215], [110.8, 307.751218076742, 0.66676253], [110.81, 308.87143241484154, 0.6788001], [110.82, 309.8355095636508, 0.6664618], [110.83, 310.1297303208422, 0.69932264], [110.84, 312.01481172460893, 0.7352013], [110.85, 313.63147883873813, 0.72865397], [110.86, 314.7373957106347, 0.75071096], [110.87, 311.65457244687997, 0.6337975], [110.88, 308.7870142619961, 0.58861935], [110.89, 310.6206797591681, 0.73682684], [110.9, 314.28341650172763, 0.7629289], [110.91, 315.42120950881224, 0.8267773], [110.92, 316.6460041358562, 0.8532336], [110.93, 318.1258399766284, 0.8458583], [110.94, 318.50641528002535, 0.856944], [110.95, 317.7536496372641, 0.85852236], [110.96, 315.7084029020256, 0.84555334], [110.97, 311.8597510948118, 0.78321266], [110.98, 308.5505793514813, 0.8157345], [110.99, 306.63455509269033, 0.8379161], [111.0, 306.53477495206295, 0.85570604], [111.01, 304.7573472292097, 0.85696185], [111.02, 303.34201545582766, 0.8438543], [111.03, 304.4053940065553, 0.80753446], [111.04, 308.96402958413336, 0.79479265], [111.05, 312.70762469690595, 0.8709577], [111.06, 313.2712481152264, 0.87866163], [111.07, 310.77756753541746, 0.8489013], [111.08, 307.0695348423987, 0.8241571], [111.09, 301.7906802535307, 0.8405122], [111.1, 295.72960861071954, 0.6894891], [111.11, 290.0617322838385, 0.59066844], [111.12, 283.6013365402585, 0.6158589], [111.13, 283.5346937881722, 0.3507484], [111.14, 284.2778000577679, 0.33901942], [111.15, 290.3884305285342, 0.6720853], [111.16, 292.67589760703953, 0.80142367], [111.17, 294.7315124389151, 0.77088], [111.18, 304.1819710436749, 0.5672643], [111.19, 314.01681922787594, 0.72341484], [111.2, 321.089519006621, 0.78405136], [111.21, 324.18194057683013, 0.8395837], [111.22, 323.5363737377206, 0.85993713], [111.23, 322.4031160865018, 0.8623306], [111.24, 320.6347810421002, 0.8697225], [111.25, 317.86319458739376, 0.8728899], [111.26, 315.28576501051054, 0.89439905], [111.27, 313.9537295532643, 0.8596443], [111.28, 315.1273629820439, 0.88093287], [111.29, 318.85581058994563, 0.87263423], [111.3, 323.74480319536275, 0.8162208], [111.31, 328.93095716471475, 0.71653324], [111.32, 336.28495988947566, 0.6181476], [111.33, 345.589241622563, 0.71955395], [111.34, 348.4866000680342, 0.8488643], [111.35, 349.4121008307998, 0.89043933], [111.36, 348.9287461171772, 0.8775285], [111.37, 348.2430608706536, 0.86777985], [111.38, 346.3859488619562, 0.85668224], [111.39, 346.3774186389458, 0.8589213], [111.4, 345.97104281601673, 0.8404084], [111.41, 346.11507547728854, 0.8488759], [111.42, 347.3633295557525, 0.8536447], [111.43, 348.01569399376854, 0.8459486], [111.44, 349.3081634489976, 0.85218495], [111.45, 349.6910389764298, 0.7807485], [111.46, 349.3612808410847, 0.5707699], [111.47, 372.27548314469107, 0.35540938], [111.48, 423.5449493027909, 0.23264953], [111.49, 456.91272178693214, 0.32290757], [111.5, 453.7545764615817, 0.55042875], [111.51, 452.9569663686851, 0.38982353], [111.52, 447.6886062510822, 0.15826416], [111.53, 450.119925090236, 0.08525321], [111.54, 456.52619562856637, 0.13881464], [111.55, 455.2772600575554, 0.2192331], [111.56, 449.8656436506816, 0.116262466], [111.57, 456.6340732185674, 0.19758034], [111.58, 446.881462417708, 0.10279215], [111.59, 423.9817232192296, 0.0735316], [111.6, 413.1629551542406, 0.12498584], [111.61, 402.2420451335466, 0.08467067], [111.62, 374.7083964341217, 0.10840339], [111.63, 364.1273147749737, 0.1526026], [111.64, 365.3259424158505, 0.12074289], [111.65, 359.9498092757076, 0.34626663], [111.66, 356.6513113361048, 0.16522974], [111.67, 342.1576319906839, 0.13435635], [111.68, 326.30437994020673, 0.4833825], [111.69, 317.0432410992097, 0.5625315], [111.7, 311.4478472071701, 0.4995591], [111.71, 308.1485788791373, 0.47211468], [111.72, 308.35086939349475, 0.5578626], [111.73, 308.5267074102828, 0.5308009], [111.74, 310.62330734937285, 0.4465397], [111.75, 313.59151475210024, 0.45148647], [111.76, 313.68615616893777, 0.33511022], [111.77, 313.9364226324916, 0.43229333], [111.78, 315.4795391751836, 0.44018304], [111.79, 320.5433131994007, 0.18004815], [111.8, 276.3375185696388, 0.17184423], [111.81, 247.70103465894408, 0.3531905], [111.82, 261.545419633434, 0.6084747], [111.83, 265.53695111190586, 0.68597734], [111.84, 269.5832257361325, 0.7315099], [111.85, 273.49527017811164, 0.77207005], [111.86, 276.9273880704303, 0.85304177], [111.87, 278.41479133069436, 0.8930762], [111.88, 278.62257871754616, 0.90073806], [111.89, 279.1802946225443, 0.900144], [111.9, 279.2635699048786, 0.8995718], [111.91, 279.55694714487186, 0.8948549], [111.92, 279.1159161447009, 0.8928553], [111.93, 277.5887118992227, 0.89372474], [111.94, 275.77106076856927, 0.87222683], [111.95, 273.1170624290545, 0.8498927], [111.96, 271.32401173179977, 0.8566233], [111.97, 271.0394400435559, 0.84959877], [111.98, 272.35616889618717, 0.8625091], [111.99, 274.71890155568883, 0.86648756], [112.0, 277.20690398172275, 0.8900919], [112.01, 278.1947828429214, 0.9129141], [112.02, 277.3448255553684, 0.89495635], [112.03, 275.85448812364285, 0.8601447], [112.04, 270.8132406086851, 0.77234805], [112.05, 263.6426876941604, 0.737542], [112.06, 258.952644295202, 0.7045661], [112.07, 260.8034448040818, 0.6065656], [112.08, 269.13848950385255, 0.5227203], [112.09, 276.16095704846623, 0.7758547], [112.1, 278.3723419108986, 0.9017538], [112.11, 278.46090430058604, 0.9057659], [112.12, 278.18730164380406, 0.89918905], [112.13, 278.1930947700072, 0.8935075], [112.14, 277.5326116739163, 0.8783491], [112.15, 277.60964289387584, 0.883528], [112.16, 277.57175722791965, 0.871925], [112.17, 277.57961113169057, 0.879193], [112.18, 277.28659239067696, 0.87113583], [112.19, 276.7059076407713, 0.84988195], [112.2, 276.9123841655463, 0.8529566], [112.21, 277.47400271086724, 0.8545859], [112.22, 279.31471225030657, 0.84549433], [112.23, 280.4559764933167, 0.85626775], [112.24, 281.69783948694555, 0.8802068], [112.25, 281.9767322904755, 0.864928], [112.26, 281.4929969221985, 0.85227627], [112.27, 280.2946861821808, 0.8199433], [112.28, 277.9532724627241, 0.6802274], [112.29, 274.7805992872662, 0.2920905], [112.3, 282.0171846993764, 0.18167341], [112.31, 286.80606254219174, 0.19740155], [112.32, 291.52662191462605, 0.32483438], [112.33, 305.2138363908746, 0.091259204], [112.34, 310.68307600352847, 0.5079174], [112.35, 310.34230670693483, 0.62384546], [112.36, 310.5573611744126, 0.64171624], [112.37, 310.79045232680267, 0.74729407], [112.38, 310.0095927650122, 0.7186375], [112.39, 307.9238356444835, 0.7524626], [112.4, 307.215364818885, 0.71418995], [112.41, 305.6832098255226, 0.68524957], [112.42, 305.838328197842, 0.59737116], [112.43, 305.78718297073397, 0.58400303], [112.44, 307.1143606404293, 0.5629814], [112.45, 308.7788908092431, 0.5569385], [112.46, 310.84633660720306, 0.5686163], [112.47, 315.1856476097941, 0.66360974], [112.48, 318.67876230139586, 0.77270967], [112.49, 320.71037165650455, 0.75235206], [112.5, 322.9627330797946, 0.71822107], [112.51, 324.9182045865643, 0.6604869], [112.52, 323.2202522457117, 0.30455565], [112.53, 325.60336243895483, 0.16044971], [112.54, 325.6516062835888, 0.14550811], [112.55, 334.8420732962812, 0.56415355], [112.56, 339.29855001205914, 0.74555606], [112.57, 338.0269968211357, 0.7048577], [112.58, 340.616420362448, 0.6442055], [112.59, 348.39862577792917, 0.64264977], [112.6, 349.3318583136895, 0.21281816], [112.61, 356.0372878922135, 0.45637757], [112.62, 367.310645593254, 0.32798454], [112.63, 372.6907696704883, 0.36307922], [112.64, 372.28462358716297, 0.20764078], [112.65, 364.9112706690044, 0.06310769], [112.66, 362.08906911398003, 0.09772041], [112.67, 363.5228580064229, 0.054765604], [112.68, 365.305057850639, 0.17314416], [112.69, 369.6612608263235, 0.47370273], [112.7, 369.0032579302629, 0.3741117], [112.71, 368.4599880199347, 0.33206525], [112.72, 371.36947809004903, 0.29673123], [112.73, 368.8003090115259, 0.31796652], [112.74, 367.91827273889135, 0.6337926], [112.75, 369.35413977683476, 0.45809045], [112.76, 367.4584364003669, 0.63887167], [112.77, 370.59194626988534, 0.55411685], [112.78, 369.13118957026944, 0.63461363], [112.79, 369.13407369788547, 0.52370995], [112.8, 370.92022018962666, 0.33522624], [112.81, 368.29912581384315, 0.4358301], [112.82, 370.2086152165529, 0.4791247], [112.83, 369.1444886896405, 0.4916951], [112.84, 367.5756157772988, 0.6516645], [112.85, 369.07744041035807, 0.45801228], [112.86, 367.3938302158938, 0.5907361], [112.87, 368.8105708212194, 0.5357586], [112.88, 370.2767881784212, 0.52922654], [112.89, 372.4480847784025, 0.77531946], [112.9, 376.4676418028739, 0.80777276], [112.91, 380.87498244050977, 0.78383434], [112.92, 388.10185449771467, 0.78404576], [112.93, 393.42440621509957, 0.79048604], [112.94, 399.8716784529778, 0.7683161], [112.95, 407.7248476526791, 0.8438397], [112.96, 412.60533382619303, 0.90522087], [112.97, 415.25853706439716, 0.89987546], [112.98, 416.3464949677859, 0.9013066], [112.99, 416.03649500862707, 0.89190936], [113.0, 415.856627118444, 0.89734167], [113.01, 416.1191815851363, 0.89449465], [113.02, 415.0845031903375, 0.88615805], [113.03, 413.43642209443385, 0.8925625], [113.04, 412.6354896354952, 0.8997675], [113.05, 412.2244376536671, 0.90899605], [113.06, 413.274516713592, 0.9079198], [113.07, 415.07042951690033, 0.89783067], [113.08, 416.63281914574014, 0.9013593], [113.09, 419.13894598242223, 0.88244814], [113.1, 421.5469529468611, 0.9032827], [113.11, 424.0935125555316, 0.87005], [113.12, 427.0939345880613, 0.8965108], [113.13, 429.10086811374765, 0.8881607], [113.14, 427.85631418059586, 0.8868132], [113.15, 423.6590298613715, 0.8511738], [113.16, 418.91095494379033, 0.8146846], [113.17, 413.73889553358003, 0.81542426], [113.18, 409.6902680460477, 0.85579664], [113.19, 406.9956863108911, 0.8954954], [113.2, 407.4822312409791, 0.8943954], [113.21, 410.12893611509816, 0.8947808], [113.22, 413.0329867230608, 0.90044475], [113.23, 416.74843410940866, 0.8873061], [113.24, 420.58000057285886, 0.8865461], [113.25, 425.3491289943037, 0.8732093], [113.26, 429.7127002644035, 0.8523555], [113.27, 434.496263550856, 0.83103955], [113.28, 437.5704102958539, 0.87383366], [113.29, 438.7568659136821, 0.910925], [113.3, 436.59758744469787, 0.86287004], [113.31, 432.9664915005457, 0.7969368], [113.32, 430.810646012554, 0.6132624], [113.33, 422.89080356032235, 0.4006814], [113.34, 407.0944701279112, 0.54801977], [113.35, 398.2500758787502, 0.3364402], [113.36, 425.1886868627015, 0.36743245], [113.37, 423.4503667211306, 0.33768627], [113.38, 426.37498890203864, 0.37220365], [113.39, 422.365747746204, 0.39700446], [113.4, 416.9051029573421, 0.3649959], [113.41, 405.4551929717914, 0.36848986], [113.42, 383.38734207928906, 0.18008655], [113.43, 375.2284566239052, 0.17398772], [113.44, 371.36924466094604, 0.0970057], [113.45, 374.17664468861716, 0.07727319], [113.46, 364.59398848457556, 0.17399104], [113.47, 350.0678331267705, 0.23123354], [113.48, 338.92229697984976, 0.2628608], [113.49, 334.77992102978544, 0.33349326], [113.5, 324.78097516202666, 0.41443083], [113.51, 316.4714090063, 0.19028962], [113.52, 314.71583604362, 0.57415426], [113.53, 313.14580388432324, 0.50157714], [113.54, 314.81862089265974, 0.514039], [113.55, 315.77645444408523, 0.50169545], [113.56, 318.37561730469577, 0.29988912], [113.57, 320.406556415295, 0.30171996], [113.58, 327.1028771516508, 0.46462065], [113.59, 337.53992342063617, 0.46270052], [113.6, 344.6360367015046, 0.49514127], [113.61, 347.17782841929113, 0.17309456], [113.62, 349.85436800878836, 0.591226], [113.63, 349.1797760680662, 0.76305526], [113.64, 348.0046631337052, 0.65335655], [113.65, 347.80536437624056, 0.47496852], [113.66, 344.00481275534514, 0.38842794], [113.67, 342.84069579990296, 0.31266347], [113.68, 339.16601209893435, 0.58898824], [113.69, 328.9835516013221, 0.2957293], [113.7, 320.9031292744806, 0.3330128], [113.71, 316.99317362755176, 0.21614324], [113.72, 315.58270915302586, 0.31399357], [113.73, 311.23670594169573, 0.48168406], [113.74, 312.237997820601, 0.50877476], [113.75, 308.8939213100355, 0.66310084], [113.76, 309.19040353619226, 0.6667754], [113.77, 308.50446805522273, 0.7076075], [113.78, 309.936338750017, 0.67970735], [113.79, 308.34599428535574, 0.5567004], [113.8, 309.11000254107523, 0.61642516], [113.81, 307.82856413578855, 0.4968908], [113.82, 304.2120736332471, 0.42201027], [113.83, 303.1980306122356, 0.56724113], [113.84, 302.6519231588842, 0.75097966], [113.85, 305.83475116391975, 0.75836784], [113.86, 307.16112495590943, 0.78958875], [113.87, 304.0604690959451, 0.6726878], [113.88, 308.029179693992, 0.7692071], [113.89, 302.125126942831, 0.7846199], [113.9, 303.1192858801267, 0.7904473], [113.91, 297.5301210224437, 0.80659515], [113.92, 296.20656718180004, 0.7046622], [113.93, 292.73514746308734, 0.5656176], [113.94, 288.9189140600339, 0.0903788], [113.95, 286.93971786536474, 0.029059656], [113.96, 281.47106332458304, 0.576543], [113.97, 286.5359208074037, 0.6742324], [113.98, 295.24028411833984, 0.480648], [113.99, 307.87021525782905, 0.6166293], [114.0, 310.8268094094365, 0.80176234], [114.01, 313.0513126243317, 0.88217753], [114.02, 313.5430640980135, 0.874763], [114.03, 312.85316511046807, 0.87938744], [114.04, 312.6482752118073, 0.88904417], [114.05, 311.8595997897485, 0.8743216], [114.06, 310.746034343237, 0.85599256], [114.07, 310.32621715603614, 0.8528754], [114.08, 310.2070365433858, 0.858186], [114.09, 310.2160255261133, 0.8540858], [114.1, 310.76095887982706, 0.86392426], [114.11, 311.4346434869933, 0.87053955], [114.12, 311.9664821625703, 0.8745127], [114.13, 312.8674142696991, 0.86966956], [114.14, 313.9855054590975, 0.84578115], [114.15, 313.84570729795365, 0.855021], [114.16, 313.85031567691016, 0.85000163], [114.17, 314.1520667112384, 0.8620879], [114.18, 313.440578723995, 0.86292154], [114.19, 312.07878509617336, 0.8608441], [114.2, 309.91767949257616, 0.8485079], [114.21, 308.25957717144854, 0.86290354], [114.22, 306.5402317996846, 0.83024377], [114.23, 306.38267490420344, 0.83367974], [114.24, 306.6525741187312, 0.8272864], [114.25, 308.51896262233697, 0.83484864], [114.26, 311.3040635123232, 0.82574624], [114.27, 312.3285494226968, 0.79246676], [114.28, 314.16949555920235, 0.72880954], [114.29, 313.6552419396119, 0.6236056], [114.3, 313.3687576020028, 0.52641106], [114.31, 312.1101497579334, 0.2809924], [114.32, 301.6946762822793, 0.067129195], [114.33, 304.43829200765583, 0.4340314], [114.34, 306.2927687473895, 0.6084143], [114.35, 310.3558043855827, 0.63262016], [114.36, 308.0215623449911, 0.312245], [114.37, 313.7629716360673, 0.13313352], [114.38, 316.87442647083196, 0.11046766], [114.39, 316.3117454203279, 0.20246911], [114.4, 317.29272295327667, 0.15484115], [114.41, 315.3914805342467, 0.29635867], [114.42, 314.58616490684614, 0.21681277], [114.43, 306.7098178126124, 0.17379037], [114.44, 304.29514430498864, 0.24637648], [114.45, 312.5477959872122, 0.25632158], [114.46, 317.9075425118213, 0.52805364], [114.47, 323.2053926738781, 0.5752176], [114.48, 333.4093517980738, 0.5233165], [114.49, 343.2060948455717, 0.50501776], [114.5, 343.90702885397525, 0.7011653], [114.51, 342.76928837881985, 0.5432618], [114.52, 342.25037325603876, 0.20102185], [114.53, 339.5869658252466, 0.09247959], [114.54, 347.7192104450196, 0.6250444], [114.55, 350.17169289967916, 0.71058327], [114.56, 360.3105472829517, 0.70917004], [114.57, 361.69406662600284, 0.39617482], [114.58, 365.6006242804624, 0.17814066], [114.59, 369.66877107301764, 0.10651115], [114.6, 369.8069638030919, 0.1677916], [114.61, 371.1191542111851, 0.30942813], [114.62, 370.834702043797, 0.3814487], [114.63, 370.68325138930396, 0.54759765], [114.64, 369.08233347130044, 0.6133947], [114.65, 367.8268580337027, 0.7345946], [114.66, 365.94801411563145, 0.6630371], [114.67, 363.3724068374421, 0.5674132], [114.68, 362.92405549791215, 0.5788149], [114.69, 362.4626265396854, 0.58793205], [114.7, 364.235148640281, 0.501747], [114.71, 365.5003807509563, 0.5264981], [114.72, 367.6062997668362, 0.54135525], [114.73, 368.8187347896598, 0.5589017], [114.74, 370.3997844414687, 0.5066324], [114.75, 370.09716779952987, 0.5037628], [114.76, 368.9902998904107, 0.25109252], [114.77, 366.78621824928007, 0.18200515], [114.78, 365.08436857966467, 0.4601627], [114.79, 357.66141338675413, 0.5553482], [114.8, 351.65791752700676, 0.6448882], [114.81, 344.32695806178845, 0.64201677], [114.82, 337.5450123755327, 0.713826], [114.83, 330.44377350993835, 0.7306607], [114.84, 324.47583401226956, 0.74665856], [114.85, 318.37563117433945, 0.6805991], [114.86, 313.4910723709817, 0.6609979], [114.87, 302.06130382473566, 0.4450353], [114.88, 296.98484782813983, 0.28186405], [114.89, 299.79344644808685, 0.48019964], [114.9, 314.29956173221365, 0.70850223], [114.91, 315.59653806445243, 0.8456828], [114.92, 316.7986982849908, 0.8596171], [114.93, 316.54127701151475, 0.8179072], [114.94, 313.9890006424367, 0.7673751], [114.95, 311.2978779476221, 0.79055715], [114.96, 310.9095946045521, 0.7803505], [114.97, 312.6819201539913, 0.77785254], [114.98, 315.22470025922337, 0.81140256], [114.99, 318.8296131877046, 0.8351296], [115.0, 322.8155447490034, 0.7857421], [115.01, 328.23587243891984, 0.71021396], [115.02, 336.48813436734207, 0.63227683], [115.03, 343.47397618303177, 0.702596], [115.04, 345.81075240047363, 0.8232553], [115.05, 346.5939904480061, 0.84820855], [115.06, 345.1955901942889, 0.8282884], [115.07, 342.44894172803185, 0.83211577], [115.08, 337.3047490692843, 0.6937375], [115.09, 328.4027409533411, 0.7295217], [115.1, 322.185082485743, 0.76843333], [115.11, 317.91121087221296, 0.78691936], [115.12, 313.86474132610994, 0.84800684], [115.13, 312.3117587001643, 0.85648865], [115.14, 311.2967085842808, 0.84320456], [115.15, 310.89574606976305, 0.82980084], [115.16, 311.20851819064177, 0.82907087], [115.17, 310.734375580247, 0.80912125], [115.18, 310.8007843496768, 0.82353723], [115.19, 311.16455054426575, 0.84613097], [115.2, 311.0227284034772, 0.8566121], [115.21, 310.7483899286247, 0.84560263], [115.22, 309.8750091733428, 0.8358175], [115.23, 308.5843718388082, 0.8139356], [115.24, 306.4375749413372, 0.75716853], [115.25, 301.8727039087698, 0.65842515], [115.26, 297.4080927304126, 0.5700716], [115.27, 280.3414242167862, 0.40319645], [115.28, 250.7208259978201, 0.24259819], [115.29, 240.24047528936276, 0.4506263], [115.3, 237.21086731149705, 0.7589365], [115.31, 247.60445716824518, 0.31964594], [115.32, 235.2436975648393, 0.09535373], [115.33, 216.46155828773342, 0.158062], [115.34, 195.69990639980279, 0.07972026], [115.35, 179.566885249488, 0.10031354], [115.36, 162.70650186543637, 0.071976505], [115.37, 157.62868704007812, 0.07748363], [115.38, 147.10873775347585, 0.39109564], [115.39, 126.5957052231002, 0.62712103], [115.4, 114.95081640625429, 0.6111534], [115.41, 104.54586548197983, 0.5415279], [115.42, 95.61242956113313, 0.39936724], [115.43, 81.80616022062964, 0.59691703], [115.44, 74.02644445290983, 0.4631222], [115.45, 64.23454916648673, 0.66551316], [115.46, 57.505435855879796, 0.66980374], [115.47, 52.24099604839231, 0.63616055], [115.48, 52.39557220459076, 0.65655947], [115.49, 52.33879416703154, 0.67479], [115.5, 52.359680866062035, 0.5919732], [115.51, 52.0690340686878, 0.6275609], [115.52, 52.08067773710064, 0.4638201], [115.53, 51.878346464578904, 0.33198896], [115.54, 51.69771201345963, 0.22688812], [115.55, 51.637694579472594, 0.21675146], [115.56, 51.927932444048686, 0.12802191], [115.57, 52.40442268863827, 0.14658414], [115.58, 53.11421846848716, 0.11224572], [115.59, 53.458754265690835, 0.30683246], [115.6, 53.977424204670406, 0.4117042], [115.61, 53.508081281364134, 0.42635003], [115.62, 53.730679055086206, 0.59692127], [115.63, 53.59665771785758, 0.49145067], [115.64, 53.42319038598732, 0.5157158], [115.65, 53.507635071029526, 0.34424254], [115.66, 53.55600487202218, 0.50537914], [115.67, 53.34024429025782, 0.5433806], [115.68, 53.35981014413841, 0.5885878], [115.69, 53.28047732374489, 0.38060904], [115.7, 53.290722767462064, 0.38691583], [115.71, 53.652431539244525, 0.30823], [115.72, 53.612314922508304, 0.40411836], [115.73, 53.86102312164419, 0.47912198], [115.74, 53.64690226144154, 0.43023318], [115.75, 53.12508230479227, 0.5236477], [115.76, 52.272471739535824, 0.6677287], [115.77, 52.02201154119958, 0.59639704], [115.78, 51.77882004145555, 0.49707437], [115.79, 51.446448824144625, 0.33223543], [115.8, 50.679009564456194, 0.32812384], [115.81, 51.30289296510908, 0.32312799], [115.82, 52.65187229160653, 0.2639727], [115.83, 54.57777110229398, 0.4222763], [115.84, 55.287957989502345, 0.40221795], [115.85, 55.6969188518883, 0.48297614], [115.86, 55.74202690370548, 0.4597205], [115.87, 55.758691235933746, 0.28374648], [115.88, 55.93494280913323, 0.23335983], [115.89, 55.72944014884142, 0.2030174], [115.9, 55.79155533077413, 0.29967186], [115.91, 55.883940825450736, 0.3829812], [115.92, 55.953866150663565, 0.3654912], [115.93, 55.92074009845347, 0.34123072], [115.94, 55.98532836369313, 0.29189378], [115.95, 55.96339017685192, 0.23149529], [115.96, 55.84168807929621, 0.20230363], [115.97, 55.68535267503571, 0.17998159], [115.98, 55.64147232959729, 0.25230312], [115.99, 55.59649084806399, 0.23430716], [116.0, 55.99986210157189, 0.19795868], [116.01, 57.05752228474802, 0.21164656], [116.02, 58.278046499334906, 0.09449778], [116.03, 58.518334490778166, 0.3902475], [116.04, 58.55350333312593, 0.42693496], [116.05, 57.98465147688883, 0.4458074], [116.06, 57.88826923885931, 0.3348517], [116.07, 57.57463718632947, 0.35659215], [116.08, 57.51060038253806, 0.4790863], [116.09, 57.9179067568408, 0.7391306], [116.1, 58.170335901030526, 0.8177545], [116.11, 58.12829338914504, 0.8180518], [116.12, 58.13665465881408, 0.82282436], [116.13, 58.080847001861926, 0.8580602], [116.14, 58.09034488647857, 0.82633144], [116.15, 58.29823511990989, 0.85869193], [116.16, 58.40692018706487, 0.8788308], [116.17, 58.520688768087794, 0.8732617], [116.18, 58.31644560483896, 0.8647406], [116.19, 58.53713413269523, 0.8772743], [116.2, 58.53145460933302, 0.88377017], [116.21, 58.45073757362343, 0.86935097], [116.22, 58.80094771981119, 0.8504928], [116.23, 58.36338731889923, 0.8391922], [116.24, 58.65082654366604, 0.8470043], [116.25, 58.54607965261738, 0.8645919], [116.26, 58.45732512213236, 0.8486365], [116.27, 58.87353006556164, 0.6449809], [116.28, 53.791386583941474, 0.25479853], [116.29, 47.11935983879328, 0.40925476], [116.3, 41.63011809924126, 0.35907367], [116.31, 38.409097378665955, 0.76534945], [116.32, 37.99448126257575, 0.6082041], [116.33, 36.384484062238315, 0.6596027], [116.34, 38.6845302908692, 0.68070567], [116.35, 44.18962906711818, 0.3430756], [116.36, 47.55628336510176, 0.5649669], [116.37, 48.268004985132755, 0.27107066], [116.38, 51.21551733316997, 0.118875064], [116.39, 52.711342756964896, 0.0781812], [116.4, 58.75078260052326, 0.13486372], [116.41, 59.121974243105626, 0.07573155], [116.42, 64.15540749090867, 0.13306637], [116.43, 72.899418950425, 0.24448738], [116.44, 81.64140786997638, 0.62354416], [116.45, 87.61329453331413, 0.60572803], [116.46, 99.87582628268672, 0.46328843], [116.47, 109.54157220821702, 0.5831643], [116.48, 120.22831749758227, 0.47627282], [116.49, 136.769213327588, 0.74828196], [116.5, 150.92855627344952, 0.5763193], [116.51, 166.78272725817055, 0.098349825], [116.52, 185.27051537388954, 0.32439816], [116.53, 205.4197311762524, 0.28950894], [116.54, 228.5657898281289, 0.25690863], [116.55, 252.32811456017043, 0.2299705], [116.56, 259.22378458717765, 0.52455944], [116.57, 265.9080188403012, 0.56922925], [116.58, 274.7523362249949, 0.71106714], [116.59, 278.75594454610996, 0.85557175], [116.6, 279.40536602607125, 0.8828498], [116.61, 278.79046542457036, 0.8913689], [116.62, 277.564803532562, 0.885823], [116.63, 275.7785999277909, 0.86600876], [116.64, 275.3790524642899, 0.8703751], [116.65, 274.6766315891025, 0.86974496], [116.66, 275.33567548461855, 0.8646075], [116.67, 276.94580720378985, 0.875864], [116.68, 279.0462943936523, 0.90246195], [116.69, 279.41631124987117, 0.9069887], [116.7, 278.48561545046795, 0.90291345], [116.71, 275.86136074520044, 0.854465], [116.72, 270.8029008758858, 0.8115776], [116.73, 265.7751212145612, 0.8638092], [116.74, 261.75508017788127, 0.8439931], [116.75, 261.71877260485354, 0.80676115], [116.76, 263.80958813702784, 0.7216808], [116.77, 266.3339072099494, 0.56461596], [116.78, 288.86231542901965, 0.3109655], [116.79, 312.36818793004016, 0.745204], [116.8, 313.2896500535426, 0.8492686], [116.81, 312.4921556497321, 0.8776702], [116.82, 310.23711001025595, 0.85111344], [116.83, 308.4903384978862, 0.87787855], [116.84, 307.8918198324134, 0.87809753], [116.85, 307.60256733100766, 0.8673008], [116.86, 308.19569427580336, 0.8524805], [116.87, 308.67342305848405, 0.84023416], [116.88, 310.4970375329593, 0.8018724], [116.89, 311.828305777649, 0.8246513], [116.9, 312.6622469713269, 0.8212836], [116.91, 312.65300525144966, 0.84286314], [116.92, 311.7318893941729, 0.8488664], [116.93, 309.82636162750805, 0.8211374], [116.94, 305.3300841358304, 0.79385424], [116.95, 300.36901592777633, 0.805182], [116.96, 296.4165240885952, 0.8541598], [116.97, 293.7289836364426, 0.9108811], [116.98, 290.88232581327213, 0.89081854], [116.99, 287.36159849450354, 0.86764646], [117.0, 284.436642888678, 0.8551073], [117.01, 281.6135333546367, 0.83116055], [117.02, 278.32761054924924, 0.80575943], [117.03, 276.7863017164158, 0.8018766], [117.04, 275.69090749149734, 0.8335238], [117.05, 274.80007696893796, 0.85563654], [117.06, 274.399890383848, 0.8575912], [117.07, 273.45374280593285, 0.8096415], [117.08, 270.72705812429945, 0.785258], [117.09, 266.8969688835425, 0.7301883], [117.1, 263.5697958020665, 0.6421168], [117.11, 264.91669797460577, 0.3250546], [117.12, 273.007155529989, 0.15218236], [117.13, 280.8664254638598, 0.14202933], [117.14, 309.2940464153775, 0.13845305], [117.15, 301.8904517931372, 0.14808151], [117.16, 290.6777685987311, 0.22107807], [117.17, 282.95956821649116, 0.11759895], [117.18, 277.84080355397384, 0.27635258], [117.19, 272.1749846350515, 0.11325106], [117.2, 262.3127284467926, 0.08293692], [117.21, 268.3800752319426, 0.17715383], [117.22, 284.33691724159644, 0.14376451], [117.23, 287.8157095162961, 0.052086078], [117.24, 292.4696593395427, 0.54049385], [117.25, 295.82174022247295, 0.5517356], [117.26, 302.0938711480551, 0.2833451], [117.27, 313.31526382329844, 0.22391742], [117.28, 315.54991356177146, 0.4674423], [117.29, 318.00516931547617, 0.47885442], [117.3, 318.07416306865065, 0.4426158], [117.31, 317.3800374416891, 0.25356424], [117.32, 312.80280699629327, 0.19190493], [117.33, 313.48229577390146, 0.22983389], [117.34, 309.6894025292011, 0.1805618], [117.35, 309.1717411844315, 0.22714835], [117.36, 308.3106799463878, 0.10941794], [117.37, 307.9817677175513, 0.4958981], [117.38, 308.5582290601975, 0.5391122], [117.39, 309.98402894595876, 0.65298235], [117.4, 310.6315075750914, 0.5649918], [117.41, 308.80436243844116, 0.46340764], [117.42, 307.805526991913, 0.36990878], [117.43, 304.5706300508154, 0.67520726], [117.44, 306.86249115412716, 0.7163806], [117.45, 305.8565509668313, 0.6945229], [117.46, 304.1240424498619, 0.69603574], [117.47, 307.4020078830408, 0.77661294], [117.48, 304.4069854171139, 0.7469517], [117.49, 307.7566915678259, 0.7138003], [117.5, 304.9407917318506, 0.74213386], [117.51, 309.00861635624904, 0.7135078], [117.52, 308.5634653628224, 0.7581571], [117.53, 304.15397317776103, 0.6722582], [117.54, 309.22395889392754, 0.80433124], [117.55, 303.8008983455744, 0.7067031], [117.56, 307.96857135854214, 0.8129794], [117.57, 307.0749872167142, 0.83642244], [117.58, 308.53997440870864, 0.7844964], [117.59, 306.9756271206425, 0.82653296], [117.6, 309.42268273208055, 0.785049], [117.61, 307.1317079318012, 0.8202262], [117.62, 304.133424352429, 0.76894706], [117.63, 308.2823786059328, 0.82604784], [117.64, 302.6744639376343, 0.8127825], [117.65, 303.930043328178, 0.7610747], [117.66, 297.8044083444826, 0.81817585], [117.67, 295.7325902750691, 0.62801516], [117.68, 290.6374004180528, 0.124560684], [117.69, 288.5560820109523, 0.6480135], [117.7, 293.6347416924933, 0.76427245], [117.71, 298.34297954954684, 0.73947036], [117.72, 304.6321890800447, 0.7670356], [117.73, 308.9577004681051, 0.8228904], [117.74, 312.1319438380536, 0.83984375], [117.75, 313.6822705488087, 0.84022075], [117.76, 311.97321834920666, 0.83862704], [117.77, 309.0915194193086, 0.8459111], [117.78, 308.1440127829702, 0.8396991], [117.79, 308.1501055981169, 0.829568], [117.8, 308.9487719950489, 0.81346256], [117.81, 311.8033862357782, 0.8164738], [117.82, 315.7427141950809, 0.840501], [117.83, 319.2215487031552, 0.8424521], [117.84, 320.84637018157963, 0.85329163], [117.85, 321.2601672887366, 0.85748535], [117.86, 320.5648012446726, 0.86993194], [117.87, 318.6814319145613, 0.85917014], [117.88, 316.1887207869248, 0.8759086], [117.89, 313.7861770219775, 0.8372606], [117.9, 310.8719201234123, 0.8307811], [117.91, 308.0578572184866, 0.83133715], [117.92, 305.6960616100438, 0.8402855], [117.93, 305.5188342880084, 0.84425837], [117.94, 306.6954694329217, 0.8244582], [117.95, 308.85982552303807, 0.8480744], [117.96, 310.34137508772193, 0.8407437], [117.97, 311.46514884898784, 0.84925723], [117.98, 311.8880858333804, 0.85009193], [117.99, 309.8619226133635, 0.8298124], [118.0, 308.57031037316585, 0.8483947], [118.01, 308.25899378194885, 0.84694415], [118.02, 308.95480861477324, 0.8528613], [118.03, 311.5986155249328, 0.82910496], [118.04, 313.2205732142287, 0.863751], [118.05, 313.28583770729665, 0.87061054], [118.06, 313.3882193841267, 0.88756686], [118.07, 312.6151957905566, 0.8973639], [118.08, 312.1602606168359, 0.8844581], [118.09, 312.898512157808, 0.87788224], [118.1, 314.2869001576816, 0.8624894], [118.11, 315.60608843907164, 0.8833318], [118.12, 315.53595044570903, 0.89050883], [118.13, 314.11967716901177, 0.84938455], [118.14, 314.1919320327714, 0.6812778], [118.15, 312.36227855700054, 0.4088227], [118.16, 313.0435044106694, 0.25828245], [118.17, 315.01989424586804, 0.12040328], [118.18, 313.60974963054343, 0.13818987], [118.19, 316.0365316700533, 0.14482135], [118.2, 316.88180801095956, 0.5033902], [118.21, 316.60537439943755, 0.464495], [118.22, 316.81741893364665, 0.5027604], [118.23, 317.99796997618864, 0.46907088], [118.24, 319.53695924816554, 0.6221624], [118.25, 325.868726556937, 0.49323368], [118.26, 330.25092048168744, 0.13618894], [118.27, 340.72352849469956, 0.26142555], [118.28, 351.475662022724, 0.23022984], [118.29, 367.9579777435797, 0.5426581], [118.3, 388.31564338926194, 0.50907356], [118.31, 406.9229251098524, 0.55461615], [118.32, 428.91146541655974, 0.12920402], [118.33, 441.7778221552265, 0.11794224], [118.34, 449.1833624065967, 0.08734521], [118.35, 453.6647991497674, 0.16866443], [118.36, 464.66457789000333, 0.29634136], [118.37, 495.2797598067272, 0.21275015], [118.38, 528.0864457371296, 0.28404108], [118.39, 539.3973767717441, 0.22752222], [118.4, 547.9344856361032, 0.26914963], [118.41, 552.1730415068633, 0.49238458], [118.42, 553.5562972751158, 0.61253244], [118.43, 554.7098210992197, 0.68101394], [118.44, 556.0518015603673, 0.6988586], [118.45, 555.1937622247525, 0.7494664], [118.46, 554.9829479002848, 0.60520184], [118.47, 554.4212742468627, 0.7878744], [118.48, 557.0112563880202, 0.5503063], [118.49, 556.5386290613015, 0.7629673], [118.5, 556.4899754390502, 0.62127423], [118.51, 557.6220419926678, 0.61593777], [118.52, 555.3279387589114, 0.59788287], [118.53, 556.6293568243124, 0.6092598], [118.54, 556.2765966787838, 0.69612294], [118.55, 557.4190331696341, 0.58662474], [118.56, 557.7541742201503, 0.5714397], [118.57, 558.5788708761607, 0.47530112], [118.58, 558.8031271732618, 0.46461058], [118.59, 559.9416726700344, 0.53706825], [118.6, 558.335135201177, 0.31978464], [118.61, 560.6749329745107, 0.51536244], [118.62, 560.9844866790025, 0.28441557], [118.63, 559.2000293067654, 0.32580942], [118.64, 557.0821694595413, 0.45873857], [118.65, 555.5973526722281, 0.42380697], [118.66, 555.3372650474939, 0.42845622], [118.67, 555.4971700783717, 0.3715107], [118.68, 555.3013397046515, 0.28406686], [118.69, 556.1636272521906, 0.2259799], [118.7, 556.8426311552564, 0.22244152], [118.71, 557.0881689072278, 0.2571024], [118.72, 558.618898572266, 0.23907866], [118.73, 557.7595377532489, 0.2783555], [118.74, 532.6751255077547, 0.28211594], [118.75, 472.28874698293174, 0.22163264], [118.76, 450.85612375387757, 0.36736846], [118.77, 433.73095202443335, 0.372804], [118.78, 392.9554069813418, 0.53698444], [118.79, 368.60624577547424, 0.5847534], [118.8, 339.6048077366351, 0.6880396], [118.81, 318.15956660249407, 0.74349207], [118.82, 299.28324502340195, 0.7953115], [118.83, 281.24801298707274, 0.7441174], [118.84, 251.99443894565877, 0.59943503], [118.85, 237.71918402358654, 0.43636873], [118.86, 216.53764855016613, 0.12314324], [118.87, 202.7865706627209, 0.08326109], [118.88, 200.8756760432542, 0.17775261], [118.89, 201.36206374671755, 0.27984414], [118.9, 204.80738724020438, 0.43216363], [118.91, 210.74623389654369, 0.12586774], [118.92, 214.16508480440996, 0.21421456], [118.93, 216.2915205197659, 0.10645544], [118.94, 215.0424052463806, 0.121001296], [118.95, 215.38365178720838, 0.108568], [118.96, 216.99993519055096, 0.41577145], [118.97, 216.39296303554872, 0.2251327], [118.98, 214.11871782339662, 0.108907536], [118.99, 212.7006502350303, 0.21015789], [119.0, 212.8359391978975, 0.12292676], [119.01, 212.3813365925555, 0.12755463], [119.02, 208.75327875449454, 0.10181446], [119.03, 206.55114235153516, 0.27446085], [119.04, 208.90907059632738, 0.11835366], [119.05, 211.3742055375676, 0.12927027], [119.06, 213.6601846400683, 0.13919014], [119.07, 211.53359621712852, 0.17128037], [119.08, 210.98175892888622, 0.26582426], [119.09, 208.59453654899923, 0.56331074], [119.1, 209.28097358668228, 0.5427947], [119.11, 210.94675632205173, 0.31231853], [119.12, 211.23208627684573, 0.1996145], [119.13, 209.48503462167372, 0.42474824], [119.14, 208.17223529164858, 0.50610614], [119.15, 208.53590130994135, 0.46076965], [119.16, 208.02638321104752, 0.4936962], [119.17, 208.2515729026338, 0.37558648], [119.18, 207.63307008347033, 0.28040752], [119.19, 208.0470651314695, 0.21233247], [119.2, 209.9366225589024, 0.3697553], [119.21, 211.2686305366541, 0.29711187], [119.22, 212.32692323968223, 0.31911263], [119.23, 212.2270126881649, 0.22478674], [119.24, 212.78356501771637, 0.2061801], [119.25, 212.35656511658226, 0.18885837], [119.26, 211.30616191675682, 0.19182515], [119.27, 210.63844958169886, 0.13924588], [119.28, 210.1737104134577, 0.16609414], [119.29, 238.75954847047507, 0.18207319], [119.3, 258.9090692629288, 0.39036053], [119.31, 300.6620448956903, 0.5665044], [119.32, 324.41809133638736, 0.60965574], [119.33, 371.9625743645073, 0.45565242], [119.34, 423.53838142937184, 0.118672706], [119.35, 450.925887367475, 0.26815814], [119.36, 458.1508543814996, 0.4268189], [119.37, 459.8324435989143, 0.5757283], [119.38, 463.2255269916395, 0.71681046], [119.39, 463.49187543751134, 0.658047], [119.4, 465.60596544581017, 0.773913], [119.41, 463.526602025084, 0.7157515], [119.42, 463.71256322933857, 0.7780802], [119.43, 463.1595911266325, 0.7168686], [119.44, 465.0959430576575, 0.6461089], [119.45, 462.586393661582, 0.58531535], [119.46, 463.8766983593491, 0.630188], [119.47, 462.0430119370425, 0.4110753], [119.48, 462.1621556924093, 0.3652007], [119.49, 459.1638523211699, 0.108073354], [119.5, 466.3851417884968, 0.20398009], [119.51, 467.5152077240961, 0.37953937], [119.52, 472.79232014034744, 0.33547032], [119.53, 478.263399986848, 0.46822912], [119.54, 481.403454228387, 0.52949125], [119.55, 487.31021993161096, 0.48212504], [119.56, 492.2488760198328, 0.5542278], [119.57, 495.7882658093489, 0.28428534], [119.58, 502.45958269149514, 0.1285899], [119.59, 506.75028186138195, 0.24579825], [119.6, 515.0530231949981, 0.396796], [119.61, 528.5560217368937, 0.4729458], [119.62, 539.2493846204644, 0.3319208], [119.63, 551.9829723417708, 0.18377075], [119.64, 556.660629303874, 0.20529665], [119.65, 559.8400468310192, 0.20537221], [119.66, 560.7337559780318, 0.22623374], [119.67, 557.073095609111, 0.32771617], [119.68, 553.378917075612, 0.37038198], [119.69, 557.2027745677296, 0.3398139], [119.7, 491.3036114885209, 0.24372526], [119.71, 451.222276240143, 0.25072876], [119.72, 389.4103085948149, 0.14799362], [119.73, 338.07733668892325, 0.23038204], [119.74, 298.7056169770831, 0.16994284], [119.75, 269.53006542598195, 0.31121776], [119.76, 264.5439974676661, 0.35911554], [119.77, 265.5456905070865, 0.5247724], [119.78, 266.3407139435679, 0.4085502], [119.79, 274.8812721315709, 0.25766468], [119.8, 279.2952724481412, 0.096878834], [119.81, 285.3135422388096, 0.08431952], [119.82, 303.77155892277085, 0.0878034], [119.83, 310.72635753549014, 0.14408103], [119.84, 313.0885209886512, 0.20388731], [119.85, 313.202999273613, 0.19125657], [119.86, 310.7018287716777, 0.44042018], [119.87, 308.08116830220604, 0.4292829], [119.88, 305.83881992602034, 0.55243015], [119.89, 304.86568676605975, 0.54704803], [119.9, 306.7727717730146, 0.45630246], [119.91, 307.7933159582062, 0.47152227], [119.92, 308.4320205143251, 0.3575092], [119.93, 295.9723236884592, 0.15334356], [119.94, 276.0102104237402, 0.15942846], [119.95, 247.29188907550878, 0.4300497], [119.96, 233.46527437589162, 0.72986495], [119.97, 221.92413189444298, 0.7203104], [119.98, 204.991070572881, 0.7604893], [119.99, 186.60459732039342, 0.6475617], [120.0, 172.90255606564023, 0.7732143], [120.01, 167.3177864172989, 0.69708925], [120.02, 150.45198962661524, 0.32783303], [120.03, 143.28228756123468, 0.2200133], [120.04, 139.5312555961785, 0.216597], [120.05, 151.14663668380194, 0.19026697], [120.06, 153.70895101397096, 0.21085547], [120.07, 153.83152791273645, 0.27800322], [120.08, 153.48528360366976, 0.23482741], [120.09, 153.8876343676751, 0.34623757], [120.1, 154.05834571303143, 0.31171963], [120.11, 154.03683245648114, 0.2825922], [120.12, 154.5478998493542, 0.3627534], [120.13, 155.33319517380085, 0.60706866], [120.14, 156.21563341345504, 0.6055955], [120.15, 155.38430318969847, 0.5011622], [120.16, 153.5921625534041, 0.44452482], [120.17, 153.79282401891786, 0.29799265], [120.18, 153.21274050778104, 0.17000277], [120.19, 157.3458922289529, 0.19623397], [120.2, 159.1654019720506, 0.30435535], [120.21, 159.84721516814858, 0.18212608], [120.22, 161.36937847543206, 0.1981552], [120.23, 169.5644612782476, 0.26321658], [120.24, 172.72310193886003, 0.32950717], [120.25, 173.2137021126218, 0.31791675], [120.26, 173.69345542447132, 0.5751152], [120.27, 175.04938308985558, 0.5323108], [120.28, 175.94863039111314, 0.50375766], [120.29, 177.19893204199968, 0.40904093], [120.3, 178.07558665299607, 0.4509053], [120.31, 177.28036887499167, 0.51336074], [120.32, 176.8565561843027, 0.43343157], [120.33, 176.28155896284073, 0.50281286], [120.34, 176.8860093603771, 0.5845493], [120.35, 177.4956494704304, 0.58669513], [120.36, 177.44960208172526, 0.603351], [120.37, 176.16182367673645, 0.55659235], [120.38, 175.39521435480285, 0.45240748], [120.39, 175.94947475074892, 0.27656868], [120.4, 179.322556024068, 0.22915596], [120.41, 192.7675269336441, 0.37247545], [120.42, 220.0386316146935, 0.5833009], [120.43, 232.26857639861197, 0.69343036], [120.44, 231.3474712825181, 0.70341796], [120.45, 231.21651312293187, 0.7528972], [120.46, 231.77078746465793, 0.5588849], [120.47, 233.1567442838862, 0.62522626], [120.48, 232.25935054113864, 0.61816263], [120.49, 233.0519647369022, 0.6074182], [120.5, 231.6456549584655, 0.63031256], [120.51, 231.4394174915136, 0.75347483], [120.52, 232.0076566073067, 0.7316782], [120.53, 232.6912650289182, 0.6663473], [120.54, 230.77965079675053, 0.5406707], [120.55, 215.2394960863896, 0.20979486], [120.56, 186.97223924691028, 0.5670903], [120.57, 170.44090479433868, 0.81615037], [120.58, 151.3077906642016, 0.8357405], [120.59, 138.41620446259947, 0.8557127], [120.6, 138.73699281569228, 0.8575929], [120.61, 138.838822938081, 0.8608105], [120.62, 139.0214208945019, 0.839708], [120.63, 138.95932971331777, 0.85320175], [120.64, 139.26173156041796, 0.87093717], [120.65, 139.09863088869028, 0.87235415], [120.66, 138.8809560773749, 0.8895918], [120.67, 138.73688924593472, 0.9043949], [120.68, 138.39638138310718, 0.8580944], [120.69, 138.05852376347633, 0.8378384], [120.7, 137.962924639788, 0.80299073], [120.71, 138.55276930675413, 0.7626916], [120.72, 139.11198969276518, 0.75025797], [120.73, 139.74262313358372, 0.65840447], [120.74, 139.95688478457714, 0.643787], [120.75, 139.03267189912066, 0.71902496], [120.76, 138.6644006342416, 0.5998466], [120.77, 138.78639776333765, 0.5411568], [120.78, 138.88303381134787, 0.5162745], [120.79, 139.91142001183982, 0.6131828], [120.8, 140.9846814982495, 0.7007213], [120.81, 140.71115074602577, 0.63844925], [120.82, 139.0953166926122, 0.59894913], [120.83, 137.95968468323917, 0.547701], [120.84, 137.48697381593328, 0.62568593], [120.85, 136.6846588878855, 0.5678822], [120.86, 136.9286244933857, 0.40399474], [120.87, 137.34820952265108, 0.37921497], [120.88, 137.7036710639921, 0.5322417], [120.89, 138.55134038448168, 0.67485267], [120.9, 138.98307204366887, 0.6243671], [120.91, 139.0211722026678, 0.5709431], [120.92, 138.59479442806696, 0.46329385], [120.93, 138.22966204026545, 0.27018133], [120.94, 137.03559592968006, 0.2879543], [120.95, 136.4744521431691, 0.46597326], [120.96, 136.9672275507977, 0.28240246], [120.97, 138.95259975385363, 0.277446], [120.98, 139.32683407997595, 0.27223238], [120.99, 139.9325803073936, 0.15604256], [121.0, 139.387894224948, 0.19322205], [121.01, 137.60519279199772, 0.16236101], [121.02, 137.27265520112894, 0.103228495], [121.03, 140.29668920199381, 0.08974989], [121.04, 143.5051585952079, 0.14956234], [121.05, 152.7737357372707, 0.0799446], [121.06, 165.6815325585683, 0.08564354], [121.07, 165.0661717675985, 0.12891941], [121.08, 165.55189301931958, 0.20685194], [121.09, 165.5227210485728, 0.21626979], [121.1, 165.99724425365622, 0.071004756], [121.11, 169.73778516829464, 0.14472269], [121.12, 171.10026452372537, 0.1734881], [121.13, 172.71384403517823, 0.45193928], [121.14, 174.85561940753712, 0.30616978], [121.15, 177.68658692334728, 0.14736971], [121.16, 179.02222749133287, 0.19509557], [121.17, 178.59508344999347, 0.33893985], [121.18, 177.93065505874432, 0.63681227], [121.19, 176.82361122591232, 0.27539462], [121.2, 175.89683259104737, 0.11905139], [121.21, 176.28195910038028, 0.3365014], [121.22, 177.08372303122218, 0.44753125], [121.23, 177.2993531695668, 0.5214684], [121.24, 177.01712177860512, 0.5979448], [121.25, 178.45672694374235, 0.67979026], [121.26, 178.35701903946597, 0.75217247], [121.27, 178.72056179866905, 0.7589204], [121.28, 179.6625237648659, 0.61997825], [121.29, 179.96477811743955, 0.47289625], [121.3, 183.48993110081972, 0.51101863], [121.31, 199.27861204966848, 0.28198385], [121.32, 213.32396209811182, 0.17286366], [121.33, 229.71862346289598, 0.20383559], [121.34, 233.6639361136538, 0.2993188], [121.35, 233.92503112957, 0.39689988], [121.36, 233.70913847399112, 0.5423736], [121.37, 233.27164138402475, 0.5508023], [121.38, 232.32063592583816, 0.4071876], [121.39, 231.71885343021654, 0.3481734], [121.4, 233.36562617334525, 0.2464291], [121.41, 235.65004012922572, 0.2767419], [121.42, 247.1800558765024, 0.43166247], [121.43, 261.6220633784751, 0.3494068], [121.44, 273.8914630625317, 0.3297377], [121.45, 279.06568832010464, 0.37170646], [121.46, 278.0287731376864, 0.5757813], [121.47, 279.6063941891816, 0.6388906], [121.48, 278.8973383041753, 0.6013359], [121.49, 279.2650399723765, 0.6955153], [121.5, 279.2313306173136, 0.4387745], [121.51, 277.7264517771896, 0.5086749], [121.52, 274.3041100728701, 0.62355304], [121.53, 271.83766876638106, 0.7152088], [121.54, 269.4788428622397, 0.72207904], [121.55, 271.20664160736055, 0.60148364], [121.56, 272.3405461383681, 0.5128702], [121.57, 273.63763838058213, 0.5489316], [121.58, 277.0863989406365, 0.7505367], [121.59, 277.4977518779681, 0.83038735], [121.6, 277.62883174501735, 0.8140454], [121.61, 277.96509915055947, 0.7988038], [121.62, 276.9726842020383, 0.6911724], [121.63, 275.70049976122436, 0.5507202], [121.64, 270.76947881069907, 0.49625802], [121.65, 262.5085862573173, 0.628959], [121.66, 252.45125010187692, 0.61314136], [121.67, 247.26851831481497, 0.70435464], [121.68, 241.71353199306054, 0.5926421], [121.69, 236.91428838160363, 0.7714581], [121.7, 234.75803794100696, 0.8602692], [121.71, 233.0407359251906, 0.84550345], [121.72, 232.47632426151472, 0.826356], [121.73, 232.32803671055265, 0.81169975], [121.74, 231.70910977901028, 0.71919143], [121.75, 232.4204401595498, 0.6682545], [121.76, 233.27352954155717, 0.5707787], [121.77, 231.02161305349867, 0.18154415], [121.78, 219.89797531369567, 0.29382896], [121.79, 209.7651129052231, 0.44475383], [121.8, 204.82333916763676, 0.5422263], [121.81, 196.39072491093512, 0.1607245], [121.82, 186.14078877431507, 0.2577164], [121.83, 184.70089107533892, 0.55362445], [121.84, 181.85261793659146, 0.5776466], [121.85, 170.31952700606908, 0.69873726], [121.86, 164.78450439733683, 0.18913408], [121.87, 158.47165487621837, 0.22791682], [121.88, 151.99586414424533, 0.18531924], [121.89, 145.96446167023018, 0.17401479], [121.9, 140.3823910150449, 0.20131084], [121.91, 137.57570637613472, 0.17662454], [121.92, 134.36923347522202, 0.18747714], [121.93, 128.92947370965788, 0.07444562], [121.94, 139.2903270537644, 0.080105], [121.95, 154.65282943881132, 0.20667234], [121.96, 174.41756197708256, 0.21611114], [121.97, 175.41134388964892, 0.26143232], [121.98, 155.79887466879097, 0.26037925], [121.99, 139.44552076750193, 0.4607095], [122.0, 139.27714375602116, 0.3005937], [122.01, 137.66842971841217, 0.16291401], [122.02, 140.60774553036592, 0.09856577], [122.03, 143.1953999752023, 0.06968955], [122.04, 143.60532625307735, 0.14227201], [122.05, 143.56680347068442, 0.27897805], [122.06, 143.49891535389608, 0.6605518], [122.07, 142.4609413262563, 0.610139], [122.08, 143.05179670736845, 0.6775735], [122.09, 142.27442684030026, 0.23124199], [122.1, 140.98982191432376, 0.2830458], [122.11, 137.62304385240472, 0.39187065], [122.12, 137.35423220552494, 0.598037], [122.13, 137.08951329272, 0.5066605], [122.14, 137.45636422442863, 0.5168691], [122.15, 137.83529921778685, 0.6478162], [122.16, 136.66494125534567, 0.65920615], [122.17, 136.3578430220772, 0.6950185], [122.18, 135.98634617508696, 0.6877231], [122.19, 136.26576612049047, 0.550763], [122.2, 137.62385842574298, 0.68327314], [122.21, 137.9383556771418, 0.5760822], [122.22, 139.26246689221605, 0.61834013], [122.23, 139.6521163387948, 0.40289223], [122.24, 139.1728833527279, 0.34662798], [122.25, 126.69550742776246, 0.27429578], [122.26, 110.03471320001873, 0.22500019], [122.27, 96.77875250583497, 0.48985758], [122.28, 89.67039877290267, 0.56217486], [122.29, 78.12898536948902, 0.4861621], [122.3, 68.32572440123441, 0.38924286], [122.31, 60.21788526154673, 0.4104527], [122.32, 51.32304459633509, 0.470995], [122.33, 46.39762448166964, 0.43337548], [122.34, 45.595708188917364, 0.52157265], [122.35, 45.749416206213965, 0.47879562], [122.36, 46.4135477649753, 0.5077137], [122.37, 45.474857994674956, 0.6081995], [122.38, 45.66906814577946, 0.5229398], [122.39, 45.20962881905871, 0.4282995], [122.4, 44.96534163536579, 0.57854813], [122.41, 44.889763174451375, 0.5469826], [122.42, 45.025353420347, 0.4371925], [122.43, 45.05092164341985, 0.43853447], [122.44, 45.47813773325228, 0.38626537], [122.45, 45.83744848834283, 0.4831176], [122.46, 45.80069202012489, 0.6149793], [122.47, 45.700365005813346, 0.4490311], [122.48, 45.623774637344646, 0.5333549], [122.49, 45.55231962810433, 0.52550507], [122.5, 45.510265967655705, 0.44098666], [122.51, 45.723598597382306, 0.5017992], [122.52, 46.07481706308789, 0.43711433], [122.53, 46.13594237232316, 0.46969682], [122.54, 45.94447391592659, 0.46439758], [122.55, 45.96908106218869, 0.55617183], [122.56, 45.966976126426154, 0.6729787], [122.57, 46.08966105441257, 0.72801083], [122.58, 46.01879292486987, 0.698526], [122.59, 45.731765181259604, 0.71429485], [122.6, 45.41811305796991, 0.48869035], [122.61, 44.8645017896278, 0.11471503], [122.62, 48.30929055509987, 0.41904545], [122.63, 53.39918170142913, 0.6185356], [122.64, 58.29176022605722, 0.49701333], [122.65, 65.88309681756773, 0.22077915], [122.66, 70.19496771332936, 0.2778384], [122.67, 79.80360792109485, 0.21867071], [122.68, 87.10460157571745, 0.33292633], [122.69, 94.74126693706737, 0.15757623], [122.7, 103.39289085485703, 0.25035152], [122.71, 104.1375697112912, 0.24219891], [122.72, 103.68780680705895, 0.33971256], [122.73, 103.68990901413811, 0.4888694], [122.74, 103.93071114958131, 0.4359423], [122.75, 104.48770573406685, 0.4636007], [122.76, 104.06052144067537, 0.41996422], [122.77, 103.31870158591931, 0.4042073], [122.78, 103.42508194962173, 0.20316336], [122.79, 102.07161869610744, 0.44305754], [122.8, 102.34368011633745, 0.43631142], [122.81, 102.99090453289564, 0.6519425], [122.82, 102.83936347300346, 0.5024002], [122.83, 103.09054187844777, 0.15600674], [122.84, 90.35565251105531, 0.4830507], [122.85, 83.31165287810967, 0.34452078], [122.86, 71.94602163585972, 0.24867168], [122.87, 65.14508767794231, 0.2093694], [122.88, 55.897862676348105, 0.5018727], [122.89, 51.4100195605947, 0.37653536], [122.9, 51.683015528932295, 0.49368325], [122.91, 52.59370897927678, 0.4244553], [122.92, 52.84200060922384, 0.27301824], [122.93, 53.65505213647249, 0.14157428], [122.94, 52.15772531415139, 0.13489488], [122.95, 52.15067726094649, 0.13987954], [122.96, 53.39113596836618, 0.07278195], [122.97, 53.44455963730782, 0.13603766], [122.98, 53.31373070967455, 0.10210515], [122.99, 52.37515016641023, 0.1630483], [123.0, 51.75609258241764, 0.078842804], [123.01, 53.16454388921905, 0.13437432], [123.02, 54.01380697827379, 0.34244353], [123.03, 53.103421173045646, 0.22449279], [123.04, 52.385580081111556, 0.3257193], [123.05, 51.4267471221665, 0.33758333], [123.06, 52.3986478275893, 0.34484428], [123.07, 54.95620829174448, 0.09904952], [123.08, 56.099335597707764, 0.1884291], [123.09, 56.51452408556772, 0.47715944], [123.1, 56.38409595357902, 0.5880442], [123.11, 55.725133006966786, 0.5344673], [123.12, 55.02945159787725, 0.518306], [123.13, 53.943473953869265, 0.49769485], [123.14, 53.77579577136874, 0.53441954], [123.15, 52.54115066690754, 0.31313366], [123.16, 51.567797309923236, 0.2372292], [123.17, 50.24057806928795, 0.16599087], [123.18, 50.046959724939455, 0.13160697], [123.19, 49.08212084791082, 0.12330402], [123.2, 48.86451332366428, 0.10597634], [123.21, 54.15518819555564, 0.14887722], [123.22, 54.148516790266285, 0.3836382], [123.23, 53.29178370204025, 0.44870627], [123.24, 52.010574756208534, 0.2655257], [123.25, 51.445408238508044, 0.16459572], [123.26, 52.561812148368396, 0.23809637], [123.27, 54.54079599713711, 0.3312868], [123.28, 53.73570906547691, 0.2622539], [123.29, 52.93001561627331, 0.17781171], [123.3, 51.451024547244614, 0.20068808], [123.31, 53.303595678047756, 0.15409301], [123.32, 54.156964919634106, 0.22116876], [123.33, 54.93879294704362, 0.27237293], [123.34, 55.025226396055345, 0.11142519], [123.35, 55.67875494445309, 0.17419095], [123.36, 55.59254806131588, 0.37043598], [123.37, 55.46425166752886, 0.43510398], [123.38, 55.44833651893316, 0.31323543], [123.39, 55.68106860101338, 0.12445426], [123.4, 56.41734371514681, 0.07927438], [123.41, 56.426156929097324, 0.08066786], [123.42, 55.54350874018924, 0.045461614], [123.43, 55.01365022557458, 0.07446174], [123.44, 54.793772775432, 0.05535342], [123.45, 55.389273441730026, 0.081138186], [123.46, 55.56492919387488, 0.08826273], [123.47, 54.70211720095144, 0.12227011], [123.48, 54.62652957144861, 0.0827918], [123.49, 53.11710511430245, 0.06991455], [123.5, 52.371445515568155, 0.118761554], [123.51, 51.21194252426427, 0.16026479], [123.52, 53.25894062865125, 0.09720889], [123.53, 54.27043476065903, 0.16024213], [123.54, 56.16371201787363, 0.09295427], [123.55, 56.94490620287405, 0.08790212], [123.56, 56.813355549314494, 0.17616652], [123.57, 57.69657407453355, 0.16659674], [123.58, 58.721119722423566, 0.16299766], [123.59, 58.553904150644236, 0.12283712], [123.6, 58.48344226657096, 0.18200375], [123.61, 58.240088099298816, 0.20903026], [123.62, 58.26188048005881, 0.3368937], [123.63, 58.019326131718515, 0.16397844], [123.64, 57.96030956308335, 0.21788158], [123.65, 58.30833678468194, 0.21549162], [123.66, 58.23920656005906, 0.26526228], [123.67, 58.447530127641, 0.34401768], [123.68, 58.4192798870873, 0.3225463], [123.69, 58.52368814717559, 0.22952436], [123.7, 58.19033603767731, 0.30223528], [123.71, 58.24461296577881, 0.20039], [123.72, 58.415108294063096, 0.26833418], [123.73, 58.006411889334515, 0.243122], [123.74, 58.31993307098158, 0.36286685], [123.75, 58.445984414823364, 0.46913683], [123.76, 58.40271818476734, 0.5399849], [123.77, 63.996124615466684, 0.1276045], [123.78, 71.99068968411981, 0.09634024], [123.79, 79.66593457725031, 0.08735227], [123.8, 89.44872072061109, 0.18803416], [123.81, 98.16301643249577, 0.6651388], [123.82, 111.62051490391744, 0.5594669], [123.83, 119.02340745202558, 0.5840978], [123.84, 134.03795501545122, 0.35139823], [123.85, 146.48763129435974, 0.06916409], [123.86, 149.99555414356922, 0.14204562], [123.87, 152.65825096974308, 0.2547629], [123.88, 154.57927461305172, 0.29443407], [123.89, 155.07528643686715, 0.41769803], [123.9, 154.91177079024595, 0.2930554], [123.91, 150.8944430818787, 0.2717562], [123.92, 150.41847984282202, 0.2285481], [123.93, 152.8132424766607, 0.11952724], [123.94, 156.21531225460996, 0.20531902], [123.95, 159.45849322105917, 0.27259392], [123.96, 162.17156005486765, 0.18474182], [123.97, 163.88214060507192, 0.20726511], [123.98, 169.0531328994498, 0.059369586], [123.99, 174.62092059637882, 0.04618373], [124.0, 175.279515088911, 0.0748985], [124.01, 174.03502822944, 0.17080635], [124.02, 174.727263635692, 0.2697061], [124.03, 173.62503795041462, 0.16073011], [124.04, 173.5776378853339, 0.22998661], [124.05, 173.21020809620248, 0.21471655], [124.06, 172.9174407136533, 0.21315444], [124.07, 174.7111071148658, 0.26237482], [124.08, 175.6372804901785, 0.32619214], [124.09, 186.12697274523936, 0.38750315], [124.1, 217.64527282874377, 0.23883897], [124.11, 232.8205991215118, 0.30557188], [124.12, 233.85345798796163, 0.5388288], [124.13, 234.2370041889421, 0.7690428], [124.14, 233.5184191598953, 0.835709], [124.15, 233.9186578149518, 0.8796453], [124.16, 233.28893005150317, 0.8645546], [124.17, 233.45844967457646, 0.8690419], [124.18, 233.5388358938059, 0.8782588], [124.19, 233.4984351322002, 0.8760197], [124.2, 233.75251669052375, 0.86925286], [124.21, 233.66756092785073, 0.88811123], [124.22, 232.99569022809112, 0.85673386], [124.23, 232.94593036167225, 0.84484506], [124.24, 233.39120974768608, 0.8662137], [124.25, 218.6346754563936, 0.7452154], [124.26, 189.28318153168348, 0.47604755], [124.27, 172.32849295038227, 0.33985072], [124.28, 150.5767260563834, 0.398212], [124.29, 135.62716778567003, 0.29653805], [124.3, 133.75046577841547, 0.29519388], [124.31, 134.13804170496294, 0.6146515], [124.32, 133.84507232404263, 0.7460309], [124.33, 133.55411634222256, 0.72761285], [124.34, 132.37943153024023, 0.71889377], [124.35, 132.69736984225477, 0.7494517], [124.36, 133.3039399254138, 0.79558], [124.37, 134.25422146962745, 0.72579545], [124.38, 135.55010302068843, 0.77176106], [124.39, 136.6440189244462, 0.7818786], [124.4, 138.01810590505048, 0.8256759], [124.41, 139.164154667566, 0.84623724], [124.42, 139.30651587000716, 0.8527082], [124.43, 138.76421493684953, 0.86870766], [124.44, 138.13113628839463, 0.8345808], [124.45, 136.7382815098706, 0.7267445], [124.46, 135.51234761401315, 0.5664703], [124.47, 133.74647429314584, 0.60045886], [124.48, 131.9764715911316, 0.49444517], [124.49, 131.1359961767692, 0.22519203], [124.5, 136.62391676527076, 0.15316032], [124.51, 140.49365601904267, 0.5131925], [124.52, 140.19347152612673, 0.62433076], [124.53, 140.56863933318843, 0.7228076], [124.54, 141.1598785102779, 0.660373], [124.55, 142.51461485738682, 0.5609986], [124.56, 141.3266029042363, 0.48684463], [124.57, 136.95291949203917, 0.32911384], [124.58, 125.28646129912902, 0.5524855], [124.59, 117.14065329064267, 0.6321698], [124.6, 115.6048590437477, 0.7393851], [124.61, 108.02872039291593, 0.8036527], [124.62, 98.11958564402546, 0.8116677], [124.63, 93.9645816221894, 0.826508], [124.64, 90.9369795470842, 0.81839633], [124.65, 81.44246589281651, 0.8347854], [124.66, 78.18789027552674, 0.8305162], [124.67, 76.65224423722005, 0.8231508], [124.68, 68.36796841752809, 0.8167302], [124.69, 64.74175862690936, 0.79346544], [124.7, 58.34198564311406, 0.6474048], [124.71, 57.50087959451427, 0.43780673], [124.72, 51.41355393521974, 0.26388708], [124.73, 47.37466246460524, 0.24225552], [124.74, 45.158989860258856, 0.085608944], [124.75, 44.31411398511977, 0.070616], [124.76, 43.828802755654486, 0.35628685], [124.77, 43.595725166144064, 0.32712212], [124.78, 43.828719530254304, 0.4340226], [124.79, 43.38783182668817, 0.38678405], [124.8, 43.33431309496162, 0.15678723], [124.81, 43.835593389195736, 0.16069247], [124.82, 44.25300952178215, 0.113049395], [124.83, 43.92902244235144, 0.1896428], [124.84, 43.673366290763454, 0.22601265], [124.85, 43.28240845350354, 0.17229761], [124.86, 43.73460625315932, 0.37711227], [124.87, 43.630755874551824, 0.20520899], [124.88, 44.84563594123743, 0.19790395], [124.89, 43.940527498515905, 0.22770661], [124.9, 43.28021174715809, 0.19584295], [124.91, 43.46257360124639, 0.17730975], [124.92, 43.61305296578135, 0.15569569], [124.93, 43.9454039241336, 0.13218607], [124.94, 44.00256014839323, 0.17254691], [124.95, 43.83828484260316, 0.611467], [124.96, 44.298271189230064, 0.43394777], [124.97, 44.07990997196754, 0.3052542], [124.98, 44.769829580640376, 0.34298566], [124.99, 44.52014089330068, 0.4079848], [125.0, 44.10091842544675, 0.6729356], [125.01, 43.68123208721954, 0.4195895], [125.02, 43.47612973866952, 0.43238837], [125.03, 43.644226363696916, 0.34791896], [125.04, 43.066142800985375, 0.5055485], [125.05, 42.387800300566795, 0.42830127], [125.06, 43.32261108937588, 0.47163677], [125.07, 43.884913623986705, 0.60563874], [125.08, 43.97273979979153, 0.57107687], [125.09, 43.69169010371992, 0.6883507], [125.1, 43.58525399622407, 0.60211176], [125.11, 43.63330223259459, 0.6487455], [125.12, 43.750659704111925, 0.56959176], [125.13, 43.833790647631076, 0.66727495], [125.14, 44.065651374693495, 0.75775987], [125.15, 43.70959061774586, 0.6785301], [125.16, 43.78855637987334, 0.78875566], [125.17, 43.84424126258292, 0.66650856], [125.18, 43.885333392063046, 0.3671486], [125.19, 45.73854870021536, 0.096588515], [125.2, 49.68498811578716, 0.07345123], [125.21, 54.25636811832045, 0.10456847], [125.22, 58.300558552341, 0.23134883], [125.23, 62.6615645842271, 0.3585224], [125.24, 68.16271755659727, 0.4677956], [125.25, 69.19262963415014, 0.58373684], [125.26, 77.14343604240449, 0.509061], [125.27, 81.1528347910565, 0.5124768], [125.28, 88.84962815450956, 0.5038637], [125.29, 93.7983433450181, 0.5985383], [125.3, 103.01541130376839, 0.5630598], [125.31, 105.79774948915967, 0.45945752], [125.32, 116.3103042496522, 0.33755472], [125.33, 120.58623433528791, 0.3519804], [125.34, 134.0927323657606, 0.28972626], [125.35, 137.77834650115867, 0.43636253], [125.36, 147.69492653781106, 0.3678455], [125.37, 162.74602415252264, 0.4848646], [125.38, 176.5142046774359, 0.44801268], [125.39, 195.3088245945513, 0.4026027], [125.4, 209.18948361968984, 0.41156894], [125.41, 207.81664461807097, 0.4696824], [125.42, 208.00993377983897, 0.47823516], [125.43, 208.26457602296298, 0.2528928], [125.44, 209.02091882485138, 0.45608103], [125.45, 210.90432466858636, 0.4184663], [125.46, 225.47761737006414, 0.2003874], [125.47, 233.55223980398438, 0.3922576], [125.48, 235.01374635989893, 0.67177665], [125.49, 237.80974350233595, 0.6124396], [125.5, 239.72370938913247, 0.6062091], [125.51, 240.61115228156442, 0.4105791], [125.52, 242.05286609684495, 0.3006363], [125.53, 237.5337499713318, 0.24014507], [125.54, 234.8495824073845, 0.33870593], [125.55, 233.72741307421455, 0.38406172], [125.56, 231.69488060727343, 0.48951685], [125.57, 230.83015905074174, 0.562874], [125.58, 230.6859185345208, 0.44207057], [125.59, 221.86374762272763, 0.29769748], [125.6, 209.5226053089413, 0.32325122], [125.61, 197.61734125390714, 0.1691428], [125.62, 179.6528442188761, 0.15002465], [125.63, 174.87847121059886, 0.25075278], [125.64, 165.6046690649204, 0.2944662], [125.65, 153.8513258308655, 0.22981524], [125.66, 145.33158453414035, 0.27966645], [125.67, 136.87817155386105, 0.17105351], [125.68, 136.00090909498843, 0.2107504], [125.69, 135.59948252577985, 0.08718687], [125.7, 137.85879233592152, 0.18883367], [125.71, 138.65159483136972, 0.12073022], [125.72, 139.7201604399566, 0.14957058], [125.73, 139.1783092324999, 0.15623295], [125.74, 139.76379414515554, 0.29853138], [125.75, 139.80493940938717, 0.31985044], [125.76, 138.83263725319748, 0.16409484], [125.77, 140.74988647489863, 0.098706014], [125.78, 141.6527150320251, 0.12867871], [125.79, 142.7429968990111, 0.42746118], [125.8, 141.26299262593406, 0.41827998], [125.81, 141.0737727222704, 0.57957685], [125.82, 138.75181116607496, 0.4033429], [125.83, 139.06977469156394, 0.49906945], [125.84, 137.52624945271737, 0.36375475], [125.85, 138.82661954106138, 0.39457512], [125.86, 138.50159551923667, 0.4336282], [125.87, 138.57352813138493, 0.54371655], [125.88, 137.84092718996578, 0.51068383], [125.89, 137.63613566944557, 0.40475374], [125.9, 139.31675089634265, 0.32566848], [125.91, 141.19114646140022, 0.5388136], [125.92, 141.21806418874021, 0.4491352], [125.93, 141.40982387190832, 0.49653327], [125.94, 139.97264735518945, 0.21272613], [125.95, 139.19032722226623, 0.4363623], [125.96, 139.59479744686422, 0.32805416], [125.97, 139.37455403065113, 0.2945054], [125.98, 138.51270610826577, 0.40309325], [125.99, 137.90495041463208, 0.47436106], [126.0, 136.6448120118174, 0.31395334], [126.01, 135.74219385938682, 0.3778422], [126.02, 136.52983268274818, 0.4852115], [126.03, 137.06531137401797, 0.73871875], [126.04, 137.06546157471396, 0.7434537], [126.05, 136.981843672154, 0.6632037], [126.06, 136.5437086450083, 0.57943475], [126.07, 136.57685967109524, 0.4494426], [126.08, 136.75323692610738, 0.30257842], [126.09, 137.02756385161527, 0.5216571], [126.1, 136.54353357444538, 0.27729374], [126.11, 135.83870910919342, 0.31969354], [126.12, 135.08229814104143, 0.30335945], [126.13, 135.59140310587574, 0.32392374], [126.14, 135.19232996999426, 0.26907763], [126.15, 135.2889678917817, 0.33142486], [126.16, 135.66600078064062, 0.5442858], [126.17, 136.64031830905984, 0.56330526], [126.18, 137.90602690299636, 0.42355174], [126.19, 139.4131587471815, 0.71106017], [126.2, 139.1951142904942, 0.7400307], [126.21, 138.94360390156456, 0.66073895], [126.22, 138.15056469649076, 0.6312233], [126.23, 137.8018601094621, 0.60960567], [126.24, 138.42002762906392, 0.58834535], [126.25, 138.754589311531, 0.58861214], [126.26, 137.77975004684316, 0.71096885], [126.27, 137.7837304178699, 0.7688163], [126.28, 137.30341612007712, 0.78815836], [126.29, 136.92588708675754, 0.7059688], [126.3, 137.219126964886, 0.72294], [126.31, 136.72303888304182, 0.70869917], [126.32, 136.9699565434903, 0.6703844], [126.33, 137.11163303092522, 0.6209533], [126.34, 136.87041294623165, 0.510479], [126.35, 136.96373605813153, 0.361414], [126.36, 136.867513406319, 0.49182352], [126.37, 130.2476739823379, 0.331468], [126.38, 117.50277862061881, 0.35077462], [126.39, 107.85522152191965, 0.33052334], [126.4, 95.35931052534211, 0.27983665], [126.41, 88.34729649329392, 0.65424615], [126.42, 88.05579611787763, 0.7409711], [126.43, 87.4163882058008, 0.811425], [126.44, 86.45720396567413, 0.75039816], [126.45, 85.88877086303894, 0.659168], [126.46, 86.41328464339325, 0.47407213], [126.47, 86.5847993070215, 0.5203403], [126.48, 84.1333880961898, 0.6264204], [126.49, 79.70066239542919, 0.7055131], [126.5, 76.55693612833416, 0.69159], [126.51, 71.78730284567511, 0.6978547], [126.52, 69.55839599869114, 0.7372582], [126.53, 68.6011500035107, 0.74338627], [126.54, 65.92798875836917, 0.7354516], [126.55, 61.95777378063541, 0.73964614], [126.56, 59.1553859081484, 0.72641397], [126.57, 58.379309001979095, 0.58931434], [126.58, 57.12864085039413, 0.3307035], [126.59, 53.58578182643451, 0.12996975], [126.6, 50.63825405757916, 0.05800576], [126.61, 48.69802821829688, 0.40067905], [126.62, 49.90826709824021, 0.50468594], [126.63, 50.67133002866791, 0.61610204], [126.64, 51.3029748446256, 0.7173014], [126.65, 51.8045700370785, 0.79354495], [126.66, 51.54034990818214, 0.6893451], [126.67, 51.60106551872876, 0.7602969], [126.68, 51.98938776845292, 0.75020593], [126.69, 52.06448625564875, 0.602146], [126.7, 52.349064752444065, 0.47870278], [126.71, 51.55900710340155, 0.3922703], [126.72, 51.62311847656181, 0.5187067], [126.73, 51.883348311683655, 0.5271069], [126.74, 52.20717895125762, 0.68372947], [126.75, 52.28996451121449, 0.60692126], [126.76, 52.21128599987104, 0.5438115], [126.77, 52.42164868981283, 0.41425067], [126.78, 52.85639029303535, 0.40013793], [126.79, 53.61636526511961, 0.44314605], [126.8, 53.27841534381374, 0.40834612], [126.81, 52.45022609093346, 0.6146618], [126.82, 51.840386219797296, 0.5232012], [126.83, 51.95295248826727, 0.66382074], [126.84, 52.25002893025001, 0.6313355], [126.85, 52.87639307948489, 0.5326268], [126.86, 52.839078349143094, 0.32430175], [126.87, 53.78721412343573, 0.21478094], [126.88, 54.582240603973446, 0.36245358], [126.89, 55.35782821724153, 0.4260414], [126.9, 56.30347130402789, 0.35322583], [126.91, 56.87926967640011, 0.334157], [126.92, 57.99076330138524, 0.34283522], [126.93, 57.43610673400292, 0.43206763], [126.94, 57.2939350766751, 0.55704457], [126.95, 57.21125036520762, 0.52290493], [126.96, 57.68095841401109, 0.47919965], [126.97, 57.26828882755302, 0.4791782], [126.98, 57.19426841954948, 0.14525326], [126.99, 56.33326691191001, 0.12068462], [127.0, 52.29689869347837, 0.1172624], [127.01, 50.16659045486173, 0.25173157], [127.02, 50.13926098333307, 0.15872899], [127.03, 51.908204651459606, 0.25827956], [127.04, 55.609246458215736, 0.20832703], [127.05, 51.70390449414319, 0.1755866], [127.06, 52.373621915998754, 0.20205374], [127.07, 51.18982584619421, 0.21418908], [127.08, 52.34144141212784, 0.3779968], [127.09, 54.32001785855333, 0.20162246], [127.1, 53.546665197083605, 0.15195367], [127.11, 53.371932910529665, 0.075958595], [127.12, 54.21217981881264, 0.15921633], [127.13, 54.84762139500147, 0.29052955], [127.14, 54.41454699511049, 0.34017903], [127.15, 53.536040404715884, 0.2596951], [127.16, 53.58331933840227, 0.36445063], [127.17, 53.202975792069644, 0.24373563], [127.18, 52.608753247843076, 0.2161856], [127.19, 52.86786363529672, 0.17292435], [127.2, 52.93438050034328, 0.2219672], [127.21, 53.50081267091409, 0.13012168], [127.22, 53.99609182641501, 0.13160747], [127.23, 54.59860976332087, 0.15005994], [127.24, 54.50687553746337, 0.1965926], [127.25, 54.82658917237244, 0.16722724], [127.26, 53.83631352421773, 0.216782], [127.27, 53.968807187295, 0.17619623], [127.28, 54.910389447520785, 0.17216797], [127.29, 60.90745588406519, 0.32583117], [127.3, 67.44535466795475, 0.18368691], [127.31, 73.2175276499055, 0.14416866], [127.32, 80.41154242888852, 0.14321622], [127.33, 91.09588598241872, 0.08458254], [127.34, 95.97958880465976, 0.24547185], [127.35, 108.5087070658865, 0.22668186], [127.36, 116.7741543037946, 0.38537365], [127.37, 116.88608790228743, 0.58769155], [127.38, 116.37933624063761, 0.5823519], [127.39, 116.71044245755164, 0.51473075], [127.4, 116.88838106597473, 0.5363819], [127.41, 117.15283459651155, 0.5944105], [127.42, 117.98509073282713, 0.2822433], [127.43, 118.46018655323371, 0.47946882], [127.44, 119.87847499810032, 0.54580754], [127.45, 122.34788800317153, 0.2802449], [127.46, 124.37841190543818, 0.648969], [127.47, 126.25814317445659, 0.7122331], [127.48, 128.14555181285428, 0.7769046], [127.49, 131.58221528224234, 0.7252893], [127.5, 132.6532173118167, 0.78141654], [127.51, 135.7924535718881, 0.6850098], [127.52, 139.33871193505016, 0.36939126], [127.53, 141.5026954984882, 0.22465251], [127.54, 140.3048591207285, 0.24143328], [127.55, 150.55284615084742, 0.11599211], [127.56, 152.53111400909054, 0.15706357], [127.57, 151.84073637710011, 0.2588534], [127.58, 152.68551753478545, 0.23177312], [127.59, 152.40270139534437, 0.31761694], [127.6, 152.63366882365483, 0.24464612], [127.61, 151.86256128551594, 0.319299], [127.62, 152.5882554443424, 0.33320865], [127.63, 152.7790879898655, 0.32803214], [127.64, 155.40224652553712, 0.44945958], [127.65, 157.6362092265797, 0.53317785], [127.66, 158.8881984742515, 0.49053505], [127.67, 156.44121715151505, 0.4610101], [127.68, 157.15663021837122, 0.4763064], [127.69, 158.3843907325134, 0.25118092], [127.7, 159.37810367573064, 0.1838948], [127.71, 159.87253160415582, 0.09255489], [127.72, 161.67606102656183, 0.17401895], [127.73, 165.7705219660248, 0.16084446], [127.74, 166.93057738458438, 0.120174475], [127.75, 170.96593324377093, 0.222116], [127.76, 174.90699842166944, 0.35138035], [127.77, 175.6687165914607, 0.44109154], [127.78, 176.7657079457025, 0.59097046], [127.79, 177.33671438051928, 0.72025055], [127.8, 176.58474612288694, 0.7187209], [127.81, 175.45107165808372, 0.78768116], [127.82, 175.1286853755623, 0.749014], [127.83, 174.24087785699325, 0.7095713], [127.84, 173.69465216578507, 0.71887773], [127.85, 173.7465596371306, 0.63439095], [127.86, 174.8145985911037, 0.42097047], [127.87, 176.77400237620816, 0.5941286], [127.88, 178.35245365598809, 0.59876215], [127.89, 179.388344624117, 0.5886573], [127.9, 191.8956040041289, 0.43709394], [127.91, 216.26341665038612, 0.30108002], [127.92, 232.13194143177452, 0.14301014], [127.93, 231.68364234137047, 0.2985037], [127.94, 232.5825210959889, 0.36785412], [127.95, 231.38502467895393, 0.3406269], [127.96, 233.25680355777104, 0.28702533], [127.97, 233.24420586145544, 0.38096994], [127.98, 233.54265857932592, 0.39694202], [127.99, 233.3509450135223, 0.5578282], [128.0, 232.85715280556147, 0.4902206], [128.01, 232.59019378246506, 0.6999583], [128.02, 232.82684376071632, 0.58756703], [128.03, 229.56217793049913, 0.3073641], [128.04, 206.98066029379956, 0.38733235], [128.05, 175.9391514855684, 0.4728734], [128.06, 157.15712743808095, 0.612624], [128.07, 138.80363074770776, 0.6621082], [128.08, 136.407596014465, 0.60059845], [128.09, 133.24329496771637, 0.70043933], [128.1, 132.8009733953417, 0.7104956], [128.11, 133.60334833049032, 0.63954794], [128.12, 134.71354596311534, 0.62180567], [128.13, 135.7783881743963, 0.67631066], [128.14, 138.60527565618622, 0.61507255], [128.15, 142.02009218681445, 0.61497635], [128.16, 144.9092758402908, 0.5773066], [128.17, 144.0470147096243, 0.6372499], [128.18, 144.3866545697851, 0.6537302], [128.19, 143.83714932206544, 0.78465104], [128.2, 144.02317929946062, 0.85357594], [128.21, 142.89704225669655, 0.8479894], [128.22, 140.74164523163444, 0.80071306], [128.23, 139.01697038133037, 0.78069335], [128.24, 134.5210320090147, 0.42362404], [128.25, 130.93767290687805, 0.47845885], [128.26, 128.32744142316548, 0.5223493], [128.27, 126.2668332558431, 0.49265143], [128.28, 127.74425107520355, 0.4022663], [128.29, 130.24309207588757, 0.2620804], [128.3, 138.32944657818337, 0.7305131], [128.31, 139.03981871470518, 0.8150955], [128.32, 141.62725987713554, 0.74757725], [128.33, 143.42271224119605, 0.839032], [128.34, 143.94454657492207, 0.88486356], [128.35, 143.37764351210402, 0.7985098], [128.36, 140.17949037888363, 0.71369445], [128.37, 138.28261614710362, 0.69176567], [128.38, 137.52860519975852, 0.5024512], [128.39, 135.20802427952123, 0.39195058], [128.4, 132.5416165092269, 0.42607316], [128.41, 126.19746925051797, 0.5170124], [128.42, 121.73780793283092, 0.62815464], [128.43, 117.52199817155355, 0.5343618], [128.44, 117.03088857012807, 0.53116494], [128.45, 119.76881512648032, 0.07123258], [128.46, 123.25790181801321, 0.10791127], [128.47, 125.68063180573503, 0.06961679], [128.48, 127.24952623031439, 0.18993962], [128.49, 128.6192748067244, 0.24871422], [128.5, 129.74726018956167, 0.08812645], [128.51, 130.99005527395175, 0.4818948], [128.52, 132.41532482670783, 0.5644651], [128.53, 132.22032527620973, 0.5792937], [128.54, 133.70521394070005, 0.5978976], [128.55, 136.20148881545273, 0.31377223], [128.56, 136.69125441563887, 0.2114942], [128.57, 136.9966409914491, 0.3782209], [128.58, 136.54479107996232, 0.3981561], [128.59, 137.2277488804376, 0.4374463], [128.6, 137.28429642939696, 0.39325002], [128.61, 139.1680074438549, 0.38845372], [128.62, 139.94039823525443, 0.2151293], [128.63, 143.62052081812064, 0.18459006], [128.64, 148.37715522053014, 0.17962638], [128.65, 151.36554928546164, 0.19416913], [128.66, 156.4551410857678, 0.13954227], [128.67, 162.34962672789646, 0.17384724], [128.68, 165.49391746125315, 0.18275204], [128.69, 170.31374857007148, 0.124278665], [128.7, 172.82272612218617, 0.35863814], [128.71, 175.34953866871774, 0.13923992], [128.72, 176.3830007408089, 0.17594877], [128.73, 178.53723504865872, 0.35090274], [128.74, 180.72209655515766, 0.40428358], [128.75, 181.228990673484, 0.32517207], [128.76, 181.26075398428455, 0.33207864], [128.77, 181.78927320508, 0.35615063], [128.78, 182.84860496828014, 0.35448465], [128.79, 196.54048991186104, 0.31240013], [128.8, 222.6366584652019, 0.5170982], [128.81, 246.4543261097651, 0.5023674], [128.82, 262.6456203625397, 0.66585803], [128.83, 261.0142863249021, 0.5511202], [128.84, 261.4019984161894, 0.7232836], [128.85, 262.0296518964463, 0.7446828], [128.86, 262.05428031354745, 0.7960197], [128.87, 262.34104687787413, 0.80080885], [128.88, 261.2542004459664, 0.7289367], [128.89, 260.2498687405772, 0.6952099], [128.9, 259.5822945457717, 0.6652889], [128.91, 259.3694189980675, 0.73292166], [128.92, 259.6858644483343, 0.7561139], [128.93, 260.2522054647902, 0.7475678], [128.94, 232.71131528449402, 0.7358016], [128.95, 205.26459663969078, 0.6152951], [128.96, 175.7901159386568, 0.4131845], [128.97, 155.3143319299597, 0.6828355], [128.98, 137.13621560864337, 0.80814934], [128.99, 137.87486587988437, 0.7293577], [129.0, 137.60355367593738, 0.5131936], [129.01, 139.12438197432112, 0.56698126], [129.02, 139.5381907489838, 0.41664022], [129.03, 139.64330362530714, 0.5257593], [129.04, 139.23442367562143, 0.46220502], [129.05, 138.501821040542, 0.55293375], [129.06, 137.92845746020123, 0.2839363], [129.07, 137.61543731749248, 0.5395593], [129.08, 137.9454594478901, 0.54691017], [129.09, 139.28914313544226, 0.6435692], [129.1, 140.5933934480889, 0.5901367], [129.11, 140.78126896255765, 0.65313476], [129.12, 143.2744397457946, 0.45824635], [129.13, 160.53136377195446, 0.32114798], [129.14, 183.70957883607687, 0.25453332], [129.15, 215.08464209607854, 0.41396955], [129.16, 233.17071826677446, 0.421832], [129.17, 269.3764179625743, 0.33050904], [129.18, 268.1279686313976, 0.49895477], [129.19, 265.50714558923767, 0.4323353], [129.2, 261.0253845748219, 0.2744843], [129.21, 264.9971171657959, 0.31281286], [129.22, 266.67908873387023, 0.28327572], [129.23, 264.81041724297114, 0.3306283], [129.24, 262.81454429364896, 0.2978188], [129.25, 260.9488210805119, 0.23083492], [129.26, 259.36663868506827, 0.14865331], [129.27, 259.16302284314827, 0.09735117], [129.28, 256.03068032442707, 0.107486874], [129.29, 255.59521107487575, 0.12660584], [129.3, 252.4065548323148, 0.4795355], [129.31, 244.04703164292783, 0.29726022], [129.32, 238.48364967172412, 0.20361844], [129.33, 233.289445947875, 0.30445197], [129.34, 224.93576443065055, 0.46935236], [129.35, 218.40425607522184, 0.52522147], [129.36, 212.6150655505101, 0.49615675], [129.37, 209.33604463896856, 0.09428464], [129.38, 207.0885927947254, 0.0811726], [129.39, 205.08919381452068, 0.14603129], [129.4, 199.35829227081086, 0.104503244], [129.41, 192.7952649149913, 0.18973331], [129.42, 185.24816097228612, 0.14657313], [129.43, 182.5271138109431, 0.103301995], [129.44, 179.7961602329714, 0.049933635], [129.45, 176.0300886257333, 0.11640137], [129.46, 174.21966074702345, 0.21803114], [129.47, 174.0625280919845, 0.24039854], [129.48, 157.6704495068841, 0.24297126], [129.49, 138.5776847627077, 0.243459], [129.5, 138.91990649612805, 0.1581091], [129.51, 139.299481536833, 0.1872374], [129.52, 143.2860127042696, 0.23970766], [129.53, 144.5672823500677, 0.1216329], [129.54, 144.68634596781783, 0.31081256], [129.55, 145.96280422655698, 0.42330867], [129.56, 144.54274673836602, 0.64829105], [129.57, 143.70478899772397, 0.53776485], [129.58, 142.9007432515898, 0.5204774], [129.59, 140.0967440028502, 0.17651013], [129.6, 138.8424750490061, 0.42213053], [129.61, 137.82102449700227, 0.43414202], [129.62, 138.66341979185162, 0.6054753], [129.63, 137.82069621745666, 0.5566327], [129.64, 137.19544035255313, 0.5511663], [129.65, 137.52633198909268, 0.6095292], [129.66, 137.4824205622498, 0.56633276], [129.67, 136.776324548939, 0.50293976], [129.68, 136.0208761674723, 0.4557554], [129.69, 134.58771358592082, 0.3484659], [129.7, 136.6488512822636, 0.18200387], [129.71, 135.43137582970706, 0.19203255], [129.72, 136.54315646164187, 0.14578626], [129.73, 135.11376512686863, 0.10706105], [129.74, 136.60388413928436, 0.15013105], [129.75, 136.77133723139232, 0.1850084], [129.76, 126.4919509291304, 0.22255972], [129.77, 109.50339713035333, 0.5804214], [129.78, 97.35702967815499, 0.41798955], [129.79, 88.54363760322201, 0.3344529], [129.8, 77.50009204993339, 0.47707972], [129.81, 67.81112233935775, 0.2654621], [129.82, 61.315467770295896, 0.21910992], [129.83, 52.15467873479881, 0.16278867], [129.84, 46.71711464531559, 0.2181869], [129.85, 46.29833384953686, 0.4199342], [129.86, 46.63386832036379, 0.5692435], [129.87, 45.686735792126996, 0.63275814], [129.88, 45.88271664827659, 0.55645084], [129.89, 45.344814172137404, 0.473503], [129.9, 45.611501992443536, 0.4885041], [129.91, 46.19757837621344, 0.58784753], [129.92, 46.16488272482785, 0.5540688], [129.93, 46.54572913492295, 0.35230014], [129.94, 46.09623023969079, 0.43912646], [129.95, 46.35010546283346, 0.4902481], [129.96, 46.54444417355194, 0.5193852], [129.97, 46.455641343036504, 0.6627801], [129.98, 45.902344812373485, 0.59776795], [129.99, 45.6658908493616, 0.52094096], [130.0, 45.47762222457956, 0.46215618], [130.01, 45.056550017208615, 0.17645349], [130.02, 44.84062843188407, 0.16492724], [130.03, 44.165928897813544, 0.2957662], [130.04, 44.51828483865065, 0.30953825], [130.05, 44.633929503084076, 0.2996319], [130.06, 44.83678816019203, 0.5324834], [130.07, 44.64925970617999, 0.5183292], [130.08, 44.82031490839429, 0.48638546], [130.09, 44.54595569274531, 0.44267198], [130.1, 42.567233562134234, 0.25044596], [130.11, 36.68184939302182, 0.43994772], [130.12, 34.80094913092532, 0.37727335], [130.13, 32.46637617604716, 0.52303433], [130.14, 32.47615013303626, 0.47792163], [130.15, 32.628327020519905, 0.46750557], [130.16, 32.71888474087094, 0.45828906], [130.17, 32.67666942042152, 0.28155228], [130.18, 32.64694414863269, 0.365769], [130.19, 32.689978099116495, 0.29518095], [130.2, 32.68459528928999, 0.44179857], [130.21, 32.718497024983265, 0.24647258], [130.22, 32.686208491881544, 0.30190417], [130.23, 32.73751016696475, 0.35370168], [130.24, 32.77155677940939, 0.43482423], [130.25, 32.82787348032152, 0.4332915], [130.26, 32.76851209917903, 0.4377208], [130.27, 32.74827342312189, 0.33077356], [130.28, 32.72008068581446, 0.2671628], [130.29, 32.536620281817314, 0.35812026], [130.3, 32.41894539839783, 0.19805591], [130.31, 32.47568174736164, 0.13853899], [130.32, 34.95456530567314, 0.24168241], [130.33, 36.336024049224044, 0.27908865], [130.34, 41.39921873841903, 0.19583574], [130.35, 43.09177790195229, 0.11545385], [130.36, 48.32013732213887, 0.09700289], [130.37, 51.10066749840521, 0.26736578], [130.38, 51.197664275413516, 0.51932913], [130.39, 51.49203456741098, 0.64286], [130.4, 51.82606320777474, 0.6554958], [130.41, 52.15965286443651, 0.6602896], [130.42, 52.23534332264422, 0.47098023], [130.43, 52.24427860628491, 0.21394344], [130.44, 51.5915161113132, 0.10188673], [130.45, 51.931247224839666, 0.17541866], [130.46, 52.43446760879252, 0.26289615], [130.47, 52.62968791763943, 0.18790081], [130.48, 52.480177478236754, 0.14238288], [130.49, 52.38514922726546, 0.12712038], [130.5, 53.36353006387802, 0.13189818], [130.51, 53.648357924071576, 0.15669143], [130.52, 53.733858630894495, 0.19638124], [130.53, 52.12438467142155, 0.12919417], [130.54, 51.67324026011442, 0.17683174], [130.55, 51.41879097548965, 0.12650721], [130.56, 51.45605269091759, 0.298635], [130.57, 52.148415049295984, 0.16422841], [130.58, 52.7749312698547, 0.2292878], [130.59, 51.42731111853556, 0.10956897], [130.6, 51.1333399136154, 0.11161377], [130.61, 52.53167663871825, 0.15834834], [130.62, 52.959905041572455, 0.2102086], [130.63, 50.6942535754495, 0.12282807], [130.64, 50.76409135802461, 0.12439252], [130.65, 51.49852988281503, 0.104639105], [130.66, 53.913492629489134, 0.18256624], [130.67, 53.22218166570241, 0.15753573], [130.68, 52.99227587674524, 0.116814464], [130.69, 52.99583500803409, 0.21946698], [130.7, 53.98996396155168, 0.3773752], [130.71, 54.32117394124436, 0.2795641], [130.72, 54.42991537759947, 0.19414915], [130.73, 54.97279326528367, 0.18034883], [130.74, 53.67711962919779, 0.2466518], [130.75, 54.578797952854565, 0.35101482], [130.76, 54.95467999880476, 0.22134343], [130.77, 55.89339944787359, 0.30397493], [130.78, 55.45685275878189, 0.32942414], [130.79, 56.08425358782625, 0.3621107], [130.8, 55.08123605111935, 0.22168173], [130.81, 55.31449610505388, 0.15942591], [130.82, 54.55365999282122, 0.2822909], [130.83, 54.38566177885324, 0.3389709], [130.84, 52.73611745461119, 0.19401644], [130.85, 51.98350912066337, 0.28642145], [130.86, 52.41578633267221, 0.2744688], [130.87, 52.651113191163105, 0.3099627], [130.88, 52.69413728600846, 0.3116533], [130.89, 52.77590019315327, 0.3747091], [130.9, 52.105240183792745, 0.19969606], [130.91, 53.28482746611455, 0.14655001], [130.92, 53.08937240994035, 0.3183365], [130.93, 53.435411979446855, 0.24790958], [130.94, 52.26967004714416, 0.18252492], [130.95, 52.08362636875719, 0.208225], [130.96, 52.09181012969212, 0.13598038], [130.97, 54.1258992394033, 0.21473496], [130.98, 53.96781294867574, 0.1527595], [130.99, 52.11052612602423, 0.20093176], [131.0, 49.499114633597394, 0.28255212], [131.01, 50.69352550675997, 0.32193998], [131.02, 51.439300817581994, 0.20351642], [131.03, 53.16302698427808, 0.078575306], [131.04, 56.697682067071355, 0.045770902], [131.05, 57.91089459431434, 0.11977809], [131.06, 59.358592048206816, 0.14491156], [131.07, 59.624131603407534, 0.12789783], [131.08, 58.741295459422915, 0.59275854], [131.09, 57.86332886264611, 0.7997616], [131.1, 57.98140079945986, 0.83404857], [131.11, 58.16431788683697, 0.8294103], [131.12, 58.60242153141678, 0.82747406], [131.13, 58.74182342323471, 0.86253154], [131.14, 58.4344815062214, 0.8505744], [131.15, 58.35314530998413, 0.85245055], [131.16, 58.3161600539555, 0.8677214], [131.17, 58.53928899549441, 0.86297387], [131.18, 58.436314782934666, 0.87243354], [131.19, 58.69311919139406, 0.85652864], [131.2, 58.527190194393825, 0.87349564], [131.21, 58.303429728154825, 0.8744317], [131.22, 58.673838864163514, 0.8602504], [131.23, 58.54995315332885, 0.8418607], [131.24, 58.75311009476904, 0.8232991], [131.25, 58.73300257055103, 0.8444534], [131.26, 58.547936370017986, 0.86508137], [131.27, 58.84923128869268, 0.53101635], [131.28, 59.064239880368696, 0.27130488], [131.29, 61.00077496346728, 0.26644385], [131.3, 61.552669559716136, 0.21001832], [131.31, 61.38066961290333, 0.685539], [131.32, 61.715367863231954, 0.5670338], [131.33, 61.80498095762853, 0.4877508], [131.34, 62.176832931309605, 0.20124018], [131.35, 62.48946118686482, 0.08427605], [131.36, 64.33532695045363, 0.17297582], [131.37, 72.85189976093788, 0.13503262], [131.38, 74.08327875255875, 0.4492568], [131.39, 81.73921464340276, 0.6681615], [131.4, 90.73088544768828, 0.6205637], [131.41, 92.88582015810573, 0.45264664], [131.42, 95.62714275045876, 0.06844039], [131.43, 105.59470077972671, 0.2724592], [131.44, 113.55336781408268, 0.3396527], [131.45, 118.47177372595834, 0.30801988], [131.46, 121.08623729545798, 0.3973281], [131.47, 132.08392176054528, 0.32387015], [131.48, 140.09660425945032, 0.5449502], [131.49, 149.05578304341398, 0.7340102], [131.5, 155.19392826176514, 0.5269929], [131.51, 164.9031098637664, 0.10734538], [131.52, 180.64600900392153, 0.13208988], [131.53, 185.39114716771633, 0.33373585], [131.54, 186.07911146216463, 0.35723197], [131.55, 185.63000411635105, 0.5322364], [131.56, 185.534127725613, 0.7294835], [131.57, 185.91867725611937, 0.7372353], [131.58, 186.1282579611931, 0.78080434], [131.59, 185.84266627329438, 0.78447163], [131.6, 185.62299902554673, 0.82559484], [131.61, 185.76022397760943, 0.8005835], [131.62, 185.84579981771378, 0.7931993], [131.63, 185.4714873672582, 0.7415267], [131.64, 185.43406776943306, 0.6176254], [131.65, 185.58661240441512, 0.6112481], [131.66, 185.71578590613467, 0.6508838], [131.67, 185.43681929739728, 0.71956354], [131.68, 185.79490248754166, 0.8240236], [131.69, 185.61315995274018, 0.86267096], [131.7, 185.70689768540552, 0.86607075], [131.71, 185.46513891516793, 0.85590166], [131.72, 185.36782165896489, 0.7349887], [131.73, 185.37543087308282, 0.6593177], [131.74, 185.0607150345187, 0.67836505], [131.75, 185.2457356486412, 0.60161555], [131.76, 180.8762025925249, 0.6746024], [131.77, 160.35697308029404, 0.6958356], [131.78, 148.77005908234304, 0.59666806], [131.79, 139.7823786960293, 0.7925767], [131.8, 127.47839117020554, 0.7785066], [131.81, 118.36152143212382, 0.7636043], [131.82, 110.11860958367132, 0.6922886], [131.83, 96.45869611162556, 0.5458845], [131.84, 92.47266490355125, 0.619351], [131.85, 92.6082892636267, 0.7396802], [131.86, 92.7064580201083, 0.7994683], [131.87, 92.9132928545105, 0.84077936], [131.88, 92.60895497782028, 0.8535471], [131.89, 92.42888741902061, 0.84319675], [131.9, 92.39637916982218, 0.83746576], [131.91, 92.58854648902548, 0.8538057], [131.92, 92.76276346887413, 0.847958], [131.93, 92.48262359796563, 0.80890596], [131.94, 92.33481795665163, 0.7422377], [131.95, 92.08332321283329, 0.62154555], [131.96, 92.2828207362369, 0.50558406], [131.97, 92.40058250038764, 0.50024205], [131.98, 92.35656226183389, 0.598019], [131.99, 92.34424598876754, 0.61900514], [132.0, 92.23808762000894, 0.68049634], [132.01, 92.44776887972237, 0.77277136], [132.02, 92.40514011525212, 0.84758496], [132.03, 92.23785690896892, 0.8263682], [132.04, 92.37764867601595, 0.83382154], [132.05, 92.5708291864367, 0.8437597], [132.06, 92.6025457983789, 0.8523675], [132.07, 92.58967239936261, 0.85372126], [132.08, 92.4520128833301, 0.8294951], [132.09, 92.32989650267209, 0.61084944], [132.1, 91.8753511334325, 0.6569163], [132.11, 85.59891325288118, 0.78794324], [132.12, 79.1017497862538, 0.81133384], [132.13, 73.7340955623719, 0.84592456], [132.14, 70.67880785009231, 0.7959793], [132.15, 66.09465572331865, 0.406416], [132.16, 62.55390783380069, 0.27486643], [132.17, 58.52853354139482, 0.32704028], [132.18, 53.687050544513326, 0.46292865], [132.19, 51.74160099965213, 0.64566475], [132.2, 51.528695915852296, 0.71126056], [132.21, 46.76188123333173, 0.6824144], [132.22, 42.81742530301361, 0.4624544], [132.23, 41.70387622194539, 0.37794837], [132.24, 39.539221575287044, 0.16444553], [132.25, 39.158490418135735, 0.37099203], [132.26, 38.32219243032216, 0.13753092], [132.27, 39.4050240954124, 0.10480402], [132.28, 41.57204411644961, 0.18310055], [132.29, 42.10265773477603, 0.2578505], [132.3, 42.73595069661469, 0.19257152], [132.31, 43.46198320366309, 0.18388362], [132.32, 44.91898150074039, 0.25702512], [132.33, 46.11041129135468, 0.43515444], [132.34, 46.47512249613678, 0.500246], [132.35, 44.127227985582785, 0.39950788], [132.36, 43.486011712992436, 0.47121438], [132.37, 43.54774014270076, 0.50196785], [132.38, 43.21107248808971, 0.28525805], [132.39, 43.31544335613046, 0.3396117], [132.4, 43.24041605600338, 0.6140778], [132.41, 43.429158238040195, 0.56420445], [132.42, 43.705772011919926, 0.7193335], [132.43, 43.92123134129554, 0.80976295], [132.44, 43.89587090523286, 0.7500184], [132.45, 44.23658640172786, 0.581909], [132.46, 43.927487491740045, 0.5805113], [132.47, 43.676947750888246, 0.57969576], [132.48, 43.37686819824037, 0.72551835], [132.49, 43.181550329988234, 0.6553596], [132.5, 43.34903450151586, 0.61142236], [132.51, 43.139743590957366, 0.51101846], [132.52, 43.11608004084494, 0.46543226], [132.53, 43.180545666503576, 0.45370033], [132.54, 43.22682205243779, 0.40101698], [132.55, 43.364925205020384, 0.4436365], [132.56, 42.91913654782449, 0.48713005], [132.57, 43.19439512508939, 0.63043964], [132.58, 43.35549343273441, 0.6597685], [132.59, 43.469475609917154, 0.72502875], [132.6, 43.62275222381697, 0.68004936], [132.61, 43.35099320735203, 0.7202866], [132.62, 47.564160970836255, 0.67209154], [132.63, 53.237984085266916, 0.6031581], [132.64, 61.473186092560155, 0.6324579], [132.65, 69.00654098639649, 0.54707444], [132.66, 78.0441356053397, 0.57895297], [132.67, 86.30257614806328, 0.4395472], [132.68, 94.18328792732518, 0.28028142], [132.69, 105.12124038701913, 0.26757565], [132.7, 116.64962690572777, 0.41253963], [132.71, 133.1458789326736, 0.5991334], [132.72, 152.26884711411634, 0.70998585], [132.73, 167.68784413501865, 0.83776355], [132.74, 193.7373913891534, 0.82723045], [132.75, 208.2801789236149, 0.8153582], [132.76, 208.07691461762047, 0.7238915], [132.77, 208.029759173527, 0.63705605], [132.78, 207.74901126458076, 0.6196303], [132.79, 207.7010104387861, 0.7124052], [132.8, 207.87526022042533, 0.7747571], [132.81, 207.8072907892817, 0.8483823], [132.82, 207.8895655878772, 0.84596366], [132.83, 207.97272304909455, 0.8706312], [132.84, 208.09154130213687, 0.83959794], [132.85, 208.04667795870017, 0.7934814], [132.86, 207.81283036615878, 0.80755514], [132.87, 207.94411581536417, 0.7706223], [132.88, 207.6271761925501, 0.72987705], [132.89, 207.66509521950712, 0.75871396], [132.9, 207.86491551867135, 0.77221113], [132.91, 207.86218150142034, 0.8230093], [132.92, 208.11870227668834, 0.8706698], [132.93, 207.92874927855144, 0.86935526], [132.94, 207.93730527185585, 0.88782465], [132.95, 207.72843511962697, 0.8682851], [132.96, 207.8294428830057, 0.85289806], [132.97, 207.91859013864735, 0.83180165], [132.98, 207.8985417395935, 0.8238694], [132.99, 207.8130511744662, 0.81619143], [133.0, 207.95939567172024, 0.83988947], [133.01, 207.75714969672575, 0.86043584], [133.02, 207.9598899172155, 0.8754643], [133.03, 208.13791056255414, 0.84679365], [133.04, 208.1445670056743, 0.8468699], [133.05, 208.0313470166651, 0.8427469], [133.06, 208.1144326394588, 0.83538556], [133.07, 208.47818076369572, 0.8320635], [133.08, 208.11838486662515, 0.80035114], [133.09, 208.01562102940028, 0.75876397], [133.1, 207.36480692752704, 0.60137326], [133.11, 206.99872136878872, 0.30438536], [133.12, 214.97874577733353, 0.42625713], [133.13, 241.85092293850286, 0.26158184], [133.14, 261.85785367667256, 0.18684967], [133.15, 280.0519798357892, 0.1605628], [133.16, 306.6902710903505, 0.090570375], [133.17, 336.2516227774657, 0.06712908], [133.18, 359.5510421081423, 0.09270356], [133.19, 396.18998639875804, 0.1420646], [133.2, 435.18440638492046, 0.07690195], [133.21, 466.47177806502276, 0.14257649], [133.22, 475.0758218668401, 0.14835422], [133.23, 474.1338796944569, 0.13547419], [133.24, 469.45546263780074, 0.2450323], [133.25, 475.1993289930005, 0.25358447], [133.26, 459.71517617849594, 0.13302101], [133.27, 449.69248016917396, 0.24152857], [133.28, 427.51911238509945, 0.3459384], [133.29, 383.54746420652964, 0.6523448], [133.3, 372.5260468772223, 0.5829988], [133.31, 345.1230350936174, 0.7486092], [133.32, 324.22340111989337, 0.66739964], [133.33, 311.969791742447, 0.7280088], [133.34, 290.0188217314054, 0.6105703], [133.35, 275.09480408214705, 0.6730529], [133.36, 253.5195336843192, 0.50548613], [133.37, 237.71054160879262, 0.40959477], [133.38, 231.1255624076381, 0.51970613], [133.39, 232.19829846846838, 0.5175144], [133.4, 233.4434882278404, 0.5525872], [133.41, 233.3190112069786, 0.69120634], [133.42, 232.29212625775457, 0.68705857], [133.43, 232.7187779871997, 0.8053586], [133.44, 231.87201890709431, 0.8017137], [133.45, 231.641177581856, 0.8005165], [133.46, 232.68516064941323, 0.81553054], [133.47, 231.75975270299773, 0.8165293], [133.48, 231.84200744144636, 0.78930104], [133.49, 232.4259342501261, 0.80065566], [133.5, 232.66165971133006, 0.8283458], [133.51, 233.0722140531173, 0.84004253], [133.52, 232.61683090867282, 0.796438], [133.53, 232.42601895648474, 0.8324813], [133.54, 232.89161693279846, 0.84928876], [133.55, 233.05218585801825, 0.8675871], [133.56, 231.73527398699048, 0.85385996], [133.57, 231.6302710644194, 0.8450957], [133.58, 232.7026562668843, 0.8616226], [133.59, 232.57378510648994, 0.8445232], [133.6, 232.3407761229544, 0.8124388], [133.61, 231.49539718671969, 0.81840205], [133.62, 232.61840514922736, 0.8290704], [133.63, 232.52159427128478, 0.8177741], [133.64, 233.24167616622074, 0.82849663], [133.65, 232.41903122630703, 0.80622405], [133.66, 232.35485562256446, 0.7840095], [133.67, 232.3493700743308, 0.7857718], [133.68, 232.5999984452995, 0.777734], [133.69, 231.92743790967455, 0.7701839], [133.7, 232.27579750556123, 0.7581769], [133.71, 233.62701091384332, 0.7861339], [133.72, 233.80554300681786, 0.7890297], [133.73, 233.0024182652018, 0.767651], [133.74, 231.95116330860526, 0.7279562], [133.75, 232.86110657984875, 0.77016884], [133.76, 233.55984535655392, 0.780975], [133.77, 232.32085576215493, 0.6854013], [133.78, 230.88433894415843, 0.59041315], [133.79, 232.60085037315253, 0.70946765], [133.8, 233.31077746768176, 0.60585606], [133.81, 231.43004500509065, 0.6837952], [133.82, 231.8944192110311, 0.6693453], [133.83, 233.30956259464372, 0.72140205], [133.84, 233.49129434520947, 0.6706004], [133.85, 232.99040530706324, 0.6502536], [133.86, 231.23311334812624, 0.5544078], [133.87, 232.40512781604477, 0.48038545], [133.88, 233.91176432244833, 0.37485778], [133.89, 233.98466357258684, 0.3670045], [133.9, 234.923398972868, 0.22603495], [133.91, 234.08372098753432, 0.26109132], [133.92, 219.93294451432382, 0.15874517], [133.93, 209.33491966827162, 0.20131482], [133.94, 210.26170281463976, 0.23239765], [133.95, 210.3427299211413, 0.17034888], [133.96, 209.29299904216919, 0.23101774], [133.97, 209.2165618777139, 0.4332107], [133.98, 210.88029299016557, 0.366435], [133.99, 211.87346460198341, 0.25205594], [134.0, 210.63123412343114, 0.34526232], [134.01, 209.1263432333979, 0.5358888], [134.02, 185.1171062150334, 0.43899652], [134.03, 166.42545619864933, 0.38291776], [134.04, 147.9036080947352, 0.5250397], [134.05, 129.77391280352748, 0.57375634], [134.06, 116.03045096651331, 0.49128422], [134.07, 104.90005448862883, 0.37403843], [134.08, 90.74929601136205, 0.3375734], [134.09, 84.06297784469365, 0.3323385], [134.1, 74.22647384826423, 0.20732419], [134.11, 64.9701847893138, 0.07226979], [134.12, 56.6925272148828, 0.13422279], [134.13, 52.07664756355928, 0.17172484], [134.14, 51.58471533583882, 0.42609447], [134.15, 52.14287482681356, 0.51177883], [134.16, 52.668419347473645, 0.6871144], [134.17, 52.67133606447998, 0.6046762], [134.18, 52.74014438681136, 0.49409968], [134.19, 52.11587492683315, 0.40141892], [134.2, 52.3480491725925, 0.47297445], [134.21, 53.14476016461734, 0.26697168], [134.22, 53.40081926600601, 0.42059386], [134.23, 53.284370596241565, 0.35628745], [134.24, 52.49426764246359, 0.21939954], [134.25, 53.40230320103753, 0.15963061], [134.26, 53.42170901845181, 0.37956482], [134.27, 54.176586581690984, 0.3489588], [134.28, 53.52599957390649, 0.15663417], [134.29, 54.359367603453606, 0.08926362], [134.3, 53.56610057963927, 0.16640872], [134.31, 54.70271036161006, 0.34005502], [134.32, 54.403150723795555, 0.25194463], [134.33, 54.54992282966383, 0.22045617], [134.34, 52.895766333026614, 0.061016407], [134.35, 54.31220008323771, 0.16080937], [134.36, 54.92293924483516, 0.24941173], [134.37, 54.94813359350832, 0.49639702], [134.38, 54.6876071512815, 0.18276747], [134.39, 59.418982833350995, 0.092458], [134.4, 69.26850769467032, 0.2700089], [134.41, 77.0946703433192, 0.29296893], [134.42, 87.84847169156619, 0.4699561], [134.43, 97.5443389512258, 0.5786938], [134.44, 111.8528963769536, 0.72703516], [134.45, 118.57821423896681, 0.6932418], [134.46, 139.2979142672828, 0.6196247], [134.47, 153.8240318874531, 0.53498], [134.48, 169.6297384316303, 0.43143997], [134.49, 185.63595893238912, 0.43474463], [134.5, 212.1569032607418, 0.4325006], [134.51, 231.98193014571325, 0.33528283], [134.52, 233.28009278518277, 0.23255648], [134.53, 232.17810777250781, 0.34099057], [134.54, 231.47454333053759, 0.37044683], [134.55, 226.80052627601512, 0.32820916], [134.56, 224.4417576449595, 0.23494472], [134.57, 220.99896949315692, 0.35343888], [134.58, 220.16638032785553, 0.18974286], [134.59, 216.58468523729326, 0.18923104], [134.6, 233.56400302865896, 0.16409175], [134.61, 246.1545353987829, 0.160956], [134.62, 253.48550428492447, 0.11574844], [134.63, 254.98014930812047, 0.10080624], [134.64, 275.469850872935, 0.37346196], [134.65, 278.1907754131564, 0.5677946], [134.66, 278.5884966590065, 0.5727343], [134.67, 276.88278281301814, 0.6152098], [134.68, 275.92772044696585, 0.71773595], [134.69, 274.6405493908907, 0.7209538], [134.7, 274.399860574454, 0.6893646], [134.71, 275.5402321532068, 0.4844387], [134.72, 274.61517344290644, 0.33845016], [134.73, 279.1121721962663, 0.24655324], [134.74, 281.5680759851923, 0.15594211], [134.75, 284.7576092124859, 0.19623704], [134.76, 284.9068404194714, 0.11924904], [134.77, 283.613665969822, 0.15823582], [134.78, 281.33115464821543, 0.11147738], [134.79, 283.9395745119506, 0.10299658], [134.8, 282.7702220755694, 0.09972871], [134.81, 280.62166022834, 0.108599424], [134.82, 282.78848328643613, 0.15481816], [134.83, 284.17563626893303, 0.3378255], [134.84, 284.0682729565312, 0.4666351], [134.85, 283.40270740658895, 0.47316113], [134.86, 283.9606457968644, 0.6418204], [134.87, 286.459287487623, 0.6172196], [134.88, 284.61113397556187, 0.5992456], [134.89, 286.2378968709716, 0.6538704], [134.9, 285.2996364040748, 0.67267096], [134.91, 285.8752428359383, 0.71962506], [134.92, 285.9835255064708, 0.6631309], [134.93, 284.2172590436303, 0.6529374], [134.94, 284.9905802143158, 0.6593903], [134.95, 283.9126203194916, 0.7307584], [134.96, 283.56399029567046, 0.7112541], [134.97, 282.5110007658694, 0.7014148], [134.98, 279.1554822627016, 0.7931342], [134.99, 277.2688410222873, 0.81442], [135.0, 273.73264578800547, 0.8160474], [135.01, 268.1114636552075, 0.80915856], [135.02, 256.48134195209616, 0.60805523], [135.03, 253.89872452462146, 0.22152008], [135.04, 253.57929448995336, 0.14951609], [135.05, 262.99261948863864, 0.4214802], [135.06, 266.7500420359701, 0.57992166], [135.07, 268.9834723473599, 0.75952303], [135.08, 272.22143125600957, 0.80113584], [135.09, 275.2530946653303, 0.8476274], [135.1, 277.05685192008747, 0.88310885], [135.11, 277.378699198947, 0.88479155], [135.12, 277.46665474529317, 0.8788002], [135.13, 277.41214624230736, 0.86718506], [135.14, 277.09123437507355, 0.86346495], [135.15, 277.70028835778214, 0.8739492], [135.16, 278.9161472044517, 0.88582474], [135.17, 279.73541251761196, 0.87104595], [135.18, 279.90674468131095, 0.8665623], [135.19, 279.45089749682006, 0.8828562], [135.2, 278.66710181480744, 0.89613765], [135.21, 278.05038790554784, 0.9007753], [135.22, 276.60529969362324, 0.864297], [135.23, 275.4086021975005, 0.8558402], [135.24, 273.10027810612206, 0.8275172], [135.25, 270.5728011602098, 0.8212853], [135.26, 269.06611744578066, 0.8107833], [135.27, 267.68882086900925, 0.76732713], [135.28, 267.980016507367, 0.70139223], [135.29, 270.9884991615711, 0.7904424], [135.3, 273.17364096595657, 0.76948535], [135.31, 277.4700835034935, 0.7781491], [135.32, 279.4542349755559, 0.8359984], [135.33, 278.9740803255992, 0.8690131], [135.34, 277.07043157681983, 0.85641575], [135.35, 275.43533981357973, 0.85062337], [135.36, 273.9533825120999, 0.84046596], [135.37, 273.7673055648123, 0.8425083], [135.38, 274.41180968901466, 0.8502151], [135.39, 275.4742205938627, 0.8713715], [135.4, 275.90218404875975, 0.88243276], [135.41, 276.4655106598274, 0.88323265], [135.42, 276.9766764917908, 0.9013193], [135.43, 276.9115104134084, 0.8664932], [135.44, 277.7526267843734, 0.8302309], [135.45, 278.55998339779075, 0.7662835], [135.46, 275.7835763373739, 0.7834423], [135.47, 272.6134918402088, 0.8214458], [135.48, 268.0430832649322, 0.84479517], [135.49, 263.72757014713864, 0.81918174], [135.5, 258.7535282306293, 0.68632406], [135.51, 253.0015095005014, 0.5565717], [135.52, 252.1342591987496, 0.6631538], [135.53, 258.025114973995, 0.47866863], [135.54, 270.1638988215813, 0.43813935], [135.55, 274.9614106055034, 0.75050807], [135.56, 276.94651716776144, 0.8414547], [135.57, 278.4367221978887, 0.8884895], [135.58, 278.977836378087, 0.8832448], [135.59, 277.5208123532842, 0.888181], [135.6, 275.647457364256, 0.873776], [135.61, 274.3139604802043, 0.87073827], [135.62, 274.3600710526178, 0.8539176], [135.63, 274.9153161627982, 0.83798605], [135.64, 276.20206167485077, 0.75425863], [135.65, 277.194288895315, 0.67482555], [135.66, 278.12973961357454, 0.66574705], [135.67, 279.4181176802779, 0.6697575], [135.68, 279.4298376198353, 0.7477435], [135.69, 278.94984368361287, 0.78032994], [135.7, 278.1359451657445, 0.7245743], [135.71, 276.70746779053684, 0.6810246], [135.72, 274.72945800125484, 0.53120613], [135.73, 270.9518911687468, 0.6645321], [135.74, 269.82961914722523, 0.6463079], [135.75, 270.9904366964238, 0.6502199], [135.76, 271.5361900054058, 0.58067685], [135.77, 271.21239961904973, 0.34695804], [135.78, 271.78534317788393, 0.14756973], [135.79, 271.4662451529491, 0.10977223], [135.8, 272.44852696797153, 0.15538684], [135.81, 272.1383272665242, 0.06999429], [135.82, 270.876146329819, 0.06599185], [135.83, 258.8634394733266, 0.06351877], [135.84, 221.58920046485935, 0.08784323], [135.85, 208.31163452771216, 0.31105715], [135.86, 208.71467160371606, 0.29641423], [135.87, 208.34576994460537, 0.12928075], [135.88, 208.27652246838855, 0.16979462], [135.89, 209.90625448106275, 0.07585597], [135.9, 216.5455530444695, 0.09786205], [135.91, 229.34682114235028, 0.20766892], [135.92, 244.2541013923256, 0.09074658], [135.93, 256.7044776101138, 0.111359596], [135.94, 262.0408513703672, 0.14948381], [135.95, 265.4421167750828, 0.17479979], [135.96, 266.8678638605488, 0.1454748], [135.97, 278.26923557321925, 0.20866211], [135.98, 276.2035974384873, 0.4632243], [135.99, 270.8819802706578, 0.6779204], [136.0, 271.0958891973284, 0.8364162], [136.01, 271.811519160067, 0.8647096], [136.02, 274.37044812215686, 0.8143921], [136.03, 276.66036993861655, 0.8139484], [136.04, 277.2304903804583, 0.8498624], [136.05, 277.1133603150211, 0.8350852], [136.06, 276.84806353083604, 0.84629864], [136.07, 276.6238485446965, 0.83749586], [136.08, 276.42766970686176, 0.8577123], [136.09, 276.0876528516103, 0.8542379], [136.1, 275.82553223185226, 0.83040816], [136.11, 276.19558623604286, 0.76006275], [136.12, 278.06566961282283, 0.6258019], [136.13, 279.18031185759946, 0.5252927], [136.14, 279.1902738885958, 0.5792934], [136.15, 278.92376792297154, 0.27345076], [136.16, 257.9127246026886, 0.42432407], [136.17, 232.57140144606234, 0.55007523], [136.18, 233.64431911003223, 0.69217753], [136.19, 233.53171289085012, 0.7067786], [136.2, 232.13395628323215, 0.63255155], [136.21, 232.92332542192017, 0.6325029], [136.22, 232.9945936003024, 0.6087474], [136.23, 234.25623647953836, 0.6583117], [136.24, 234.34478283093387, 0.7940344], [136.25, 234.25687877353778, 0.80611396], [136.26, 232.47825119680107, 0.7688291], [136.27, 232.95612530663217, 0.7945762], [136.28, 232.53881169082217, 0.75105894], [136.29, 232.60482247777094, 0.68832177], [136.3, 232.62719483641035, 0.47978085], [136.31, 207.05081924022045, 0.0851337], [136.32, 182.71145296876637, 0.11858607], [136.33, 183.05541173195843, 0.12348667], [136.34, 183.14335327094386, 0.2434656], [136.35, 183.06797208721798, 0.28451696], [136.36, 182.32739782843421, 0.24262698], [136.37, 182.60257918605103, 0.24217354], [136.38, 181.65042954259607, 0.19745007], [136.39, 182.20621097453974, 0.21763293], [136.4, 182.35479004117965, 0.20881382], [136.41, 181.859428240277, 0.25118494], [136.42, 181.69882525372253, 0.13614579], [136.43, 181.69684963046393, 0.16476001], [136.44, 181.4156353296878, 0.15436187], [136.45, 190.1670339298043, 0.39215338], [136.46, 195.38228951654708, 0.5643044], [136.47, 196.6866972289884, 0.5117092], [136.48, 201.8766933861082, 0.44596797], [136.49, 207.99142278376667, 0.5855064], [136.5, 210.4400403132163, 0.5672099], [136.51, 210.23260323015063, 0.6553211], [136.52, 208.36484367464158, 0.7321802], [136.53, 206.34066068074927, 0.80434847], [136.54, 205.39528404349014, 0.85465693], [136.55, 205.71138676974246, 0.8668202], [136.56, 206.58049825512268, 0.8438526], [136.57, 209.26494848799445, 0.77119714], [136.58, 211.7977280298369, 0.7650828], [136.59, 211.50012786420504, 0.77706295], [136.6, 209.19192251554483, 0.7887154], [136.61, 207.24208405382984, 0.8258536], [136.62, 205.32396069952966, 0.7899687], [136.63, 201.72798208776783, 0.6073869], [136.64, 189.00199811166885, 0.32130474], [136.65, 182.73168886835782, 0.53939867], [136.66, 175.52390826279952, 0.5220579], [136.67, 170.34102466374054, 0.6844042], [136.68, 167.6851073146061, 0.71750706], [136.69, 166.42037803934687, 0.7156106], [136.7, 165.12121542769958, 0.7100086], [136.71, 164.97045454542013, 0.67787087], [136.72, 167.50358798065704, 0.6670387], [136.73, 171.7466715818614, 0.6598458], [136.74, 176.4589026635553, 0.72291356], [136.75, 177.12333266282042, 0.7825587], [136.76, 177.09274676206863, 0.7651345], [136.77, 175.94767859561202, 0.74374264], [136.78, 174.50200023210613, 0.65878624], [136.79, 172.69117049551596, 0.67794895], [136.8, 171.90429713618013, 0.73431194], [136.81, 172.73081143633783, 0.73014694], [136.82, 172.90150729235228, 0.71792746], [136.83, 173.66944927634273, 0.6623413], [136.84, 175.38186618220632, 0.64750534], [136.85, 176.87420685374235, 0.65042967], [136.86, 179.06630163950274, 0.7200144], [136.87, 181.84196908745804, 0.66456115], [136.88, 182.7391041285026, 0.5729749], [136.89, 183.20324807482606, 0.5656924], [136.9, 182.3054954892226, 0.5151382], [136.91, 178.31191251849233, 0.5995204], [136.92, 176.9942636807471, 0.72090656], [136.93, 179.6367216273399, 0.7474479], [136.94, 181.3157750955337, 0.6916931], [136.95, 185.49203934035796, 0.6741686], [136.96, 190.7749212623812, 0.5210073], [136.97, 202.5381302115328, 0.38611498], [136.98, 206.7151301128137, 0.43344918], [136.99, 208.3448830079052, 0.5367048], [137.0, 209.03206503303255, 0.5533872], [137.01, 208.21767535977247, 0.49643692], [137.02, 206.71234245675493, 0.48011082], [137.03, 206.01950851006777, 0.3974662], [137.04, 206.0008369247997, 0.43138447], [137.05, 206.56748677914348, 0.43225053], [137.06, 206.86814181151445, 0.4976094], [137.07, 207.897398226149, 0.6870385], [137.08, 209.2450743221721, 0.62999755], [137.09, 209.30301169730205, 0.65158314], [137.1, 209.283387586141, 0.55837834], [137.11, 209.58900288307203, 0.59738475], [137.12, 210.04728055906395, 0.71750736], [137.13, 210.84362667719273, 0.6860989], [137.14, 210.9049042944934, 0.6721094], [137.15, 209.1015365606558, 0.45841545], [137.16, 206.00382143696623, 0.6237922], [137.17, 205.1794433581355, 0.76779246], [137.18, 204.44646398749117, 0.80188054], [137.19, 204.46862471417052, 0.8352515], [137.2, 205.10357749485354, 0.8317006], [137.21, 206.38919785967744, 0.821181], [137.22, 207.63249990800267, 0.796249], [137.23, 209.16845652795897, 0.71288043], [137.24, 209.97259086888772, 0.6275986], [137.25, 208.75882513232563, 0.5936761], [137.26, 207.9043668993779, 0.5904571], [137.27, 207.01976437527787, 0.69734734], [137.28, 206.6864851696318, 0.7671452], [137.29, 206.3129330876725, 0.80554634], [137.3, 205.05655110144, 0.7047627], [137.31, 202.61361191070904, 0.7038081], [137.32, 200.37401375557704, 0.78114164], [137.33, 195.86550577616623, 0.78464776], [137.34, 192.7370587509762, 0.82000405], [137.35, 190.7911178996122, 0.83740425], [137.36, 189.66229512863777, 0.8376002], [137.37, 190.93744674721975, 0.83198494], [137.38, 193.57923027732457, 0.7826469], [137.39, 197.91072598297094, 0.67912287], [137.4, 205.52889679456393, 0.7590332], [137.41, 207.88585127612617, 0.85208374], [137.42, 207.78470859680706, 0.8591756], [137.43, 207.02401727472937, 0.83074594], [137.44, 206.63069914977672, 0.8251779], [137.45, 206.5333053426162, 0.78753567], [137.46, 206.5193881475267, 0.61927414], [137.47, 207.20864174465572, 0.6010383], [137.48, 208.7353558687988, 0.5462244], [137.49, 210.21459566537234, 0.63859147], [137.5, 210.8031437775945, 0.73678005], [137.51, 210.00142431821268, 0.72727704], [137.52, 208.07494246431258, 0.7662862], [137.53, 206.78429557176884, 0.748045], [137.54, 205.54645527489714, 0.7522052], [137.55, 204.48727213044094, 0.70625967], [137.56, 202.95000530935198, 0.73059744], [137.57, 200.16020758307712, 0.6586271], [137.58, 197.95433654318236, 0.64475536], [137.59, 196.06759111640304, 0.60313493], [137.6, 194.7641873386166, 0.22934277], [137.61, 202.72925861539446, 0.26718536], [137.62, 205.99457414523732, 0.58947796], [137.63, 206.92732754017302, 0.41382337], [137.64, 206.12068291725635, 0.23388839], [137.65, 206.4808208335697, 0.25868776], [137.66, 205.86622871300037, 0.13014159], [137.67, 191.4044845095324, 0.30384344], [137.68, 181.47683236697137, 0.45996732], [137.69, 180.75626673287826, 0.47638485], [137.7, 179.62539243537836, 0.28690222], [137.71, 173.1903935053953, 0.304384], [137.72, 172.9422833562836, 0.3894965], [137.73, 173.1509952941175, 0.34472975], [137.74, 175.01988042333943, 0.39105552], [137.75, 176.26159856335764, 0.3419862], [137.76, 179.24746049005105, 0.4400801], [137.77, 182.44262772054978, 0.5677832], [137.78, 183.38334386843982, 0.46200624], [137.79, 185.06664411297916, 0.2728065], [137.8, 185.64429271032512, 0.31681255], [137.81, 186.67553144174894, 0.31971243], [137.82, 207.7375597335741, 0.31478614], [137.83, 208.20800394023826, 0.40141773], [137.84, 208.93412996352495, 0.3804169], [137.85, 200.053133354919, 0.26827177], [137.86, 182.57162516667123, 0.30809456], [137.87, 181.30407630750867, 0.6516395], [137.88, 182.2589403997589, 0.57307905], [137.89, 185.4566236443996, 0.4248197], [137.9, 200.22992656403767, 0.2778107], [137.91, 203.96633332866384, 0.6108571], [137.92, 206.18322584077592, 0.65574193], [137.93, 206.93405823622587, 0.7258966], [137.94, 207.2708892433781, 0.79351664], [137.95, 206.7210132356689, 0.8187305], [137.96, 205.8702792753071, 0.8241252], [137.97, 204.99709729044366, 0.84100544], [137.98, 205.5796726891681, 0.848916], [137.99, 207.32404383420356, 0.8239527], [138.0, 208.5168843495973, 0.7957708], [138.01, 209.24249309909897, 0.7526653], [138.02, 208.58755729296516, 0.75531286], [138.03, 209.48985213306406, 0.7457191], [138.04, 210.95733269437397, 0.7762464], [138.05, 211.22351383643675, 0.8432549], [138.06, 210.7936141499776, 0.8506626], [138.07, 210.12939547081206, 0.8289979], [138.08, 209.51904343698317, 0.8422138], [138.09, 208.52717058206096, 0.8786523], [138.1, 207.2570028531206, 0.8844757], [138.11, 205.97000366601407, 0.87692636], [138.12, 204.74747198739013, 0.8501742], [138.13, 204.7463024953347, 0.84259063], [138.14, 205.59996932095453, 0.8707606], [138.15, 207.00810825816478, 0.8466627], [138.16, 207.87220138300685, 0.84293544], [138.17, 208.8062065581788, 0.8108509], [138.18, 209.05488865916524, 0.80225754], [138.19, 208.24514462514432, 0.7615058], [138.2, 207.58997087648623, 0.83411074], [138.21, 207.65048309146306, 0.83154005], [138.22, 206.67233208187167, 0.8337774], [138.23, 205.8348458641822, 0.8490974], [138.24, 204.06821848709484, 0.8329906], [138.25, 202.30848479416323, 0.80388814], [138.26, 199.2127729029991, 0.7154241], [138.27, 195.98463654297365, 0.69294715], [138.28, 191.19081213373016, 0.732354], [138.29, 187.9452782768629, 0.7390718], [138.3, 183.73672086021708, 0.6589542], [138.31, 183.53139493130286, 0.50836504], [138.32, 189.22056822446083, 0.22897455], [138.33, 201.78912006982134, 0.29524556], [138.34, 205.2881721098045, 0.5177131], [138.35, 206.05173737256206, 0.24740832], [138.36, 196.53257667397045, 0.49068043], [138.37, 197.6783532779912, 0.7252362], [138.38, 199.41176887913727, 0.73425716], [138.39, 203.08768051694997, 0.75129575], [138.4, 206.25544020743843, 0.8185409], [138.41, 207.79940274716972, 0.8706819], [138.42, 207.95802158208602, 0.86953986], [138.43, 207.48320080081757, 0.8737863], [138.44, 207.5346687407764, 0.8775808], [138.45, 207.62171354742762, 0.8655004], [138.46, 207.3793859247445, 0.8876879], [138.47, 207.16319039190896, 0.85254896], [138.48, 206.04867702737977, 0.77039635], [138.49, 207.3454373797431, 0.58233684], [138.5, 208.25216714409734, 0.44926324], [138.51, 201.65651206104658, 0.20864747], [138.52, 194.4068607012266, 0.2966721], [138.53, 196.25731006412957, 0.22877532], [138.54, 201.80361521053817, 0.10462544], [138.55, 209.88731281599422, 0.12073808], [138.56, 217.7496688240608, 0.3726923], [138.57, 226.712126993555, 0.30072725], [138.58, 230.47635272908255, 0.33045402], [138.59, 230.64417039774298, 0.23980628], [138.6, 232.87262268925116, 0.4302832], [138.61, 237.4616940386299, 0.6492335], [138.62, 238.49250108410774, 0.74967426], [138.63, 237.8563396419341, 0.7997836], [138.64, 235.58245433965044, 0.7670721], [138.65, 233.26086779384303, 0.82496923], [138.66, 230.13416611962987, 0.80945265], [138.67, 227.15294388178765, 0.81894255], [138.68, 224.80342790080667, 0.76543], [138.69, 221.03909213458041, 0.69059575], [138.7, 218.60790086561104, 0.6278056], [138.71, 222.72328932994037, 0.38410452], [138.72, 231.65154183304762, 0.5976797], [138.73, 232.5803546488274, 0.7334043], [138.74, 232.5097429369798, 0.7608105], [138.75, 232.69237354876088, 0.81136215], [138.76, 232.45015624783971, 0.7773326], [138.77, 231.38408163323464, 0.6561558], [138.78, 229.60363819436307, 0.5535041], [138.79, 230.6844020469445, 0.15258056], [138.8, 234.3511571523543, 0.15791641], [138.81, 233.0300927482949, 0.09550638], [138.82, 231.31376722438293, 0.21293466], [138.83, 228.23098580915376, 0.17887007], [138.84, 228.10246243991907, 0.47219908], [138.85, 231.73418010537176, 0.41371325], [138.86, 235.187937514673, 0.20084772], [138.87, 260.16007600445033, 0.49063432], [138.88, 272.23442388120003, 0.64810455], [138.89, 274.78754740921784, 0.76494825], [138.9, 277.3313233526992, 0.82480234], [138.91, 278.4197951211814, 0.8369182], [138.92, 277.2659483739082, 0.76123136], [138.93, 275.7326030129894, 0.71584064], [138.94, 275.3904297040624, 0.52768034], [138.95, 275.7655493019719, 0.50881356], [138.96, 275.92175237533723, 0.6462245], [138.97, 275.1407359793253, 0.64828736], [138.98, 274.5439917039855, 0.63008523], [138.99, 273.88376744260603, 0.57521963], [139.0, 274.2664343814211, 0.45233816], [139.01, 276.53759876952404, 0.50535166], [139.02, 278.3368632107739, 0.510835], [139.03, 280.8431096196618, 0.7406381], [139.04, 282.0487742084681, 0.81597674], [139.05, 282.6686121152114, 0.80340534], [139.06, 283.68465383012085, 0.72855455], [139.07, 283.90518958982733, 0.5431181], [139.08, 284.46106563705996, 0.37102205], [139.09, 281.41200438972, 0.19482927], [139.1, 282.06691201751835, 0.5377518], [139.11, 281.5994983821754, 0.5558742], [139.12, 280.2300230129919, 0.6063484], [139.13, 280.10605855176345, 0.6086955], [139.14, 282.56280309465285, 0.6305737], [139.15, 284.5431308355596, 0.60620725], [139.16, 284.0305563635264, 0.59836173], [139.17, 281.93367162708506, 0.5715998], [139.18, 281.079337633218, 0.48790544], [139.19, 279.6354590600805, 0.35850406], [139.2, 273.29832472379155, 0.28566986], [139.21, 269.1892970814243, 0.4308578], [139.22, 267.22103095889213, 0.64582133], [139.23, 266.6247267645502, 0.5071489], [139.24, 269.41182173752657, 0.5502613], [139.25, 272.83197073006556, 0.599436], [139.26, 275.6511989670109, 0.6285813], [139.27, 277.91449452818773, 0.72219855], [139.28, 278.11746921811186, 0.76141983], [139.29, 277.7334227942348, 0.7217818], [139.3, 276.7920501964094, 0.65276563], [139.31, 275.6601116990553, 0.6827545], [139.32, 276.2762674154046, 0.7863806], [139.33, 276.49733086007825, 0.7902539], [139.34, 275.86187117795544, 0.6415474], [139.35, 275.3568646934299, 0.7849794], [139.36, 275.357601854064, 0.8550622], [139.37, 274.848243891477, 0.8589935], [139.38, 275.133456780218, 0.8750816], [139.39, 275.7403315590693, 0.8815506], [139.4, 277.2039455412261, 0.87053597], [139.41, 278.7996225048826, 0.8740456], [139.42, 279.2387038985699, 0.7731035], [139.43, 278.40134047024503, 0.7066386], [139.44, 276.91382314209864, 0.6971064], [139.45, 276.2598058562965, 0.75672823], [139.46, 276.61029924308207, 0.7426435], [139.47, 276.9968385151385, 0.76221234], [139.48, 277.4018945223611, 0.72727513], [139.49, 276.86081888322155, 0.5093242], [139.5, 276.67567882199796, 0.62401354], [139.51, 276.05046272208386, 0.614246], [139.52, 275.7880026748925, 0.54611033], [139.53, 276.39461641869764, 0.71288574], [139.54, 276.75529738623106, 0.7788373], [139.55, 277.86975180623034, 0.8070166], [139.56, 278.3891037748881, 0.8106907], [139.57, 278.7546920773699, 0.774465], [139.58, 278.9429537942271, 0.65002245], [139.59, 279.43016516693314, 0.63610864], [139.6, 278.1658958871517, 0.67585146], [139.61, 277.5711218356104, 0.75868064], [139.62, 278.63608137030377, 0.63105726], [139.63, 277.80264489744957, 0.5776147], [139.64, 275.95721571199977, 0.6324974], [139.65, 272.4460869863438, 0.7934649], [139.66, 267.6826477109286, 0.7741445], [139.67, 261.7557673863343, 0.77609754], [139.68, 260.15132615525255, 0.74530333], [139.69, 259.5645080486295, 0.746857], [139.7, 261.13885834464946, 0.7625861], [139.71, 263.14571312865684, 0.50629455], [139.72, 236.50458511846483, 0.68513936], [139.73, 218.46943330516592, 0.8090579], [139.74, 191.03831715863393, 0.6854602], [139.75, 170.40191052082633, 0.6527778], [139.76, 155.0131707534536, 0.7238002], [139.77, 138.61065607714932, 0.8824335], [139.78, 139.00276947065362, 0.9000554], [139.79, 138.9983067447782, 0.9102755], [139.8, 138.761576571457, 0.9055276], [139.81, 138.6134198442017, 0.8980533], [139.82, 138.3845925811122, 0.88778764], [139.83, 138.48954039110123, 0.8776023], [139.84, 138.2289606947352, 0.8801139], [139.85, 137.8362599707731, 0.88401425], [139.86, 137.52893951797552, 0.8541331], [139.87, 137.39983520483975, 0.857191], [139.88, 137.4394076933259, 0.837945], [139.89, 137.07387906835035, 0.7425734], [139.9, 137.7189682059161, 0.6892851], [139.91, 137.51866562806381, 0.688375], [139.92, 137.901789990206, 0.6980188], [139.93, 137.3333654040933, 0.7868708], [139.94, 136.88538786825842, 0.7812929], [139.95, 136.4325336294835, 0.7781116], [139.96, 135.968045212609, 0.7536007], [139.97, 135.55154029957384, 0.68397355], [139.98, 137.01160604579033, 0.7034491], [139.99, 138.63336058015753, 0.7532898], [140.0, 139.8784722942149, 0.7735945], [140.01, 139.35935488665797, 0.72305334], [140.02, 137.7524319814135, 0.69248205], [140.03, 136.80520322101663, 0.52115], [140.04, 136.49728665005222, 0.34778675], [140.05, 131.88882570107398, 0.35220188], [140.06, 134.59310922346384, 0.200748], [140.07, 134.6115448864661, 0.6437348], [140.08, 135.66042744325262, 0.61157453], [140.09, 135.58992630694584, 0.6803042], [140.1, 135.8284961486473, 0.66694], [140.11, 135.77960145782907, 0.374466], [140.12, 137.68444180540348, 0.43496633], [140.13, 136.26483901495914, 0.38373518], [140.14, 136.48178416380728, 0.33396825], [140.15, 147.1845784154482, 0.32752514], [140.16, 164.496148804986, 0.40908358], [140.17, 176.63428301511217, 0.28920633], [140.18, 177.93338637571372, 0.46805844], [140.19, 173.6341277843838, 0.5629537], [140.2, 170.01775590561584, 0.5866805], [140.21, 170.87161030159257, 0.48740718], [140.22, 171.30696695698046, 0.54386103], [140.23, 177.93357306009125, 0.29793108], [140.24, 194.19178669706542, 0.5228925], [140.25, 196.948678681636, 0.7053979], [140.26, 199.12849831894218, 0.725929], [140.27, 202.17105445537086, 0.6873411], [140.28, 204.2767813906494, 0.67111766], [140.29, 204.86429969473534, 0.63508517], [140.3, 203.5334938750421, 0.5709458], [140.31, 200.55833027400564, 0.69053113], [140.32, 198.4471635971147, 0.805795], [140.33, 198.1180767369112, 0.8027355], [140.34, 198.49760165251013, 0.7885543], [140.35, 200.8113133486042, 0.6741563], [140.36, 205.1284808732335, 0.69155794], [140.37, 208.5119190656553, 0.7620905], [140.38, 211.05793035237406, 0.77835274], [140.39, 211.9145525270386, 0.7567476], [140.4, 212.4685403655335, 0.72478116], [140.41, 212.80748117231678, 0.7361131], [140.42, 213.34429880067893, 0.721643], [140.43, 211.61710395707252, 0.66307354], [140.44, 209.4000747266891, 0.67747086], [140.45, 207.15268864852348, 0.7738273], [140.46, 205.42394956326734, 0.83700943], [140.47, 205.60098125228222, 0.8560082], [140.48, 206.03685389635075, 0.84856254], [140.49, 206.8940012875122, 0.82987887], [140.5, 208.927069608081, 0.8120159], [140.51, 211.00495933137057, 0.78891766], [140.52, 212.91078623550368, 0.804354], [140.53, 212.75485641994308, 0.8143712], [140.54, 210.7349884406991, 0.76136494], [140.55, 207.89302743942193, 0.776425], [140.56, 204.37917781909218, 0.78263086], [140.57, 200.84030145210085, 0.7628471], [140.58, 195.29334271883684, 0.7089454], [140.59, 188.94177584295403, 0.67586696], [140.6, 184.66598983923478, 0.7163992], [140.61, 178.45386344388623, 0.62668943], [140.62, 173.58586138481883, 0.64855367], [140.63, 170.0230824095508, 0.7292247], [140.64, 166.71954662286308, 0.6776874], [140.65, 165.57339807175222, 0.6847695], [140.66, 164.30308514739937, 0.4965328], [140.67, 165.1288334990216, 0.24783437], [140.68, 172.3274028615916, 0.15473905], [140.69, 184.35517838355523, 0.24410047], [140.7, 194.71323946371828, 0.2464502], [140.71, 211.22131532898803, 0.26342115], [140.72, 216.45934948845434, 0.21479556], [140.73, 210.38463535988546, 0.19864692], [140.74, 208.68218460558225, 0.5185319], [140.75, 208.74234097083178, 0.7813263], [140.76, 209.0522344404609, 0.81005466], [140.77, 207.94326138079586, 0.80979073], [140.78, 236.71499192546406, 0.7612954], [140.79, 266.8548065901608, 0.74333227], [140.8, 311.0380356115603, 0.7450314], [140.81, 343.94343773466426, 0.7185648], [140.82, 402.7124908046846, 0.4707663], [140.83, 436.44121292996704, 0.5191279], [140.84, 448.3931422276337, 0.7434111], [140.85, 459.50853992270316, 0.7550549], [140.86, 463.3610918797038, 0.8271471], [140.87, 463.5578639125473, 0.87985563], [140.88, 461.83961554676074, 0.88146], [140.89, 458.6742905843818, 0.86954534], [140.9, 452.33606115319907, 0.84185237], [140.91, 446.6571278889393, 0.7963692], [140.92, 438.04776994518414, 0.5388766], [140.93, 414.9730018997409, 0.675793], [140.94, 413.2028350744352, 0.72443265], [140.95, 413.4422589213173, 0.7341383], [140.96, 415.1432727841528, 0.7378416], [140.97, 417.8599321087454, 0.72191614], [140.98, 420.59127331367114, 0.6420861], [140.99, 421.7834155649803, 0.57698214], [141.0, 419.86834415061026, 0.64576346], [141.01, 418.71117091476253, 0.72576135], [141.02, 416.3138199202547, 0.7339268], [141.03, 414.6641396026738, 0.67982686], [141.04, 413.94334975616516, 0.6097371], [141.05, 414.12079412069306, 0.71897876], [141.06, 415.1584262394332, 0.74139196], [141.07, 415.83642017757194, 0.80214155], [141.08, 416.78729371197477, 0.8392054], [141.09, 416.90483667003116, 0.8554267], [141.1, 416.4900401972303, 0.8813349], [141.11, 416.43376355573946, 0.8731993], [141.12, 416.4999284595058, 0.88038373], [141.13, 415.984956362854, 0.87292314], [141.14, 416.0620539566398, 0.8515532], [141.15, 415.7272183823053, 0.8560415], [141.16, 415.9289329103547, 0.83867866], [141.17, 415.85268732949385, 0.82091504], [141.18, 415.4187122181354, 0.7938878], [141.19, 416.0870972084274, 0.69934064], [141.2, 416.36631859341975, 0.5929386], [141.21, 415.06871945139216, 0.4425777], [141.22, 405.5270009277248, 0.47727922], [141.23, 360.17554970689986, 0.5342158], [141.24, 335.9977657195566, 0.53706175], [141.25, 314.18159986651597, 0.49605492], [141.26, 277.40056954209047, 0.4636061], [141.27, 266.37279459144, 0.5145005], [141.28, 244.29831184012684, 0.52236325], [141.29, 214.09933346539904, 0.53408784], [141.3, 206.8839065941718, 0.5874265], [141.31, 207.14562456096488, 0.6674729], [141.32, 206.7427524417992, 0.6082603], [141.33, 207.1579245480184, 0.67606014], [141.34, 207.09755210914804, 0.7302398], [141.35, 206.52229571816753, 0.77625823], [141.36, 206.59260724393135, 0.8025218], [141.37, 205.98095878245806, 0.82036376], [141.38, 205.7907352733992, 0.8211338], [141.39, 205.73610579166984, 0.7773669], [141.4, 203.45865150484974, 0.53613573], [141.41, 200.03165298213005, 0.3361837], [141.42, 192.73262491485366, 0.18088552], [141.43, 185.11054616058712, 0.40570134], [141.44, 184.86217586936263, 0.7213607], [141.45, 182.0811998350859, 0.581474], [141.46, 181.38008306083117, 0.42763785], [141.47, 177.6242328333997, 0.401001], [141.48, 172.82783958356873, 0.57483906], [141.49, 169.11774695803885, 0.3599393], [141.5, 161.27108308414395, 0.4736815], [141.51, 152.9977691714712, 0.50448304], [141.52, 148.1734698326222, 0.6941334], [141.53, 141.11442266431692, 0.75754476], [141.54, 138.56401688479122, 0.6633564], [141.55, 135.92031638916143, 0.29210135], [141.56, 133.82280277342988, 0.2657121], [141.57, 127.63611625122783, 0.20823099], [141.58, 123.16601640273984, 0.3974706], [141.59, 122.44390597010329, 0.4444831], [141.6, 121.26327937076469, 0.57107174], [141.61, 121.54044220521979, 0.55003816], [141.62, 123.54818335935533, 0.49194035], [141.63, 124.71891464602344, 0.5259169], [141.64, 134.11350736763194, 0.5441714], [141.65, 152.0789266539266, 0.49918807], [141.66, 170.45396966148633, 0.47245532], [141.67, 188.81976011820885, 0.24396197], [141.68, 207.24533926322476, 0.32531014], [141.69, 207.1743092363186, 0.47388598], [141.7, 206.7180482692532, 0.54454184], [141.71, 205.27041391907096, 0.39500016], [141.72, 206.4312914340066, 0.32526627], [141.73, 208.73129351347416, 0.32768083], [141.74, 207.9609521477772, 0.26182985], [141.75, 209.30737673357015, 0.30341113], [141.76, 209.0929325995541, 0.3969645], [141.77, 214.3172578997636, 0.35245097], [141.78, 214.549691882435, 0.26423198], [141.79, 209.53084302166155, 0.10400247], [141.8, 192.56090921497926, 0.15298887], [141.81, 181.83958174429347, 0.24780571], [141.82, 178.67574835035398, 0.39228073], [141.83, 172.89457656052193, 0.2547228], [141.84, 157.4518404790179, 0.23404077], [141.85, 151.36032092449858, 0.2765106], [141.86, 152.6081579296157, 0.2460489], [141.87, 154.48632274840892, 0.44708484], [141.88, 159.544617514094, 0.4490522], [141.89, 164.1907708310873, 0.65265906], [141.9, 165.80524422748937, 0.6852297], [141.91, 169.11183907818952, 0.6244704], [141.92, 170.5627782092423, 0.70812243], [141.93, 171.73265591328652, 0.7362626], [141.94, 172.608113122798, 0.7230981], [141.95, 173.30029257970017, 0.75703], [141.96, 174.53691845836357, 0.747133], [141.97, 174.44643757153727, 0.69492066], [141.98, 171.97371057930843, 0.6736965], [141.99, 169.69777255953892, 0.6493721], [142.0, 167.52299573965564, 0.6313412], [142.01, 167.4347297649258, 0.38477358], [142.02, 165.335412688615, 0.15986012], [142.03, 168.40840974227163, 0.18458493], [142.04, 172.58977285938442, 0.4143677], [142.05, 173.9949576910354, 0.29308984], [142.06, 178.7868888470623, 0.3832552], [142.07, 185.22739923296297, 0.5256872], [142.08, 192.43701534874208, 0.35564926], [142.09, 192.7708586383764, 0.2873695], [142.1, 200.8494673058723, 0.42583627], [142.11, 204.32013447165366, 0.4695565], [142.12, 207.01535244254305, 0.6265828], [142.13, 208.31993575781954, 0.68670356], [142.14, 212.07294041913113, 0.50037503], [142.15, 215.9784707566733, 0.6332926], [142.16, 216.7327899781322, 0.6549617], [142.17, 213.3007268805443, 0.4741189], [142.18, 208.54087924880918, 0.5163458], [142.19, 207.11075040924584, 0.5710229], [142.2, 206.51533549031774, 0.64760095], [142.21, 206.15771781261554, 0.7361564], [142.22, 206.4841467526607, 0.46144435], [142.23, 207.669100862093, 0.5331568], [142.24, 210.01020602180222, 0.67812324], [142.25, 212.41925538283465, 0.4986331], [142.26, 213.77565440182082, 0.57225925], [142.27, 214.72213616259188, 0.5678135], [142.28, 217.9979356707882, 0.6682634], [142.29, 220.3913247322542, 0.53911346], [142.3, 235.4269519148417, 0.45951068], [142.31, 236.34686047472186, 0.74178356], [142.32, 237.10413991469602, 0.80322284], [142.33, 235.49788547685625, 0.8160885], [142.34, 233.2053996561731, 0.8457397], [142.35, 232.68451490694167, 0.8382101], [142.36, 232.73588767139532, 0.8336419], [142.37, 232.44445098910285, 0.76390976], [142.38, 232.03720483962684, 0.6461229], [142.39, 231.3942169521076, 0.7331989], [142.4, 231.53103761824758, 0.64545155], [142.41, 231.7779396503387, 0.6571693], [142.42, 231.89282859412214, 0.6533624], [142.43, 231.66399983572435, 0.44311082], [142.44, 232.03125537404898, 0.4050147], [142.45, 230.13990701142038, 0.3881749], [142.46, 227.35718439567418, 0.24837959], [142.47, 223.14121062340192, 0.6194284], [142.48, 219.86765049263937, 0.46648958], [142.49, 216.49052831617337, 0.23182225], [142.5, 215.85691709152508, 0.41491097], [142.51, 220.94330434592928, 0.60066015], [142.52, 219.38134121229143, 0.40066874], [142.53, 214.9495509130312, 0.22529732], [142.54, 213.63820362778165, 0.34345457], [142.55, 214.18591971915885, 0.25965065], [142.56, 205.96215878241168, 0.19933955], [142.57, 231.96711757001827, 0.18873096], [142.58, 262.2751363808102, 0.3232427], [142.59, 261.7796249082177, 0.5862727], [142.6, 265.91214205064585, 0.6984794], [142.61, 268.48558714195167, 0.747999], [142.62, 271.75312669224513, 0.76246816], [142.63, 276.65069800560525, 0.7976514], [142.64, 278.60321490232207, 0.875003], [142.65, 278.3166661345076, 0.87659085], [142.66, 276.40574998628085, 0.84157574], [142.67, 273.9290598350794, 0.8285051], [142.68, 272.6544868519006, 0.82581407], [142.69, 272.33048093825806, 0.78699666], [142.7, 274.2192878154061, 0.78117704], [142.71, 276.2540454200467, 0.61414343], [142.72, 278.79206439121793, 0.5331295], [142.73, 278.8200561602838, 0.5841728], [142.74, 276.6256469693373, 0.7016182], [142.75, 274.2412535076112, 0.66323066], [142.76, 271.4179095710427, 0.7103889], [142.77, 268.7213961006059, 0.5010368], [142.78, 265.9187676827775, 0.30777735], [142.79, 264.6047429236246, 0.1327164], [142.8, 239.3675421908114, 0.2396644], [142.81, 222.00921370819825, 0.1920133], [142.82, 200.687175455746, 0.11201571], [142.83, 185.07410295388564, 0.26102933], [142.84, 167.75701582238113, 0.5047979], [142.85, 154.6415492295968, 0.33232993], [142.86, 137.24410274390607, 0.32998332], [142.87, 138.03548725793308, 0.22539942], [142.88, 138.07296949265483, 0.2862175], [142.89, 137.7728979852553, 0.29086673], [142.9, 137.58677912625336, 0.29771748], [142.91, 137.69231527501424, 0.3471537], [142.92, 138.16185471896216, 0.4293461], [142.93, 138.5933349378305, 0.5594657], [142.94, 137.96009149939985, 0.6237396], [142.95, 138.0269731123265, 0.5635353], [142.96, 137.71201406773758, 0.6207784], [142.97, 137.78703980898229, 0.4046048], [142.98, 137.91674447701564, 0.65370756], [142.99, 138.5194003250091, 0.6641884], [143.0, 140.8376072043812, 0.5426105], [143.01, 141.7376694181518, 0.5896643], [143.02, 142.2731319003884, 0.6564111], [143.03, 142.2208084725787, 0.63616896], [143.04, 142.30656338726453, 0.61691177], [143.05, 142.33706496539727, 0.69292], [143.06, 142.226038389653, 0.734339], [143.07, 141.45055699367364, 0.7029559], [143.08, 139.37627457489026, 0.5919487], [143.09, 137.8194975109682, 0.6565743], [143.1, 136.6964528499496, 0.70595145], [143.11, 137.69739279247688, 0.61977094], [143.12, 139.06357564555543, 0.33605912], [143.13, 140.98585656086405, 0.32917565], [143.14, 143.64073194943813, 0.3696662], [143.15, 149.08949094873068, 0.37252992], [143.16, 152.44259635563142, 0.5290286], [143.17, 154.734602484465, 0.49875352], [143.18, 155.43221939938243, 0.6579315], [143.19, 155.6436971951842, 0.7582344], [143.2, 154.74199762409634, 0.76031387], [143.21, 154.25664329907218, 0.7422804], [143.22, 154.33995147584244, 0.7637653], [143.23, 154.59482163663364, 0.76968414], [143.24, 154.76947686800312, 0.73977023], [143.25, 154.20361121569724, 0.7271874], [143.26, 154.13884434626743, 0.65764844], [143.27, 155.46249447441576, 0.6178961], [143.28, 156.38737429250168, 0.4812381], [143.29, 157.60446256901676, 0.449668], [143.3, 142.9463646964873, 0.30856034], [143.31, 145.76713578589084, 0.28272244], [143.32, 148.89687082854388, 0.30829245], [143.33, 154.01199550031293, 0.33561945], [143.34, 153.38995692427548, 0.44840506], [143.35, 153.4309468121794, 0.2900308], [143.36, 159.0370898457694, 0.3746627], [143.37, 173.2030333876773, 0.4123905], [143.38, 184.93744644579508, 0.22600742], [143.39, 196.75316446270523, 0.16629086], [143.4, 205.33188402024587, 0.18416978], [143.41, 213.89790451569726, 0.15852045], [143.42, 224.7131958620085, 0.20535986], [143.43, 232.89169044363774, 0.16975905], [143.44, 248.0827540426576, 0.15084983], [143.45, 265.1416795938924, 0.14213692], [143.46, 274.6406834830404, 0.13522021], [143.47, 283.81512067082133, 0.29143664], [143.48, 287.1093499589066, 0.5108248], [143.49, 287.0022292946064, 0.68322474], [143.5, 287.5469216774914, 0.70977384], [143.51, 286.64681771137435, 0.6298782], [143.52, 287.5177610929034, 0.7415736], [143.53, 288.04268562997584, 0.8017375], [143.54, 286.46593185067184, 0.7710854], [143.55, 283.69673762471325, 0.7811698], [143.56, 281.49773311007567, 0.83080834], [143.57, 279.86982798025684, 0.82194406], [143.58, 278.65718428808634, 0.8357335], [143.59, 278.0886330511255, 0.785671], [143.6, 276.9733474258005, 0.6997628], [143.61, 277.2306228968997, 0.6664471], [143.62, 278.31599870512537, 0.59045196], [143.63, 278.8102002116895, 0.80206805], [143.64, 278.81736673412394, 0.82448554], [143.65, 277.29814122641267, 0.7123469], [143.66, 275.2178387881245, 0.4673282], [143.67, 275.5951690502706, 0.19911419], [143.68, 282.4447219943008, 0.15074812], [143.69, 280.4013613462803, 0.51659316], [143.7, 278.91465465509566, 0.67088145], [143.71, 277.3682135196137, 0.83456016], [143.72, 274.7717830621564, 0.844767], [143.73, 272.78321528373283, 0.8265569], [143.74, 270.4322076308454, 0.80047244], [143.75, 267.4095888031163, 0.77207595], [143.76, 263.15698793646334, 0.7230143], [143.77, 261.90984680535627, 0.59558594], [143.78, 262.61885755880417, 0.62389123], [143.79, 262.96378077651303, 0.51729614], [143.8, 262.8864745762306, 0.5318606], [143.81, 262.48635496582955, 0.59244955], [143.82, 259.7948139760197, 0.671126], [143.83, 251.62679786889976, 0.51277184], [143.84, 241.774995828262, 0.4149072], [143.85, 230.82344064387007, 0.22290926], [143.86, 221.22436142108742, 0.20003578], [143.87, 214.51836443551997, 0.14935657], [143.88, 206.4023469669344, 0.31401664], [143.89, 199.43428100268707, 0.29341108], [143.9, 188.00779504124708, 0.7451624], [143.91, 188.64791075950734, 0.70827276], [143.92, 194.97420544785564, 0.3450169], [143.93, 213.00095185354394, 0.36628208], [143.94, 229.34426917846096, 0.48497507], [143.95, 233.2928551353906, 0.47066638], [143.96, 234.39298157379685, 0.6872974], [143.97, 238.13319452741814, 0.7574075], [143.98, 241.23628208461542, 0.75112665], [143.99, 241.71132093462208, 0.7940133], [144.0, 240.81984802383718, 0.6234573], [144.01, 238.87069381949243, 0.50804573], [144.02, 236.28406424887277, 0.57391244], [144.03, 232.649954394076, 0.7104562], [144.04, 230.8474910758111, 0.7251971], [144.05, 231.2589654638393, 0.6737347], [144.06, 231.8325289001011, 0.66182536], [144.07, 230.9817520441153, 0.73853296], [144.08, 228.84592487147916, 0.7203676], [144.09, 226.22119420270846, 0.69578356], [144.1, 221.01208765908405, 0.680813], [144.11, 214.0908127320441, 0.67473245], [144.12, 207.06476032224114, 0.4027744], [144.13, 197.63593005697322, 0.18925907], [144.14, 194.42948546406657, 0.4467441], [144.15, 197.1827740339259, 0.5627053], [144.16, 206.65290049569717, 0.48746905], [144.17, 209.6690644844392, 0.6977602], [144.18, 212.2745692685584, 0.8119967], [144.19, 212.7550505713058, 0.8594423], [144.2, 212.017458873586, 0.78398633], [144.21, 210.6392295654157, 0.7002146], [144.22, 209.37435564643, 0.5293993], [144.23, 208.9287343474066, 0.3456676], [144.24, 212.15779928770962, 0.36892542], [144.25, 220.82658459361096, 0.31202385], [144.26, 223.7406322686516, 0.26392424], [144.27, 228.28424178031543, 0.341865], [144.28, 231.1840243730869, 0.43451032], [144.29, 231.55447606736448, 0.15139152], [144.3, 228.1215074807693, 0.15726864], [144.31, 208.84404956726087, 0.26378742], [144.32, 209.61557080747096, 0.19338363], [144.33, 211.9643239779378, 0.26026818], [144.34, 212.48132754330837, 0.11095994], [144.35, 214.1694997335564, 0.09426878], [144.36, 215.7301060912204, 0.059568588], [144.37, 215.58040932451277, 0.051863663], [144.38, 214.15923790727794, 0.050878383], [144.39, 215.88969781774526, 0.054614216], [144.4, 217.3707452374722, 0.040158577], [144.41, 218.0922915604077, 0.048791304], [144.42, 217.1914705498189, 0.12634617], [144.43, 218.07826079942657, 0.17267458], [144.44, 218.45559589683276, 0.35020655], [144.45, 214.02683655610787, 0.45444214], [144.46, 214.1857456611898, 0.5123571], [144.47, 214.0956324759906, 0.70273036], [144.48, 213.51806914191366, 0.79592603], [144.49, 212.91397385842544, 0.79923], [144.5, 213.57729305634217, 0.8096366], [144.51, 214.93084688325803, 0.80154526], [144.52, 215.9410410444807, 0.83574563], [144.53, 217.0464049105525, 0.8201036], [144.54, 218.40794022936882, 0.8268502], [144.55, 221.10253635838575, 0.77806926], [144.56, 225.106793048751, 0.68560755], [144.57, 230.09094698783716, 0.6859198], [144.58, 233.63226698791888, 0.8076962], [144.59, 234.7903418267225, 0.80939776], [144.6, 233.70929263703118, 0.5144143], [144.61, 226.01140200485713, 0.19975872], [144.62, 222.50296720280096, 0.6578071], [144.63, 220.1991021075368, 0.78269476], [144.64, 215.6051338555473, 0.738293], [144.65, 210.36834398710465, 0.6770924], [144.66, 208.34136832235586, 0.80766416], [144.67, 207.56668813154292, 0.8201139], [144.68, 207.3077086088021, 0.8247985], [144.69, 206.6011235327824, 0.8211373], [144.7, 206.0694505748538, 0.81698525], [144.71, 205.81230186252358, 0.8273663], [144.72, 206.22339393277304, 0.82365084], [144.73, 206.71258950517836, 0.8044018], [144.74, 206.86458725171525, 0.80090606], [144.75, 207.06790549968252, 0.83027714], [144.76, 207.55002736816454, 0.81608385], [144.77, 208.55983515127684, 0.8164305], [144.78, 209.52955125669052, 0.7737573], [144.79, 210.63371624885787, 0.7870865], [144.8, 210.3467808992125, 0.7972808], [144.81, 209.71052329326898, 0.7811283], [144.82, 208.9562156064768, 0.82047033], [144.83, 208.0641735921068, 0.8386476], [144.84, 208.1307950890907, 0.8475593], [144.85, 208.27282235583715, 0.84958297], [144.86, 208.12194554829776, 0.86837554], [144.87, 207.47916582763827, 0.8649195], [144.88, 206.85756346799806, 0.8457562], [144.89, 206.24254185433398, 0.85545534], [144.9, 205.47215238062208, 0.84134525], [144.91, 205.6809957408909, 0.842008], [144.92, 206.51856364970055, 0.8376489], [144.93, 206.5789948559312, 0.82882243], [144.94, 206.98982527921484, 0.7866696], [144.95, 206.9484638417506, 0.7518647], [144.96, 206.73300873118404, 0.7460803], [144.97, 206.33146940540706, 0.71892613], [144.98, 206.1216108635178, 0.64581645], [144.99, 205.95053709559556, 0.6535687], [145.0, 205.63250597741242, 0.7606907], [145.01, 205.54985107659715, 0.82637423], [145.02, 205.84496739093606, 0.8403751], [145.03, 205.8599301960587, 0.8444408], [145.04, 206.68861181933812, 0.8607381], [145.05, 207.2174212222386, 0.8580754], [145.06, 207.78475456833434, 0.87169605], [145.07, 208.42921694989369, 0.86806816], [145.08, 209.03533114260412, 0.83966106], [145.09, 209.01378178455164, 0.82050824], [145.1, 208.74148802710226, 0.7903055], [145.11, 207.64701951066158, 0.6858723], [145.12, 205.71208048529851, 0.5749311], [145.13, 204.16416040553432, 0.42047402], [145.14, 203.5928522074289, 0.18569104], [145.15, 207.0422870171224, 0.2321118], [145.16, 208.07819063119427, 0.2513389], [145.17, 208.93872862133694, 0.27468616], [145.18, 208.73085595545655, 0.387925], [145.19, 209.3586104225709, 0.34194747], [145.2, 206.26274957305273, 0.5833034], [145.21, 205.8949527779275, 0.7674363], [145.22, 206.38283862105635, 0.73408616], [145.23, 207.79898543449173, 0.6498714], [145.24, 206.11608549983742, 0.7214769], [145.25, 205.7466436175916, 0.6565613], [145.26, 206.2054998839895, 0.44847345], [145.27, 207.16683482119973, 0.4973186], [145.28, 207.75823663465582, 0.4224714], [145.29, 207.9372977194402, 0.36531213], [145.3, 206.8790456997951, 0.41130432], [145.31, 205.36946207301727, 0.5517037], [145.32, 204.10018090640926, 0.5200721], [145.33, 204.60437832601986, 0.69441533], [145.34, 204.9804809558448, 0.72445303], [145.35, 206.00205472890724, 0.58074147], [145.36, 205.5067023864517, 0.47809336], [145.37, 205.6853821669754, 0.4664078], [145.38, 206.78673662999202, 0.46307784], [145.39, 208.5700339599108, 0.4233981], [145.4, 210.89332672301524, 0.36705333], [145.41, 212.32696068458603, 0.33436182], [145.42, 208.4879215860529, 0.48440263], [145.43, 208.32896275311114, 0.49121678], [145.44, 212.07876901949356, 0.50476176], [145.45, 213.71523702480243, 0.5193538], [145.46, 216.2667897606873, 0.648396], [145.47, 218.37082542782352, 0.4422197], [145.48, 220.88172474118767, 0.7240883], [145.49, 224.09004201763466, 0.7496833], [145.5, 228.0593256144374, 0.7427871], [145.51, 230.00668072015486, 0.55096173], [145.52, 231.8755406926698, 0.44300213], [145.53, 232.59113745902465, 0.6902486], [145.54, 230.74043514140413, 0.62060213], [145.55, 226.5955268384276, 0.6822178], [145.56, 222.4504641611998, 0.721412], [145.57, 220.03377108837856, 0.5799677], [145.58, 214.46385859098686, 0.2716808], [145.59, 218.24754135125886, 0.10605271], [145.6, 199.661824195152, 0.19963984], [145.61, 185.61772632455344, 0.28451946], [145.62, 172.67088675044104, 0.41008803], [145.63, 157.5151901246609, 0.34111553], [145.64, 140.70692089402218, 0.35628292], [145.65, 132.15165714541877, 0.6515993], [145.66, 131.72079817635466, 0.80435765], [145.67, 131.92016311609282, 0.8384483], [145.68, 132.14208651891346, 0.79838085], [145.69, 132.31683095992307, 0.7969884], [145.7, 132.8654657147542, 0.8203956], [145.71, 131.6380198398758, 0.825452], [145.72, 131.16094859388363, 0.78436524], [145.73, 130.65723834985175, 0.70680386], [145.74, 129.24393801891856, 0.54716235], [145.75, 129.16702657618234, 0.34528235], [145.76, 138.11625020760778, 0.17927997], [145.77, 139.07428785343652, 0.30829084], [145.78, 138.92929425373248, 0.23174891], [145.79, 140.6619374794231, 0.17309481], [145.8, 139.82582537281525, 0.16064699], [145.81, 142.2053756709818, 0.1876543], [145.82, 155.47195655680252, 0.20875098], [145.83, 156.27329238449056, 0.5394664], [145.84, 156.49019796555802, 0.67569274], [145.85, 158.2231707812632, 0.76744986], [145.86, 159.48876770588498, 0.8193792], [145.87, 160.24608507028103, 0.80406713], [145.88, 160.36016387655448, 0.7681802], [145.89, 157.9155353609425, 0.7673116], [145.9, 156.2823688725059, 0.77115923], [145.91, 154.77840105950324, 0.77219725], [145.92, 154.4261903147615, 0.8275678], [145.93, 154.33140963279374, 0.8580689], [145.94, 154.45110565449434, 0.8667121], [145.95, 154.51673524594085, 0.86230195], [145.96, 154.58025102997792, 0.8279738], [145.97, 154.2439247022757, 0.7286636], [145.98, 150.83199396017412, 0.5588492], [145.99, 144.65409857641214, 0.7370326], [146.0, 140.11916440614962, 0.7071919], [146.01, 138.74775153668162, 0.7953185], [146.02, 139.43724579196765, 0.73799694], [146.03, 141.0945283814613, 0.48817432], [146.04, 143.37506050752472, 0.3855486], [146.05, 144.8946004489692, 0.39165345], [146.06, 143.31165096585184, 0.6831564], [146.07, 141.1876781622084, 0.7123575], [146.08, 140.84825929543302, 0.8150893], [146.09, 140.80964247194854, 0.8046502], [146.1, 140.45693013424167, 0.7780743], [146.11, 139.68272716353826, 0.6591658], [146.12, 138.26390460419285, 0.50405014], [146.13, 137.01876751532956, 0.36804345], [146.14, 136.56779521804998, 0.6381735], [146.15, 136.3042259934985, 0.70769453], [146.16, 137.00571156460109, 0.72006917], [146.17, 137.92116396023235, 0.8015691], [146.18, 138.82606777615368, 0.7514457], [146.19, 139.07009974416295, 0.74187344], [146.2, 139.69639111362295, 0.7313294], [146.21, 139.40613025857436, 0.63742095], [146.22, 137.36759070000508, 0.6195525], [146.23, 136.11488603249686, 0.5800849], [146.24, 134.5619591358946, 0.43289593], [146.25, 133.26050576901773, 0.1710872], [146.26, 142.1530333453556, 0.11854265], [146.27, 151.51604684605562, 0.16253053], [146.28, 138.98349665255964, 0.1862291], [146.29, 143.80067640779208, 0.2398422], [146.3, 142.42275387707107, 0.20274085], [146.31, 139.8390115019949, 0.36209357], [146.32, 140.9821043262416, 0.50218487], [146.33, 140.42391446933186, 0.5299767], [146.34, 137.67728814904336, 0.40531316], [146.35, 141.49365195722393, 0.46644726], [146.36, 150.1378928085291, 0.3199873], [146.37, 154.01406280210645, 0.5633446], [146.38, 154.50688136662598, 0.67535365], [146.39, 155.5452446254138, 0.52135366], [146.4, 156.03264707422088, 0.5568168], [146.41, 156.4333592252936, 0.5792026], [146.42, 156.55779065904267, 0.5871303], [146.43, 156.3581961552594, 0.674401], [146.44, 156.29424212615498, 0.7278392], [146.45, 155.82849454896382, 0.692041], [146.46, 155.54636726438306, 0.7208748], [146.47, 155.4283346413784, 0.6656267], [146.48, 155.2267608371697, 0.7242789], [146.49, 154.84161161980543, 0.6334005], [146.5, 154.6387955999673, 0.7299392], [146.51, 154.10111619068795, 0.68719316], [146.52, 153.03052219844497, 0.5447032], [146.53, 151.4985310051842, 0.30869123], [146.54, 149.00073283707187, 0.5729079], [146.55, 148.01014547225333, 0.7579438], [146.56, 147.26319540357852, 0.7201503], [146.57, 148.57222096801087, 0.6913928], [146.58, 148.7445571840914, 0.68369395], [146.59, 150.44515648068446, 0.5016093], [146.6, 150.50395723618644, 0.5441957], [146.61, 150.97815552938448, 0.3462229], [146.62, 149.72943167089562, 0.36118826], [146.63, 151.61225884723888, 0.5277844], [146.64, 152.5991413545152, 0.7023479], [146.65, 153.1411373174114, 0.63147616], [146.66, 153.91510758961596, 0.6766386], [146.67, 152.94729692902104, 0.47187945], [146.68, 152.60923731702758, 0.27083105], [146.69, 148.93651030471455, 0.17532642], [146.7, 144.51655295013296, 0.21081784], [146.71, 140.28432525339167, 0.22434516], [146.72, 126.94364227699381, 0.22972707], [146.73, 127.07705558951778, 0.56301165], [146.74, 124.60025762269437, 0.7297125], [146.75, 124.4200111443327, 0.7535051], [146.76, 127.68657316610872, 0.47137454], [146.77, 131.54905011051798, 0.35338122], [146.78, 138.9484897942216, 0.2051758], [146.79, 145.9728428641998, 0.41976494], [146.8, 150.04833369471126, 0.6038601], [146.81, 152.42990784358477, 0.56310356], [146.82, 153.8392637354517, 0.7307673], [146.83, 155.72894807219782, 0.7789518], [146.84, 156.3798363834004, 0.73852754], [146.85, 155.93217169904906, 0.5410412], [146.86, 155.32714933906516, 0.4308307], [146.87, 154.24899012704694, 0.5424637], [146.88, 154.55683486077416, 0.36199817], [146.89, 154.5364984169065, 0.55459744], [146.9, 155.03261295791992, 0.54460114], [146.91, 155.49449982342236, 0.73309356], [146.92, 156.03750226277987, 0.8101635], [146.93, 155.92661060561758, 0.83159477], [146.94, 156.01808863205042, 0.8144092], [146.95, 155.4201385079116, 0.83413935], [146.96, 155.074696258526, 0.77468544], [146.97, 154.206392593969, 0.57012147], [146.98, 151.40836475531327, 0.43986702], [146.99, 151.8487800190352, 0.27739277], [147.0, 156.6293114369945, 0.41824126], [147.01, 150.90429989580832, 0.45330983], [147.02, 144.22283464649325, 0.5264902], [147.03, 143.36526388862765, 0.5125198], [147.04, 143.8727468598363, 0.4291581], [147.05, 147.14815252217056, 0.1936289], [147.06, 150.86524579391866, 0.19725507], [147.07, 152.30775520628004, 0.1963175], [147.08, 153.88381400410128, 0.20161149], [147.09, 139.24028376762925, 0.18636888], [147.1, 139.1553157176649, 0.28513244], [147.11, 139.00040224096523, 0.24076512], [147.12, 141.1426167301333, 0.28273493], [147.13, 144.2319687402045, 0.35256726], [147.14, 145.14097024675132, 0.35972708], [147.15, 143.04495937357544, 0.22871971], [147.16, 157.6378736602094, 0.42932758], [147.17, 157.45760537447936, 0.46616378], [147.18, 155.82378716514685, 0.5030037], [147.19, 152.03989230714842, 0.17854974], [147.2, 148.4933057229372, 0.19412392], [147.21, 147.36996218427026, 0.36553428], [147.22, 148.52533924362157, 0.5986026], [147.23, 149.27390606703074, 0.71423227], [147.24, 150.24244264602828, 0.77436715], [147.25, 150.87892947832162, 0.8196436], [147.26, 151.44911459866967, 0.80695754], [147.27, 152.55502920143988, 0.78019553], [147.28, 154.2225387516213, 0.8082961], [147.29, 155.28799742781342, 0.82956403], [147.3, 155.9435447442131, 0.84173065], [147.31, 155.84923724516278, 0.84732884], [147.32, 155.22575981866015, 0.78983706], [147.33, 154.85318545623875, 0.75069606], [147.34, 153.75184449989757, 0.75525534], [147.35, 152.96623646727338, 0.75972855], [147.36, 151.30457438704974, 0.7859151], [147.37, 149.66956719121055, 0.7293753], [147.38, 147.77192472507085, 0.6939712], [147.39, 145.47802061013684, 0.697515], [147.4, 142.58082145392618, 0.6192536], [147.41, 137.83888076460508, 0.6694043], [147.42, 137.08792553058734, 0.4728404], [147.43, 139.82674877180344, 0.41337442], [147.44, 143.39206621317115, 0.45703113], [147.45, 142.85913323476973, 0.4466382], [147.46, 140.87624330035374, 0.48636708], [147.47, 139.76013990169616, 0.485989], [147.48, 139.7487638406377, 0.5035832], [147.49, 139.39753536558956, 0.6755687], [147.5, 138.00468679566356, 0.75764006], [147.51, 136.97215167173, 0.79770845], [147.52, 136.91788585602387, 0.8198668], [147.53, 137.74382381752767, 0.84913445], [147.54, 138.43001746224581, 0.828382], [147.55, 138.7938778053943, 0.75351393], [147.56, 139.8874115435305, 0.628366], [147.57, 140.81520331259023, 0.6753942], [147.58, 140.38457905182815, 0.73526555], [147.59, 139.33578089775023, 0.8457362], [147.6, 137.73450723518735, 0.8530654], [147.61, 135.6712455852997, 0.8018522], [147.62, 135.14336274579998, 0.8135956], [147.63, 134.82828664167968, 0.83045053], [147.64, 135.01935852152906, 0.8366185], [147.65, 134.5980090762665, 0.84557194], [147.66, 133.710426574038, 0.77970016], [147.67, 132.15398243256632, 0.5348989], [147.68, 131.40523996930432, 0.49125358], [147.69, 139.62220648571054, 0.3299003], [147.7, 149.58405323908394, 0.46613714], [147.71, 154.78687034111312, 0.52389956], [147.72, 156.02462033798736, 0.73170173], [147.73, 157.24794750649886, 0.7734659], [147.74, 158.5137105947811, 0.75125855], [147.75, 158.37292869279028, 0.7720667], [147.76, 156.86930445715316, 0.7436045], [147.77, 155.06448151841693, 0.7375815], [147.78, 153.20224490562848, 0.77182496], [147.79, 152.56044944623955, 0.8053769], [147.8, 152.4054648923129, 0.8073124], [147.81, 152.40920309145193, 0.8360597], [147.82, 152.9053411588138, 0.8361858], [147.83, 153.82966155304604, 0.84570056], [147.84, 154.11345629698363, 0.8518306], [147.85, 153.43426357343552, 0.80389696], [147.86, 151.4189135009433, 0.72780794], [147.87, 148.1222393562523, 0.65609956], [147.88, 145.35166119526502, 0.6821838], [147.89, 141.05318503909874, 0.54400134], [147.9, 139.19017873375378, 0.7614138], [147.91, 137.50957329030086, 0.77078795], [147.92, 137.29897689957647, 0.81126857], [147.93, 137.0148870152989, 0.8311991], [147.94, 136.4901792425288, 0.8055283], [147.95, 137.13576752104447, 0.83753663], [147.96, 138.00845131380663, 0.859976], [147.97, 138.90577146371464, 0.8966191], [147.98, 139.44195594593614, 0.88853365], [147.99, 139.73344659641253, 0.8641535], [148.0, 139.79417207103728, 0.83677197], [148.01, 139.2875157336825, 0.8464071], [148.02, 139.193153033243, 0.8437941], [148.03, 138.91040371072302, 0.7996629], [148.04, 138.33526572138905, 0.7509739], [148.05, 138.6335461521671, 0.79290664], [148.06, 138.54475786978514, 0.8090077], [148.07, 138.94357865228878, 0.79274285], [148.08, 137.9905015310248, 0.7562222], [148.09, 136.93849233840487, 0.72804475], [148.1, 136.41269646581, 0.7594164], [148.11, 135.57920194639914, 0.8050656], [148.12, 134.23022948618072, 0.7918587], [148.13, 133.14501541537422, 0.7975738], [148.14, 133.20751078409427, 0.756618], [148.15, 133.98718482084166, 0.80127025], [148.16, 134.83182879442504, 0.7894664], [148.17, 135.329993209557, 0.6948257], [148.18, 137.34369004333973, 0.37304935], [148.19, 154.41767596926059, 0.4201202], [148.2, 154.82931457322928, 0.58208233], [148.21, 156.69311962583117, 0.6874629], [148.22, 158.20882180626708, 0.7340789], [148.23, 158.44147444934518, 0.53256506], [148.24, 157.19996368372105, 0.47802177], [148.25, 155.02415637024737, 0.63445044], [148.26, 154.99995760732224, 0.6151975], [148.27, 155.74270086139245, 0.601019], [148.28, 157.69200786721032, 0.6796109], [148.29, 160.43137150293714, 0.6602782], [148.3, 163.13612468925584, 0.74609345], [148.31, 165.102798984299, 0.75867885], [148.32, 167.8374093236169, 0.77155364], [148.33, 169.65559889764873, 0.7804125], [148.34, 171.0526675351275, 0.71283084], [148.35, 171.35901030353213, 0.72121465], [148.36, 168.80742753981343, 0.6924212], [148.37, 165.557399453129, 0.66496867], [148.38, 162.88753303229595, 0.51280785], [148.39, 162.32300328827807, 0.42558983], [148.4, 144.63474328420406, 0.31154168], [148.41, 143.38328165455258, 0.6357519], [148.42, 140.88695048227925, 0.74264413], [148.43, 139.09681057229736, 0.7585506], [148.44, 138.5620587120976, 0.69596606], [148.45, 137.84932665970612, 0.7202885], [148.46, 137.91216943076793, 0.827278], [148.47, 138.1576667606516, 0.82173014], [148.48, 138.30595182934022, 0.8262395], [148.49, 138.21593722471644, 0.7360678], [148.5, 137.99253100892327, 0.787651], [148.51, 138.12417018375783, 0.7243693], [148.52, 137.73679367618095, 0.61219174], [148.53, 137.4851317820463, 0.79814804], [148.54, 137.2185561642224, 0.82932717], [148.55, 137.30792405043366, 0.84485507], [148.56, 137.56754203470712, 0.85913074], [148.57, 138.20049588753162, 0.8641501], [148.58, 138.762687744787, 0.8482321], [148.59, 139.27062148976077, 0.73181254], [148.6, 139.6288108470044, 0.83481085], [148.61, 139.66402753379577, 0.8615346], [148.62, 139.44116050338403, 0.8807249], [148.63, 138.60549170183396, 0.84916294], [148.64, 138.21823924112152, 0.79661363], [148.65, 137.9005789943152, 0.7654406], [148.66, 137.88468502844506, 0.5924399], [148.67, 137.9114019737953, 0.68215257], [148.68, 138.36657814921304, 0.6772128], [148.69, 138.549678991367, 0.6363637], [148.7, 138.19514326724794, 0.74260277], [148.71, 138.35451904309068, 0.80374175], [148.72, 137.98356064095503, 0.82748055], [148.73, 137.7485484752092, 0.85454005], [148.74, 137.90854090961358, 0.8559853], [148.75, 137.11095736783275, 0.85242677], [148.76, 137.17927314246285, 0.85147005], [148.77, 137.47846690176877, 0.83980954], [148.78, 137.85387591238356, 0.79288393], [148.79, 138.28747830135524, 0.79850435], [148.8, 138.40100142962785, 0.79287815], [148.81, 138.43137425607262, 0.77796805], [148.82, 138.36161457790791, 0.7680312], [148.83, 138.46242345245858, 0.7419487], [148.84, 139.04973677198734, 0.7712235], [148.85, 139.40937637605956, 0.67313945], [148.86, 139.88421958696935, 0.6801545], [148.87, 140.38716071011203, 0.7564925], [148.88, 140.82711554924038, 0.7491791], [148.89, 141.62184763555248, 0.7948144], [148.9, 141.16647092252344, 0.8096695], [148.91, 139.62319599286562, 0.8517334], [148.92, 138.36884772165203, 0.79999614], [148.93, 136.08458981576203, 0.81702805], [148.94, 134.67669452233486, 0.8163015], [148.95, 134.29998732390322, 0.82175726], [148.96, 134.62706805067643, 0.83371776], [148.97, 135.27041233178477, 0.763956], [148.98, 137.1568107052211, 0.7299934], [148.99, 139.83272058148967, 0.48348704], [149.0, 146.8142255179796, 0.6548886], [149.01, 149.95674217189128, 0.7228973], [149.02, 152.08395080369488, 0.7435608], [149.03, 149.00742543293558, 0.4909601], [149.04, 144.44302242398078, 0.37323943], [149.05, 142.51467266688695, 0.6258792], [149.06, 140.02412409753595, 0.64303356], [149.07, 139.30970457271772, 0.57171404], [149.08, 137.83267928195608, 0.7219118], [149.09, 135.83563798919738, 0.77355605], [149.1, 133.90840390990581, 0.81864536], [149.11, 132.75051643632645, 0.8551993], [149.12, 132.77191857524718, 0.8644584], [149.13, 133.11289036664616, 0.80613905], [149.14, 134.92278830815667, 0.64104885], [149.15, 137.63679752504981, 0.691999], [149.16, 139.9633821061289, 0.7775866], [149.17, 141.01956780058845, 0.8004728], [149.18, 140.42271695152598, 0.8187588], [149.19, 139.11175491301725, 0.8704403], [149.2, 138.04084791499488, 0.8615295], [149.21, 137.53714393822284, 0.8692472], [149.22, 137.91658776902938, 0.8513984], [149.23, 138.86209901473774, 0.8402453], [149.24, 139.85746959713828, 0.7966453], [149.25, 142.30754045502746, 0.6663176], [149.26, 145.7580836123034, 0.6758005], [149.27, 149.61542387007086, 0.7084032], [149.28, 152.81350426823215, 0.7243314], [149.29, 155.4670501767816, 0.8429133], [149.3, 156.02649927461755, 0.8619716], [149.31, 155.84309583956434, 0.84163725], [149.32, 154.28454264469184, 0.8203182], [149.33, 153.26952461315454, 0.7780024], [149.34, 152.39148648787366, 0.70715564], [149.35, 151.44117966536515, 0.7276932], [149.36, 149.49058664191205, 0.5594155], [149.37, 151.09846656369834, 0.38827533], [149.38, 151.9499053531069, 0.2838533], [149.39, 151.95940895337043, 0.25054663], [149.4, 153.05202362226282, 0.26509374], [149.41, 155.80679330715674, 0.19162759], [149.42, 157.51521094590433, 0.23081103], [149.43, 157.98027316982945, 0.4057209], [149.44, 157.2914669578825, 0.6047998], [149.45, 156.686357011535, 0.51097256], [149.46, 156.07122899322025, 0.6122433], [149.47, 155.1277260835839, 0.5866478], [149.48, 154.3994540383648, 0.5554982], [149.49, 154.24591191609306, 0.5050732], [149.5, 153.79850966862702, 0.24307126], [149.51, 151.02892956572651, 0.28816003], [149.52, 151.71862038313765, 0.35832855], [149.53, 152.81976335909604, 0.3918541], [149.54, 153.43746758131306, 0.5136578], [149.55, 152.77351754998605, 0.47614303], [149.56, 153.2394057413216, 0.4164082], [149.57, 156.88160938123195, 0.30788985], [149.58, 159.77860033269607, 0.45054355], [149.59, 159.78858583260967, 0.571061], [149.6, 160.63579123891992, 0.5265782], [149.61, 160.36215403208163, 0.5589061], [149.62, 157.26112017659742, 0.5358043], [149.63, 154.04840435181154, 0.43849167], [149.64, 150.0995038565879, 0.4028173], [149.65, 148.73257266931623, 0.31764528], [149.66, 151.00506667350407, 0.2593754], [149.67, 155.44516315801317, 0.44610402], [149.68, 156.57018811135487, 0.5274445], [149.69, 157.74710397781584, 0.5666388], [149.7, 159.19313239695126, 0.59646016], [149.71, 160.86610813348813, 0.709407], [149.72, 163.04313596941924, 0.7308987], [149.73, 165.15408768321495, 0.7482413], [149.74, 167.2532830540539, 0.7019498], [149.75, 170.9038915726365, 0.69396496], [149.76, 173.62534093303447, 0.7599004], [149.77, 174.648057957694, 0.81451935], [149.78, 175.5626804031602, 0.8369285], [149.79, 175.5963890060502, 0.81967324], [149.8, 174.81466320893773, 0.845077], [149.81, 174.74336345569662, 0.82020307], [149.82, 174.28247483195315, 0.7683607], [149.83, 173.39672433691817, 0.758377], [149.84, 172.79874384706912, 0.780315], [149.85, 171.2647314766467, 0.7940964], [149.86, 170.72635374640274, 0.76091486], [149.87, 170.6735329499528, 0.69674176], [149.88, 188.1605850083077, 0.65358335], [149.89, 213.93656780066027, 0.44034708], [149.9, 241.92691063554508, 0.39689583], [149.91, 271.6797932225418, 0.51846886], [149.92, 314.0620463872295, 0.23371735], [149.93, 343.21499814877484, 0.38023192], [149.94, 387.6589743411915, 0.414761], [149.95, 424.8659291669875, 0.36145386], [149.96, 479.8996180420381, 0.18015096], [149.97, 542.7404232363357, 0.28348866], [149.98, 608.4480506690358, 0.18630715], [149.99, 673.3468632603451, 0.35461476], [150.0, 775.5434962924834, 0.18793501], [150.01, 856.9112714725413, 0.15934584], [150.02, 945.1294753927699, 0.12654023], [150.03, 1090.606735679517, 0.10934016], [150.04, 1198.563609545181, 0.115238905], [150.05, 1304.889638965068, 0.10522338], [150.06, 1464.7746365483797, 0.053291224], [150.07, 1653.1878282415155, 0.06959051], [150.08, 1839.5004544262456, 0.06927985], [150.09, 1976.855407970734, 0.2179105], [150.1, 1976.2890347656166, 0.2076396], [150.11, 1976.83954077637, 0.21839565], [150.12, 1976.302060057237, 0.207528], [150.13, 1976.8584343520954, 0.21763867], [150.14, 1976.2869184114309, 0.20640373], [150.15, 1976.8531398555476, 0.21765597], [150.16, 1976.2791137749882, 0.20637187], [150.17, 1976.8563556295633, 0.216986], [150.18, 1976.3142284188107, 0.20566988], [150.19, 1976.8601145518994, 0.21648239], [150.2, 1976.3345925131625, 0.20602934], [150.21, 1976.8714221111773, 0.21730517], [150.22, 1976.3338764326404, 0.20633778], [150.23, 1976.8295027247232, 0.21663265], [150.24, 1976.3133433411376, 0.20585637], [150.25, 1976.8373155511363, 0.21651699], [150.26, 1976.3274773524474, 0.20639348], [150.27, 1976.8538656839987, 0.21634413], [150.28, 1976.347308481628, 0.20596953], [150.29, 1976.8807681247042, 0.21639739], [150.3, 1976.3555923107206, 0.20682482], [150.31, 1976.8641551013159, 0.2167631], [150.32, 1976.2963694706136, 0.20703256], [150.33, 1976.807088329738, 0.2167424], [150.34, 1976.3106678911759, 0.20710486], [150.35, 1976.787014147492, 0.21817395], [150.36, 1976.3011128782937, 0.20768], [150.37, 1976.7735053125389, 0.21768087], [150.38, 1976.3148219970617, 0.20769347], [150.39, 1976.806104356988, 0.2176827], [150.4, 1976.3126562313098, 0.20721027], [150.41, 1976.7891339779844, 0.21780972], [150.42, 1976.2962334200424, 0.20716698], [150.43, 1976.7804163328078, 0.21760774], [150.44, 1976.2696003985761, 0.20668955], [150.45, 1976.8189819950564, 0.21750659], [150.46, 1976.2867411930943, 0.20683144], [150.47, 1976.8577096848894, 0.21725127], [150.48, 1976.2790626287588, 0.20742415], [150.49, 1976.8435030683927, 0.21740323], [150.5, 1976.2692757159507, 0.20682392], [150.51, 1976.8786358025434, 0.21665214], [150.52, 1976.2793755955136, 0.20593452], [150.53, 1976.8712582171681, 0.21718992], [150.54, 1976.269621740133, 0.20661563], [150.55, 1976.8369197629443, 0.21775952], [150.56, 1976.266537207714, 0.20750277], [150.57, 1976.8454364736137, 0.21808682], [150.58, 1976.2527686454923, 0.20696306], [150.59, 1976.7923002552002, 0.21719177], [150.6, 1976.2444844494892, 0.20651431], [150.61, 1976.8011904276104, 0.21710704], [150.62, 1976.2825562219668, 0.20600083], [150.63, 1976.8102219107811, 0.21639676], [150.64, 1976.3396934085522, 0.2056285], [150.65, 1976.8459996845988, 0.21593475], [150.66, 1976.3341084412468, 0.20481394], [150.67, 1976.8759437027372, 0.21584147], [150.68, 1976.3335867017747, 0.2044825], [150.69, 1976.8706303389556, 0.21537866], [150.7, 1976.3445991711023, 0.20422068], [150.71, 1976.896862028192, 0.21443507], [150.72, 1976.3522798603863, 0.2040609], [150.73, 1976.9077219666792, 0.21427336], [150.74, 1976.3429387533915, 0.2051681], [150.75, 1976.9446455656011, 0.214159], [150.76, 1976.3567602259377, 0.20510846], [150.77, 1976.9345012162191, 0.21532819], [150.78, 1976.3260020517544, 0.20483203], [150.79, 1976.9178038982907, 0.21683712], [150.8, 1976.3097657588798, 0.20502113], [150.81, 1976.8945829420359, 0.21644726], [150.82, 1976.3331223734958, 0.20483777], [150.83, 1976.9154340148473, 0.2159754], [150.84, 1976.3370093512196, 0.20483857], [150.85, 1976.8999807321547, 0.21706907], [150.86, 1976.3617122917803, 0.20493263], [150.87, 1976.881095877614, 0.2155694], [150.88, 1976.356087538256, 0.20482276], [150.89, 1976.907095359468, 0.21619865], [150.9, 1976.3282510475776, 0.20431513], [150.91, 1976.8997240575823, 0.21640301], [150.92, 1976.3150502299554, 0.20538235], [150.93, 1976.8406055976284, 0.21669151], [150.94, 1976.293366882812, 0.2056495], [150.95, 1976.8963034768674, 0.21734609], [150.96, 1976.3430486923883, 0.2047411], [150.97, 1976.938741909171, 0.21632911], [150.98, 1976.307889128092, 0.20398948], [150.99, 1976.9373265319227, 0.21616286], [151.0, 1976.316932856486, 0.20416723], [151.01, 1976.9401026126648, 0.21687831], [151.02, 1976.2864564169317, 0.20467764], [151.03, 1976.9268014907652, 0.21705212], [151.04, 1976.325806965298, 0.20515579], [151.05, 1976.9036694984047, 0.21726164], [151.06, 1976.3293222766524, 0.205419], [151.07, 1976.8849968368786, 0.21801004], [151.08, 1976.3227136355808, 0.20623115], [151.09, 1976.8538965851883, 0.21790841], [151.1, 1976.3316639848067, 0.20598559], [151.11, 1976.8720233041408, 0.21772277], [151.12, 1976.313047828735, 0.20657317], [151.13, 1976.8754230611707, 0.21786687], [151.14, 1976.3256020366555, 0.2072146], [151.15, 1976.9045243862292, 0.21719435], [151.16, 1976.2931645815293, 0.20706314], [151.17, 1976.8946420477896, 0.21879482], [151.18, 1976.2714307462418, 0.20726731], [151.19, 1976.8869519954765, 0.21854746], [151.2, 1976.286007808615, 0.20713514], [151.21, 1976.8604976143422, 0.21808393], [151.22, 1976.2582724886606, 0.20685253], [151.23, 1976.8459444997482, 0.21848485], [151.24, 1976.2802336342552, 0.20690939], [151.25, 1976.812028088289, 0.21794337], [151.26, 1976.257018893357, 0.20617226], [151.27, 1976.8087616413707, 0.21794929], [151.28, 1976.291071328519, 0.20577379], [151.29, 1976.8275301099948, 0.21748157], [151.3, 1976.2981880240209, 0.20494261], [151.31, 1976.8537385562038, 0.2176736], [151.32, 1976.3167905401174, 0.20566018], [151.33, 1976.8248897752367, 0.21698342], [151.34, 1976.2620071592164, 0.20568971], [151.35, 1976.8159474492006, 0.21790044], [151.36, 1976.2557805410602, 0.20595865], [151.37, 1976.8778461540624, 0.2178828], [151.38, 1976.2795280879939, 0.20607229], [151.39, 1976.85829339857, 0.21726206], [151.4, 1976.2665202407627, 0.20635496], [151.41, 1976.8269681998393, 0.21773508], [151.42, 1976.2578352755543, 0.2064383], [151.43, 1976.814474146355, 0.2182093], [151.44, 1976.2683563693872, 0.20687516], [151.45, 1976.8216558821061, 0.21887696], [151.46, 1976.3038953070109, 0.20759735], [151.47, 1976.8610108392886, 0.21893084], [151.48, 1976.2699451882504, 0.20795679], [151.49, 1976.8760648680773, 0.219275], [151.5, 1976.297042043359, 0.20773305], [151.51, 1976.8866614933022, 0.21841061], [151.52, 1976.2732724143873, 0.20651774], [151.53, 1976.8307632671529, 0.21923031], [151.54, 1976.239676448022, 0.20700762], [151.55, 1976.8259051624154, 0.21887307], [151.56, 1976.1892188889567, 0.20800523], [151.57, 1976.814795046576, 0.21927321], [151.58, 1976.2216529441182, 0.20736186], [151.59, 1976.8191461071854, 0.21875323], [151.6, 1976.2311826313198, 0.20572178], [151.61, 1976.802860452544, 0.21866119], [151.62, 1976.1874662179375, 0.20688131], [151.63, 1976.7288615850978, 0.21907218], [151.64, 1976.1908778206655, 0.20825106], [151.65, 1976.7667835990235, 0.21993025], [151.66, 1976.225935947251, 0.20902047], [151.67, 1976.8333042159927, 0.22014907], [151.68, 1976.2605285784, 0.20885743], [151.69, 1976.8403652226423, 0.22002019], [151.7, 1976.2180038379493, 0.20874052], [151.71, 1976.8709476024264, 0.21922433], [151.72, 1976.2352659477085, 0.20954992], [151.73, 1976.8281427988818, 0.2199925], [151.74, 1976.2743920676603, 0.2101788], [151.75, 1976.8949807505383, 0.22060859], [151.76, 1976.3121318486676, 0.21043926], [151.77, 1976.8679353520397, 0.2204107], [151.78, 1976.281931814466, 0.20963207], [151.79, 1976.8368714953745, 0.21959288], [151.8, 1976.251409920284, 0.20899592], [151.81, 1976.8486523394338, 0.22042331], [151.82, 1976.2635411911797, 0.20843796], [151.83, 1976.8271119814574, 0.21931799], [151.84, 1976.280865065414, 0.207899], [151.85, 1976.8366689122327, 0.21891429], [151.86, 1976.2592624016336, 0.20696379], [151.87, 1976.8187103941693, 0.21956313], [151.88, 1976.2407702422993, 0.20684235], [151.89, 1976.7778256775136, 0.21954906], [151.9, 1976.2082748066575, 0.20656005], [151.91, 1976.7131113502298, 0.21914952], [151.92, 1976.1779467746078, 0.20634194], [151.93, 1976.7245894917412, 0.21950658], [151.94, 1976.1887557433326, 0.20712335], [151.95, 1976.7200220818427, 0.21987838], [151.96, 1976.227656088422, 0.20689276], [151.97, 1976.763939119984, 0.21937032], [151.98, 1976.2751308425936, 0.20652524], [151.99, 1976.7871226292061, 0.21805623], [152.0, 1976.279849904447, 0.2057643], [152.01, 1976.746623666512, 0.21803711], [152.02, 1976.2553261190126, 0.20499964], [152.03, 1976.778979104589, 0.21880203], [152.04, 1976.279981099779, 0.20564601], [152.05, 1976.802069575034, 0.21960431], [152.06, 1976.27085342579, 0.20647798], [152.07, 1976.8288617207986, 0.22021738], [152.08, 1976.2422668846725, 0.2076533], [152.09, 1976.8200879591052, 0.22068068], [152.1, 1976.2359128373091, 0.20734921], [152.11, 1976.8128569365895, 0.21947107], [152.12, 1976.2939955540153, 0.20710744], [152.13, 1976.8212945810274, 0.21987438], [152.14, 1976.2244583300394, 0.20640661], [152.15, 1976.8164915234615, 0.21945177], [152.16, 1976.237331594865, 0.20702584], [152.17, 1976.8199365596815, 0.21983647], [152.18, 1976.2862947348733, 0.20663613], [152.19, 1976.8216758317344, 0.21916066], [152.2, 1976.2719560235869, 0.2068137], [152.21, 1976.7694056032205, 0.21848051], [152.22, 1976.29304572222, 0.20700632], [152.23, 1976.7772663670505, 0.21901292], [152.24, 1976.2748059371972, 0.20823766], [152.25, 1976.7773769047674, 0.21855962], [152.26, 1976.2338201668151, 0.2079226], [152.27, 1976.7862981913063, 0.21903558], [152.28, 1976.2387502146498, 0.20764627], [152.29, 1976.7472317630186, 0.21884024], [152.3, 1976.2972458136778, 0.20750923], [152.31, 1976.7794750388782, 0.21899627], [152.32, 1976.3301206692, 0.20774001], [152.33, 1976.7628369396937, 0.21925274], [152.34, 1976.3454107138384, 0.20778058], [152.35, 1976.8405203966595, 0.21892324], [152.36, 1976.3817198780328, 0.20696977], [152.37, 1976.8539476528922, 0.21841024], [152.38, 1976.367401015775, 0.20670275], [152.39, 1976.8135040657696, 0.21799996], [152.4, 1976.3669493058287, 0.20736504], [152.41, 1976.7790487891684, 0.21802321], [152.42, 1976.3391040940664, 0.2073005], [152.43, 1976.817786030454, 0.21884653], [152.44, 1976.3186299300623, 0.2071477], [152.45, 1976.7964425315577, 0.21773595], [152.46, 1976.3262435623835, 0.20667955], [152.47, 1976.819552649897, 0.21889755], [152.48, 1976.3031485303964, 0.2060819], [152.49, 1976.8175757897043, 0.21870953], [152.5, 1976.282795753596, 0.20693526], [152.51, 1976.7985662680476, 0.2192844], [152.52, 1976.2990483209944, 0.20630589], [152.53, 1976.833283350385, 0.21891923], [152.54, 1976.2940650992048, 0.20715919], [152.55, 1976.855222958625, 0.21975926], [152.56, 1976.2944524694306, 0.2075939], [152.57, 1976.8851896357291, 0.22011833], [152.58, 1976.2692625416255, 0.20736662], [152.59, 1976.8354528069415, 0.21999413], [152.6, 1976.2518449747408, 0.20835482], [152.61, 1976.8213291184386, 0.22006795], [152.62, 1976.247688004291, 0.20790394], [152.63, 1976.8366256626464, 0.2199629], [152.64, 1976.255644362132, 0.20708245], [152.65, 1976.8344851197417, 0.21945949], [152.66, 1976.2630072351237, 0.20738906], [152.67, 1976.7837965062447, 0.22034687], [152.68, 1976.2535972622668, 0.20772834], [152.69, 1976.8527802449196, 0.22048937], [152.7, 1976.2838587514366, 0.20770632], [152.71, 1976.8783839444607, 0.22003743], [152.72, 1976.3046979658973, 0.207096], [152.73, 1976.8409467476, 0.21905686], [152.74, 1976.3094452989958, 0.20750397], [152.75, 1976.8142619249386, 0.21926071], [152.76, 1976.3429900318456, 0.20752488], [152.77, 1976.8712568339633, 0.21915585], [152.78, 1976.363109834656, 0.20805609], [152.79, 1976.864746783102, 0.21874817], [152.8, 1976.3545712028872, 0.20799738], [152.81, 1976.82486246322, 0.21846825], [152.82, 1976.3043331908782, 0.20805903], [152.83, 1976.8118544164906, 0.21932995], [152.84, 1976.3243297312058, 0.20742415], [152.85, 1976.8536742408464, 0.21851939], [152.86, 1976.305600246094, 0.20766655], [152.87, 1976.8580791887234, 0.21866314], [152.88, 1976.364946800632, 0.20728986], [152.89, 1976.8292081574014, 0.21858151], [152.9, 1976.3375520951138, 0.20690002], [152.91, 1976.7944348579413, 0.21944846], [152.92, 1976.3098479089113, 0.20792674], [152.93, 1976.7824977435873, 0.21946304], [152.94, 1976.3149387155975, 0.20841867], [152.95, 1976.794923894232, 0.21915412], [152.96, 1976.308816950758, 0.20852228], [152.97, 1976.8112827700897, 0.21910128], [152.98, 1976.305792448086, 0.20958549], [152.99, 1976.7648156650348, 0.21970536], [153.0, 1976.2984825271722, 0.21026643], [153.01, 1976.7768553719916, 0.22019354], [153.02, 1976.2963069325576, 0.21016409], [153.03, 1976.77830973209, 0.22115967], [153.04, 1976.3143615969623, 0.21047261], [153.05, 1976.7732148969994, 0.22072192], [153.06, 1976.3037007357793, 0.21016058], [153.07, 1976.8029893695486, 0.22059062], [153.08, 1976.2847948627561, 0.20998015], [153.09, 1976.8284165196578, 0.2199812], [153.1, 1976.2898617173005, 0.21021667], [153.11, 1976.830109136981, 0.22025275], [153.12, 1976.3388688387774, 0.21022077], [153.13, 1976.793181554001, 0.21959272], [153.14, 1976.331894335572, 0.20973831], [153.15, 1976.787041453293, 0.21922094], [153.16, 1976.3607701644762, 0.20900582], [153.17, 1976.7994819524615, 0.21886122], [153.18, 1976.3142525521662, 0.20915873], [153.19, 1976.775890731898, 0.21951526], [153.2, 1976.2879285058534, 0.21010716], [153.21, 1976.811414692868, 0.22008282], [153.22, 1976.2908510493207, 0.20927791], [153.23, 1976.8229335370847, 0.21997817], [153.24, 1976.293321713203, 0.20797856], [153.25, 1976.8251466051665, 0.21917656], [153.26, 1976.2708491166848, 0.20836966], [153.27, 1976.7531455400867, 0.2196765], [153.28, 1976.223864202727, 0.20900805], [153.29, 1976.7161152514113, 0.2203472], [153.3, 1976.2382508295377, 0.20843121], [153.31, 1976.7642029245587, 0.21928178], [153.32, 1976.268001252995, 0.20835195], [153.33, 1976.7722314400282, 0.21976654], [153.34, 1976.303983532092, 0.20872791], [153.35, 1976.7894625030954, 0.21943374], [153.36, 1976.3133937871403, 0.20873307], [153.37, 1976.777737622369, 0.21892375], [153.38, 1976.332798495322, 0.2089305], [153.39, 1976.7819316876157, 0.21871197], [153.4, 1976.3397373383373, 0.20960958], [153.41, 1976.7899016749338, 0.21936548], [153.42, 1976.323420073862, 0.20895895], [153.43, 1976.7985036954642, 0.21953945], [153.44, 1976.3458981988983, 0.20869619], [153.45, 1976.887625013459, 0.21934983], [153.46, 1976.3977864056303, 0.20778117], [153.47, 1976.9085763354976, 0.21806112], [153.48, 1976.394548816213, 0.20724337], [153.49, 1976.9108596352562, 0.2181933], [153.5, 1976.4231777965736, 0.20735942], [153.51, 1976.8944987090972, 0.21777666], [153.52, 1976.4462495779687, 0.20665501], [153.53, 1976.8821708460246, 0.21696539], [153.54, 1976.413206839786, 0.2063467], [153.55, 1976.8433418292152, 0.21722427], [153.56, 1976.4205880403995, 0.20599847], [153.57, 1976.7880061602796, 0.21698342], [153.58, 1976.3703694867686, 0.205716], [153.59, 1976.785472648649, 0.21738866], [153.6, 1976.4027793043424, 0.20528927], [153.61, 1976.8091718282674, 0.21629857], [153.62, 1976.4157633446393, 0.20328401], [153.63, 1976.8071019173026, 0.21623063], [153.64, 1976.3724075035857, 0.2032113], [153.65, 1976.8007051118448, 0.21714577], [153.66, 1976.3602921591528, 0.20478727], [153.67, 1976.7809955455798, 0.21746334], [153.68, 1976.3248859364012, 0.20556085], [153.69, 1976.779133361816, 0.21850367], [153.7, 1976.3475851135966, 0.20564671], [153.71, 1976.807436307438, 0.21805242], [153.72, 1976.365831938028, 0.20532753], [153.73, 1976.8140215226333, 0.21847782], [153.74, 1976.4075112025491, 0.20501068], [153.75, 1976.8444151284184, 0.21756561], [153.76, 1976.392184052287, 0.20387527], [153.77, 1976.8656339717475, 0.2166457], [153.78, 1976.4009282951215, 0.20394972], [153.79, 1976.882923910954, 0.21809727], [153.8, 1976.3825661690669, 0.20323998], [153.81, 1976.8507002466483, 0.2167716], [153.82, 1976.3958583574108, 0.20387582], [153.83, 1976.875140794492, 0.21782725], [153.84, 1976.375976282145, 0.20430522], [153.85, 1976.845906398123, 0.21731272], [153.86, 1976.3514319742508, 0.20484422], [153.87, 1976.8646907309542, 0.21756105], [153.88, 1976.3559202561512, 0.20450075], [153.89, 1976.844561021196, 0.21835895], [153.9, 1976.353088354222, 0.2041669], [153.91, 1976.8775664372583, 0.2171202], [153.92, 1976.3609793593037, 0.20486291], [153.93, 1976.8434838285768, 0.21783376], [153.94, 1976.327277334932, 0.20467293], [153.95, 1976.8940959143124, 0.21783602], [153.96, 1976.352983612655, 0.20481382], [153.97, 1976.8589632507687, 0.21757242], [153.98, 1976.3456529903203, 0.20512107], [153.99, 1976.881977369098, 0.21660064], [154.0, 1976.3925822219621, 0.20358953], [154.01, 1976.8872929575502, 0.21680097], [154.02, 1976.3247519831853, 0.20368502], [154.03, 1976.8339887029722, 0.21761289], [154.04, 1976.311273369346, 0.20521872], [154.05, 1976.8535839747442, 0.21745911], [154.06, 1976.3684766226156, 0.2047744], [154.07, 1976.887453464456, 0.2170705], [154.08, 1976.328501243871, 0.20451534], [154.09, 1976.8823271719652, 0.21764636], [154.1, 1976.3397775145659, 0.20481744], [154.11, 1976.8093592014648, 0.2166182], [154.12, 1976.2836948009387, 0.20486], [154.13, 1976.8202658942575, 0.21727808], [154.14, 1976.2871151862564, 0.20558736], [154.15, 1976.8169760477087, 0.216833], [154.16, 1976.3245545380946, 0.20586489], [154.17, 1976.8438667005012, 0.21763685], [154.18, 1976.3102213279744, 0.20619394], [154.19, 1976.8736615400715, 0.21813521], [154.2, 1976.2896321197563, 0.20629145], [154.21, 1976.8571718136625, 0.21821423], [154.22, 1976.2856569372796, 0.20609562], [154.23, 1976.9255215476583, 0.21738282], [154.24, 1976.3145630104634, 0.20599763], [154.25, 1976.9033802159065, 0.21843354], [154.26, 1976.3079851921386, 0.20626333], [154.27, 1976.871154602867, 0.21874814], [154.28, 1976.3066750957862, 0.20742969], [154.29, 1976.9186749987898, 0.21825595], [154.3, 1976.3556310760011, 0.20653434], [154.31, 1976.920672496675, 0.2175775], [154.32, 1976.3823598778908, 0.20650792], [154.33, 1976.8697111986355, 0.21670836], [154.34, 1976.3977707993977, 0.20648696], [154.35, 1976.8433190479773, 0.21753323], [154.36, 1976.362760102179, 0.20692596], [154.37, 1976.82913997632, 0.21696924], [154.38, 1976.3409350503084, 0.2068633], [154.39, 1976.843020278238, 0.21767272], [154.4, 1976.3588466977196, 0.20710726], [154.41, 1976.7858844506875, 0.21842706], [154.42, 1976.3135965939791, 0.2081664], [154.43, 1976.800142275107, 0.21838863], [154.44, 1976.3250810534407, 0.20784338], [154.45, 1976.7915148329132, 0.21873452], [154.46, 1976.2945819958338, 0.20763741], [154.47, 1976.7837273756415, 0.21969274], [154.48, 1976.272214952745, 0.20827557], [154.49, 1976.8085254079238, 0.2197902], [154.5, 1976.2734734400726, 0.2078367], [154.51, 1976.8036629441795, 0.21900325], [154.52, 1976.2698821167578, 0.2073194], [154.53, 1976.7705460551606, 0.21886677], [154.54, 1976.2770818402466, 0.20753235], [154.55, 1976.7351649239117, 0.21923588], [154.56, 1976.2612977710792, 0.20803678], [154.57, 1976.792813109141, 0.21945816], [154.58, 1976.2845954822226, 0.20827211], [154.59, 1976.819331949252, 0.21959168], [154.6, 1976.2856017644492, 0.20814179], [154.61, 1976.790155586887, 0.21963787], [154.62, 1976.2629304721659, 0.20783697], [154.63, 1976.7620621045094, 0.22014733], [154.64, 1976.2282691225098, 0.20866302], [154.65, 1976.7280541194295, 0.22044413], [154.66, 1976.2105374726048, 0.20828061], [154.67, 1976.7607558924833, 0.21999428], [154.68, 1976.189446229171, 0.20755908], [154.69, 1976.7211740563343, 0.21971305], [154.7, 1976.1939527464024, 0.20744716], [154.71, 1976.736969774421, 0.2196893], [154.72, 1976.1825655553598, 0.20714995], [154.73, 1976.7215618714604, 0.21968397], [154.74, 1976.1829256934889, 0.20825084], [154.75, 1976.7483835740088, 0.21956198], [154.76, 1976.1811209209543, 0.2076438], [154.77, 1976.724382900111, 0.2197156], [154.78, 1976.1850759700746, 0.20787778], [154.79, 1976.7269854890696, 0.21970245], [154.8, 1976.2042395350404, 0.20793837], [154.81, 1976.741713868993, 0.21887651], [154.82, 1976.2406839401444, 0.20751889], [154.83, 1976.7348882011177, 0.21907532], [154.84, 1976.2502030563448, 0.20721844], [154.85, 1976.7372451520553, 0.21871215], [154.86, 1976.241892360081, 0.20628007], [154.87, 1976.717931294153, 0.21829098], [154.88, 1976.2154664579257, 0.20604962], [154.89, 1976.715177549513, 0.21873727], [154.9, 1976.236233267311, 0.20677812], [154.91, 1976.7048418809306, 0.21833977], [154.92, 1976.2256404838427, 0.20587997], [154.93, 1976.7204064305927, 0.21756631], [154.94, 1976.2132609646305, 0.20569997], [154.95, 1976.6787952871287, 0.2174494], [154.96, 1976.2087941030845, 0.20530295], [154.97, 1976.744617358569, 0.21753602], [154.98, 1976.250133837862, 0.20469514], [154.99, 1976.7900225781307, 0.21799889], [155.0, 1976.2480044719948, 0.20471783], [155.01, 1976.7809897265074, 0.21737893], [155.02, 1976.2422072958225, 0.20506385], [155.03, 1976.719151985724, 0.21570916], [155.04, 1976.271506055871, 0.20413597], [155.05, 1976.7683195733475, 0.216916], [155.06, 1976.26541721358, 0.2041763], [155.07, 1976.7710680047362, 0.21730371], [155.08, 1976.2456173750656, 0.20472409], [155.09, 1976.725266645868, 0.21682206], [155.1, 1976.213569927937, 0.20441294], [155.11, 1976.697315101953, 0.21705522], [155.12, 1976.2249501067583, 0.20349346], [155.13, 1976.7243096176592, 0.21730079], [155.14, 1976.241320283643, 0.20325527], [155.15, 1976.6992829297037, 0.21681888], [155.16, 1976.2712730057915, 0.20344809], [155.17, 1976.7205913924906, 0.21695165], [155.18, 1976.2797630678383, 0.2045502], [155.19, 1976.7301666626056, 0.21794866], [155.2, 1976.2562034740574, 0.20441914], [155.21, 1976.7691756615386, 0.21845044], [155.22, 1976.2409172568346, 0.20540997], [155.23, 1976.7649544089295, 0.21854293], [155.24, 1976.2735155557193, 0.20498694], [155.25, 1976.8009856598362, 0.21816489], [155.26, 1976.2522807999167, 0.20474295], [155.27, 1976.7908284546386, 0.21773309], [155.28, 1976.249606965097, 0.20578454], [155.29, 1976.7728498635493, 0.2173239], [155.3, 1976.2451008379596, 0.20580891], [155.31, 1976.7633940566782, 0.21744819], [155.32, 1976.2540512729336, 0.20576516], [155.33, 1976.7904352475211, 0.21698152], [155.34, 1976.251569531669, 0.20538606], [155.35, 1976.7174830360452, 0.21742441], [155.36, 1976.2397908698617, 0.20480101], [155.37, 1976.7209596470798, 0.21671173], [155.38, 1976.2510621751967, 0.2048287], [155.39, 1976.724418631087, 0.21715456], [155.4, 1976.2531579032607, 0.20468548], [155.41, 1976.6840435068432, 0.21700956], [155.42, 1976.2524455309303, 0.20463091], [155.43, 1976.714049375632, 0.21682021], [155.44, 1976.235285339917, 0.20597112], [155.45, 1976.701170426468, 0.21681125], [155.46, 1976.2376832283016, 0.20719571], [155.47, 1976.7240964290315, 0.2180961], [155.48, 1976.2058964519201, 0.20644985], [155.49, 1976.6967723748312, 0.2181906], [155.5, 1976.2052513322217, 0.2060687], [155.51, 1976.6636549688988, 0.21800417], [155.52, 1976.193562477116, 0.20482711], [155.53, 1976.6311622829753, 0.2171745], [155.54, 1976.1647075103788, 0.20483129], [155.55, 1976.653020495742, 0.21799418], [155.56, 1976.186409357546, 0.2060105], [155.57, 1976.7059525983266, 0.21925025], [155.58, 1976.2159535637525, 0.20733318], [155.59, 1976.6645246663027, 0.21850662], [155.6, 1976.2183380979482, 0.20720437], [155.61, 1976.6472740423467, 0.21866785], [155.62, 1976.2463585398582, 0.20606567], [155.63, 1976.660719280019, 0.21887572], [155.64, 1976.2316657730037, 0.20510691], [155.65, 1976.6859995927216, 0.21887144], [155.66, 1976.2095393196855, 0.20553945], [155.67, 1976.677294425025, 0.2183437], [155.68, 1976.1819161229923, 0.20557085], [155.69, 1976.7074694833068, 0.2194685], [155.7, 1976.1397573428899, 0.2062019], [155.71, 1976.690625731566, 0.21951367], [155.72, 1976.1626062026394, 0.20667395], [155.73, 1976.6930539607758, 0.21903968], [155.74, 1976.195775226166, 0.20739076], [155.75, 1976.7049882247502, 0.21917474], [155.76, 1976.2631816249605, 0.20665354], [155.77, 1976.7235502286624, 0.2189936], [155.78, 1976.2688471142574, 0.2060088], [155.79, 1976.7224092594872, 0.21810447], [155.8, 1976.2253395137213, 0.20631193], [155.81, 1976.681949669322, 0.2186391], [155.82, 1976.1944747191774, 0.20584872], [155.83, 1976.696008947124, 0.21867187], [155.84, 1976.1667010014073, 0.20577224], [155.85, 1976.703376594179, 0.21887167], [155.86, 1976.1261031805311, 0.20581883], [155.87, 1976.6654491698725, 0.21869098], [155.88, 1976.1293620808742, 0.20562173], [155.89, 1976.67338981198, 0.21836871], [155.9, 1976.1618498166358, 0.20516834], [155.91, 1976.7148506193448, 0.21809669], [155.92, 1976.1718699740256, 0.20449957], [155.93, 1976.7143065962239, 0.21835668], [155.94, 1976.154354327166, 0.20536594], [155.95, 1976.7385445960167, 0.21896946], [155.96, 1976.1825226999053, 0.20525752], [155.97, 1976.7257700568725, 0.21774209], [155.98, 1976.1949684432, 0.20468639], [155.99, 1976.6968372567408, 0.21815747], [156.0, 1976.2092335931134, 0.20487668], [156.01, 1976.7740187331256, 0.21817872], [156.02, 1976.199834020006, 0.20585316], [156.03, 1976.7473473052914, 0.21887746], [156.04, 1976.2029430351818, 0.20672262], [156.05, 1976.7730586914304, 0.2195275], [156.06, 1976.1968029056898, 0.20696734], [156.07, 1976.7983604434723, 0.2189608], [156.08, 1976.212578733765, 0.20674568], [156.09, 1976.80005765586, 0.21829437], [156.1, 1976.2219582742564, 0.20644122], [156.11, 1976.7716635059523, 0.21867137], [156.12, 1976.2088959789444, 0.20606178], [156.13, 1976.7409072865025, 0.21724334], [156.14, 1976.2336132455048, 0.20625378], [156.15, 1976.750974940186, 0.2171861], [156.16, 1976.2297447894887, 0.20647463], [156.17, 1976.7722710064072, 0.218686], [156.18, 1976.2101607275545, 0.20720498], [156.19, 1976.7431314788669, 0.21742986], [156.2, 1976.2395228737478, 0.20628597], [156.21, 1976.7667148538508, 0.21733405], [156.22, 1976.2429981200007, 0.20610839], [156.23, 1976.7439634080504, 0.21775755], [156.24, 1976.2371410544888, 0.20599774], [156.25, 1976.749271653639, 0.21717048], [156.26, 1976.227450377219, 0.20615114], [156.27, 1976.7130547325637, 0.21797109], [156.28, 1976.221107619478, 0.20634246], [156.29, 1976.7036403161542, 0.21732864], [156.3, 1976.2439787655537, 0.20668143], [156.31, 1976.7266757888945, 0.21764632], [156.32, 1976.2121936182573, 0.2075811], [156.33, 1976.7475417588842, 0.21794902], [156.34, 1976.1953245331185, 0.20781231], [156.35, 1976.7635944940935, 0.21750745], [156.36, 1976.2155748204905, 0.20679422], [156.37, 1976.7923382126269, 0.21779959], [156.38, 1976.226369582389, 0.20606044], [156.39, 1976.7770391256088, 0.21782432], [156.4, 1976.248204894826, 0.20550461], [156.41, 1976.7430654988375, 0.2177032], [156.42, 1976.195796675138, 0.20609756], [156.43, 1976.7723098138113, 0.21773271], [156.44, 1976.2245029501062, 0.2063332], [156.45, 1976.7885137950134, 0.21780756], [156.46, 1976.2358707142907, 0.20492278], [156.47, 1976.7459806949898, 0.21694107], [156.48, 1976.2342854784551, 0.20577294], [156.49, 1976.7393504705317, 0.21834488], [156.5, 1976.2173389650545, 0.20592095], [156.51, 1976.7466071496137, 0.21738763], [156.52, 1976.2246254781376, 0.20588273], [156.53, 1976.7402002099755, 0.21752901], [156.54, 1976.189514606464, 0.205959], [156.55, 1976.7393152685659, 0.21776041], [156.56, 1976.176855357798, 0.20679973], [156.57, 1976.784128154508, 0.21905774], [156.58, 1976.1934652052505, 0.20762683], [156.59, 1976.7998252030723, 0.21827263], [156.6, 1976.2116326847117, 0.20806557], [156.61, 1976.8063654924115, 0.21904959], [156.62, 1976.211964488756, 0.2078028], [156.63, 1976.790338448081, 0.21842784], [156.64, 1976.185082126624, 0.20769913], [156.65, 1976.749810584201, 0.2186833], [156.66, 1976.20283666289, 0.20758677], [156.67, 1976.7892488152402, 0.21870424], [156.68, 1976.2100590171908, 0.20681545], [156.69, 1976.7740691525048, 0.21788403], [156.7, 1976.227547217651, 0.20653139], [156.71, 1976.7729276699065, 0.21789587], [156.72, 1976.2325003267488, 0.20606259], [156.73, 1976.8177484514874, 0.21832007], [156.74, 1976.28834974453, 0.2071922], [156.75, 1976.7851737575425, 0.21780945], [156.76, 1976.2720434954826, 0.20697874], [156.77, 1976.7950262078448, 0.21714164], [156.78, 1976.2803173376947, 0.20670979], [156.79, 1976.795471550927, 0.21713941], [156.8, 1976.269278297963, 0.2066903], [156.81, 1976.7795761794366, 0.21814527], [156.82, 1976.2649742499752, 0.20592615], [156.83, 1976.8266968434195, 0.21746452], [156.84, 1976.2551876553664, 0.20637582], [156.85, 1976.8340833850611, 0.21752527], [156.86, 1976.2892746500725, 0.20431317], [156.87, 1976.791146160177, 0.21620601], [156.88, 1976.2931471160946, 0.20342796], [156.89, 1976.7750633034723, 0.2159689], [156.9, 1976.2824988731581, 0.20413283], [156.91, 1976.7587189141059, 0.21605228], [156.92, 1976.286801294572, 0.20421974], [156.93, 1976.7683257037809, 0.21664838], [156.94, 1976.256044687861, 0.20478123], [156.95, 1976.7532593826827, 0.21752036], [156.96, 1976.3139229192088, 0.20505264], [156.97, 1976.8278556052778, 0.21687104], [156.98, 1976.3231616575672, 0.20474683], [156.99, 1976.8361799513436, 0.21670613], [157.0, 1976.2881892811783, 0.20538008], [157.01, 1976.7866437442215, 0.21675405], [157.02, 1976.273580837119, 0.20542786], [157.03, 1976.807275469157, 0.21738625], [157.04, 1976.2515072628278, 0.20611645], [157.05, 1976.844888034986, 0.2173346], [157.06, 1976.2711930177238, 0.20564905], [157.07, 1976.811723628999, 0.21716017], [157.08, 1976.267335202294, 0.2053341], [157.09, 1976.8399303057754, 0.21788187], [157.1, 1976.269443563897, 0.2065329], [157.11, 1976.7968143381927, 0.21818022], [157.12, 1976.3347788388874, 0.20694335], [157.13, 1976.7746679875681, 0.21746856], [157.14, 1976.3507535694055, 0.2064353], [157.15, 1976.8055342243924, 0.21781284], [157.16, 1976.3412264985311, 0.20670024], [157.17, 1976.8439565210767, 0.21763593], [157.18, 1976.3051739191108, 0.20671134], [157.19, 1976.7931040717838, 0.21735303], [157.2, 1976.2927735503272, 0.20597474], [157.21, 1976.8255205560035, 0.21743101], [157.22, 1976.300903754942, 0.20542179], [157.23, 1976.8390406222036, 0.21684979], [157.24, 1976.3387520446408, 0.20570622], [157.25, 1976.8381710098547, 0.21724346], [157.26, 1976.3407674953783, 0.20563279], [157.27, 1976.7710809409805, 0.2168729], [157.28, 1976.319833846209, 0.20604776], [157.29, 1976.7824070797358, 0.21710235], [157.3, 1976.2926905918098, 0.20635301], [157.31, 1976.8074475002084, 0.21753673], [157.32, 1976.3089169916816, 0.20606266], [157.33, 1976.764978565871, 0.21676502], [157.34, 1976.287137755902, 0.2059559], [157.35, 1976.786693891061, 0.21730308], [157.36, 1976.3063532833419, 0.2063893], [157.37, 1976.7808749764795, 0.21688974], [157.38, 1976.3019596961292, 0.20581737], [157.39, 1976.7962167907515, 0.21764368], [157.4, 1976.2919144239797, 0.206112], [157.41, 1976.7776358252584, 0.21787748], [157.42, 1976.268647585, 0.20653224], [157.43, 1976.77150799223, 0.2179747], [157.44, 1976.2696773761197, 0.20635088], [157.45, 1976.7688989265466, 0.21806389], [157.46, 1976.2651771827109, 0.20654798], [157.47, 1976.808346803747, 0.2188578], [157.48, 1976.2480549623215, 0.20719557], [157.49, 1976.815469489393, 0.21947637], [157.5, 1976.2587056330476, 0.20735809], [157.51, 1976.800124799431, 0.2194081], [157.52, 1976.262376382182, 0.20629483], [157.53, 1976.8304584467628, 0.21904793], [157.54, 1976.3011135989932, 0.2057988], [157.55, 1976.81467279558, 0.21870342], [157.56, 1976.2655610830293, 0.20627028], [157.57, 1976.8105014237863, 0.219122], [157.58, 1976.2854722975214, 0.20746323], [157.59, 1976.803376019785, 0.218838], [157.6, 1976.2800425841, 0.2077878], [157.61, 1976.8128578984238, 0.21861346], [157.62, 1976.2901155918883, 0.20764607], [157.63, 1976.8327993141065, 0.21860169], [157.64, 1976.3049676358337, 0.20674996], [157.65, 1976.8393926940785, 0.2182044], [157.66, 1976.2791757502137, 0.20660686], [157.67, 1976.8062656687903, 0.21826433], [157.68, 1976.2510450017485, 0.20680565], [157.69, 1976.799901861597, 0.21856642], [157.7, 1976.2350099603518, 0.20749049], [157.71, 1976.769954515951, 0.21882044], [157.72, 1976.2063087608171, 0.2069533], [157.73, 1976.7510017236416, 0.2185562], [157.74, 1976.23405897651, 0.20709887], [157.75, 1976.8025077037105, 0.2190288], [157.76, 1976.229390492281, 0.20666425], [157.77, 1976.815274537118, 0.2187808], [157.78, 1976.2333127731174, 0.206883], [157.79, 1976.7938226909928, 0.21888255], [157.8, 1976.249013553271, 0.20682259], [157.81, 1976.8394362393947, 0.21919003], [157.82, 1976.2319635138097, 0.206577], [157.83, 1976.8290971043768, 0.21925513], [157.84, 1976.2618991085264, 0.20699362], [157.85, 1976.8724876318497, 0.21805665], [157.86, 1976.2659373495917, 0.20632985], [157.87, 1976.8443354907968, 0.21768922], [157.88, 1976.270320685824, 0.20665018], [157.89, 1976.8805101349712, 0.21834591], [157.9, 1976.2805696725684, 0.2075663], [157.91, 1976.8710009313245, 0.21878481], [157.92, 1976.2723501645908, 0.20714164], [157.93, 1976.8243324397988, 0.21845941], [157.94, 1976.2850624987666, 0.20700772], [157.95, 1976.8686235618886, 0.218734], [157.96, 1976.298049896716, 0.20686267], [157.97, 1976.8624093353062, 0.21861252], [157.98, 1976.2843504956436, 0.20759492], [157.99, 1976.8821621712902, 0.21848072], [158.0, 1976.315527818895, 0.20722803], [158.01, 1976.929620750972, 0.21795692], [158.02, 1976.342900516665, 0.20671466], [158.03, 1976.897674809407, 0.21723995], [158.04, 1976.3299401281774, 0.2065144], [158.05, 1976.8850135665232, 0.21695833], [158.06, 1976.3181067777166, 0.20658796], [158.07, 1976.8755997714127, 0.21722975], [158.08, 1976.2462384756668, 0.20625475], [158.09, 1976.8644199558755, 0.2173834], [158.1, 1976.2544834139615, 0.20655905], [158.11, 1976.8745936367982, 0.21799901], [158.12, 1976.2673395130923, 0.2063037], [158.13, 1976.8961622357951, 0.21850179], [158.14, 1976.2625203627579, 0.20703124], [158.15, 1976.8349704229227, 0.21824592], [158.16, 1976.3084045315304, 0.20812826], [158.17, 1976.850437746093, 0.21782182], [158.18, 1976.283163068687, 0.20798564], [158.19, 1976.842148100379, 0.21818937], [158.2, 1976.3065265563678, 0.20735405], [158.21, 1976.8690815492073, 0.21689235], [158.22, 1976.2715253081751, 0.20652929], [158.23, 1976.8046141259802, 0.21720183], [158.24, 1976.2503992657241, 0.2070415], [158.25, 1976.8027975231316, 0.21794268], [158.26, 1976.2577027327225, 0.20680612], [158.27, 1976.8214976667136, 0.21689615], [158.28, 1976.2348643724426, 0.20640513], [158.29, 1976.8413934721175, 0.2174385], [158.3, 1976.2487079338493, 0.2072077], [158.31, 1976.85822423898, 0.21770322], [158.32, 1976.2609995047355, 0.20763701], [158.33, 1976.8537345323593, 0.217698], [158.34, 1976.2635304717364, 0.20731814], [158.35, 1976.831851387146, 0.2177469], [158.36, 1976.2136617300032, 0.20632131], [158.37, 1976.7948376203053, 0.21805145], [158.38, 1976.2104388981415, 0.20692226], [158.39, 1976.8109769742111, 0.21861997], [158.4, 1976.191861311815, 0.2069903], [158.41, 1976.762570648164, 0.21846126], [158.42, 1976.1972926546039, 0.20651424], [158.43, 1976.763339062304, 0.21770285], [158.44, 1976.2279947324644, 0.2059328], [158.45, 1976.7611134991162, 0.21727201], [158.46, 1976.241263507041, 0.20620781], [158.47, 1976.7907542692967, 0.21716413], [158.48, 1976.2687834030178, 0.20533627], [158.49, 1976.7870558243708, 0.21644278], [158.5, 1976.2220082803237, 0.2049903], [158.51, 1976.7585452421781, 0.2166134], [158.52, 1976.2355990157562, 0.20486613], [158.53, 1976.7653194968127, 0.21751478], [158.54, 1976.2613520188268, 0.20449658], [158.55, 1976.7860323337297, 0.21683963], [158.56, 1976.243451480897, 0.2049925], [158.57, 1976.8439492998048, 0.2173312], [158.58, 1976.235648666971, 0.20496915], [158.59, 1976.777920166235, 0.21719773], [158.6, 1976.2360697356335, 0.20502447], [158.61, 1976.8058969572896, 0.21685374], [158.62, 1976.2628819848862, 0.2053229], [158.63, 1976.8291862170868, 0.21699947], [158.64, 1976.2833617793885, 0.20457515], [158.65, 1976.8384073732086, 0.2157005], [158.66, 1976.2935774256357, 0.20376314], [158.67, 1976.847429977793, 0.21605204], [158.68, 1976.2390197003115, 0.20457348], [158.69, 1976.8368109162918, 0.21648349], [158.7, 1976.2551377137675, 0.20511407], [158.71, 1976.8710531030642, 0.2169939], [158.72, 1976.2400982840595, 0.20484646], [158.73, 1976.822429996489, 0.21758461], [158.74, 1976.2164281528758, 0.20556746], [158.75, 1976.8217571949433, 0.2180479], [158.76, 1976.2298069533867, 0.20620465], [158.77, 1976.8599311186665, 0.21885593], [158.78, 1976.2144182640568, 0.20686714], [158.79, 1976.8359800065687, 0.21856356], [158.8, 1976.2120482733135, 0.20681149], [158.81, 1976.8551651292048, 0.21841069], [158.82, 1976.2523608143956, 0.2070563], [158.83, 1976.8209509243536, 0.21826316], [158.84, 1976.2468995459217, 0.20689312], [158.85, 1976.8368503214626, 0.2183385], [158.86, 1976.2448221241762, 0.2061706], [158.87, 1976.8258867765421, 0.21795243], [158.88, 1976.245307199532, 0.20545879], [158.89, 1976.8692415753183, 0.21814314], [158.9, 1976.2473706680285, 0.20514907], [158.91, 1976.8851538037459, 0.21896286], [158.92, 1976.2328041971489, 0.20549433], [158.93, 1976.8253464149177, 0.21832365], [158.94, 1976.2588924075678, 0.20690003], [158.95, 1976.8232451288043, 0.21891327], [158.96, 1976.2495510087776, 0.20634933], [158.97, 1976.804093412851, 0.21859851], [158.98, 1976.2444257257057, 0.20609367], [158.99, 1976.8018217714073, 0.2184674], [159.0, 1976.2569791582318, 0.20555905], [159.01, 1976.7908325741305, 0.21833746], [159.02, 1976.2645729804208, 0.20577477], [159.03, 1976.8195725874075, 0.21816835], [159.04, 1976.2966116355656, 0.2062578], [159.05, 1976.8278744883487, 0.21833445], [159.06, 1976.3085940793944, 0.205179], [159.07, 1976.8162660252733, 0.2185211], [159.08, 1976.285873320634, 0.2051578], [159.09, 1976.8264617423629, 0.2180113], [159.1, 1976.2936540771432, 0.20545417], [159.11, 1976.8101442699415, 0.2184513], [159.12, 1976.208504757904, 0.20496267], [159.13, 1976.8386286703142, 0.21950425], [159.14, 1976.206596894318, 0.20609555], [159.15, 1976.8862021859493, 0.21858631], [159.16, 1976.2320556655877, 0.20558204], [159.17, 1976.91481933938, 0.21882424], [159.18, 1976.2099195493763, 0.20554124], [159.19, 1976.885768560664, 0.2190603], [159.2, 1976.198443148196, 0.20610957], [159.21, 1976.8853484305907, 0.2190347], [159.22, 1976.1849075758516, 0.20639986], [159.23, 1976.877238631946, 0.21858226], [159.24, 1976.1731868231486, 0.20768122], [159.25, 1976.832181753741, 0.219949], [159.26, 1976.1583646817244, 0.20722185], [159.27, 1976.8591927827422, 0.21947572], [159.28, 1976.1173378581093, 0.20736356], [159.29, 1976.8554088871706, 0.21913901], [159.3, 1976.1384484414289, 0.20682973], [159.31, 1976.873572965772, 0.21834613], [159.32, 1976.156613048837, 0.2065445], [159.33, 1976.798432845674, 0.21890898], [159.34, 1976.1478090893954, 0.206997], [159.35, 1976.7846486593912, 0.21976154], [159.36, 1976.1720487227944, 0.2066701], [159.37, 1976.7994107647357, 0.21978813], [159.38, 1976.204126894104, 0.20674792], [159.39, 1976.8156351665334, 0.2196228], [159.4, 1976.2235246486157, 0.20622194], [159.41, 1976.818644517622, 0.21872425], [159.42, 1976.2308468071262, 0.20668185], [159.43, 1976.8188478484342, 0.21923596], [159.44, 1976.2157958309547, 0.20652716], [159.45, 1976.832646859898, 0.21873318], [159.46, 1976.2352103703302, 0.20621948], [159.47, 1976.854167839388, 0.2179038], [159.48, 1976.2423363763571, 0.20601149], [159.49, 1976.8485174126795, 0.21893407], [159.5, 1976.2432078563565, 0.20628735], [159.51, 1976.8475043251456, 0.21875401], [159.52, 1976.2583032157238, 0.2062737], [159.53, 1976.8121676385774, 0.2183234], [159.54, 1976.209205022703, 0.20555812], [159.55, 1976.8336376408552, 0.21882094], [159.56, 1976.1978327625347, 0.20594715], [159.57, 1976.8180876832482, 0.21845019], [159.58, 1976.2052608785245, 0.20621224], [159.59, 1976.791089897317, 0.2180963], [159.6, 1976.1910365717542, 0.20645659], [159.61, 1976.7667155593508, 0.21830954], [159.62, 1976.2397872088443, 0.20712428], [159.63, 1976.7879877632424, 0.21853112], [159.64, 1976.2772303934526, 0.20652767], [159.65, 1976.8121069893893, 0.21869594], [159.66, 1976.269526722348, 0.20691843], [159.67, 1976.781347693598, 0.21789177], [159.68, 1976.23688681972, 0.20747651], [159.69, 1976.8151049462097, 0.21845372], [159.7, 1976.2436628545968, 0.20616241], [159.71, 1976.823092332886, 0.21841669], [159.72, 1976.205314206018, 0.20604157], [159.73, 1976.780238471849, 0.21851951], [159.74, 1976.1975030938336, 0.20685516], [159.75, 1976.8009331144249, 0.22018594], [159.76, 1976.2062799087334, 0.20733184], [159.77, 1976.7874640598002, 0.21938911], [159.78, 1976.2022686539192, 0.20740592], [159.79, 1976.838462858682, 0.21974966], [159.8, 1976.242316215745, 0.2071234], [159.81, 1976.8081517745468, 0.21876019], [159.82, 1976.1956989059206, 0.20667109], [159.83, 1976.7819483669127, 0.2186498], [159.84, 1976.2327168880004, 0.20733964], [159.85, 1976.8402888887604, 0.21929017], [159.86, 1976.2210681907873, 0.207359], [159.87, 1976.8800574832583, 0.21873574], [159.88, 1976.2728951032975, 0.20778938], [159.89, 1976.8540723859771, 0.2186763], [159.9, 1976.2858430529466, 0.20757085], [159.91, 1976.8855871899816, 0.21910214], [159.92, 1976.276909046653, 0.20839272], [159.93, 1976.8495193584395, 0.21839903], [159.94, 1976.2736492271417, 0.207149], [159.95, 1976.902129852202, 0.21794823], [159.96, 1976.2665375838183, 0.2060194], [159.97, 1976.875217905204, 0.2175357], [159.98, 1976.2731063442357, 0.20604455], [159.99, 1976.9311423520926, 0.2177271], [160.0, 1976.3217177763336, 0.20613745], [160.01, 1976.9224488060945, 0.21763104], [160.02, 1976.302494898353, 0.20362978], [160.03, 1976.9886289877047, 0.21733026], [160.04, 1976.3286053943546, 0.20358297], [160.05, 1976.9275466080805, 0.2175424], [160.06, 1976.289388668993, 0.20405823], [160.07, 1976.8949843848718, 0.21729624], [160.08, 1976.2954263079926, 0.20351817], [160.09, 1976.8817167879433, 0.21671426], [160.1, 1976.3264141855366, 0.20474423], [160.11, 1976.8802364925525, 0.21686728], [160.12, 1976.3309197643011, 0.20564887], [160.13, 1976.9135058963204, 0.21805246], [160.14, 1976.370538931026, 0.20538682], [160.15, 1976.9384511048545, 0.21723229], [160.16, 1976.3819798511042, 0.20498376], [160.17, 1976.9174019759212, 0.21752368], [160.18, 1976.366995661976, 0.20517962], [160.19, 1976.9410910035158, 0.2174176], [160.2, 1976.345638437399, 0.20526531], [160.21, 1976.9488327336899, 0.21731418], [160.22, 1976.328674007847, 0.20450865], [160.23, 1976.9224122197525, 0.21687073], [160.24, 1976.3183977643391, 0.20415768], [160.25, 1976.86542862263, 0.2166092], [160.26, 1976.324080726721, 0.20415102], [160.27, 1976.855536857101, 0.21816461], [160.28, 1976.3357244536408, 0.20446776], [160.29, 1976.8562003931208, 0.21788219], [160.3, 1976.338009279627, 0.20474991], [160.31, 1976.8685819535801, 0.21790864], [160.32, 1976.3202780252923, 0.2043594], [160.33, 1976.868711431525, 0.21797732], [160.34, 1976.303859029004, 0.20496364], [160.35, 1976.8679997324261, 0.21876861], [160.36, 1976.339554995921, 0.20557268], [160.37, 1976.876641379962, 0.21822743], [160.38, 1976.3155668212246, 0.20636497], [160.39, 1976.8583202148739, 0.21820767], [160.4, 1976.318847038199, 0.20617321], [160.41, 1976.88832792297, 0.2186108], [160.42, 1976.3557899250332, 0.2056794], [160.43, 1976.9053751190972, 0.21865429], [160.44, 1976.3331851725409, 0.20611541], [160.45, 1976.893356248802, 0.21830204], [160.46, 1976.3503434431802, 0.20649825], [160.47, 1976.8986521904187, 0.21849366], [160.48, 1976.3578332037114, 0.20683432], [160.49, 1976.89405481928, 0.218361], [160.5, 1976.3424195680818, 0.20734367], [160.51, 1976.909132520999, 0.2185145], [160.52, 1976.3433167453027, 0.20708458], [160.53, 1976.8840293356322, 0.21818767], [160.54, 1976.3401443855578, 0.20709665], [160.55, 1976.8798570884478, 0.21832727], [160.56, 1976.3561794709326, 0.20713581], [160.57, 1976.889836118175, 0.21844143], [160.58, 1976.3198324734847, 0.20744917], [160.59, 1976.8868539887662, 0.21777952], [160.6, 1976.3272159740432, 0.20860979], [160.61, 1976.862863189856, 0.21830726], [160.62, 1976.3267543240568, 0.20806886], [160.63, 1976.882952940185, 0.21857557], [160.64, 1976.2894661622975, 0.20793268], [160.65, 1976.857911396397, 0.21920161], [160.66, 1976.303884157538, 0.2075818], [160.67, 1976.8466162247405, 0.21852371], [160.68, 1976.3031578382888, 0.20730276], [160.69, 1976.8919986418293, 0.21970122], [160.7, 1976.2866134938204, 0.20696847], [160.71, 1976.8495195786102, 0.21938491], [160.72, 1976.2781023622701, 0.2077621], [160.73, 1976.8981325738503, 0.21958978], [160.74, 1976.2519536251189, 0.20829289], [160.75, 1976.8835776525557, 0.22002442], [160.76, 1976.2574038590478, 0.2086691], [160.77, 1976.845392710501, 0.21969138], [160.78, 1976.244285557925, 0.20942338], [160.79, 1976.840330227281, 0.22040106], [160.8, 1976.2466571373611, 0.20881426], [160.81, 1976.804224935977, 0.22059073], [160.82, 1976.2403683286861, 0.20912069], [160.83, 1976.8367473563615, 0.22060926], [160.84, 1976.236742616841, 0.20892459], [160.85, 1976.8333544469483, 0.22064914], [160.86, 1976.2566291095645, 0.20881699], [160.87, 1976.8707423716726, 0.22037141], [160.88, 1976.268351310182, 0.20868616], [160.89, 1976.9058667865008, 0.22080615], [160.9, 1976.2839293264524, 0.20817322], [160.91, 1976.8859281592258, 0.22054872], [160.92, 1976.2509604793645, 0.20818545], [160.93, 1976.8882855843426, 0.22018787], [160.94, 1976.2521764817034, 0.20884241], [160.95, 1976.8451809986097, 0.22001937], [160.96, 1976.255523944026, 0.20868544], [160.97, 1976.8639916681266, 0.22075997], [160.98, 1976.2359029420143, 0.20916411], [160.99, 1976.8830318100718, 0.22138044], [161.0, 1976.2082778836905, 0.2091656], [161.01, 1976.8464440543537, 0.22112477], [161.02, 1976.2069742901522, 0.20881489], [161.03, 1976.8890761906478, 0.22152133], [161.04, 1976.233991118131, 0.20881397], [161.05, 1976.8682763506124, 0.2201778], [161.06, 1976.2366947410703, 0.20838267], [161.07, 1976.9008013910072, 0.2200317], [161.08, 1976.2262479799645, 0.20811565], [161.09, 1976.877361510377, 0.22019705], [161.1, 1976.2718865500392, 0.20797195], [161.11, 1976.8359100545283, 0.22015771], [161.12, 1976.253908538527, 0.20736578], [161.13, 1976.8498288364458, 0.21970071], [161.14, 1976.2528171508586, 0.20667332], [161.15, 1976.8787586363956, 0.21896204], [161.16, 1976.2565950933365, 0.20619507], [161.17, 1976.87841101633, 0.21942471], [161.18, 1976.2321812676726, 0.20643517], [161.19, 1976.8767372011744, 0.21890308], [161.2, 1976.2650655121342, 0.2055787], [161.21, 1976.9152537713544, 0.219258], [161.22, 1976.249032926126, 0.20501028], [161.23, 1976.9317497965276, 0.2181874], [161.24, 1976.2631912022916, 0.20566112], [161.25, 1976.9118830199207, 0.2183941], [161.26, 1976.2581127758244, 0.2062873], [161.27, 1976.9113395735133, 0.21911022], [161.28, 1976.2548324688896, 0.2065578], [161.29, 1976.9448880822097, 0.21843964], [161.3, 1976.2491828605553, 0.20574208], [161.31, 1976.9287472444787, 0.21888486], [161.32, 1976.2636007473934, 0.20634219], [161.33, 1976.9684176893882, 0.21831585], [161.34, 1976.2973913162002, 0.20561421], [161.35, 1976.9063299450702, 0.21791227], [161.36, 1976.2962605693815, 0.20532604], [161.37, 1976.9015201685183, 0.21740818], [161.38, 1976.3011003782935, 0.20616516], [161.39, 1976.8916301763786, 0.21756527], [161.4, 1976.321873969322, 0.20679392], [161.41, 1976.9169769743203, 0.21833953], [161.42, 1976.2975463406215, 0.20647645], [161.43, 1976.8966218235464, 0.2176427], [161.44, 1976.2789539927005, 0.20694153], [161.45, 1976.8642400224544, 0.21910901], [161.46, 1976.2997083615355, 0.20722425], [161.47, 1976.8926314859464, 0.21946257], [161.48, 1976.3244222592036, 0.20719032], [161.49, 1976.863446479369, 0.21884075], [161.5, 1976.3196957080029, 0.20707723], [161.51, 1976.8359806105093, 0.21922323], [161.52, 1976.307110984196, 0.20763348], [161.53, 1976.8591616793308, 0.2186371], [161.54, 1976.314160384476, 0.20838624], [161.55, 1976.830752281896, 0.21925934], [161.56, 1976.2709931237353, 0.20769158], [161.57, 1976.8309263927317, 0.21885225], [161.58, 1976.273642937567, 0.20849442], [161.59, 1976.8515145513768, 0.21841912], [161.6, 1976.289311810043, 0.2076329], [161.61, 1976.8864416771457, 0.21849327], [161.62, 1976.3052331186634, 0.20721929], [161.63, 1976.84662735471, 0.21843293], [161.64, 1976.3009299609566, 0.20778652], [161.65, 1976.8803748398634, 0.21824655], [161.66, 1976.2860827361012, 0.20768167], [161.67, 1976.8699660224431, 0.21796013], [161.68, 1976.3290312478457, 0.20693219], [161.69, 1976.8797909511404, 0.21770503], [161.7, 1976.3095827987624, 0.2077215], [161.71, 1976.846025666646, 0.21917042], [161.72, 1976.3489274170902, 0.2087945], [161.73, 1976.8820698809807, 0.21839498], [161.74, 1976.305294494713, 0.20792212], [161.75, 1976.8561483824144, 0.21850942], [161.76, 1976.2949789818354, 0.20729905], [161.77, 1976.843865017293, 0.21859369], [161.78, 1976.2983057745096, 0.2069602], [161.79, 1976.8829283231316, 0.21774413], [161.8, 1976.3107096056174, 0.20612125], [161.81, 1976.8866578710458, 0.21783938], [161.82, 1976.3175784175128, 0.20621136], [161.83, 1976.923637613284, 0.21830714], [161.84, 1976.3327686101127, 0.2066421], [161.85, 1976.9281163990333, 0.21831267], [161.86, 1976.30952393613, 0.20690195], [161.87, 1976.9282611089297, 0.21940614], [161.88, 1976.3263093961743, 0.2064192], [161.89, 1976.939767869455, 0.21889089], [161.9, 1976.3124067663355, 0.20565802], [161.91, 1976.8875460097536, 0.21845864], [161.92, 1976.364547172505, 0.2056948], [161.93, 1976.8744165934536, 0.21771896], [161.94, 1976.376162079472, 0.20474437], [161.95, 1976.8891529188872, 0.21713337], [161.96, 1976.3545455928138, 0.20401408], [161.97, 1976.8599078560499, 0.2170607], [161.98, 1976.3450371449399, 0.20476133], [161.99, 1976.8252226785214, 0.21653506], [162.0, 1976.330211846946, 0.2048132], [162.01, 1976.832196298052, 0.21711776], [162.02, 1976.3493040588432, 0.20473564], [162.03, 1976.8166885633743, 0.21689102], [162.04, 1976.2939688243605, 0.20625558], [162.05, 1976.8223137437872, 0.2175112], [162.06, 1976.278007821169, 0.20685482], [162.07, 1976.8217357729702, 0.21800536], [162.08, 1976.266113568297, 0.20670508], [162.09, 1976.8525060770135, 0.21897805], [162.1, 1976.2753064425851, 0.20564635], [162.11, 1976.8358731458045, 0.21786417], [162.12, 1976.2523906252816, 0.20535143], [162.13, 1976.7944792503758, 0.21795085], [162.14, 1976.2643760885978, 0.20607984], [162.15, 1976.867881753718, 0.21877101], [162.16, 1976.263983014971, 0.20643789], [162.17, 1976.8494243188197, 0.2175609], [162.18, 1976.293197037107, 0.20680632], [162.19, 1976.8422833761258, 0.2176092], [162.2, 1976.2879721720549, 0.2062054], [162.21, 1976.8213934694816, 0.21774875], [162.22, 1976.2668972273032, 0.20699598], [162.23, 1976.8703964007327, 0.21854334], [162.24, 1976.2503786696543, 0.20733683], [162.25, 1976.8879010995781, 0.21868229], [162.26, 1976.2735945020745, 0.20719281], [162.27, 1976.8365494737534, 0.21803665], [162.28, 1976.2723548936483, 0.20615996], [162.29, 1976.8757750375178, 0.21877787], [162.3, 1976.2717810563004, 0.20678802], [162.31, 1976.930299146125, 0.21864139], [162.32, 1976.2882623674434, 0.20729733], [162.33, 1976.881112551075, 0.21800402], [162.34, 1976.2698417523616, 0.20647588], [162.35, 1976.8607357455112, 0.21867794], [162.36, 1976.2644567241337, 0.20695442], [162.37, 1976.8740779577067, 0.21947572], [162.38, 1976.3012539952113, 0.20570548], [162.39, 1976.8794860524, 0.21829765], [162.4, 1976.2911299376926, 0.20487073], [162.41, 1976.8118835785067, 0.21673009], [162.42, 1976.2455169067655, 0.20445332], [162.43, 1976.8268854147445, 0.2164995], [162.44, 1976.2605627728542, 0.20492037], [162.45, 1976.7975641465628, 0.2169267], [162.46, 1976.2720301687148, 0.20498456], [162.47, 1976.7884394767248, 0.21678925], [162.48, 1976.2650662200617, 0.20518115], [162.49, 1976.7810272821725, 0.21674344], [162.5, 1976.2771541070206, 0.2054266], [162.51, 1976.7991067771425, 0.21646772], [162.52, 1976.291573801042, 0.2049077], [162.53, 1976.7519071166998, 0.21660873], [162.54, 1976.2727821319424, 0.20457669], [162.55, 1976.7810907686555, 0.2171879], [162.56, 1976.26409574984, 0.20567417], [162.57, 1976.824993747265, 0.21744627], [162.58, 1976.2718217878441, 0.20677887], [162.59, 1976.79087180068, 0.21866931], [162.6, 1976.282736833069, 0.20710187], [162.61, 1976.8205033413387, 0.21827759], [162.62, 1976.2577882022947, 0.20599598], [162.63, 1976.8306715698407, 0.21867467], [162.64, 1976.2750880280473, 0.20515805], [162.65, 1976.8255439374375, 0.21776557], [162.66, 1976.2900611813645, 0.20488223], [162.67, 1976.8218200112105, 0.21723369], [162.68, 1976.2764480221176, 0.20542246], [162.69, 1976.7601477894118, 0.21662207], [162.7, 1976.2820791246747, 0.2056103], [162.71, 1976.7992301828262, 0.21725327], [162.72, 1976.2734229870955, 0.20542449], [162.73, 1976.82618191153, 0.21837431], [162.74, 1976.2273145291424, 0.20696692], [162.75, 1976.8233804716376, 0.21831666], [162.76, 1976.2409940335283, 0.20713286], [162.77, 1976.8449174909413, 0.21899694], [162.78, 1976.2279542344786, 0.20660782], [162.79, 1976.815762465569, 0.2177158], [162.8, 1976.240168985893, 0.20640361], [162.81, 1976.8303916666341, 0.21829109], [162.82, 1976.2255155663183, 0.2064955], [162.83, 1976.8808401342308, 0.21924342], [162.84, 1976.2362258585179, 0.20759325], [162.85, 1976.8782186702647, 0.21913403], [162.86, 1976.2487107317772, 0.20883586], [162.87, 1976.8601903729561, 0.21997082], [162.88, 1976.2604091272556, 0.20826222], [162.89, 1976.874555499319, 0.21888044], [162.9, 1976.2761025722561, 0.20737498], [162.91, 1976.8752830925805, 0.21764386], [162.92, 1976.2616739145822, 0.20622735], [162.93, 1976.8399930627108, 0.21744356], [162.94, 1976.2212338311313, 0.20605715], [162.95, 1976.8655019699468, 0.21855588], [162.96, 1976.1885059474384, 0.20543204], [162.97, 1976.8370719142288, 0.21861778], [162.98, 1976.1906785004162, 0.20534782], [162.99, 1976.8240605705855, 0.21831949], [163.0, 1976.1864835307397, 0.20579657], [163.01, 1976.8640120137134, 0.21852916], [163.02, 1976.2010900241173, 0.20556651], [163.03, 1976.815184490451, 0.21794827], [163.04, 1976.1726954861822, 0.2053176], [163.05, 1976.7941340314826, 0.21956588], [163.06, 1976.18373957409, 0.20604508], [163.07, 1976.7818463513684, 0.21944657], [163.08, 1976.1737526121688, 0.20577186], [163.09, 1976.7841557393454, 0.21817738], [163.1, 1976.2020054863065, 0.20531861], [163.11, 1976.759928867319, 0.21832453], [163.12, 1976.1637749942875, 0.20651126], [163.13, 1976.7256683434189, 0.21876618], [163.14, 1976.188553633223, 0.20687549], [163.15, 1976.7470363277334, 0.21926536], [163.16, 1976.2105987545565, 0.20628797], [163.17, 1976.7686926540764, 0.21832629], [163.18, 1976.2216694619362, 0.20655183], [163.19, 1976.7499114417024, 0.21953332], [163.2, 1976.1999847588552, 0.20680265], [163.21, 1976.7797898788494, 0.21898788], [163.22, 1976.198017053521, 0.20669363], [163.23, 1976.7513241301115, 0.21801373], [163.24, 1976.2051621281862, 0.2067233], [163.25, 1976.780538836682, 0.21765918], [163.26, 1976.2348076102194, 0.20637983], [163.27, 1976.7665709956173, 0.21803641], [163.28, 1976.2392264322352, 0.20624033], [163.29, 1976.7323136195778, 0.21861176], [163.3, 1976.2001106019434, 0.2071819], [163.31, 1976.6961046771435, 0.21959546], [163.32, 1976.2129495031716, 0.20756786], [163.33, 1976.663630903023, 0.21969837], [163.34, 1976.232047512375, 0.20753272], [163.35, 1976.7040598648841, 0.21953923], [163.36, 1976.2442014363385, 0.20746437], [163.37, 1976.6884421000746, 0.2199803], [163.38, 1976.2311792007893, 0.20786074], [163.39, 1976.7535873535737, 0.2199346], [163.4, 1976.2246143967898, 0.20838906], [163.41, 1976.7881683204203, 0.21943635], [163.42, 1976.2578486334862, 0.20688519], [163.43, 1976.8296529133684, 0.2187917], [163.44, 1976.2241608464865, 0.20694135], [163.45, 1976.8021435531891, 0.21861897], [163.46, 1976.2477651872027, 0.20693913], [163.47, 1976.7535147724948, 0.2181647], [163.48, 1976.2447743218606, 0.2064883], [163.49, 1976.7523866119377, 0.21781468], [163.5, 1976.225716452442, 0.20688632], [163.51, 1976.7674844004673, 0.21763974], [163.52, 1976.223334738445, 0.20694323], [163.53, 1976.776607637089, 0.21845898], [163.54, 1976.2047760269545, 0.20716314], [163.55, 1976.7878145118598, 0.21765336], [163.56, 1976.2270823886283, 0.20764168], [163.57, 1976.844444900416, 0.21884693], [163.58, 1976.2359476404688, 0.2078286], [163.59, 1976.86558068777, 0.21842165], [163.6, 1976.2527707441586, 0.20724744], [163.61, 1976.8372317876779, 0.21808913], [163.62, 1976.2162986010387, 0.20637989], [163.63, 1976.7774271389578, 0.21807793], [163.64, 1976.164741657601, 0.20648198], [163.65, 1976.7861060119162, 0.21873987], [163.66, 1976.1725219984723, 0.20605849], [163.67, 1976.7390869154697, 0.21816862], [163.68, 1976.148941036222, 0.20572007], [163.69, 1976.7409657981714, 0.2181307], [163.7, 1976.1639103281752, 0.20621379], [163.71, 1976.725877504655, 0.21880828], [163.72, 1976.1982632981171, 0.20567985], [163.73, 1976.776873880959, 0.2181495], [163.74, 1976.2098397748357, 0.20520717], [163.75, 1976.7743492337358, 0.217935], [163.76, 1976.235891986828, 0.20433585], [163.77, 1976.7612830638195, 0.2168221], [163.78, 1976.1651900009317, 0.20370972], [163.79, 1976.7363579401012, 0.21711409], [163.8, 1976.1852146606884, 0.20463058], [163.81, 1976.8252818524938, 0.2182779], [163.82, 1976.187957644827, 0.20454285], [163.83, 1976.815760583323, 0.21817501], [163.84, 1976.1807937836916, 0.20594119], [163.85, 1976.7903468764844, 0.21973424], [163.86, 1976.1947222501194, 0.20617601], [163.87, 1976.8234122952053, 0.21938935], [163.88, 1976.1638691862572, 0.20637996], [163.89, 1976.8192344744032, 0.21904135], [163.9, 1976.1858582492484, 0.20673701], [163.91, 1976.8634402349053, 0.21946375], [163.92, 1976.2029406496365, 0.20677386], [163.93, 1976.876306711329, 0.21968724], [163.94, 1976.2262886979447, 0.20602264], [163.95, 1976.9019566310676, 0.21952033], [163.96, 1976.2239371707615, 0.20554617], [163.97, 1976.8261402533362, 0.21853283], [163.98, 1976.2524919879536, 0.20558785], [163.99, 1976.8028689555786, 0.2173027], [164.0, 1976.263011118473, 0.205015], [164.01, 1976.7770043185392, 0.2169927], [164.02, 1976.249154724976, 0.20453264], [164.03, 1976.8381271848593, 0.21733643], [164.04, 1976.2816357926263, 0.20481457], [164.05, 1976.850225553551, 0.21665332], [164.06, 1976.2565020524196, 0.20507431], [164.07, 1976.8560851585194, 0.21688683], [164.08, 1976.2410175369855, 0.2046617], [164.09, 1976.8661380667138, 0.2185555], [164.1, 1976.2079718563546, 0.20559293], [164.11, 1976.823357174988, 0.217587], [164.12, 1976.2087915754992, 0.20583116], [164.13, 1976.831184513312, 0.21816358], [164.14, 1976.219927774887, 0.20484169], [164.15, 1976.8293595450052, 0.21815163], [164.16, 1976.2088483607213, 0.20461163], [164.17, 1976.8421688055237, 0.21781859], [164.18, 1976.194155755619, 0.20597784], [164.19, 1976.8007092208827, 0.21887356], [164.2, 1976.2015631588451, 0.2060945], [164.21, 1976.8339214083185, 0.21942936], [164.22, 1976.236316588495, 0.20635688], [164.23, 1976.836932955164, 0.21940398], [164.24, 1976.2354471823428, 0.20594883], [164.25, 1976.8735347181755, 0.21867467], [164.26, 1976.2798662187627, 0.20621014], [164.27, 1976.8749092169232, 0.21884789], [164.28, 1976.270654395326, 0.20574392], [164.29, 1976.8864434354978, 0.21875481], [164.3, 1976.2482693829293, 0.20645368], [164.31, 1976.815356050329, 0.21954381], [164.32, 1976.2282053701394, 0.20653552], [164.33, 1976.8245651016139, 0.21977912], [164.34, 1976.2568482699212, 0.20578927], [164.35, 1976.8954370428119, 0.21930017], [164.36, 1976.2392212547818, 0.20514844], [164.37, 1976.8633554093574, 0.21906374], [164.38, 1976.2129259191895, 0.20587611], [164.39, 1976.8400429325013, 0.21834102], [164.4, 1976.251373079093, 0.20503354], [164.41, 1976.8718688779552, 0.21774548], [164.42, 1976.2547353689638, 0.20388162], [164.43, 1976.8955641768728, 0.21729422], [164.44, 1976.2886514214645, 0.20348191], [164.45, 1976.9204618657138, 0.21689609], [164.46, 1976.2426189241573, 0.20428292], [164.47, 1976.8795633601483, 0.21818079], [164.48, 1976.2616873066308, 0.20535405], [164.49, 1976.8985819322436, 0.21780895], [164.5, 1976.2753481827563, 0.20535475], [164.51, 1976.9139581214522, 0.21801011], [164.52, 1976.2668043671113, 0.20529908], [164.53, 1976.8984181245055, 0.21781349], [164.54, 1976.270458082306, 0.20596945], [164.55, 1976.8661829425446, 0.21766166], [164.56, 1976.2953444074478, 0.20633669], [164.57, 1976.853360935162, 0.21864682], [164.58, 1976.2603055215889, 0.20619813], [164.59, 1976.8990369927947, 0.21849099], [164.6, 1976.265217308727, 0.20728454], [164.61, 1976.9006413020318, 0.21978004], [164.62, 1976.2534845646655, 0.20734592], [164.63, 1976.89856427264, 0.21995682], [164.64, 1976.2678720852707, 0.207203], [164.65, 1976.8710317545942, 0.21983299], [164.66, 1976.230342670956, 0.20669279], [164.67, 1976.8694314238774, 0.22005771], [164.68, 1976.2171908679873, 0.20732231], [164.69, 1976.888921478278, 0.21925896], [164.7, 1976.1927679939668, 0.20675585], [164.71, 1976.8548756619145, 0.21976869], [164.72, 1976.197191314061, 0.20700875], [164.73, 1976.8725216071011, 0.21929602], [164.74, 1976.2016542751664, 0.20741786], [164.75, 1976.8883399508927, 0.21948129], [164.76, 1976.2003326804438, 0.20707473], [164.77, 1976.8269374451243, 0.21825418], [164.78, 1976.2082182623203, 0.20674881], [164.79, 1976.8368529039194, 0.21800886], [164.8, 1976.2383728356945, 0.20687439], [164.81, 1976.8276731235192, 0.21848203], [164.82, 1976.213143446969, 0.20676795], [164.83, 1976.8018958364319, 0.21827528], [164.84, 1976.1481459576337, 0.20681547], [164.85, 1976.7965304941279, 0.21823452], [164.86, 1976.1750064724383, 0.20646775], [164.87, 1976.734396544492, 0.21781057], [164.88, 1976.2050593615759, 0.20663698], [164.89, 1976.810812348962, 0.2183862], [164.9, 1976.2249796859621, 0.2064392], [164.91, 1976.8068580578665, 0.21728629], [164.92, 1976.2547763422422, 0.20634374], [164.93, 1976.79408117742, 0.21708828], [164.94, 1976.2276478129565, 0.2060276], [164.95, 1976.7918144409064, 0.2170982], [164.96, 1976.2065370106397, 0.20591962], [164.97, 1976.8081887539631, 0.2165803], [164.98, 1976.230380432597, 0.20497829], [164.99, 1976.8014204338263, 0.21618262], [165.0, 1976.1834459955628, 0.20468423], [165.01, 1976.7303363842464, 0.21604306], [165.02, 1976.174047511633, 0.20431618], [165.03, 1976.7755233347389, 0.21604332], [165.04, 1976.1999945123782, 0.20519531], [165.05, 1976.7668241641077, 0.21684392], [165.06, 1976.246781190639, 0.2047183], [165.07, 1976.816716812139, 0.21667364], [165.08, 1976.2643247281208, 0.2051966], [165.09, 1976.8439759982184, 0.21724351], [165.1, 1976.2622682373817, 0.20626225], [165.11, 1976.8246589177684, 0.2160003], [165.12, 1976.259020887833, 0.20583035], [165.13, 1976.8053628877194, 0.21659581], [165.14, 1976.2533180154549, 0.20553027], [165.15, 1976.794994487532, 0.2162763], [165.16, 1976.2400531107223, 0.20599438], [165.17, 1976.7677538034466, 0.21603782], [165.18, 1976.219928812166, 0.20565699], [165.19, 1976.7572001645935, 0.21575059], [165.2, 1976.1900821193062, 0.20587891], [165.21, 1976.7549634985817, 0.21680143], [165.22, 1976.1833795578846, 0.20586698], [165.23, 1976.8042229497291, 0.21722479], [165.24, 1976.2273345113797, 0.20686792], [165.25, 1976.796254165714, 0.21643035], [165.26, 1976.2146922801185, 0.20619369], [165.27, 1976.818218240839, 0.21699102], [165.28, 1976.183865365989, 0.20642932], [165.29, 1976.8067448232823, 0.21759208], [165.3, 1976.1442244753266, 0.2076675], [165.31, 1976.811362004188, 0.21773629], [165.32, 1976.1593183966872, 0.20804994], [165.33, 1976.7990250826267, 0.21896279], [165.34, 1976.1570659904683, 0.20851593], [165.35, 1976.8095754700332, 0.21932364], [165.36, 1976.1792814672106, 0.20943344], [165.37, 1976.798758902787, 0.21953925], [165.38, 1976.1782387049502, 0.20839885], [165.39, 1976.8080739917768, 0.21875714], [165.4, 1976.220700109607, 0.20743176], [165.41, 1976.869982420831, 0.21829365], [165.42, 1976.2720510258348, 0.20706646], [165.43, 1976.8713077807165, 0.2170297], [165.44, 1976.2948898423972, 0.20636855], [165.45, 1976.862036572541, 0.21671665], [165.46, 1976.2870985017225, 0.20623311], [165.47, 1976.9017262080727, 0.2167718], [165.48, 1976.2774914374672, 0.20561768], [165.49, 1976.9179306555707, 0.21675643], [165.5, 1976.2565983232798, 0.20480138], [165.51, 1976.9328502155613, 0.2169517], [165.52, 1976.220366491891, 0.20421302], [165.53, 1976.9867190792638, 0.21580447], [165.54, 1976.2379474877173, 0.20423147], [165.55, 1976.9590831819069, 0.21634112], [165.56, 1976.2306443574741, 0.20498678], [165.57, 1976.8813594362848, 0.2155353], [165.58, 1976.2150646711711, 0.20463538], [165.59, 1976.8727247298964, 0.2162889], [165.6, 1976.2109232485618, 0.20385608], [165.61, 1976.9103980994284, 0.21586551], [165.62, 1976.2062871804205, 0.20526741], [165.63, 1976.8839250680985, 0.21621452], [165.64, 1976.1519317715477, 0.20683667], [165.65, 1976.8704966631021, 0.21822086], [165.66, 1976.1653315095596, 0.20774618], [165.67, 1976.8811738917416, 0.21917176], [165.68, 1976.197322702037, 0.20782128], [165.69, 1976.8792368258119, 0.2198538], [165.7, 1976.1821534214082, 0.20777173], [165.71, 1976.9130513999678, 0.2181241], [165.72, 1976.1888749913473, 0.20753708], [165.73, 1976.847280329931, 0.21848144], [165.74, 1976.1899478379028, 0.20709115], [165.75, 1976.8249731989429, 0.21800387], [165.76, 1976.2480053115237, 0.20753874], [165.77, 1976.875358801011, 0.21788314], [165.78, 1976.2637656189725, 0.20687172], [165.79, 1976.9156197286247, 0.2178672], [165.8, 1976.3029523456885, 0.20644961], [165.81, 1976.9177528181183, 0.21774149], [165.82, 1976.2563148065833, 0.20546183], [165.83, 1976.868282306542, 0.21741118], [165.84, 1976.2098648954657, 0.2053293], [165.85, 1976.7890963062632, 0.21761201], [165.86, 1976.2259960574543, 0.20512272], [165.87, 1976.8059618377438, 0.21669759], [165.88, 1976.2240012232583, 0.20454636], [165.89, 1976.8055205288838, 0.2167243], [165.9, 1976.2102981007065, 0.20423919], [165.91, 1976.819598706336, 0.21679899], [165.92, 1976.2241521704982, 0.20422931], [165.93, 1976.8422460229713, 0.21743137], [165.94, 1976.2084476199846, 0.20391397], [165.95, 1976.8349678147345, 0.21760373], [165.96, 1976.1987214359103, 0.20472255], [165.97, 1976.8513122111385, 0.21836406], [165.98, 1976.1858346222868, 0.20580527], [165.99, 1976.891323990375, 0.21900022], [166.0, 1976.1848396592384, 0.20649634], [166.01, 1976.9116886940767, 0.2187134], [166.02, 1976.2003332025524, 0.206369], [166.03, 1976.9178467912839, 0.2188826], [166.04, 1976.1926900980118, 0.2068343], [166.05, 1976.8648568678664, 0.2185618], [166.06, 1976.1869283175242, 0.20734623], [166.07, 1976.8786447578148, 0.21839465], [166.08, 1976.1886619235192, 0.20692001], [166.09, 1976.886384626096, 0.21809678], [166.1, 1976.2146253034125, 0.20654938], [166.11, 1976.8674670627192, 0.21796715], [166.12, 1976.2306277003277, 0.2065179], [166.13, 1976.8881553179908, 0.21736734], [166.14, 1976.2778125282045, 0.20590898], [166.15, 1976.8813273527169, 0.21693198], [166.16, 1976.2756520284358, 0.20602337], [166.17, 1976.8436554181103, 0.21820104], [166.18, 1976.2584088711844, 0.20719819], [166.19, 1976.846737339003, 0.21806957], [166.2, 1976.2616616900243, 0.20809178], [166.21, 1976.8216143983936, 0.21943684], [166.22, 1976.2323289277228, 0.20802325], [166.23, 1976.8245502137852, 0.21886344], [166.24, 1976.2833838532006, 0.20722134], [166.25, 1976.8168595863424, 0.21807516], [166.26, 1976.260461430049, 0.20622474], [166.27, 1976.8422182111804, 0.21738516], [166.28, 1976.2426360949837, 0.20571856], [166.29, 1976.77552443692, 0.2172859], [166.3, 1976.217157304543, 0.20626085], [166.31, 1976.7549717730963, 0.21832936], [166.32, 1976.223310097939, 0.20719704], [166.33, 1976.7835550154464, 0.2184842], [166.34, 1976.219221682798, 0.20750146], [166.35, 1976.7821979132007, 0.21961474], [166.36, 1976.1723796244726, 0.20709807], [166.37, 1976.81445589233, 0.2194513], [166.38, 1976.1874688402065, 0.20713656], [166.39, 1976.7961442604658, 0.21950024], [166.4, 1976.187958962022, 0.20764759], [166.41, 1976.8063160427546, 0.2196212], [166.42, 1976.1787360174217, 0.2073987], [166.43, 1976.8441660637973, 0.21924317], [166.44, 1976.188208212709, 0.20755728], [166.45, 1976.8446592161638, 0.21938209], [166.46, 1976.1689620130542, 0.20658113], [166.47, 1976.8406048807967, 0.21882007], [166.48, 1976.1752525726818, 0.20738986], [166.49, 1976.8443266927834, 0.21895547], [166.5, 1976.2191333186581, 0.20793845], [166.51, 1976.8073373528089, 0.21968283], [166.52, 1976.2265156541862, 0.20791115], [166.53, 1976.8480292082975, 0.21853812], [166.54, 1976.1936987318356, 0.20831835], [166.55, 1976.8507099423882, 0.2194351], [166.56, 1976.2309543198608, 0.20861973], [166.57, 1976.8418319118712, 0.2199106], [166.58, 1976.215224613847, 0.20858607], [166.59, 1976.9153907800305, 0.22052832], [166.6, 1976.2345865605628, 0.2088647], [166.61, 1976.8824676421355, 0.22012351], [166.62, 1976.2185670491604, 0.20955528], [166.63, 1976.91939450846, 0.22125268], [166.64, 1976.211611000696, 0.20980512], [166.65, 1976.918495338333, 0.22073777], [166.66, 1976.2513652092084, 0.20987682], [166.67, 1976.912799337499, 0.21948327], [166.68, 1976.2350706053876, 0.20986491], [166.69, 1976.8132709731549, 0.22054596], [166.7, 1976.2394071520134, 0.21069711], [166.71, 1976.827640201337, 0.22117366], [166.72, 1976.270069535684, 0.21000963], [166.73, 1976.8249192394298, 0.21977729], [166.74, 1976.235129159366, 0.2097455], [166.75, 1976.8116115529501, 0.22022726], [166.76, 1976.249273230709, 0.20946597], [166.77, 1976.837368857301, 0.2205092], [166.78, 1976.2538112176057, 0.20879695], [166.79, 1976.8559517240158, 0.22034694], [166.8, 1976.2540541725284, 0.20800473], [166.81, 1976.8663537268073, 0.2199648], [166.82, 1976.2521642044517, 0.20765565], [166.83, 1976.8591703998973, 0.21930067], [166.84, 1976.249302848028, 0.20775208], [166.85, 1976.874894565297, 0.21887472], [166.86, 1976.2745881102594, 0.20746998], [166.87, 1976.8696386366148, 0.21918602], [166.88, 1976.2500418434345, 0.20779827], [166.89, 1976.8764267590886, 0.21891853], [166.9, 1976.3338960277838, 0.20752683], [166.91, 1976.8741515367526, 0.21763332], [166.92, 1976.2846582171182, 0.20608948], [166.93, 1976.8212709537438, 0.21780498], [166.94, 1976.2895105699786, 0.20620643], [166.95, 1976.7885350016593, 0.21737956], [166.96, 1976.2894691852875, 0.20633762], [166.97, 1976.8379257460813, 0.21764705], [166.98, 1976.2982745596892, 0.20706938], [166.99, 1976.8220703354725, 0.21853468], [167.0, 1976.2745472887943, 0.20820637], [167.01, 1976.8120185304901, 0.21869168], [167.02, 1976.2559370224224, 0.20843965], [167.03, 1976.8387156365136, 0.2182117], [167.04, 1976.2615199654554, 0.2083252], [167.05, 1976.7856688546542, 0.2186653], [167.06, 1976.218865476873, 0.2081529], [167.07, 1976.7787956845243, 0.21794489], [167.08, 1976.2282586805986, 0.2078953], [167.09, 1976.7985405015545, 0.21809907], [167.1, 1976.2417572651793, 0.2071514], [167.11, 1976.770952889488, 0.21880326], [167.12, 1976.2326912688118, 0.20755675], [167.13, 1976.8286061696938, 0.21945156], [167.14, 1976.2900382645, 0.20773341], [167.15, 1976.7743222928632, 0.2190444], [167.16, 1976.3237109485867, 0.20751533], [167.17, 1976.7986248344255, 0.21879292], [167.18, 1976.3363760761436, 0.2073165], [167.19, 1976.7788601010764, 0.21853672], [167.2, 1976.3112888889327, 0.20758073], [167.21, 1976.7475620632015, 0.21897782], [167.22, 1976.2806232797125, 0.20722805], [167.23, 1976.8061211365857, 0.21856761], [167.24, 1976.264792055871, 0.20707665], [167.25, 1976.7802396750303, 0.21934776], [167.26, 1976.243803095343, 0.20700428], [167.27, 1976.7746348669448, 0.21968445], [167.28, 1976.2528499394919, 0.20813325], [167.29, 1976.7521713934393, 0.21980026], [167.3, 1976.2685915911657, 0.20744976], [167.31, 1976.8037896439669, 0.21875374], [167.32, 1976.2400047991855, 0.20663945], [167.33, 1976.7688670320367, 0.21786447], [167.34, 1976.2400466752065, 0.20638439], [167.35, 1976.7516643601753, 0.21744232], [167.36, 1976.2068806702493, 0.20630449], [167.37, 1976.7721152113832, 0.21817128], [167.38, 1976.218584764738, 0.20682432], [167.39, 1976.7690576962991, 0.21858716], [167.4, 1976.185829671814, 0.20704453], [167.41, 1976.8003112626482, 0.21862942], [167.42, 1976.1960368665484, 0.20809467], [167.43, 1976.7990717412542, 0.2191101], [167.44, 1976.2021662981292, 0.2074857], [167.45, 1976.8358713442788, 0.21893485], [167.46, 1976.2300355890698, 0.2072706], [167.47, 1976.8645700617085, 0.21895613], [167.48, 1976.2425790114144, 0.2081409], [167.49, 1976.81895402564, 0.218913], [167.5, 1976.2517950968456, 0.20810953], [167.51, 1976.8530520382749, 0.21897304], [167.52, 1976.2960949391208, 0.20754345], [167.53, 1976.845815280253, 0.21926884], [167.54, 1976.2657502380682, 0.2073163], [167.55, 1976.8425778452959, 0.21914382], [167.56, 1976.2741036816683, 0.20793922], [167.57, 1976.8330383470677, 0.21867809], [167.58, 1976.2646466955143, 0.20729917], [167.59, 1976.8564362986335, 0.21871111], [167.6, 1976.2749885931114, 0.20710106], [167.61, 1976.8892634680988, 0.21845701], [167.62, 1976.2578180091894, 0.20626181], [167.63, 1976.8804037527254, 0.2184723], [167.64, 1976.250157596455, 0.2062228], [167.65, 1976.8584685837075, 0.21853858], [167.66, 1976.2380294972786, 0.20674305], [167.67, 1976.8288474301107, 0.21915524], [167.68, 1976.2109320173454, 0.20714423], [167.69, 1976.8243655106298, 0.21853854], [167.7, 1976.2095626463051, 0.20641817], [167.71, 1976.80587038661, 0.21893683], [167.72, 1976.187627915575, 0.20744479], [167.73, 1976.819947286929, 0.21949075], [167.74, 1976.2099445255492, 0.20759043], [167.75, 1976.8303685059614, 0.2185558], [167.76, 1976.2037160877112, 0.20787545], [167.77, 1976.8303579891733, 0.21932194], [167.78, 1976.1972896482619, 0.20792626], [167.79, 1976.821267395029, 0.21930934], [167.8, 1976.1872630507291, 0.207337], [167.81, 1976.8373520698997, 0.21970606], [167.82, 1976.191323612934, 0.20690471], [167.83, 1976.8465851099847, 0.2180095], [167.84, 1976.2187676451326, 0.20585722], [167.85, 1976.8451593410057, 0.21833476], [167.86, 1976.2261024843747, 0.20597461], [167.87, 1976.8396543382948, 0.218856], [167.88, 1976.220087230476, 0.20564249], [167.89, 1976.8325582352727, 0.21830189], [167.9, 1976.2035213560812, 0.20550404], [167.91, 1976.8212095580736, 0.21822064], [167.92, 1976.1666568353633, 0.2054462], [167.93, 1976.7928955754908, 0.21865402], [167.94, 1976.1903386782262, 0.20585705], [167.95, 1976.8086085973255, 0.21939328], [167.96, 1976.1805668953784, 0.20721501], [167.97, 1976.74923640252, 0.21998286], [167.98, 1976.1681701046743, 0.20701402], [167.99, 1976.7744537982476, 0.21931395], [168.0, 1976.2137949334256, 0.20634444], [168.01, 1976.7919163251838, 0.22040835], [168.02, 1976.254670478741, 0.20612352], [168.03, 1976.8020343005965, 0.22003767], [168.04, 1976.2667752117127, 0.20675397], [168.05, 1976.7881337899203, 0.2201279], [168.06, 1976.260054351577, 0.207348], [168.07, 1976.8071950726621, 0.22030787], [168.08, 1976.2506000202677, 0.20734955], [168.09, 1976.7978803155004, 0.22075842], [168.1, 1976.2268313901027, 0.20723335], [168.11, 1976.8012105351213, 0.22091947], [168.12, 1976.2342553627866, 0.20748387], [168.13, 1976.721410341033, 0.22130425], [168.14, 1976.2336318560099, 0.20838353], [168.15, 1976.7265897235122, 0.2211391], [168.16, 1976.2257739406775, 0.20900165], [168.17, 1976.7763352210768, 0.22147143], [168.18, 1976.2396457653883, 0.2090294], [168.19, 1976.7538948476406, 0.2206764], [168.2, 1976.2122568652305, 0.20843655], [168.21, 1976.7670528681788, 0.22003923], [168.22, 1976.228545493912, 0.20790637], [168.23, 1976.7541352927094, 0.22064362], [168.24, 1976.2359930802113, 0.20780523], [168.25, 1976.7826472443128, 0.2195888], [168.26, 1976.2950387433104, 0.20734222], [168.27, 1976.8129915365935, 0.2187995], [168.28, 1976.3059922049513, 0.20672384], [168.29, 1976.780439107846, 0.21898459], [168.3, 1976.274913640967, 0.20707516], [168.31, 1976.8253193487524, 0.21860628], [168.32, 1976.310113854017, 0.20668478], [168.33, 1976.8283834226006, 0.21929675], [168.34, 1976.2977811553687, 0.20716712], [168.35, 1976.8793425295466, 0.21876596], [168.36, 1976.302013465971, 0.2078373], [168.37, 1976.8541800859978, 0.21837682], [168.38, 1976.2542058374336, 0.20684648], [168.39, 1976.8415792123042, 0.21861087], [168.4, 1976.3033484526864, 0.20646498], [168.41, 1976.845164812486, 0.2185777], [168.42, 1976.2956585599725, 0.20569329], [168.43, 1976.857067706279, 0.21770369], [168.44, 1976.260535670106, 0.20615448], [168.45, 1976.8522042329691, 0.21827477], [168.46, 1976.2642895799615, 0.20705345], [168.47, 1976.860985963747, 0.21851699], [168.48, 1976.248393343271, 0.2068162], [168.49, 1976.8926325664625, 0.21885106], [168.5, 1976.3050646404422, 0.20617656], [168.51, 1976.9291180735668, 0.21767895], [168.52, 1976.3290395274907, 0.20544437], [168.53, 1976.9024030823537, 0.21702498], [168.54, 1976.3492729357026, 0.20523162], [168.55, 1976.8987505369291, 0.21618198], [168.56, 1976.3344252692605, 0.20530592], [168.57, 1976.9113864501073, 0.21709591], [168.58, 1976.2924491345307, 0.2059499], [168.59, 1976.9286707818646, 0.21714374], [168.6, 1976.2705123669243, 0.20664634], [168.61, 1976.9223478449694, 0.21869262], [168.62, 1976.2753631030168, 0.20694785], [168.63, 1976.9364321355815, 0.21891226], [168.64, 1976.2889344177202, 0.20671591], [168.65, 1976.9327885183507, 0.21728526], [168.66, 1976.2769789051117, 0.2058629], [168.67, 1976.9057375070493, 0.2179595], [168.68, 1976.268744428979, 0.20651746], [168.69, 1976.9270914164508, 0.21748371], [168.7, 1976.28887701136, 0.2066003], [168.71, 1976.8904469711308, 0.21736607], [168.72, 1976.276001721552, 0.20669515], [168.73, 1976.9336978067608, 0.21672542], [168.74, 1976.3111880483393, 0.20650142], [168.75, 1976.9231151458262, 0.21726568], [168.76, 1976.2943511442736, 0.20693508], [168.77, 1976.9259887734156, 0.21776126], [168.78, 1976.2901395545887, 0.20708592], [168.79, 1976.9641248552903, 0.21710758], [168.8, 1976.3087993862562, 0.20563395], [168.81, 1976.9399821226827, 0.21786197], [168.82, 1976.2446040307689, 0.20573817], [168.83, 1976.9291165239085, 0.2173336], [168.84, 1976.2675106744903, 0.2055463], [168.85, 1976.9351993461478, 0.2169256], [168.86, 1976.2869165819643, 0.20512308], [168.87, 1976.9267940672555, 0.21691883], [168.88, 1976.295465553389, 0.2050412], [168.89, 1976.9520525967832, 0.21627247], [168.9, 1976.3409011184813, 0.20546144], [168.91, 1976.9780620984366, 0.21580118], [168.92, 1976.3341374224829, 0.20505519], [168.93, 1976.928938972606, 0.21506955], [168.94, 1976.308177743601, 0.20416132], [168.95, 1976.9521512618244, 0.21554507], [168.96, 1976.2891391814064, 0.20450038], [168.97, 1976.9691152894443, 0.2156659], [168.98, 1976.2567064996565, 0.2052427], [168.99, 1976.9485853658416, 0.21605028], [169.0, 1976.239264070517, 0.20695752], [169.01, 1976.9236835644965, 0.21672297], [169.02, 1976.2541551342144, 0.2067753], [169.03, 1976.9685539354907, 0.2164637], [169.04, 1976.2874093461896, 0.2063126], [169.05, 1976.945193875248, 0.21724531], [169.06, 1976.2809094941874, 0.20667507], [169.07, 1976.9653598325458, 0.21701479], [169.08, 1976.2603602005138, 0.20612442], [169.09, 1976.964794166308, 0.21675214], [169.1, 1976.2805857154694, 0.20551018], [169.11, 1976.9689238059948, 0.21637778], [169.12, 1976.266880249577, 0.20598817], [169.13, 1976.9466009410746, 0.21641748], [169.14, 1976.2550394720533, 0.20635478], [169.15, 1976.9312609894841, 0.2166848], [169.16, 1976.2730951737237, 0.20698616], [169.17, 1976.916299585626, 0.21657664], [169.18, 1976.2754437161661, 0.20652132], [169.19, 1976.909954430616, 0.21635659], [169.2, 1976.3101703765865, 0.20638709], [169.21, 1976.9698241373192, 0.21579285], [169.22, 1976.3599773575413, 0.20607403], [169.23, 1976.9560687921169, 0.21510847], [169.24, 1976.3231093080433, 0.20577462], [169.25, 1976.9386676106924, 0.21581951], [169.26, 1976.3256907427942, 0.20629542], [169.27, 1976.9121700242647, 0.21638793], [169.28, 1976.334916303335, 0.20637843], [169.29, 1976.9315222960834, 0.21644531], [169.3, 1976.3540877908329, 0.2057202], [169.31, 1976.9372433365857, 0.21516792], [169.32, 1976.34574331382, 0.20485224], [169.33, 1976.971154705145, 0.2158097], [169.34, 1976.341633031617, 0.20561504], [169.35, 1976.9605515372543, 0.21635099], [169.36, 1976.3488615723927, 0.20548257], [169.37, 1976.974896643503, 0.21582401], [169.38, 1976.3492534212646, 0.20572866], [169.39, 1976.9127824570105, 0.21631809], [169.4, 1976.3501005833134, 0.20636451], [169.41, 1976.9072707576208, 0.21696332], [169.42, 1976.3186544175744, 0.20640777], [169.43, 1976.9101236670438, 0.21743098], [169.44, 1976.3030923942433, 0.20711587], [169.45, 1976.9359366022343, 0.21656625], [169.46, 1976.3250074825169, 0.20647813], [169.47, 1976.939458677044, 0.21726501], [169.48, 1976.287917717027, 0.20636807], [169.49, 1976.929419885989, 0.21689989], [169.5, 1976.2748070973935, 0.20686641], [169.51, 1976.9297459661423, 0.21714304], [169.52, 1976.2719268571234, 0.20815243], [169.53, 1976.9131611968953, 0.21823205], [169.54, 1976.271012444987, 0.20843858], [169.55, 1976.9053704279563, 0.21853901], [169.56, 1976.2434459503302, 0.2084605], [169.57, 1976.8922977602463, 0.21899578], [169.58, 1976.2320303319634, 0.20821953], [169.59, 1976.8692620516856, 0.21801268], [169.6, 1976.2042669076257, 0.20737387], [169.61, 1976.9091702119863, 0.21705616], [169.62, 1976.2386614152933, 0.20691973], [169.63, 1976.8698225104918, 0.21652013], [169.64, 1976.2249240157964, 0.20651221], [169.65, 1976.8618106487472, 0.21726072], [169.66, 1976.2365515676504, 0.20669475], [169.67, 1976.8318919372814, 0.21695173], [169.68, 1976.2404367422312, 0.20676051], [169.69, 1976.8599802101999, 0.21780184], [169.7, 1976.2071151852845, 0.20591033], [169.71, 1976.8594348068666, 0.21758825], [169.72, 1976.2161814295077, 0.20677467], [169.73, 1976.8766556197008, 0.21825334], [169.74, 1976.189544297648, 0.20702507], [169.75, 1976.8543673653178, 0.2181638], [169.76, 1976.201085669486, 0.2060447], [169.77, 1976.8658207290966, 0.21711588], [169.78, 1976.2142919312826, 0.20574704], [169.79, 1976.8118840404452, 0.21795054], [169.8, 1976.1478127279884, 0.20556462], [169.81, 1976.8313151644616, 0.21842787], [169.82, 1976.1503521321458, 0.20609207], [169.83, 1976.8149925203286, 0.21812248], [169.84, 1976.1825979194127, 0.20521215], [169.85, 1976.8643786380846, 0.21810485], [169.86, 1976.1873478932935, 0.20468174], [169.87, 1976.858315634212, 0.21729283], [169.88, 1976.1698159698747, 0.20531008], [169.89, 1976.854835361235, 0.21756898], [169.9, 1976.2511799211447, 0.20511916], [169.91, 1976.879638046817, 0.21695082], [169.92, 1976.2283095980317, 0.20439963], [169.93, 1976.8222308078566, 0.21685258], [169.94, 1976.2334030969869, 0.20496866], [169.95, 1976.8379124188052, 0.21608275], [169.96, 1976.263234047403, 0.20495106], [169.97, 1976.877925172391, 0.21602419], [169.98, 1976.251874695106, 0.20475042], [169.99, 1976.8374724550326, 0.2161981], [170.0, 1976.2667928578505, 0.2048444], [170.01, 1976.848023085737, 0.21611613], [170.02, 1976.254272612035, 0.20442396], [170.03, 1976.8595486111437, 0.21604298], [170.04, 1976.2420913655674, 0.204202], [170.05, 1976.8755860996728, 0.21571001], [170.06, 1976.2541680985012, 0.20502013], [170.07, 1976.884813672356, 0.21706055], [170.08, 1976.2301441882823, 0.20571741], [170.09, 1976.8310480980613, 0.21694751], [170.1, 1976.24746953983, 0.20631096], [170.11, 1976.8617903886857, 0.21693136], [170.12, 1976.28577095874, 0.2062097], [170.13, 1976.8792584943053, 0.2165472], [170.14, 1976.278349113697, 0.20636657], [170.15, 1976.8387610383802, 0.21769644], [170.16, 1976.2443231610778, 0.20583017], [170.17, 1976.829571117423, 0.21668898], [170.18, 1976.237799531384, 0.20564924], [170.19, 1976.8251800613798, 0.21793313], [170.2, 1976.2136521595392, 0.2059944], [170.21, 1976.8143291960978, 0.21749863], [170.22, 1976.200533567307, 0.2063522], [170.23, 1976.8236082254389, 0.21787103], [170.24, 1976.2296804882312, 0.20626126], [170.25, 1976.853554482636, 0.21765263], [170.26, 1976.2138821008446, 0.20642634], [170.27, 1976.8549059472818, 0.21784452], [170.28, 1976.2125540117413, 0.20665719], [170.29, 1976.8740305638112, 0.21806787], [170.3, 1976.2743182790364, 0.2060149], [170.31, 1976.8665544678083, 0.2175642], [170.32, 1976.2059987510843, 0.20580436], [170.33, 1976.8566547413375, 0.21703616], [170.34, 1976.1702078386625, 0.2065011], [170.35, 1976.881368140372, 0.21742658], [170.36, 1976.1582828908263, 0.20537032], [170.37, 1976.8706015984276, 0.21689458], [170.38, 1976.181598342099, 0.20436078], [170.39, 1976.8601974271633, 0.2160589], [170.4, 1976.149615090443, 0.20492968], [170.41, 1976.8277282637782, 0.21748795], [170.42, 1976.1225335223755, 0.20611331], [170.43, 1976.8880263891426, 0.21794204], [170.44, 1976.1984406949246, 0.20739946], [170.45, 1976.8888437071403, 0.21853372], [170.46, 1976.1797248790303, 0.20804892], [170.47, 1976.8785568482622, 0.21843089], [170.48, 1976.195894426163, 0.20746037], [170.49, 1976.879400481438, 0.2179581], [170.5, 1976.2078145292571, 0.20628601], [170.51, 1976.9313647581466, 0.21680743], [170.52, 1976.2362141665844, 0.20601906], [170.53, 1976.8959995819457, 0.21574256], [170.54, 1976.2363511760839, 0.20583802], [170.55, 1976.9412247490327, 0.21615613], [170.56, 1976.2593631687496, 0.20513101], [170.57, 1976.9471363116534, 0.21541396], [170.58, 1976.2565527213515, 0.20576571], [170.59, 1976.9313187329337, 0.21592735], [170.6, 1976.2148984031755, 0.20718919], [170.61, 1976.9226964206075, 0.21690716], [170.62, 1976.2037007692625, 0.2069387], [170.63, 1976.8919679350633, 0.21666509], [170.64, 1976.203151138499, 0.20678572], [170.65, 1976.8843281653028, 0.21673177], [170.66, 1976.2398674502856, 0.20653917], [170.67, 1976.8893462789392, 0.2171792], [170.68, 1976.2400841900956, 0.20706604], [170.69, 1976.9118958072943, 0.21789174], [170.7, 1976.2465173340365, 0.20810501], [170.71, 1976.905974263261, 0.21842967], [170.72, 1976.246892323238, 0.20899782], [170.73, 1976.87532049859, 0.21882181], [170.74, 1976.2634021700944, 0.20951925], [170.75, 1976.9189956222974, 0.21871664], [170.76, 1976.2914161901788, 0.20850438], [170.77, 1976.917051579147, 0.21822535], [170.78, 1976.2670005742664, 0.20790008], [170.79, 1976.9083482779233, 0.21866947], [170.8, 1976.2285666578337, 0.20820504], [170.81, 1976.9293559658213, 0.21792077], [170.82, 1976.2587435843252, 0.20761476], [170.83, 1976.8629312622893, 0.21770035], [170.84, 1976.2108027483816, 0.20753953], [170.85, 1976.8607794139305, 0.21848568], [170.86, 1976.2202959890838, 0.20737438], [170.87, 1976.9040835763906, 0.21769461], [170.88, 1976.234838103402, 0.20683782], [170.89, 1976.8787893972876, 0.21747161], [170.9, 1976.2481895255985, 0.2065853], [170.91, 1976.884161251191, 0.21689726], [170.92, 1976.2216997904827, 0.20671989], [170.93, 1976.877575332655, 0.21764566], [170.94, 1976.2083426015386, 0.20786497], [170.95, 1976.930289495876, 0.21721293], [170.96, 1976.246496104216, 0.20794486], [170.97, 1976.9517572394066, 0.2172369], [170.98, 1976.2319806106211, 0.2077711], [170.99, 1976.903952607083, 0.21798152], [171.0, 1976.2576632654118, 0.20799625], [171.01, 1976.9167472526447, 0.21792254], [171.02, 1976.209275224211, 0.20782678], [171.03, 1976.8679739094853, 0.21848981], [171.04, 1976.2024559159047, 0.208562], [171.05, 1976.8524660617188, 0.21915539], [171.06, 1976.159328085457, 0.20885244], [171.07, 1976.842158966323, 0.22006455], [171.08, 1976.159729059699, 0.20855984], [171.09, 1976.907011414644, 0.21922731], [171.1, 1976.1673509107388, 0.20861614], [171.11, 1976.9232929283294, 0.21884082], [171.12, 1976.189221525919, 0.20710817], [171.13, 1976.967589342927, 0.21805616], [171.14, 1976.1773024162405, 0.20663896], [171.15, 1976.9532653909764, 0.21712881], [171.16, 1976.1569189314764, 0.2075881], [171.17, 1976.9434454361722, 0.21876101], [171.18, 1976.2133650697103, 0.2080496], [171.19, 1976.9407112227987, 0.21771169], [171.2, 1976.2222072393179, 0.20745942], [171.21, 1976.915751620884, 0.21814029], [171.22, 1976.2045944866738, 0.20751718], [171.23, 1976.9068656741172, 0.21791558], [171.24, 1976.2305972112272, 0.20799387], [171.25, 1976.942714522826, 0.21779606], [171.26, 1976.2410079503704, 0.20772313], [171.27, 1976.9320296059707, 0.21838267], [171.28, 1976.2149756347435, 0.2079542], [171.29, 1976.8880299294042, 0.21908394], [171.3, 1976.1860529644118, 0.20915797], [171.31, 1976.8824341048385, 0.21896823], [171.32, 1976.2058899655767, 0.20910452], [171.33, 1976.863448743773, 0.21958013], [171.34, 1976.2141103254319, 0.20828085], [171.35, 1976.8751665523127, 0.21954921], [171.36, 1976.205901289426, 0.20704843], [171.37, 1976.9266984567944, 0.21853861], [171.38, 1976.224449730349, 0.20610128], [171.39, 1976.9478144903107, 0.21849257], [171.4, 1976.1669057524618, 0.20615658], [171.41, 1976.8755946785363, 0.21858905], [171.42, 1976.159206352641, 0.20671071], [171.43, 1976.861573618416, 0.21857452], [171.44, 1976.1177217434733, 0.2074712], [171.45, 1976.866026304184, 0.21904014], [171.46, 1976.1176713241082, 0.20745939], [171.47, 1976.8857426150546, 0.21917433], [171.48, 1976.0830329449002, 0.20767598], [171.49, 1976.8952518617175, 0.21903269], [171.5, 1976.0866207314655, 0.20695575], [171.51, 1976.9105270880295, 0.21899213], [171.52, 1976.0725376704086, 0.2070049], [171.53, 1976.900890235422, 0.22002584], [171.54, 1976.0219959912706, 0.20798309], [171.55, 1976.915197045805, 0.22017671], [171.56, 1976.0806631835321, 0.20832284], [171.57, 1976.9479790550467, 0.22042012], [171.58, 1976.0588777208236, 0.20778787], [171.59, 1976.9633370278393, 0.22007646], [171.6, 1976.0674874098822, 0.20831497], [171.61, 1976.965866000664, 0.2197775], [171.62, 1976.0698332068896, 0.20810679], [171.63, 1976.9218379323916, 0.21923406], [171.64, 1976.0700012958628, 0.20747428], [171.65, 1976.928629790311, 0.2196872], [171.66, 1976.0865565630725, 0.20787153], [171.67, 1976.9652226692033, 0.2199116], [171.68, 1976.1044372024298, 0.2079789], [171.69, 1976.9501801282374, 0.21961048], [171.7, 1976.1121741901188, 0.20819147], [171.71, 1976.940571057357, 0.21885195], [171.72, 1976.1134123623503, 0.20737343], [171.73, 1976.9444841021386, 0.21847828], [171.74, 1976.1025708789962, 0.207493], [171.75, 1976.9434338419862, 0.219093], [171.76, 1976.0864574461382, 0.20700406], [171.77, 1976.8856608552019, 0.2186356], [171.78, 1976.0805419261387, 0.20752908], [171.79, 1976.8632544152163, 0.21824616], [171.8, 1976.1122391861725, 0.20686209], [171.81, 1976.858372568062, 0.21888505], [171.82, 1976.1214538022118, 0.20674579], [171.83, 1976.8615006947753, 0.21920238], [171.84, 1976.1064790908122, 0.20726386], [171.85, 1976.808048629026, 0.21885552], [171.86, 1976.1532443859228, 0.20699218], [171.87, 1976.847914027248, 0.21839495], [171.88, 1976.1464216156617, 0.20645158], [171.89, 1976.8327473960333, 0.21784225], [171.9, 1976.1218244507018, 0.20642193], [171.91, 1976.8085731753524, 0.218016], [171.92, 1976.1372137393273, 0.20656972], [171.93, 1976.8458505752278, 0.21863867], [171.94, 1976.1596633241086, 0.20674422], [171.95, 1976.8621145714742, 0.21915492], [171.96, 1976.1481408728994, 0.20700938], [171.97, 1976.9100265708698, 0.21859635], [171.98, 1976.184244618802, 0.20638366], [171.99, 1976.8731921484318, 0.21682064], [172.0, 1976.1865608300345, 0.20609865], [172.01, 1976.8216435583463, 0.21784303], [172.02, 1976.129142164633, 0.20507297], [172.03, 1976.876766419491, 0.2183957], [172.04, 1976.1459051842003, 0.206056], [172.05, 1976.8747035820013, 0.21773955], [172.06, 1976.1677926136408, 0.20580855], [172.07, 1976.8507201422906, 0.21847393], [172.08, 1976.1454736465762, 0.20606081], [172.09, 1976.849879583589, 0.2184931], [172.1, 1976.1377558111997, 0.20631456], [172.11, 1976.865512783172, 0.21887569], [172.12, 1976.1514053871078, 0.20598806], [172.13, 1976.8832221728533, 0.21878068], [172.14, 1976.1589154458065, 0.20548992], [172.15, 1976.8851097286426, 0.21865451], [172.16, 1976.1581032547388, 0.20534998], [172.17, 1976.9130300001868, 0.21794605], [172.18, 1976.166781330007, 0.20621172], [172.19, 1976.8845563713885, 0.21808574], [172.2, 1976.165139490536, 0.2071269], [172.21, 1976.886356298254, 0.21857986], [172.22, 1976.1601826663227, 0.20750546], [172.23, 1976.8924696610495, 0.21904522], [172.24, 1976.1688957504107, 0.20753132], [172.25, 1976.9394751898883, 0.21912195], [172.26, 1976.1774335914229, 0.20777173], [172.27, 1976.9179931717858, 0.21817406], [172.28, 1976.189973290278, 0.20710737], [172.29, 1976.9626459529738, 0.21905446], [172.3, 1976.1798551707589, 0.20687681], [172.31, 1976.9550685897375, 0.21817204], [172.32, 1976.1546144712224, 0.20739654], [172.33, 1976.9169182979952, 0.2191182], [172.34, 1976.1831782785177, 0.2076012], [172.35, 1976.9356278049518, 0.21955395], [172.36, 1976.2253812572776, 0.2081779], [172.37, 1976.9093029440523, 0.21914557], [172.38, 1976.2126358393684, 0.20878005], [172.39, 1976.87654438804, 0.2188731], [172.4, 1976.2261027888244, 0.20879848], [172.41, 1976.881069276687, 0.21817379], [172.42, 1976.2157321712732, 0.20742345], [172.43, 1976.908985388529, 0.21890067], [172.44, 1976.1933222464077, 0.20787856], [172.45, 1976.9175468078208, 0.21924952], [172.46, 1976.209558710817, 0.20835292], [172.47, 1976.8961430844238, 0.21873781], [172.48, 1976.2138864592248, 0.20795535], [172.49, 1976.9002134416023, 0.21945098], [172.5, 1976.238256720493, 0.20792201], [172.51, 1976.9026240596534, 0.21872784], [172.52, 1976.2051636973583, 0.20736478], [172.53, 1976.8929116150732, 0.21845978], [172.54, 1976.1697790167223, 0.20694448], [172.55, 1976.8657900228736, 0.21979573], [172.56, 1976.177353065614, 0.2077344], [172.57, 1976.8910394610489, 0.2193105], [172.58, 1976.2050424808017, 0.20794564], [172.59, 1976.9475363580816, 0.21887584], [172.6, 1976.2171812319523, 0.20706989], [172.61, 1976.9379127568939, 0.21910383], [172.62, 1976.1849474386693, 0.20744778], [172.63, 1976.933337308544, 0.21984082], [172.64, 1976.1996541236845, 0.20719808], [172.65, 1976.9402327213356, 0.21850657], [172.66, 1976.2032599038582, 0.20572995], [172.67, 1976.9231219469577, 0.21880753], [172.68, 1976.1971212530225, 0.20562121], [172.69, 1976.9136148611947, 0.21873528], [172.7, 1976.203343877809, 0.20666854], [172.71, 1976.896439573575, 0.21920858], [172.72, 1976.203901820147, 0.20630357], [172.73, 1976.9101337927323, 0.2188977], [172.74, 1976.139230671971, 0.20642203], [172.75, 1976.8888219227708, 0.21989977], [172.76, 1976.1428272250978, 0.20705985], [172.77, 1976.9590800934327, 0.22040017], [172.78, 1976.1457874540988, 0.20734516], [172.79, 1976.9240632451197, 0.21971828], [172.8, 1976.1559185235678, 0.20656687], [172.81, 1976.9151975585203, 0.21883997], [172.82, 1976.1390823935803, 0.20667532], [172.83, 1976.9324320642422, 0.21975705], [172.84, 1976.1886681083333, 0.20789692], [172.85, 1976.9633956452953, 0.22022757], [172.86, 1976.1753056773587, 0.20827895], [172.87, 1976.9517139609075, 0.22012626], [172.88, 1976.188272514316, 0.20820588], [172.89, 1976.9709045101486, 0.22005652], [172.9, 1976.163781508009, 0.20722051], [172.91, 1977.0331419115923, 0.21981657], [172.92, 1976.2296965830737, 0.20702307], [172.93, 1976.9998707087357, 0.21975775], [172.94, 1976.2224296010882, 0.20710708], [172.95, 1976.9667107603393, 0.22002155], [172.96, 1976.2281290879782, 0.20768312], [172.97, 1977.0071553032808, 0.2188432], [172.98, 1976.2708886654898, 0.20764396], [172.99, 1976.9808279772292, 0.21858102], [173.0, 1976.2422700274246, 0.20733048], [173.01, 1976.9248341133436, 0.21871981], [173.02, 1976.24495064454, 0.2080084], [173.03, 1976.9269746282587, 0.21895152], [173.04, 1976.2301348094409, 0.20792845], [173.05, 1976.8925188010178, 0.22011545], [173.06, 1976.2155760783855, 0.20829608], [173.07, 1976.9195137505853, 0.21977073], [173.08, 1976.2176433102813, 0.2087893], [173.09, 1976.8757093658755, 0.21935831], [173.1, 1976.1726968662472, 0.20868865], [173.11, 1976.8703306564867, 0.21907222], [173.12, 1976.190857738421, 0.20824951], [173.13, 1976.8692269864223, 0.22023778], [173.14, 1976.151843095894, 0.20900266], [173.15, 1976.874641066229, 0.2202719], [173.16, 1976.1438483006323, 0.20986667], [173.17, 1976.886200520137, 0.22070244], [173.18, 1976.1653034007772, 0.20936824], [173.19, 1976.9256307360527, 0.22065425], [173.2, 1976.1537816334862, 0.20933545], [173.21, 1976.9064192014362, 0.22054125], [173.22, 1976.2097267550134, 0.21058527], [173.23, 1976.9003627748039, 0.21987188], [173.24, 1976.2288591504025, 0.2110781], [173.25, 1976.8916133757934, 0.21966326], [173.26, 1976.229870399234, 0.21054538], [173.27, 1976.8723687022475, 0.2202451], [173.28, 1976.2418299982846, 0.21003917], [173.29, 1976.8987384898228, 0.22059627], [173.3, 1976.2227512626553, 0.20951056], [173.31, 1976.91423406774, 0.2197823], [173.32, 1976.2027499947385, 0.20969427], [173.33, 1976.9410908827813, 0.2204639], [173.34, 1976.2134822948883, 0.21013528], [173.35, 1976.9507360827774, 0.21956651], [173.36, 1976.2370766127924, 0.2100966], [173.37, 1976.9686813052213, 0.21967158], [173.38, 1976.2121271128276, 0.20875642], [173.39, 1976.9550765378594, 0.21908846], [173.4, 1976.1923126831143, 0.20900196], [173.41, 1976.9533666106076, 0.2192602], [173.42, 1976.1806616084277, 0.20905818], [173.43, 1976.9472823554247, 0.21989915], [173.44, 1976.1820634224284, 0.20948374], [173.45, 1976.9325632690823, 0.21931167], [173.46, 1976.199726995967, 0.20939748], [173.47, 1976.9637732589376, 0.21892852], [173.48, 1976.1859408736452, 0.20865977], [173.49, 1976.961982027842, 0.21904966], [173.5, 1976.220325767363, 0.20851187], [173.51, 1976.9406737436057, 0.21865459], [173.52, 1976.2237967555668, 0.20797127], [173.53, 1976.9320754969685, 0.21855502], [173.54, 1976.2797053617649, 0.20843509], [173.55, 1976.9302791287105, 0.2186478], [173.56, 1976.2828067832672, 0.20825191], [173.57, 1976.9772253620793, 0.21870205], [173.58, 1976.2795199360287, 0.20755854], [173.59, 1976.946403871507, 0.21833855], [173.6, 1976.2620091295762, 0.20802307], [173.61, 1976.9554888273747, 0.21846303], [173.62, 1976.2650336017587, 0.20735842], [173.63, 1976.949275571077, 0.21801984], [173.64, 1976.2532131573362, 0.20699868], [173.65, 1976.8854248405655, 0.21759593], [173.66, 1976.2621295025183, 0.20702751], [173.67, 1976.9088114929675, 0.21816395], [173.68, 1976.3135048037916, 0.20714173], [173.69, 1976.9292788089392, 0.2181803], [173.7, 1976.3185747858952, 0.2072879], [173.71, 1976.9658907587743, 0.21784319], [173.72, 1976.339596353852, 0.20784518], [173.73, 1976.9622559838108, 0.21714981], [173.74, 1976.3327964516775, 0.2065372], [173.75, 1976.968555387968, 0.21773581], [173.76, 1976.2445461180723, 0.20697671], [173.77, 1976.9220974213113, 0.21876779], [173.78, 1976.2305746115753, 0.20613654], [173.79, 1976.8966874317011, 0.21805602], [173.8, 1976.2495519843965, 0.20539054], [173.81, 1976.9119389695302, 0.21820389], [173.82, 1976.2540754906463, 0.20604967], [173.83, 1976.9480602233045, 0.21791303], [173.84, 1976.2900633769368, 0.20630099], [173.85, 1976.962636160382, 0.21739766], [173.86, 1976.3121445472657, 0.20546511], [173.87, 1977.02219297372, 0.21744609], [173.88, 1976.2891439697105, 0.20599623], [173.89, 1977.057590655275, 0.21789332], [173.9, 1976.293740855504, 0.20731832], [173.91, 1977.0177778093744, 0.21778078], [173.92, 1976.272922463694, 0.20797178], [173.93, 1976.9701296144258, 0.21946777], [173.94, 1976.2801903056243, 0.20789285], [173.95, 1977.076672981284, 0.21945441], [173.96, 1976.2926750546471, 0.20827596], [173.97, 1977.023815169051, 0.21845646], [173.98, 1976.2989476389464, 0.20733118], [173.99, 1977.028184536828, 0.21895786], [174.0, 1976.298099455191, 0.20731962], [174.01, 1976.9986134066357, 0.21873099], [174.02, 1976.2810397473086, 0.20738041], [174.03, 1976.9838874592092, 0.21847133], [174.04, 1976.2938820353963, 0.20771776], [174.05, 1977.0181320124495, 0.21922372], [174.06, 1976.2879616871523, 0.20902523], [174.07, 1976.9930447942422, 0.21964179], [174.08, 1976.2699273922858, 0.20865633], [174.09, 1977.0122112064794, 0.22029984], [174.1, 1976.27294959254, 0.20814516], [174.11, 1976.9524056437112, 0.21942967], [174.12, 1976.2571000281469, 0.20795338], [174.13, 1976.9861270074434, 0.21970071], [174.14, 1976.2528943090877, 0.20858297], [174.15, 1977.058297913388, 0.21954429], [174.16, 1976.2948294250527, 0.20872365], [174.17, 1977.0798988422641, 0.21962725], [174.18, 1976.3201599626645, 0.20863642], [174.19, 1977.0667056884938, 0.21910135], [174.2, 1976.3198597337155, 0.20870167], [174.21, 1976.9807597175193, 0.21942665], [174.22, 1976.2717625630598, 0.20867282], [174.23, 1976.9685402284563, 0.22027631], [174.24, 1976.269212342431, 0.209961], [174.25, 1976.974043290619, 0.22045875], [174.26, 1976.2771332927414, 0.20945217], [174.27, 1976.9792081016844, 0.22030447], [174.28, 1976.2203016342357, 0.20896402], [174.29, 1976.9504299293592, 0.22013591], [174.3, 1976.2455116752471, 0.21020688], [174.31, 1976.9252862780227, 0.2204836], [174.32, 1976.2256063587645, 0.20902136], [174.33, 1976.9208308413845, 0.22105773], [174.34, 1976.2049446244362, 0.20936777], [174.35, 1976.95443571442, 0.22126198], [174.36, 1976.210340299368, 0.2100473], [174.37, 1976.9513362956745, 0.22096579], [174.38, 1976.2463334804293, 0.21037014], [174.39, 1976.943275762101, 0.22046986], [174.4, 1976.2554335928974, 0.20932475], [174.41, 1976.9467631832865, 0.22074509], [174.42, 1976.231316626762, 0.20817186], [174.43, 1976.985181630293, 0.21973631], [174.44, 1976.2403596029255, 0.20852302], [174.45, 1976.9201949474802, 0.21930857], [174.46, 1976.228336887674, 0.20886204], [174.47, 1977.0223660048919, 0.21949503], [174.48, 1976.2392395396648, 0.20866665], [174.49, 1977.0204659385486, 0.21870404], [174.5, 1976.2593646101632, 0.20814382], [174.51, 1977.0229955809632, 0.2186312], [174.52, 1976.2592866282773, 0.207605], [174.53, 1977.0289043936568, 0.21846156], [174.54, 1976.2402311652845, 0.20788507], [174.55, 1976.9765104991611, 0.218856], [174.56, 1976.2840271300083, 0.20776832], [174.57, 1976.984319541155, 0.21898003], [174.58, 1976.3154088709598, 0.2077344], [174.59, 1976.9944605901806, 0.2183894], [174.6, 1976.3116559414254, 0.20730454], [174.61, 1977.0181323224776, 0.21788277], [174.62, 1976.3038487549204, 0.20726703], [174.63, 1977.0608974466868, 0.2173857], [174.64, 1976.3379153017352, 0.20752169], [174.65, 1977.0892822980895, 0.21772419], [174.66, 1976.330921053438, 0.20617156], [174.67, 1977.0778898396973, 0.21697356], [174.68, 1976.3174161968545, 0.20618437], [174.69, 1977.0351261383012, 0.21687931], [174.7, 1976.316162483458, 0.20698929], [174.71, 1977.059233960998, 0.21748918], [174.72, 1976.3492937030192, 0.20762105], [174.73, 1977.0693684429627, 0.21738903], [174.74, 1976.3126700504208, 0.20824972], [174.75, 1977.0683221365764, 0.21717696], [174.76, 1976.3356080485719, 0.20764899], [174.77, 1977.1080807367885, 0.21687543], [174.78, 1976.3351840904088, 0.20695083], [174.79, 1977.0872030178896, 0.21755366], [174.8, 1976.288724409675, 0.2078554], [174.81, 1977.0355306314425, 0.21848388], [174.82, 1976.2742492763314, 0.20719646], [174.83, 1977.0250388916515, 0.21794447], [174.84, 1976.2813493656813, 0.2052769], [174.85, 1977.0702605993895, 0.21728668], [174.86, 1976.2813914735107, 0.20552012], [174.87, 1977.063898793736, 0.21705377], [174.88, 1976.2483257987926, 0.2057527], [174.89, 1977.0392922587937, 0.21851109], [174.9, 1976.2419700937508, 0.20570298], [174.91, 1977.038800285989, 0.21772832], [174.92, 1976.2632023626409, 0.20609371], [174.93, 1976.9686218747663, 0.21705042], [174.94, 1976.265144394623, 0.20607074], [174.95, 1976.9986882063242, 0.2176164], [174.96, 1976.2843066194132, 0.20600705], [174.97, 1977.0189150838528, 0.21714312], [174.98, 1976.2603113600599, 0.20621301], [174.99, 1976.9693150532623, 0.21781258], [175.0, 1976.2502704112821, 0.2080877], [175.01, 1976.9715207285212, 0.2185113], [175.02, 1976.2556172830755, 0.20785624], [175.03, 1976.9557709862534, 0.21890748], [175.04, 1976.3143992639984, 0.20749867], [175.05, 1976.978219354965, 0.21834241], [175.06, 1976.346685892812, 0.20811284], [175.07, 1976.9613930388505, 0.2182636], [175.08, 1976.3003994584435, 0.2078076], [175.09, 1976.970296453267, 0.21793275], [175.1, 1976.3264106990382, 0.20801263], [175.11, 1976.9388211872079, 0.21863084], [175.12, 1976.2830080828871, 0.20735778], [175.13, 1976.9492738322301, 0.2183583], [175.14, 1976.259582814453, 0.20716196], [175.15, 1976.9470992811848, 0.21887027], [175.16, 1976.2414640106554, 0.20746678], [175.17, 1976.9412147949606, 0.21902312], [175.18, 1976.2134110901059, 0.20809153], [175.19, 1976.978860723026, 0.21907814], [175.2, 1976.21162953759, 0.20891364], [175.21, 1976.9325596200888, 0.22007917], [175.22, 1976.2236082966842, 0.20893434], [175.23, 1976.9655734758308, 0.22145802], [175.24, 1976.2287747761702, 0.20880526], [175.25, 1976.9791590793463, 0.22065046], [175.26, 1976.2296509686198, 0.20760053], [175.27, 1976.9610278162613, 0.22057346], [175.28, 1976.2070547705832, 0.20745647], [175.29, 1976.9861587820026, 0.22032101], [175.3, 1976.2134879828282, 0.20711552], [175.31, 1976.9839687233423, 0.22017787], [175.32, 1976.2237467456075, 0.20622998], [175.33, 1977.0024199346249, 0.2198803], [175.34, 1976.2175879442052, 0.20686592], [175.35, 1976.9695464853667, 0.21995912], [175.36, 1976.196442609444, 0.20720145], [175.37, 1976.9591541009563, 0.21965842], [175.38, 1976.182142040004, 0.20758702], [175.39, 1976.938337988956, 0.21950024], [175.4, 1976.2061733331461, 0.20748168], [175.41, 1976.9423005528597, 0.2199574], [175.42, 1976.2234009392705, 0.20678982], [175.43, 1976.9971649104536, 0.21844196], [175.44, 1976.260153468765, 0.20570172], [175.45, 1976.972843148284, 0.21810675], [175.46, 1976.247909882795, 0.20445251], [175.47, 1976.9268130008172, 0.21807326], [175.48, 1976.2455530789025, 0.20663337], [175.49, 1976.8872322814782, 0.21894525], [175.5, 1976.2310654846249, 0.20769434], [175.51, 1976.848920950749, 0.21971262], [175.52, 1976.2269441526516, 0.20821482], [175.53, 1976.8840278418204, 0.22029032], [175.54, 1976.2341501806077, 0.20859839], [175.55, 1976.8623119849533, 0.2198207], [175.56, 1976.259843144952, 0.20789689], [175.57, 1976.8710667535634, 0.2194244], [175.58, 1976.2233930572388, 0.20788807], [175.59, 1976.8517636198785, 0.21993867], [175.6, 1976.217794498846, 0.20804177], [175.61, 1976.8914375729937, 0.21934998], [175.62, 1976.2710983684349, 0.20841771], [175.63, 1976.9008049918584, 0.21976487], [175.64, 1976.2935574801406, 0.20922603], [175.65, 1976.9065814478256, 0.21959738], [175.66, 1976.3166159639873, 0.20972435], [175.67, 1976.915844747724, 0.21922454], [175.68, 1976.2909138059183, 0.20959651], [175.69, 1976.8800464571314, 0.21923298], [175.7, 1976.28892508022, 0.2109633], [175.71, 1976.9153461046299, 0.21892971], [175.72, 1976.2910739131194, 0.21001434], [175.73, 1976.8875370075248, 0.21834128], [175.74, 1976.2832244424906, 0.20912795], [175.75, 1976.9234209422734, 0.2186668], [175.76, 1976.2932871230717, 0.20827432], [175.77, 1976.9444639098806, 0.21763143], [175.78, 1976.2710136899573, 0.20798223], [175.79, 1976.9366234479626, 0.2176926], [175.8, 1976.2660143115872, 0.20758928], [175.81, 1976.9090626841037, 0.21778151], [175.82, 1976.2672590472287, 0.20710471], [175.83, 1976.9121141679377, 0.21777444], [175.84, 1976.2753082725797, 0.20698084], [175.85, 1976.974786542643, 0.21699733], [175.86, 1976.308428965462, 0.20703407], [175.87, 1977.0128105970455, 0.21735488], [175.88, 1976.3042642461685, 0.20770925], [175.89, 1977.0054987588198, 0.21750617], [175.9, 1976.3156180187932, 0.207314], [175.91, 1976.9868297665537, 0.21760194], [175.92, 1976.2797964262595, 0.20690356], [175.93, 1976.990438002923, 0.21711859], [175.94, 1976.3099019836432, 0.20663135], [175.95, 1976.9686460968237, 0.21704409], [175.96, 1976.3322902165992, 0.20763177], [175.97, 1976.985492677834, 0.21754663], [175.98, 1976.3380940424458, 0.20821813], [175.99, 1976.906130751597, 0.21795678], [176.0, 1976.336548586893, 0.20796697], [176.01, 1976.953669543385, 0.21903361], [176.02, 1976.2941886893313, 0.2080658], [176.03, 1976.9887704777282, 0.21939991], [176.04, 1976.316067925243, 0.20796332], [176.05, 1976.983126438389, 0.2189318], [176.06, 1976.2712639091865, 0.2087196], [176.07, 1976.9408430750434, 0.22021124], [176.08, 1976.2739321712502, 0.20932908], [176.09, 1976.9309204635895, 0.22000894], [176.1, 1976.2804616191725, 0.21026902], [176.11, 1976.968317091916, 0.22000805], [176.12, 1976.2661518139262, 0.21044506], [176.13, 1976.959031393625, 0.21992594], [176.14, 1976.2615286395223, 0.20981318], [176.15, 1976.910471905826, 0.22001553], [176.16, 1976.248462022269, 0.20975894], [176.17, 1976.9205305550067, 0.22102453], [176.18, 1976.2813208902967, 0.20979224], [176.19, 1976.9082192619906, 0.21990423], [176.2, 1976.2731781941839, 0.20955908], [176.21, 1976.9518660754352, 0.21986346], [176.22, 1976.274938645115, 0.20953254], [176.23, 1976.9840996793328, 0.21932739], [176.24, 1976.291804788411, 0.21000414], [176.25, 1976.954181137826, 0.2203443], [176.26, 1976.3087372780592, 0.20927888], [176.27, 1976.9277418249844, 0.21981102], [176.28, 1976.2813052103845, 0.20931903], [176.29, 1976.9146601357734, 0.21981184], [176.3, 1976.2499449429179, 0.20950957], [176.31, 1976.9650640283462, 0.21988082], [176.32, 1976.2716598684322, 0.20971213], [176.33, 1976.9652254944049, 0.21988574], [176.34, 1976.2505401815379, 0.20896298], [176.35, 1976.934483011677, 0.21977632], [176.36, 1976.2154376797562, 0.20879059], [176.37, 1976.9133140598753, 0.22058374], [176.38, 1976.2358722964327, 0.20938516], [176.39, 1976.9555858848082, 0.21988145], [176.4, 1976.2786319645047, 0.20908073], [176.41, 1976.9928488801904, 0.21902591], [176.42, 1976.2752872777664, 0.20875385], [176.43, 1977.010715094361, 0.21809068], [176.44, 1976.3333869358958, 0.20818004], [176.45, 1977.0440999496443, 0.2178294], [176.46, 1976.3318844360188, 0.20826785], [176.47, 1977.0298811056587, 0.21839538], [176.48, 1976.3418940907495, 0.20896919], [176.49, 1977.0152321525618, 0.2179401], [176.5, 1976.3038717916575, 0.208136], [176.51, 1976.99618350279, 0.2182432], [176.52, 1976.2712642215783, 0.2087874], [176.53, 1976.992001515322, 0.2184718], [176.54, 1976.2927168377637, 0.20822214], [176.55, 1976.996766803205, 0.21740787], [176.56, 1976.3091567023216, 0.20817104], [176.57, 1976.9391397301636, 0.21822634], [176.58, 1976.332181000631, 0.20859638], [176.59, 1976.9633049867296, 0.21802117], [176.6, 1976.329956440904, 0.2081423], [176.61, 1976.9981360550528, 0.21802616], [176.62, 1976.3291602856873, 0.20749049], [176.63, 1977.009867810489, 0.21754093], [176.64, 1976.3259442884962, 0.20748326], [176.65, 1977.0013898999027, 0.2178754], [176.66, 1976.330142804512, 0.20795752], [176.67, 1977.0219976676551, 0.21783021], [176.68, 1976.3104240172217, 0.20645633], [176.69, 1977.0307443755732, 0.21823251], [176.7, 1976.3285614342487, 0.20532925], [176.71, 1977.042215884564, 0.2171611], [176.72, 1976.3026727967463, 0.20587015], [176.73, 1976.9704906327834, 0.21722737], [176.74, 1976.3069482250885, 0.20628181], [176.75, 1976.9668556138668, 0.21744892], [176.76, 1976.2803712526918, 0.20672525], [176.77, 1976.9584039325398, 0.21816547], [176.78, 1976.291161616941, 0.20759693], [176.79, 1976.9468939734554, 0.21757405], [176.8, 1976.3300257026194, 0.20757516], [176.81, 1976.9262409972703, 0.21786048], [176.82, 1976.334303132, 0.20694113], [176.83, 1976.9350056005012, 0.21738859], [176.84, 1976.3047086047145, 0.20681824], [176.85, 1976.9255826786762, 0.21685503], [176.86, 1976.3061137659654, 0.20796163], [176.87, 1976.917065182581, 0.21867716], [176.88, 1976.307747941223, 0.20813935], [176.89, 1976.9384547564548, 0.21847658], [176.9, 1976.2816075435803, 0.20899835], [176.91, 1976.9451011733236, 0.2187789], [176.92, 1976.3181874388583, 0.20860296], [176.93, 1976.9307739034869, 0.21812083], [176.94, 1976.3289288094402, 0.20871405], [176.95, 1976.8950177530962, 0.21777312], [176.96, 1976.3196032521043, 0.2092118], [176.97, 1976.9349583208623, 0.21800081], [176.98, 1976.336751953761, 0.20906605], [176.99, 1976.9608715125873, 0.21780321], [177.0, 1976.3203829129711, 0.20942721], [177.01, 1976.9289616074946, 0.218716], [177.02, 1976.31274787635, 0.20926139], [177.03, 1976.9450583436094, 0.21910082], [177.04, 1976.311804787627, 0.2091787], [177.05, 1976.9450938217985, 0.21957643], [177.06, 1976.3422962131053, 0.20866275], [177.07, 1976.9795896205878, 0.21842088], [177.08, 1976.3405431087954, 0.20826411], [177.09, 1976.9989957090754, 0.21869764], [177.1, 1976.3689485579212, 0.20804192], [177.11, 1977.030576020851, 0.21905923], [177.12, 1976.3995800029834, 0.20734666], [177.13, 1976.999686006482, 0.21833016], [177.14, 1976.400250495575, 0.2072287], [177.15, 1976.939491825898, 0.21893826], [177.16, 1976.3489086399004, 0.20848006], [177.17, 1976.9434396715496, 0.21907876], [177.18, 1976.3604692349982, 0.20848155], [177.19, 1976.9434408988834, 0.21884894], [177.2, 1976.369886022036, 0.20789066], [177.21, 1976.9700941124904, 0.21957597], [177.22, 1976.3558463126901, 0.20772913], [177.23, 1976.9725881970587, 0.21927583], [177.24, 1976.3524720735493, 0.20823258], [177.25, 1976.9673514065307, 0.21941279], [177.26, 1976.3310244027384, 0.20848332], [177.27, 1976.9495602526467, 0.22040465], [177.28, 1976.3139097679086, 0.20980507], [177.29, 1976.9584691411433, 0.22024238], [177.3, 1976.375558102547, 0.20989805], [177.31, 1976.9791667233767, 0.220183], [177.32, 1976.3739441229227, 0.20866843], [177.33, 1977.0185518111534, 0.22009455], [177.34, 1976.3585101967794, 0.20945196], [177.35, 1976.9846691288922, 0.22062838], [177.36, 1976.32810300975, 0.21032695], [177.37, 1976.965887373677, 0.2208946], [177.38, 1976.3388851052782, 0.21055657], [177.39, 1976.9562285523318, 0.2206988], [177.4, 1976.3730867766037, 0.20955174], [177.41, 1976.9395528995706, 0.22035979], [177.42, 1976.3563516722163, 0.20889929], [177.43, 1976.916793006643, 0.22058679], [177.44, 1976.3960837328032, 0.20980877], [177.45, 1976.9627946057801, 0.2204699], [177.46, 1976.4585346382137, 0.20994258], [177.47, 1976.9972816645102, 0.21972801], [177.48, 1976.4156231636575, 0.20925787], [177.49, 1977.005973861527, 0.21986258], [177.5, 1976.3984034195432, 0.2089664], [177.51, 1977.0001508548512, 0.22029379], [177.52, 1976.3876638889724, 0.20919237], [177.53, 1976.9743759582786, 0.22069865], [177.54, 1976.3843251341732, 0.20916754], [177.55, 1976.995390955345, 0.2198609], [177.56, 1976.391063041069, 0.20829336], [177.57, 1976.9628574335588, 0.21890451], [177.58, 1976.420038908485, 0.20776229], [177.59, 1977.020977027782, 0.21912853], [177.6, 1976.4252115995648, 0.20750886], [177.61, 1977.052364816552, 0.21901856], [177.62, 1976.4169285170833, 0.20819125], [177.63, 1977.022131006154, 0.21930818], [177.64, 1976.4043401366393, 0.20768593], [177.65, 1976.9855568728103, 0.21897805], [177.66, 1976.3839540688873, 0.2079619], [177.67, 1976.944109510964, 0.21954593], [177.68, 1976.3940826872072, 0.20741856], [177.69, 1976.9505911031188, 0.21943909], [177.7, 1976.396904551677, 0.20713374], [177.71, 1976.957257618119, 0.21946049], [177.72, 1976.3888753334745, 0.20825654], [177.73, 1976.9200054623454, 0.21921249], [177.74, 1976.366517015663, 0.20818599], [177.75, 1976.883730532329, 0.21977477], [177.76, 1976.349785851044, 0.20748402], [177.77, 1976.9294488052049, 0.21925376], [177.78, 1976.3496134780148, 0.20786914], [177.79, 1976.938088286083, 0.21941367], [177.8, 1976.3396610717423, 0.20866394], [177.81, 1976.880673917083, 0.21903153], [177.82, 1976.3511816122307, 0.20940174], [177.83, 1976.8648858181589, 0.21979496], [177.84, 1976.3107671929442, 0.20945054], [177.85, 1976.9062791787028, 0.22040635], [177.86, 1976.314824700702, 0.20990814], [177.87, 1976.8821998965243, 0.22106974], [177.88, 1976.2906316812403, 0.21091448], [177.89, 1976.9127498697549, 0.22138108], [177.9, 1976.2981597074277, 0.21095386], [177.91, 1976.8992165391862, 0.22102192], [177.92, 1976.2730568851773, 0.21109802], [177.93, 1976.8848406768063, 0.22141008], [177.94, 1976.2702023182533, 0.2109473], [177.95, 1976.899771066678, 0.22064836], [177.96, 1976.301444210465, 0.21080582], [177.97, 1976.83979437207, 0.22013979], [177.98, 1976.2499186393975, 0.2110736], [177.99, 1976.854837964978, 0.22031699], [178.0, 1976.2584530632093, 0.21102503], [178.01, 1976.880655661304, 0.22083554], [178.02, 1976.2912885615876, 0.21067636], [178.03, 1976.8816290299937, 0.22032326], [178.04, 1976.296279029699, 0.2112551], [178.05, 1976.8971148300918, 0.22093089], [178.06, 1976.2906397634117, 0.21029745], [178.07, 1976.84718471309, 0.22048664], [178.08, 1976.2631510862605, 0.21031477], [178.09, 1976.8358781132029, 0.22075468], [178.1, 1976.2160404643955, 0.2096843], [178.11, 1976.8071388124429, 0.2203196], [178.12, 1976.2051617567327, 0.20991758], [178.13, 1976.7928867116825, 0.22021364], [178.14, 1976.2241404507581, 0.20955245], [178.15, 1976.8019196294154, 0.22092852], [178.16, 1976.2180119338552, 0.20942573], [178.17, 1976.8126531018538, 0.22051612], [178.18, 1976.2228058796688, 0.20896907], [178.19, 1976.8354315936197, 0.22045231], [178.2, 1976.229417050854, 0.20879361], [178.21, 1976.87282126871, 0.22029091], [178.22, 1976.20110082048, 0.20951563], [178.23, 1976.8665529743432, 0.22124904], [178.24, 1976.2049332615484, 0.2099733], [178.25, 1976.925531778685, 0.22071458], [178.26, 1976.2334708267463, 0.20948663], [178.27, 1976.9199797219626, 0.22045055], [178.28, 1976.2507617471083, 0.20880103], [178.29, 1976.904539115375, 0.2199531], [178.3, 1976.253909590525, 0.20925662], [178.31, 1976.914675190008, 0.22050917], [178.32, 1976.2657870359235, 0.2098847], [178.33, 1976.9195600707108, 0.21998525], [178.34, 1976.2686838301652, 0.20969282], [178.35, 1976.9045225900081, 0.22059874], [178.36, 1976.2367009334173, 0.21096165], [178.37, 1976.900475104641, 0.22139235], [178.38, 1976.2501529360648, 0.21138267], [178.39, 1976.8694794863416, 0.2210829], [178.4, 1976.2449843195195, 0.21014777], [178.41, 1976.8585564415946, 0.22042432], [178.42, 1976.2349283673311, 0.21032643], [178.43, 1976.8870910021485, 0.22088368], [178.44, 1976.2537549106614, 0.21105655], [178.45, 1976.9001077477085, 0.22033489], [178.46, 1976.2318416069118, 0.21048926], [178.47, 1976.901799442635, 0.22080202], [178.48, 1976.2326990454085, 0.21041495], [178.49, 1976.9074605433796, 0.22036721], [178.5, 1976.2388307260562, 0.2099088], [178.51, 1976.907623433269, 0.22042021], [178.52, 1976.2437989741052, 0.209696], [178.53, 1976.9134050804767, 0.22086996], [178.54, 1976.2750546419422, 0.20993635], [178.55, 1976.9144396815464, 0.22102952], [178.56, 1976.234127566061, 0.21008667], [178.57, 1976.969571919037, 0.22063154], [178.58, 1976.2885890436448, 0.21072794], [178.59, 1976.9189935155296, 0.22014083], [178.6, 1976.2462276577355, 0.20974743], [178.61, 1976.8950747429276, 0.22003822], [178.62, 1976.2602768528816, 0.20992094], [178.63, 1976.9119257038337, 0.21932341], [178.64, 1976.283017942128, 0.2091986], [178.65, 1976.917423586503, 0.2190499], [178.66, 1976.3226347010084, 0.20838659], [178.67, 1976.9583461766174, 0.21797836], [178.68, 1976.3491990359976, 0.20876929], [178.69, 1976.9267571535088, 0.21804866], [178.7, 1976.3301881155357, 0.2084693], [178.71, 1976.8837202557334, 0.21838006], [178.72, 1976.326579885989, 0.20938747], [178.73, 1976.8757268596917, 0.21904232], [178.74, 1976.304703975813, 0.20922144], [178.75, 1976.8842866266098, 0.2199493], [178.76, 1976.2914407664514, 0.20961805], [178.77, 1976.9016511846019, 0.21916413], [178.78, 1976.310618004688, 0.2091434], [178.79, 1976.9151891820022, 0.21970353], [178.8, 1976.3144920541695, 0.20894164], [178.81, 1976.9535917720102, 0.21951056], [178.82, 1976.32112152472, 0.20956802], [178.83, 1976.9852567978833, 0.219117], [178.84, 1976.351698113137, 0.20922463], [178.85, 1976.965100495725, 0.21850495], [178.86, 1976.3656337442987, 0.20901713], [178.87, 1976.9481751420083, 0.21782343], [178.88, 1976.34859664917, 0.20883285], [178.89, 1976.9613753596798, 0.21886529], [178.9, 1976.3705068188608, 0.20852818], [178.91, 1976.9330371291326, 0.2182943], [178.92, 1976.3585458335317, 0.20811687], [178.93, 1976.9253707591083, 0.21822344], [178.94, 1976.3392647622327, 0.20854317], [178.95, 1976.955141686499, 0.21923566], [178.96, 1976.3241016062411, 0.2088275], [178.97, 1976.9590412732405, 0.2194164], [178.98, 1976.3246526512557, 0.2096556], [178.99, 1976.9520841729354, 0.21939233], [179.0, 1976.340425697107, 0.20868883], [179.01, 1976.9393342333544, 0.21863301], [179.02, 1976.3565342707784, 0.20863326], [179.03, 1976.9399223637813, 0.2192713], [179.04, 1976.34804644073, 0.2088707], [179.05, 1976.9212079149602, 0.21928278], [179.06, 1976.346186251443, 0.20917057], [179.07, 1976.8774621628995, 0.21913852], [179.08, 1976.3318443192684, 0.20900173], [179.09, 1976.8837557867564, 0.21855214], [179.1, 1976.3402138613992, 0.20824413], [179.11, 1976.8591224393751, 0.21832748], [179.12, 1976.3219803449938, 0.20820878], [179.13, 1976.884084849228, 0.21897063], [179.14, 1976.328853810144, 0.20863706], [179.15, 1976.8840026042506, 0.21898308], [179.16, 1976.348325050228, 0.20836194], [179.17, 1976.8892039008458, 0.2184914], [179.18, 1976.3455148612543, 0.20807536], [179.19, 1976.8998460615205, 0.21842796], [179.2, 1976.3315212566272, 0.20870325], [179.21, 1976.917257305746, 0.21837723], [179.22, 1976.3370918583523, 0.20731074], [179.23, 1976.8967178899607, 0.2182096], [179.24, 1976.3375355739947, 0.20766287], [179.25, 1976.9717200369562, 0.21818222], [179.26, 1976.3589919145502, 0.20781972], [179.27, 1976.8938516164458, 0.21774624], [179.28, 1976.326272430796, 0.20824139], [179.29, 1976.8315497007359, 0.21894357], [179.3, 1976.311420264425, 0.20886359], [179.31, 1976.874387683674, 0.21930143], [179.32, 1976.3483413003587, 0.20999114], [179.33, 1976.9027423955226, 0.21918365], [179.34, 1976.3300277230046, 0.2100255], [179.35, 1976.874261324814, 0.21906391], [179.36, 1976.3536754575111, 0.20994836], [179.37, 1976.9068297156755, 0.21899481], [179.38, 1976.3542251611193, 0.21050723], [179.39, 1976.886959116689, 0.22017579], [179.4, 1976.3252104077403, 0.21202637], [179.41, 1976.900741080644, 0.22016206], [179.42, 1976.3507130542525, 0.21207039], [179.43, 1976.9049796024915, 0.21956581], [179.44, 1976.369928882623, 0.21150658], [179.45, 1976.9269969613151, 0.2198616], [179.46, 1976.4068522371713, 0.21211359], [179.47, 1976.9785232881068, 0.21948847], [179.48, 1976.4422432030738, 0.21203949], [179.49, 1976.9956408497876, 0.21850201], [179.5, 1976.4514860734732, 0.21201733], [179.51, 1977.0120559291481, 0.21857643], [179.52, 1976.3996611535167, 0.21134983], [179.53, 1976.9692051795355, 0.21941781], [179.54, 1976.3983158666927, 0.21245919], [179.55, 1976.963191426591, 0.21964674], [179.56, 1976.4162880104182, 0.21176192], [179.57, 1976.9243015315228, 0.21910171], [179.58, 1976.4000016118346, 0.21212491], [179.59, 1976.9715979103667, 0.21916337], [179.6, 1976.4218893776388, 0.21147503], [179.61, 1976.9901488893124, 0.21930256], [179.62, 1976.4112942327076, 0.21184038], [179.63, 1976.942097037635, 0.2195919], [179.64, 1976.4013369622114, 0.2120468], [179.65, 1976.9086660779192, 0.21955131], [179.66, 1976.4549055722543, 0.21170892], [179.67, 1976.9371084045722, 0.21965434], [179.68, 1976.4332645017116, 0.21226859], [179.69, 1976.9815342361953, 0.21978234], [179.7, 1976.4227691179483, 0.2116133], [179.71, 1976.9762723122044, 0.219416], [179.72, 1976.3892893256107, 0.21055971], [179.73, 1976.9556858023125, 0.21922384], [179.74, 1976.4050352286986, 0.21009082], [179.75, 1976.9671570044566, 0.22009097], [179.76, 1976.3868256380474, 0.21027963], [179.77, 1976.9749728100862, 0.21959957], [179.78, 1976.3495253460578, 0.21017654], [179.79, 1976.9817336169, 0.21998851], [179.8, 1976.358508640312, 0.20993246], [179.81, 1977.0170963150522, 0.2202929], [179.82, 1976.3272524225813, 0.21096602], [179.83, 1976.9766332845188, 0.22101505], [179.84, 1976.317716950009, 0.2113155], [179.85, 1976.9481900087958, 0.22067645], [179.86, 1976.3697541436866, 0.20975883], [179.87, 1976.9517000874534, 0.21991599], [179.88, 1976.3602724428197, 0.20948142], [179.89, 1976.9862560328897, 0.21980292], [179.9, 1976.336474023244, 0.20958436], [179.91, 1976.9720889675264, 0.22076337], [179.92, 1976.353352500487, 0.2100869], [179.93, 1977.0011029443501, 0.22163759], [179.94, 1976.3569343907157, 0.21029586], [179.95, 1976.998209853048, 0.22048247], [179.96, 1976.3885784481818, 0.20942566], [179.97, 1976.9882491599315, 0.22055452], [179.98, 1976.402647633056, 0.21024597], [179.99, 1976.9747710110996, 0.2201473], [180.0, 1956.7685783641296, 0.14392005], [180.01, 1958.7118539403034, 0.15488578], [180.02, 1949.7180387448327, 0.06683831], [180.03, 1949.198787271087, 0.1155123]] \ No newline at end of file diff --git a/internals/__init__.py b/internals/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/internals/db.py b/internals/db.py new file mode 100644 index 0000000..94bcd6e --- /dev/null +++ b/internals/db.py @@ -0,0 +1,101 @@ +from tinydb import TinyDB, Query +from pathlib import Path +from .processors import AudioProcessor +from .utils import writeFrequencyFramesToFile +from dataclasses import dataclass + + +@dataclass +class TinyDBWrapper: + pathToDb: str + + def __post_init__(self): + self.pathToDb = Path(self.pathToDb) + if not self.pathToDb.exists(): + self.pathToDb.touch() + self.tdb = TinyDB(self.pathToDb) + + def idExists(self, id: str) -> bool: + """ + Overview + --------- + Check if a song ID exists in the database + + Parameters + ---------- + id : str + ID of song + + Returns + ------- + bool + True if song exists, False if not + + """ + return bool(self.tdb.search(Query().id == id)) + + + def upsertSong( + self, + songPath: str, + songID: str, + cleanedAudioOutputPath: str, + frequencyFramesOutputDir: str, + separateFrequencyFrames: bool = True, + #update: bool = False, + ) -> tuple[str, dict[str, str], list[list[float]]]: + """ + Overview + -------- + This function grabs the cleaned file, features, and frequency frames,\n + then writes the frequency frames to a text file + and inserts the song into the database + + If update is True, then the song will be updated if it already exists + + Parameters + ---------- + songPath : str + Path to the song to be added + + songID : str + ID of the song to be added + + splitStems : bool, optional + Whether to split the stems or not, by default False + + Returns + ------- + cleanedFile: str + Path to the cleaned file + features: dict[str, str] + Dictionary of features + frequencyFrames: list[list[float]] + List of frequency frames + """ + cleanedFile, features, frequencyFrames = AudioProcessor.processSong( + songPath, songID, cleanedAudioOutputPath, separateFrequencyFrames=True + ) + + data = { + "id": songID, + "songName": Path(songPath).stem, + "pathToFile": cleanedFile, + + # Convert the features to strings + # then add the frequency frames path with the pipe operator + "features": {k: str(v) for (k, v) in features.items()} + | { + "frequencyFramesPath": writeFrequencyFramesToFile( + songID, frequencyFrames, frequencyFramesOutputDir + ) + } + if separateFrequencyFrames + else {"frequencyFrames": frequencyFrames}, + } + + + self.tdb.upsert(data, Query().id == songID) + print(f"Song in db: {songPath}") + return cleanedFile, features, frequencyFrames + diff --git a/internals/media.py b/internals/media.py new file mode 100644 index 0000000..720261c --- /dev/null +++ b/internals/media.py @@ -0,0 +1,43 @@ +from dataclasses import dataclass +import hashlib +from pathlib import Path + +@dataclass +class Media: + id: str + name: str + + def generateID(mediaPath: str) -> str: + ''' + Overview + --------- + + Creates a unique ID for a media file By hashing the file stem + String should look like: "songName_1234567890abcdef1234567890abcdef" + + Parameter + --------- + mediaPath : str + Path to media file + + Returns + ------- + str: + return f"{name}_{hashStr}" + should look like: "songName_1234567890abcdef1234567890abcdef" + + + ''' + name = Path(mediaPath).stem + hashStr = hashlib.sha256(mediaPath.encode()).hexdigest() + return f"{name}_{hashStr}" + +# @dataclass +# class Video(Media): +# url: str +# video_features: List = field(default_factory=lambda: []) +# audio_features: List = field(default_factory=lambda: []) + +# @dataclass +# class Audio(Media): +# path: str \ No newline at end of file diff --git a/polymath.py b/internals/old/polymath.py old mode 100755 new mode 100644 similarity index 100% rename from polymath.py rename to internals/old/polymath.py diff --git a/internals/processors.py b/internals/processors.py new file mode 100644 index 0000000..d713c8e --- /dev/null +++ b/internals/processors.py @@ -0,0 +1,917 @@ +import os +import sys +import subprocess +import shutil +from math import log2, pow +import numpy as np +import librosa +import crepe +import soundfile as sf +import pyrubberband as pyrb +import re + +# from yt_dlp import YoutubeDL +from sf_segmenter.segmenter import Segmenter + +# import tensorflow as tf +# from basic_pitch import ICASSP_2022_MODEL_PATH + +# from basic_pitch.inference import predict +from dataclasses import dataclass +from pathlib import Path + +# field +# from typing import Any, List +# from abc import ABCMeta, abstractmethod +from yt_dlp import YoutubeDL + + +@dataclass +class VideoProcessor: + """ + Handles video processing + """ + + def audio_extract(vidobj, file): + print("audio_extract", file) + command = ( + "ffmpeg -hide_banner -loglevel panic -i " + + file + + " -ab 160k -ac 2 -ar 44100 -vn -y " + + vidobj.audio + ) + subprocess.call(command, shell=True) + return vidobj.audio + + def is_youtube_url(url: str) -> bool: + if "youtube.com/" in url: + return True + if "youtu.be/" in url: + return True + return False + + def get_url_type(url: str) -> str: + return ( + 1 + if "youtube.com/watch?v=" in url + else 2 + if "youtu.be/" in url + else 3 + if "youtube.com/playlist" + else 0 + ) + + def download_video( + url: str, + outdir: str, + format: str = "mp4", + ): + if not Path(outdir).exists(): + raise Exception( + f"The output directory you supplied does not exist \n \n outdir: {outdir} \n \n url: {url} \n \n" + ) + + if not Path(outdir).is_dir(): + raise Exception( + f"The output directory you supplied is not a directory \n \n outdir: {outdir} \n \n url: {url} \n \n" + ) + + ydl_opts = { + "outtmpl": outdir, + "format": "bestvideo[ext=mp4]+bestaudio[ext=m4a]/bestvideo+bestaudio/best--merge-output-format mp4", + } + with YoutubeDL(ydl_opts) as ydl: + ydl.download(url) + # return Path(outdir) / + + def download_audio( + url: str, + outdir: str, + format: str = "mp3", + ) -> str: + ''' + Overview + -------- + Download audio from a youtube url + + Parameters + ---------- + url : str + outdir : str + format : str + + Returns + ------- + finalPath : str + Path to the downloaded audio file + + ''' + + # In case the format specifier has too many dots in it like "..mp3" + format = format.lower().replace(".", "") + + if not Path(outdir).is_dir(): + raise Exception( + f"The output directory you supplied is not a directory \n \n outdir: {outdir} \n \n url: {url} \n \n" + ) + + if not isinstance(format, str): + raise Exception( + f"The format you supplied is not a string \n \n format: {format} \n \n url: {url} \n \n" + ) + if format not in ["mp3", "wav"]: + raise Exception( + f"The format you supplied is not a valid format \n \n format: {format} \n \n url: {url} \n \n" + ) + + if not isinstance(outdir, str): + raise Exception( + f"The outdir you supplied is not a string \n \n outdir: {outdir} \n \n url: {url} \n \n" + ) + + title = VideoProcessor.get_video_info_filtered(url)["title"] + + finalPath = str(Path(outdir) / str(title + "." + format)) + + ydl_opts = { + "outtmpl": str(Path(outdir) / "%(title)s.%(ext)s"), + "format": "bestaudio/best", + "postprocessors": [ + { + "key": "FFmpegExtractAudio", + "preferredcodec": format, + "preferredquality": "192", + } + ], + } + with YoutubeDL(ydl_opts) as ydl: + ydl.download(url) + + + + return finalPath + + def get_video_info_full(url: str) -> dict: + """ + returns the full dictionary of video info + """ + if not VideoProcessor.is_youtube_url(url): + raise Exception( + f"The url you supplied is not a youtube url \n \n url: {url} \n \n" + ) + + return YoutubeDL().extract_info(url, download=False) + + def get_video_info_filtered(url: str) -> dict: + """ + Overview + -------- + Grabbing the full dictionary of video info is a bit too much,\nso this function filters out the info we want. + + + Returns + -------- + dict: + A filtered dictionary of video info\n + wanted_keys = ( + "title", + "id", + "url", + "thumbnail", + "duration", + "description", + "resolution", + "tags", + "fps", + "playlist_index", + "playlist", + ) + + """ + if not VideoProcessor.is_youtube_url(url): + raise Exception( + f"The url you supplied is not a youtube url \n \n url: {url} \n \n" + ) + + dictfilt = lambda x, y: dict([(i, x[i]) for i in x if i in set(y)]) + wanted_keys = ( + "title", + "id", + "url", + "thumbnail", + "duration", + "description", + "resolution", + "tags", + "fps", + "playlist_index", + "playlist", + ) + return dictfilt(YoutubeDL().extract_info(url, download=False), wanted_keys) + + def get_audio_from_video(videoPath: str, audioOutPath: str) -> str: + """ + Extracts audio from video file + + and returns the path to the audio file + """ + command = ( + "ffmpeg -hide_banner -loglevel panic -i " + + videoPath + + " -ab 160k -ac 2 -ar 44100 -vn -y " + + audioOutPath + ) + subprocess.call(command, shell=True) + return audioOutPath + + def extract_video_id(url:str): + """ + Extracts the video id from a YouTube URL. + """ + if VideoProcessor.get_url_type(url) == 1: + regex = r"watch\?v=(\S+)" + match = re.search(regex, url) + if match: + return match.group(1).split("&")[0] + else: + return None + elif VideoProcessor.get_url_type(url) == 2: + return url.split("be/")[1].split("?")[0] + elif VideoProcessor.get_url_type(url) == 3: + return None + else: + raise Exception(f"Unknown URL type \n \n url: {url} \n \n") + + def is_playlist(url:str) -> bool: + return True if VideoProcessor.extract_playlist_id(url) != None else False + + def extract_playlist_id(url:str): + """ + Extracts the playlist id from a YouTube URL. + """ + + if VideoProcessor.get_url_type(url) == 1: + regex = r"list=(\S+)" + match = re.search(regex, url) + if match: + return match.group(1).split("&")[0] + else: + return None + elif VideoProcessor.get_url_type(url) == 2: + try: + return url.split("list=")[1] + except: + return None + elif VideoProcessor.get_url_type(url) == 3: + return url.split("playlist?list=")[1] + else: + raise Exception(f"Unknown URL type \n \n url: {url} \n \n") + + +@dataclass +class AudioProcessor: + + """ + Handles all audio processing + """ + + neg80point8db: float = 0.00009120108393559096 + bit_depth: int = 16 + default_silence_threshold: float = (neg80point8db * (2 ** (bit_depth - 1))) * 4 + + def resampleAudio(audioArray, sampleRate, targetSampleRate=44100) -> np.ndarray: + return librosa.resample( + audioArray, orig_sr=sampleRate, target_sr=targetSampleRate + ) + + def getAudioData(songPath: str, sr=None, mono=False) -> tuple[np.ndarray, int]: + """ + y: + Is a numpy array that contains the audio signal. + Each value in the array represents the amplitude of the audio signal at a specific point in time. + + sr: + Is the sampling rate of the audio signal. + Specifies the number of samples per second in the audio signal. + """ + y, sr = librosa.load(path=songPath, sr=sr, mono=mono) + return y, sr + + @staticmethod + def mp3ToWav(songPath: str, outputDir: str, songID: str) -> str: + import wave + """ + Convert mp3 to wav and return the path to the wav file + """ + + # if this is not an mp3 file raise an exception + if not songPath.endswith(".mp3"): + raise Exception(f"File is not an mp3: {songPath}") + + # if outPath does not exist raise an exception + if not Path(outputDir).exists(): + raise Exception(f"Outpath does not exist: {outputDir}") + + songName = Path(songPath).name + + print("Converting mp3 to wav: ", songName) + + songArray, sampleRate = AudioProcessor.getAudioData(songPath) + + # resample to 44100k if required + if sampleRate != 44100: + print("converting audio file to 44100:", songName) + songArray = AudioProcessor.resampleAudio(songArray, sampleRate, 44100) + + # If the file is stereo, convert to mono by averaging the left and right channels + if songArray.ndim > 1: + songArray = np.mean(songArray, axis=0) + """ + write the wav file to the library folder + """ + + finalPath = str(Path(outputDir) / str(songID + ".wav")) + sf.write(finalPath, np.ravel(songArray), 44100) + return finalPath + + + def cleanAudio(songPath: str, songID: str, outputDir: str) -> str: + """ + Overview + --------- + Create a useable WAV file to later process + + + Parameter + --------- + songPath : str + path to the song + songID : str + unique ID for the song + outputDir : str + path to the output directory + + Returns + ------- + str + path to the cleaned audio file + + + """ + if not Path(outputDir).exists(): + raise Exception(f"Outpath does not exist: {outputDir}") + + songName = Path(songPath).name + + print("Cleaning Audio :", songName) + + if songName.endswith(".mp3"): + cleanedFile = AudioProcessor.mp3ToWav(songPath, outputDir, songID) + + # check if is wav and copy it to local folder + elif songName.endswith(".wav"): + audioArray, sampleRate = AudioProcessor.getAudioData(songPath) + + finalPath = str( + Path(songPath).stem + "_" + songID + ".wav" + ) # str(Path(outputDir) / "test.wav") # + + if sampleRate != 44100: + print("Sample rate is not 44100:", sampleRate) + print("Converting wav file to 44100:", songName) + data = AudioProcessor.resampleAudio(audioArray, sampleRate, 44100) + sf.write(finalPath, data, 44100) + else: + shutil.copy2(songPath, finalPath) + + cleanedFile = finalPath + + return cleanedFile + + ################## AUDIO FEATURES ################## + + def root_mean_square(data): + return float(np.sqrt(np.mean(np.square(data)))) + + def loudness_of(data): + return AudioProcessor.root_mean_square(data) + + def normalized(audioBuffer: list) -> list: + """ + Given an audio buffer, return it with the loudest value scaled to 1.0 + + """ + return audioBuffer.astype(np.float32) / float(np.amax(np.abs(audioBuffer))) + + def start_of(list, threshold=default_silence_threshold, samples_before=1): + """ + takes three arguments: + a list of audio samples, + a threshold value for silence detection (defaulting to default_silence_threshold if not provided), + and a number of samples to look back before the detected start of audio (defaulting to 1 if not provided). + + The function returns the index of the start of audio in the input list. + """ + if int(threshold) != threshold: + threshold = threshold * float(2 ** (AudioProcessor.bit_depth - 1)) + index = np.argmax(np.absolute(list) > threshold) + if index > (samples_before - 1): + return index - samples_before + else: + return 0 + + def end_of(list, threshold=default_silence_threshold, samples_after=1): + if int(threshold) != threshold: + threshold = threshold * float(2 ** (AudioProcessor.bit_depth - 1)) + rev_index = np.argmax(np.flipud(np.absolute(list)) > threshold) + if rev_index > (samples_after - 1): + return len(list) - (rev_index - samples_after) + else: + return len(list) + + def trim_data( + data, + start_threshold=default_silence_threshold, + end_threshold=default_silence_threshold, + ): + start = AudioProcessor.start_of(data, start_threshold) + end = AudioProcessor.end_of(data, end_threshold) + + return data[start:end] + + def load_and_trim(file): + y, rate = librosa.load(file, mono=True) + y = AudioProcessor.normalized(y) + trimmed = AudioProcessor.trim_data(y) + return trimmed, rate + + def get_loudness(file): + loudness = -1 + try: + audio, rate = AudioProcessor.load_and_trim(file) + loudness = AudioProcessor.loudness_of(audio) + except Exception as e: + sys.stderr.write(f"Failed to run on {file}: {e}\n") + return loudness + + def get_volume(file): + volume = -1 + avg_volume = -1 + try: + audio, rate = AudioProcessor.load_and_trim(file) + volume = librosa.feature.rms(y=audio)[0] + avg_volume = np.mean(volume) + loudness = AudioProcessor.loudness_of(audio) + except Exception as e: + sys.stderr.write(f"Failed to get Volume and Loudness on {file}: {e}\n") + return volume, avg_volume, loudness + + def get_key(freq): + A4 = 440 + C0 = A4 * pow(2, -4.75) + name = ["C", "C#", "D", "D#", "E", "F", "F#", "G", "G#", "A", "A#", "B"] + h = round(12 * log2(freq / C0)) + octave = h // 12 + n = h % 12 + return name[n] + str(octave) + + def get_average_pitch(pitch): + pitches = [] + confidences_thresh = 0.8 + i = 0 + while i < len(pitch): + if pitch[i][2] > confidences_thresh: + pitches.append(pitch[i][1]) + i += 1 + if len(pitches) > 0: + average_frequency = np.array(pitches).mean() + average_key = AudioProcessor.get_key(average_frequency) + else: + average_frequency = 0 + average_key = "A0" + return average_frequency, average_key + + def get_intensity(y, sr, beats): + # Beat-synchronous Loudness - Intensity + CQT = librosa.cqt(y, sr=sr, fmin=librosa.note_to_hz("A1")) + freqs = librosa.cqt_frequencies(CQT.shape[0], fmin=librosa.note_to_hz("A1")) + perceptual_CQT = librosa.perceptual_weighting(CQT**2, freqs, ref=np.max) + CQT_sync = librosa.util.sync(perceptual_CQT, beats, aggregate=np.median) + return CQT_sync + + def get_pitch(y_harmonic, sr, beats): + # Chromagram + C = librosa.feature.chroma_cqt(y=y_harmonic, sr=sr) + # Beat-synchronous Chroma - Pitch + C_sync = librosa.util.sync(C, beats, aggregate=np.median) + return C_sync + + def get_timbre(y, sr, beats): + # Mel spectogram + S = librosa.feature.melspectrogram(y, sr=sr, n_mels=128) + log_S = librosa.power_to_db(S, ref=np.max) + # MFCC - Timbre + mfcc = librosa.feature.mfcc(S=log_S, n_mfcc=13) + delta_mfcc = librosa.feature.delta(mfcc) + delta2_mfcc = librosa.feature.delta(mfcc, order=2) + M = np.vstack([mfcc, delta_mfcc, delta2_mfcc]) + # Beat-synchronous MFCC - Timbre + M_sync = librosa.util.sync(M, beats) + return M_sync + + def get_segments(audio_file:str): + segmenter = Segmenter() + boundaries, labs = segmenter.proc_audio(audio_file) + return boundaries, labs + + def get_pitch_dnn(audio_file:str): + # DNN Pitch Detection + pitch = [] + audio, sr = librosa.load(audio_file) + time, frequency, confidence, activation = crepe.predict( + audio, + sr, + model_capacity="tiny", + viterbi=True, + center=True, + step_size=10, + verbose=1, + ) # tiny|small|medium|large|full + i = 0 + while i < len(time): + pitch.append([time[i], frequency[i], confidence[i]]) + i += 1 + return pitch + + def stemsplit(destination:str, demucsmodel:str): + subprocess.run(["demucs", destination, "-n", demucsmodel]) # '--mp3' + + def extractMIDI(audio_paths, output_dir:str): + from basic_pitch.inference import predict_and_save + + print("- Extract Midi") + save_midi = True + sonify_midi = False + save_model_outputs = False + save_notes = False + + predict_and_save( + audio_path_list=audio_paths, + output_directory=output_dir, + save_midi=save_midi, + sonify_midi=sonify_midi, + save_model_outputs=save_model_outputs, + save_notes=save_notes, + ) + + def quantizeAudio( + vid, bpm=120, keepOriginalBpm=False, pitchShiftFirst=False, extractMidi=False + ): + print( + "Quantize Audio: Target BPM", + bpm, + "-- id:", + vid.id, + "bpm:", + round(vid.audio_features["tempo"], 2), + "frequency:", + round(vid.audio_features["frequency"], 2), + "key:", + vid.audio_features["key"], + "timbre:", + round(vid.audio_features["timbre"], 2), + "name:", + vid.name, + "keepOriginalBpm:", + keepOriginalBpm, + ) + + # load audio file + y, sr = librosa.load(vid.audio, sr=None) + + # Keep Original Song BPM + if keepOriginalBpm: + bpm = float(vid.audio_features["tempo"]) + print("Keep original audio file BPM:", vid.audio_features["tempo"]) + # Pitch Shift audio file to desired BPM first + elif pitchShiftFirst: # WORK IN PROGRESS + print("Pitch Shifting audio to desired BPM", bpm) + # Desired tempo in bpm + original_tempo = vid.audio_features["tempo"] + speed_factor = bpm / original_tempo + # Resample the audio to adjust the sample rate accordingly + sr_stretched = int(sr / speed_factor) + y = librosa.resample( + y=y, orig_sr=sr, target_sr=sr_stretched + ) # , res_type='linear' + y = librosa.resample(y, orig_sr=sr, target_sr=44100) + + # extract beat + y_harmonic, y_percussive = librosa.effects.hpss(y) + tempo, beats = librosa.beat.beat_track( + sr=sr, + onset_envelope=librosa.onset.onset_strength(y=y_percussive, sr=sr), + trim=False, + ) + beat_frames = librosa.frames_to_samples(beats) + + # generate metronome + fixed_beat_times = [] + for i in range(len(beat_frames)): + fixed_beat_times.append(i * 120 / bpm) + fixed_beat_frames = librosa.time_to_samples(fixed_beat_times) + + # construct time map + time_map = [] + for i in range(len(beat_frames)): + new_member = (beat_frames[i], fixed_beat_frames[i]) + time_map.append(new_member) + + # add ending to time map + original_length = len(y + 1) + orig_end_diff = original_length - time_map[i][0] + new_ending = int(round(time_map[i][1] + orig_end_diff * (tempo / bpm))) + new_member = (original_length, new_ending) + time_map.append(new_member) + + # time strech audio + print("- Quantize Audio: source") + strechedaudio = pyrb.timemap_stretch(y, sr, time_map) + + path_suffix = ( + f"Key {vid.audio_features['key']} - " + f"Freq {round(vid.audio_features['frequency'], 2)} - " + f"Timbre {round(vid.audio_features['timbre'], 2)} - " + f"BPM Original {int(vid.audio_features['tempo'])} - " + f"BPM {bpm}" + ) + path_prefix = f"{vid.id} - {vid.name}" + + audiofilepaths = [] + # save audio to disk + path = os.path.join( + os.getcwd(), "processed", path_prefix + " - " + path_suffix + ".wav" + ) + sf.write(path, strechedaudio, sr) + audiofilepaths.append(path) + + # process stems + stems = ["bass", "drums", "guitar", "other", "piano", "vocals"] + for stem in stems: + path = os.path.join( + os.getcwd(), "separated", "htdemucs_6s", vid.id, stem + ".wav" + ) + print(f"- Quantize Audio: {stem}") + y, sr = librosa.load(path, sr=None) + strechedaudio = pyrb.timemap_stretch(y, sr, time_map) + # save stems to disk + path = os.path.join( + os.getcwd(), + "processed", + path_prefix + " - Stem " + stem + " - " + path_suffix + ".wav", + ) + sf.write(path, strechedaudio, sr) + audiofilepaths.append(path) + + # metronome click (optinal) + click = False + if click: + clicks_audio = librosa.clicks(times=fixed_beat_times, sr=sr) + print(len(clicks_audio), len(strechedaudio)) + clicks_audio = clicks_audio[: len(strechedaudio)] + path = os.path.join(os.getcwd(), "processed", vid.id + "- click.wav") + sf.write(path, clicks_audio, sr) + + if extractMidi: + output_dir = os.path.join(os.getcwd(), "processed") + AudioProcessor.extractMIDI(audiofilepaths, output_dir) + + def get_audio_features( + songPath: str, songID: str, extractMidi: bool = False + ) -> dict: + print( + "------------------------------ get_audio_features:", + songID, + "------------------------------", + ) + print("1/8 segementation") + segments_boundaries, segments_labels = AudioProcessor.get_segments(songPath) + + print("2/8 pitch tracking") + frequency_frames = AudioProcessor.get_pitch_dnn(songPath) + average_frequency, average_key = AudioProcessor.get_average_pitch( + frequency_frames + ) + + print("3/8 load sample") + y, sr = librosa.load(songPath, sr=None) + song_duration = librosa.get_duration(y=y, sr=sr) + + print("4/8 sample separation") + y_harmonic, y_percussive = librosa.effects.hpss(y) + + print("5/8 beat tracking") + tempo, beats = librosa.beat.beat_track( + sr=sr, + onset_envelope=librosa.onset.onset_strength(y=y_percussive, sr=sr), + trim=False, + ) + + print("6/8 feature extraction") + CQT_sync = AudioProcessor.get_intensity(y, sr, beats) + C_sync = AudioProcessor.get_pitch(y_harmonic, sr, beats) + M_sync = AudioProcessor.get_timbre(y, sr, beats) + volume, avg_volume, loudness = AudioProcessor.get_volume(songPath) + + print("7/8 feature aggregation") + intensity_frames = np.matrix(CQT_sync).getT() + pitch_frames = np.matrix(C_sync).getT() + timbre_frames = np.matrix(M_sync).getT() + + # print('8/8 split stems') + # stemsplit(songPath, 'htdemucs_6s') + + if extractMidi: + audiofilepaths = [] + stems = ["bass", "drums", "guitar", "other", "piano", "vocals"] + for stem in stems: + path = os.path.join( + os.getcwd(), "separated", "htdemucs_6s", songID, stem + ".wav" + ) + audiofilepaths.append(path) + output_dir = os.path.join( + os.getcwd(), "separated", "htdemucs_6s", songID + ) + AudioProcessor.extractMIDI(audiofilepaths, output_dir) + + audio_features = { + "id": songID, + "tempo": tempo, + "duration(sec)": song_duration, + "duration(mins)": song_duration / 60, + "timbre": np.mean(timbre_frames), + "timbre_frames": timbre_frames, + "pitch": np.mean(pitch_frames), + "pitch_frames": pitch_frames, + "intensity": np.mean(intensity_frames), + "intensity_frames": intensity_frames, + "volume": volume, + "avg_volume": avg_volume, + "loudness": loudness, + "beats": librosa.frames_to_time(beats, sr=sr), + "segments_boundaries": segments_boundaries, + "segments_labels": segments_labels, + "frequency_frames": frequency_frames, + "frequency": average_frequency, + "key": average_key, + } + return audio_features + + def get_audio_features( + songPath: str, + songID: str, + extractMidi: bool = False, + separateFrequencyFrames: bool = False, + ) -> dict | tuple[dict, list]: + """ + Extracts audio features from a song and returns them as a dictionary. + + If separateFrequencyFrames is set to True, the function will return a tuple + containing the audio features dictionary and a list of frequency frames. + """ + print( + "------------------------------ get_audio_features:", + songID, + "------------------------------", + ) + + print("1/8 segementation") + segments_boundaries, segments_labels = AudioProcessor.get_segments(songPath) + + print("2/8 pitch tracking") + frequency_frames = AudioProcessor.get_pitch_dnn(songPath) + average_frequency, average_key = AudioProcessor.get_average_pitch( + frequency_frames + ) + + print("3/8 load sample") + y, sr = librosa.load(songPath, sr=None) + song_duration = librosa.get_duration(y=y, sr=sr) + + print("4/8 sample separation") + y_harmonic, y_percussive = librosa.effects.hpss(y) + + print("5/8 beat tracking") + tempo, beats = librosa.beat.beat_track( + sr=sr, + onset_envelope=librosa.onset.onset_strength(y=y_percussive, sr=sr), + trim=False, + ) + + print("6/8 feature extraction") + CQT_sync = AudioProcessor.get_intensity(y, sr, beats) + C_sync = AudioProcessor.get_pitch(y_harmonic, sr, beats) + M_sync = AudioProcessor.get_timbre(y, sr, beats) + volume, avg_volume, loudness = AudioProcessor.get_volume(songPath) + + print("7/8 feature aggregation") + intensity_frames = np.matrix(CQT_sync).getT() + pitch_frames = np.matrix(C_sync).getT() + timbre_frames = np.matrix(M_sync).getT() + + if extractMidi: + audiofilepaths = [] + stems = ["bass", "drums", "guitar", "other", "piano", "vocals"] + for stem in stems: + path = os.path.join( + os.getcwd(), "separated", "htdemucs_6s", songID, stem + ".wav" + ) + audiofilepaths.append(path) + output_dir = os.path.join(os.getcwd(), "separated", "htdemucs_6s", songID) + AudioProcessor.extractMIDI(audiofilepaths, output_dir) + + audio_features = { + "id": songID, + "tempo": tempo, + "duration": song_duration, + "timbre": np.mean(timbre_frames), + "timbre_frames": timbre_frames, + "pitch": np.mean(pitch_frames), + "pitch_frames": pitch_frames, + "intensity": np.mean(intensity_frames), + "intensity_frames": intensity_frames, + "volume": volume, + "avg_volume": avg_volume, + "loudness": loudness, + "beats": librosa.frames_to_time(beats, sr=sr), + "segments_boundaries": segments_boundaries, + "segments_labels": segments_labels, + # "frequency_frames":frequency_frames, + "frequency": average_frequency, + "key": average_key, + } + return ( + audio_features, + frequency_frames + if separateFrequencyFrames + else audio_features["frequency_frames"].append(frequency_frames), + ) + + @staticmethod + def split_stems(audioFilePath:str, destination:str, demucsmodel:str = "htdemucs_6s"): + ''' + Calls the demucs library to split the stems of a song + ''' + + #destination = str(destination) + + subprocess.run(["demucs", str(audioFilePath), "-o", str(destination), "-n", demucsmodel]) # '--mp3' + + @staticmethod + def processSong( + songPath: str, + songID: str, + cleanedAudioOutputPath: str, + separateFrequencyFrames: bool = False + ) -> tuple[str, dict] | tuple[str, dict, list]: + """ + + Overview: + -------- + This is the main entry point to process a song. + + This function cleans the audio file, converts it to WAV + and places the WAV file in the processed folder + + Then it grabs the audio features and returns them + + Parameters: + --------- + songPath: str + Path to the song + songID: str + ID of the song + separateFrequencyFrames: bool + If set to True, the function will return a tuple containing the audio features + dictionary and a list of frequency frames. + + + Returns: + -------- + tuple[str, dict] | tuple[str, dict, list]: + If separateFrequencyFrames is set to True, the function will return a tuple + + + """ + # Path to the cleaned file + cleanedFile = AudioProcessor.cleanAudio(songPath, songID, cleanedAudioOutputPath) # PathConfig.processed + + if separateFrequencyFrames: + features, frequencyFrames = AudioProcessor.get_audio_features( + cleanedFile, songID, separateFrequencyFrames=True + ) + return cleanedFile, features, frequencyFrames + + # get features as a dict + features = AudioProcessor.get_audio_features(cleanedFile, songID) + return cleanedFile, features diff --git a/internals/utils.py b/internals/utils.py new file mode 100644 index 0000000..f8d1dd6 --- /dev/null +++ b/internals/utils.py @@ -0,0 +1,191 @@ +from pathlib import Path +from dataclasses import dataclass + + + +@dataclass +class strictFile: + path: str + ifErr: callable = None + + def __post_init__(self): + if not Path(self.path).is_file(): + if self.ifErr: + self.ifErr() + else: + raise Exception(f"File not found: {self.path}") + self.pathObj = Path(self.path) + + def allowedExtensions(self, allowedExtensionsList: list) -> object: + ''' + If the file extension is not in the list of allowed extensions\n + An exception will be raised + ''' + if not allowedExtensionsList: + return self + + allowedExtensionsList = [item.lower() for item in allowedExtensionsList] + + if self.pathObj.suffix.lower() not in allowedExtensionsList: + raise Exception(f"File extension not allowed: {self.pathObj.suffix.lower()}") + return self + + + +@dataclass +class PathConfig: + ''' + PathConfig is a dataclass that contains all the paths used in the project\n + All paths are relative to the root of the project\n + And are stored as Path objects + + Accessing the paths like this will return a Path object: + PathConfig.dbFile + + Accessing the paths like this will return a string: + PathConfig().dbFile + + ''' + + thisFile: Path = Path(__file__) + + + # Directories + internalsDir: Path = thisFile.parent + contentDir: Path = internalsDir.parent / "content" + + ''' + /content + /ytdl_content + /processed + /stems + /htdemucs_6s + /db + /frequencyFrames + ''' + ytdl_content: Path = contentDir / "ytdl_content" + processed: Path = contentDir / "processed" + stemsDir: Path = contentDir / "stems" + #demucs: Path = separated / "htdemucs_6s" + dbDir: Path = contentDir / "db" + frequencyFramesOutDir: Path = dbDir / "frequencyFrames" + + # Files + dbFile: Path = dbDir / "db.json" + + + + def __getattribute__(self,item): + """ + PathConfig().attrib will return a str rather than a Path Object + PathConfig.attrib will return a path Object + """ + return eval(f"str(PathConfig.{item})") + + def checkAllPathsExist(): + """ + If any of the paths in PathConfig are bad + an exception will be raised + """ + for k, v in PathConfig.__annotations__.items(): + if not eval(f"PathConfig.{k}.exists()"): + raise Exception(f'Path at "{k}" DOES NOT EXIST') + + def initFolder(folder: Path): + if not folder.exists(): + try: + folder.mkdir() + print(f"Created folder at:\n\t{folder}") + except Exception as e: + print(e, f"Failed to create {folder} folder \n Exiting...") + exit(1) + + def initFolders(): + ''' + Overview + -------- + + Create the following directories if they don't already exist: + - ytdl_videos + - db + - frequencyFramesOutDir + - processed + - separated + - demucs + + ''' + list( + map( + PathConfig.initFolder, + [ + PathConfig.contentDir, + PathConfig.processed, + PathConfig.stemsDir, + PathConfig.dbDir, + PathConfig.frequencyFramesOutDir, + PathConfig.ytdl_content, + ] + ) + ) + +def printPolymath(): + print( + "---------------------------------------------------------------------------- " + ) + print( + "--------------------------------- POLYMATH --------------------------------- " + ) + print( + "---------------------------------------------------------------------------- " + ) + + +def createDBFile(dbDir:Path, dbFile:Path) -> None: + """ + Create db.json file if it doesn't already exist + + Parameters + ---------- + dbDir : Path + Path to the db directory + dbFile : Path + Path to the db.json file + """ + Path.mkdir(dbDir, exist_ok=True) + Path(dbFile).touch(exist_ok=True) + + +def writeFrequencyFramesToFile( + songID: str, + frequencyFrames: list, + frequencyFramesOutputDir:str + ) -> str: + """ + Overview + -------- + Write the frequency frames to a text file + + Parameters + ---------- + songID : str + Song ID + frequencyFrames : list + List of frequency frames + frequencyFramesOuputDir : str + Path to the frequency frames text file + + Returns + ------- + frequencyFramesPath : str + Path to the frequency frames text file + """ + # Path to the frequency frames file + frequencyFramesPath = Path(frequencyFramesOutputDir) / f"{songID}_FrequencyFrames.txt" + + # Write the frequency frames to a file + with open(frequencyFramesPath, "w") as f: + f.write(str(frequencyFrames)) + + return str(frequencyFramesPath) + + diff --git a/requirements.txt b/requirements.txt index c447f84..8c50b32 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,14 +1,106 @@ +absl-py==1.4.0 +antlr4-python3-runtime==4.9.3 +astunparse==1.6.3 +audioread==3.0.0 +basic-pitch==0.2.0 +Brotli==1.0.9 +cachetools==5.3.0 +certifi==2022.12.7 +cffi==1.15.1 +charset-normalizer==3.1.0 +cloudpickle==2.2.1 +colorama==0.4.6 +contourpy==1.0.7 crepe==0.0.13 +cycler==0.11.0 +Cython==0.29.34 +decorator==5.1.1 +demucs==4.0.0 +diffq==0.2.3 +dora-search==0.1.11 +einops==0.6.0 +filelock==3.11.0 +fire==0.5.0 +flatbuffers==1.12 +fonttools==4.39.3 +future==0.18.3 +gast==0.4.0 +google-auth==2.17.2 +google-auth-oauthlib==0.4.6 +google-pasta==0.2.0 +grpcio==1.53.0 +h5py==3.8.0 +hmmlearn==0.2.8 +idna==3.4 +imageio==2.27.0 +Jinja2==3.1.2 +joblib==1.2.0 +julius==0.2.7 +keras==2.9.0 +Keras-Preprocessing==1.1.2 +kiwisolver==1.4.4 +lameenc==1.4.2 +libclang==16.0.0 librosa==0.9.2 -numpy>=1.20 +llvmlite==0.39.1 +Markdown==3.4.3 +MarkupSafe==2.1.2 +matplotlib==3.7.1 +miditoolkit==0.1.16 +mido==1.2.10 +mir-eval==0.7 +mpmath==1.3.0 +mutagen==1.46.0 +networkx==3.1 +numba==0.56.4 +numpy==1.23.5 +oauthlib==3.2.2 +omegaconf==2.3.0 +openunmix==1.2.1 +opt-einsum==3.3.0 +packaging==23.0 +Pillow==9.5.0 +platformdirs==3.2.0 +pooch==1.7.0 +pretty-midi==0.2.10 +protobuf==3.19.6 +pyasn1==0.4.8 +pyasn1-modules==0.2.8 +pycparser==2.21 +pycryptodomex==3.17 +pyparsing==3.0.9 pyrubberband==0.3.0 -sf_segmenter==0.0.2 +PySoundFile==0.9.0.post1 +python-dateutil==2.8.2 +PyYAML==6.0 +requests==2.28.2 +requests-oauthlib==1.3.1 +resampy==0.2.2 +retrying==1.3.4 +rsa==4.9 +scikit-learn==1.2.2 +scipy==1.10.1 +sf-segmenter==0.0.2 +six==1.16.0 soundfile==0.11.0 -yt_dlp==2023.02.17 -demucs==4.0.0 -basic-pitch==0.2.0 -matplotlib -tensorflow==2.9; sys_platform == 'windows' or platform_machine != 'arm64' -tensorflow-macos; sys_platform == 'darwin' and platform_machine == 'arm64' -tensorflow-metal; sys_platform == 'darwin' and platform_machine == 'arm64' - +submitit==1.4.5 +sympy==1.11.1 +tensorboard==2.9.1 +tensorboard-data-server==0.6.1 +tensorboard-plugin-wit==1.8.1 +tensorflow==2.9.0 +tensorflow-estimator==2.9.0 +tensorflow-io-gcs-filesystem==0.31.0 +termcolor==2.2.0 +threadpoolctl==3.1.0 +tinydb==4.7.1 +torch==2.0.0 +torchaudio==2.0.1 +tqdm==4.65.0 +treetable==0.2.5 +typing_extensions==4.5.0 +urllib3==1.26.15 +websockets==11.0.1 +Werkzeug==2.2.3 +wrapt==1.15.0 +yt-dlp==2023.2.17 From d6561a7ef071fce4297987a90127663dc659408c Mon Sep 17 00:00:00 2001 From: hmbemba Date: Tue, 11 Apr 2023 00:03:57 -0400 Subject: [PATCH 2/5] updated readme --- README.md | 243 ++++++++++++++++++++++++++---------------------------- 1 file changed, 118 insertions(+), 125 deletions(-) diff --git a/README.md b/README.md index 4d6aabb..9446c92 100644 --- a/README.md +++ b/README.md @@ -1,167 +1,160 @@ - # Polymath -Polymath uses machine learning to convert any music library (*e.g from Hard-Drive or YouTube*) into a music production sample-library. The tool automatically separates songs into stems (*beats, bass, etc.*), quantizes them to the same tempo and beat-grid (*e.g. 120bpm*), analyzes musical structure (*e.g. verse, chorus, etc.*), key (*e.g C4, E3, etc.*) and other infos (*timbre, loudness, etc.*), and converts audio to midi. The result is a searchable sample library that streamlines the workflow for music producers, DJs, and ML audio developers. +This is a fork of the original Polymath project with several aims. -

Polymath

+1. Clean up and organizing the original codebase to make it easier to read -## Use-cases -Polymath makes it effortless to combine elements from different songs to create unique new compositions: Simply grab a beat from a Funkadelic track, a bassline from a Tito Puente piece, and fitting horns from a Fela Kuti song, and seamlessly integrate them into your DAW in record time. Using Polymath's search capability to discover related tracks, it is a breeze to create a polished, hour-long mash-up DJ set. For ML developers, Polymath simplifies the process of creating a large music dataset, for training generative models, etc. +2. Utilize a human readable database -## How does it work? -- Music Source Separation is performed with the [Demucs](https://github.com/facebookresearch/demucs) neural network -- Music Structure Segmentation/Labeling is performed with the [sf_segmenter](https://github.com/wayne391/sf_segmenter) neural network -- Music Pitch Tracking and Key Detection are performed with [Crepe](https://github.com/marl/crepe) neural network -- Music to MIDI transcription is performed with [Basic Pitch](https://github.com/spotify/basic-pitch) neural network -- Music Quantization and Alignment are performed with [pyrubberband](https://github.com/bmcfee/pyrubberband) -- Music Info retrieval and processing is performed with [librosa](https://github.com/librosa/librosa) +3. Create a more intuitive cli -## Community -Join the Polymath Community on [Discord](https://discord.gg/gaZMZKzScj) +# How it works -## Requirements +This fork utilizies tinydb to create a Json database and fire to create the cli -You need to have the following software installed on your system: +## Folder structure -- ``ffmpeg`` +``` +/polymath + cli.py + /internals + /content + /db + db.json + /FrequencyFrames + /ytdl_content + /processed + /stems +``` -## Installation +### content -You need python version `>=3.7` and `<=3.10`. From your terminal run: -```bash -git clone https://github.com/samim23/polymath -cd polymath -pip install -r requirements.txt +- The content dir and subdirectories are autogenerated if they do not already exist + +- You should see this message the first time you run any command ``` +Created folder at: + C:\Users\...\polymath\content -If you run into an issue with basic-pitch while trying to run Polymath, run this command after your installation: -```bash -pip install git+https://github.com/spotify/basic-pitch.git +Created folder at: + C:\Users\...\polymath\content\processed + +Created folder at: + C:\Users\...\polymath\content\stems + +Created folder at: + C:\Users\...\polymath\content\db + +Created folder at: + C:\Users\...\polymath\content\db\frequencyFrames + +Created folder at: + C:\Users\...\polymath\content\ytdl_content ``` -## GPU support +### db +- The db directory contains a db.json file which is used as the main database for this project. -Most of the libraries polymath uses come with native GPU support through cuda. Please follow the steps on https://www.tensorflow.org/install/pip to setup tensorflow for use with cuda. If you have followed these steps, tensorflow and torch will both automatically pick up the GPU and use it. This only applied to native setups, for dockerized deployments (see next section), gpu support is forthcoming +- The frequencyFrames directory within the db directory contains frequency frames for each audio file added to the database as a text file -## Docker setup +### ytdl_content +- This directory contains all the downloaded audio files from youtube-dl -If you have [Docker](https://www.docker.com/) installed on your system, you can use the provided `Dockerfile` to quickly build a polymath docker image (if your user is not part of the `docker` group, remember to prepend `sudo` to the following command): +### processed +- Before a song is added to the database it is cleaned and processed by converting it to a WAV + and resampling it a samplerate of 44100 if it is not already + +- This directory contains the processed audio files. -```bash -docker build -t polymath ./ -``` +### stems -In order to exchange input and output files between your hosts system and the polymath docker container, you need to create the following four directories: +- This directory contains the separated stems generated the processed audio filess -- `./input` -- `./library` -- `./processed` -- `./separated` +### cli.py +- This is the main script to run the command line interface (CLI). -Now put any files you want to process with polymath into the `input` folder. -Then you can run polymath through docker by using the `docker run` command and pass any arguments that you would originally pass to the python command, e.g. if you are in a linux OS call: -```bash -docker run \ - -v "$(pwd)"/processed:/polymath/processed \ - -v "$(pwd)"/separated:/polymath/separated \ - -v "$(pwd)"/library:/polymath/library \ - -v "$(pwd)"/input:/polymath/input \ - polymath python /polymath/polymath.py -a ./input/song1.wav -``` +## The database -## Run Polymath +- When a song is added to the database it will populate a record that looks like this : -### 1. Add songs to the Polymath Library - -##### Add YouTube video to library (auto-download) -```bash -python polymath.py -a n6DAqMFe97E ``` -##### Add audio file (wav or mp3) -```bash -python polymath.py -a /path/to/audiolib/song.wav + "1": { + "id": "song_name_ID", + "songName": "song_name", + "pathToFile": "C:\\Users\\...\\polymath\\content\\processed\\song_name_ID.wav", + "features": { + "id": "song_name_ID", + "tempo": "129.19921875", + "duration": "180.03591836734694", + "timbre": "-10.74387", + "timbre_frames": "[[...]]", + "pitch": "0.32957405", + "pitch_frames": "[[...]]", + "intensity": "-52.960995579585294", + "intensity_frames": "[[...]]", + "volume": "[...]", + "avg_volume": "0.19482724", + "loudness": "0.24210354685783386", + "beats": "[ ...]", + "segments_boundaries": "[...]", + "segments_labels": "[...]", + "frequency": "230.88860214871994", + "key": "A#3", + "frequencyFramesPath": "C:\\Users\\...\\polymath\\content\\db\\frequencyFrames\\song_name_ID_FrequencyFrames.txt" + } + } ``` -##### Add multiple files at once -```bash -python polymath.py -a n6DAqMFe97E,eaPzCHEQExs,RijB8wnJCN0 -python polymath.py -a /path/to/audiolib/song1.wav,/path/to/audiolib/song2.wav -python polymath.py -a /path/to/audiolib/ + +# Install + ``` -Songs are automatically analyzed once which takes some time. Once in the database, they can be access rapidly. The database is stored in the folder "/library/database.p". To reset everything, simply delete it. +git clone https://github.com/hmbemba/polymath.git -### 2. Quantize songs in the Polymath Library -##### Quantize a specific songs in the library to tempo 120 BPM (-q = database audio file ID, -t = tempo in BPM) -```bash -python polymath.py -q n6DAqMFe97E -t 120 +cd polymath + +pip install -r requirements.txt ``` -##### Quantize all songs in the library to tempo 120 BPM -```bash -python polymath.py -q all -t 120 + +# Usage + +- These are the current core features with more to come + +## Add Song + +- Add a local song to the database + ``` -##### Quantize a specific songs in the library to the tempo of the song (-k) -```bash -python polymath.py -q n6DAqMFe97E -k +python cli.py addSong "path/to/song.mp3" ``` -Songs are automatically quantized to the same tempo and beat-grid and saved to the folder “/processed”. -### 3. Search for similar songs in the Polymath Library -##### Search for 10 similar songs based on a specific songs in the library (-s = database audio file ID, -sa = results amount) -```bash -python polymath.py -s n6DAqMFe97E -sa 10 +### splitstems + +- The "-ss" boolean flag will split the stems right after + +``` +python cli.py addSong "path/too/song.mp3" -ss ``` -##### Search for similar songs based on a specific songs in the library and quantize all of them to tempo 120 BPM -```bash -python polymath.py -s n6DAqMFe97E -sa 10 -q all -t 120 + + +## Add Video + +- Download a single song from youtube and add it to the database + +- Note : This is meant for a single video only not a playlist + ``` -##### Include BPM as search criteria (-st) -```bash -python polymath.py -s n6DAqMFe97E -sa 10 -q all -t 120 -st -k +python cli.py addVideo "https://youtu.be/dQw4w9WgXcQ" ``` -Similar songs are automatically found and optionally quantized and saved to the folder "/processed". This makes it easy to create for example an hour long mix of songs that perfectly match one after the other. -### 4. Convert Audio to MIDI -##### Convert all processed audio files and stems to MIDI (-m) -```bash -python polymath.py -a n6DAqMFe97E -q all -t 120 -m +## Split Song +``` +python cli.py split "path/to/song.mp3" "output/dir" ``` -Generated Midi Files are currently always 120BPM and need to be time adjusted in your DAW. This will be resolved [soon](https://github.com/spotify/basic-pitch/issues/40). The current Audio2Midi model gives mixed results with drums/percussion. This will be resolved with additional audio2midi model options in the future. -## Audio Features +# Credits +- This project is a fork of the original Polymath project. +- The original project was developed by [Username], and can be found at [Link to the original project]. -### Extracted Stems -The Demucs Neural Net has settings that can be adjusted in the python file -```bash -- bass -- drum -- guitare -- other -- piano -- vocals -``` -### Extracted Features -The audio feature extractors have settings that can be adjusted in the python file -```bash -- tempo -- duration -- timbre -- timbre_frames -- pitch -- pitch_frames -- intensity -- intensity_frames -- volume -- avg_volume -- loudness -- beats -- segments_boundaries -- segments_labels -- frequency_frames -- frequency -- key -``` - -## License -Polymath is released under the MIT license as found in the [LICENSE](https://github.com/samim23/polymath/blob/main/LICENSE) file. From f1bfed7484f166f050f0007b14d27bb27b4913d9 Mon Sep 17 00:00:00 2001 From: hmbemba Date: Tue, 11 Apr 2023 00:07:44 -0400 Subject: [PATCH 3/5] updated readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9446c92..00acb13 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Polymath -This is a fork of the original Polymath project with several aims. +This is a fork of the original [Polymath](https://github.com/samim23/polymath) project with several aims. 1. Clean up and organizing the original codebase to make it easier to read @@ -11,7 +11,7 @@ This is a fork of the original Polymath project with several aims. # How it works -This fork utilizies tinydb to create a Json database and fire to create the cli +This fork utilizies [tinydb](https://github.com/msiemens/tinydb) to create a Json database and [fire](https://github.com/google/python-fire) to create the cli ## Folder structure @@ -156,5 +156,5 @@ python cli.py split "path/to/song.mp3" "output/dir" # Credits - This project is a fork of the original Polymath project. -- The original project was developed by [Username], and can be found at [Link to the original project]. +- The original project was developed by [samim](https://github.com/samim23), and can be found at https://github.com/samim23/polymath From 71a954d442b5baaabb3054e2666524d2382e6d7e Mon Sep 17 00:00:00 2001 From: hmbemba Date: Tue, 11 Apr 2023 00:08:35 -0400 Subject: [PATCH 4/5] removed content dir --- content/db/db.json | 29 ------------------- ...79e911713ecbd83a6d4c97_FrequencyFrames.txt | 1 - 2 files changed, 30 deletions(-) delete mode 100644 content/db/db.json delete mode 100644 content/db/frequencyFrames/FlyLike_52_72bebf3a5fc36b049bf11d355784b3660ad20c17fe79e911713ecbd83a6d4c97_FrequencyFrames.txt diff --git a/content/db/db.json b/content/db/db.json deleted file mode 100644 index c69776b..0000000 --- a/content/db/db.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "_default": { - "1": { - "id": "FlyLike_52_72bebf3a5fc36b049bf11d355784b3660ad20c17fe79e911713ecbd83a6d4c97", - "songName": "FlyLike_52", - "pathToFile": "C:\\Users\\hmbem\\Desktop\\Scripts\\Temp_Projects\\polymath_fork_04_10_2023-02_08PM\\polymath\\content\\processed\\FlyLike_52_72bebf3a5fc36b049bf11d355784b3660ad20c17fe79e911713ecbd83a6d4c97.wav", - "features": { - "id": "FlyLike_52_72bebf3a5fc36b049bf11d355784b3660ad20c17fe79e911713ecbd83a6d4c97", - "tempo": "129.19921875", - "duration": "180.03591836734694", - "timbre": "-10.74387", - "timbre_frames": "[[-9.03672974e+02 2.01312256e+00 2.01264548e+00 ... -4.22781426e-03\n -4.21025464e-03 -4.19113366e-03]\n [-8.81323547e+02 1.11527767e+01 4.34591627e+00 ... 1.68069713e-02\n 4.91377488e-02 4.10064533e-02]\n [-5.26526672e+02 1.15208565e+02 -1.90118275e+01 ... -7.75071532e-02\n -2.81857811e-02 -8.23639147e-03]\n ...\n [-5.54064453e+02 1.02463989e+02 -1.46656046e+01 ... -3.33146341e-02\n -6.42591193e-02 7.94802979e-02]\n [-8.93061829e+02 6.77764893e+00 2.71999741e+00 ... -4.71838973e-02\n 5.08473590e-02 -6.10819981e-02]\n [-9.03629211e+02 2.07524133e+00 2.07477045e+00 ... 9.26544380e-05\n 8.91687741e-05 8.53855672e-05]]", - "pitch": "0.32957405", - "pitch_frames": "[[0.5014807 0.2953108 0.35332465 ... 0.65337265 0.5453273 0.37238643]\n [0.5928171 0.3456033 0.24486387 ... 0.48708895 1. 0.90425026]\n [0.36124313 0.41023892 1. ... 0.21514902 0.20937248 0.29639077]\n ...\n [0.5429713 0.57276535 0.19736767 ... 0.1519197 0.49718088 0.24916063]\n [0.7534299 0.47032836 0.5275282 ... 0.48575184 0.37796748 0.8329442 ]\n [0.5346024 0.06591911 0.09868778 ... 0.18692125 0.12507176 0.23826317]]", - "intensity": "-52.960995579585294", - "intensity_frames": "[[-108.55711553 -107.54799355 -106.56084047 ... -79.90661083\n -80.09973204 -80.31283042]\n [-108.55711553 -107.54799355 -106.56084047 ... -79.90661083\n -80.09973204 -80.31283042]\n [ -97.5584812 -95.38000954 -93.13034426 ... -59.1932777\n -60.57690489 -61.54267738]\n ...\n [ -91.39332006 -89.7150811 -89.25202166 ... -61.56917415\n -63.93786299 -63.34231422]\n [-108.55711553 -107.54799355 -106.56084047 ... -79.90661083\n -80.09973204 -80.31283042]\n [-108.55711553 -107.54799355 -106.56084047 ... -79.90661083\n -80.09973204 -80.31283042]]", - "volume": "[0.00027038 0.00041029 0.00050493 ... 0.00063084 0.00056505 0.00046881]", - "avg_volume": "0.19482724", - "loudness": "0.24210354685783386", - "beats": "[ 2.92571429 3.39011338 3.77324263 4.29569161 4.80653061\n 5.29414966 5.77015873 6.19972789 6.64090703 7.07047619\n 7.51165533 7.95283447 8.40562358 8.83519274 9.2647619\n 9.69433107 10.18195011 10.64634921 11.12235828 11.55192744\n 12.06276644 12.56199546 12.99156463 13.39791383 13.82748299\n 14.28027211 14.69823129 15.05814059 15.51092971 15.96371882\n 16.43972789 16.92734694 17.40335601 17.85614512 18.3321542\n 18.79655329 19.26095238 19.7137415 20.20136054 20.67736961\n 21.14176871 21.6061678 22.07056689 22.54657596 23.02258503\n 23.47537415 23.97460317 24.41578231 24.89179138 25.36780045\n 25.83219955 26.29659864 26.76099773 27.22539683 27.73623583\n 28.17741497 28.64181406 29.10621315 29.60544218 30.04662132\n 30.52263039 30.9754195 31.45142857 31.92743764 32.39183673\n 32.85623583 33.3322449 33.79664399 34.27265306 34.72544218\n 35.20145125 35.67746032 36.14185941 36.6062585 37.08226757\n 37.54666667 38.01106576 38.47546485 38.95147392 39.41587302\n 39.89188209 40.36789116 40.83229025 41.29668934 41.80752834\n 42.23709751 42.7014966 43.17750567 43.66512472 44.11791383\n 44.62875283 45.04671202 45.52272109 45.98712018 46.45151927\n 46.91591837 47.39192744 47.86793651 48.35555556 48.78512472\n 49.23791383 49.7139229 50.20154195 50.66594104 51.15356009\n 51.62956916 52.0707483 52.54675737 53.02276644 53.46394558\n 53.93995465 54.41596372 54.90358277 55.36798186 55.809161\n 56.29678005 56.79600907 57.23718821 57.68997732 58.16598639\n 58.64199546 59.10639456 59.5475737 60.04680272 60.52281179\n 60.97560091 61.45160998 61.90439909 62.39201814 62.85641723\n 63.28598639 63.78521542 64.26122449 64.73723356 65.20163265\n 65.67764172 66.14204082 66.60643991 67.08244898 67.5352381\n 68.01124717 68.48725624 68.96326531 69.4276644 69.89206349\n 70.36807256 70.83247166 71.29687075 71.7844898 72.20244898\n 72.701678 73.17768707 73.66530612 74.11809524 74.61732426\n 75.03528345 75.52290249 75.97569161 76.45170068 76.92770975\n 77.39210884 77.85650794 78.33251701 78.7969161 79.27292517\n 79.72571429 80.20172336 80.66612245 81.14213152 81.60653061\n 82.09414966 82.54693878 83.01133787 83.46412698 83.96335601\n 84.4277551 84.8921542 85.35655329 85.82095238 86.29696145\n 86.77297052 87.22575964 87.70176871 88.1661678 88.64217687\n 89.11818594 89.58258503 90.04698413 90.5229932 90.97578231\n 91.45179138 91.91619048 92.39219955 92.85659864 93.33260771\n 93.7970068 94.27301587 94.72580499 95.20181406 95.67782313\n 96.14222222 96.60662132 97.08263039 97.54702948 98.01142857\n 98.47582766 98.95183673 99.41623583 99.8922449 100.36825397\n 100.83265306 101.29705215 101.77306122 102.22585034 102.70185941\n 103.17786848 103.64226757 104.11827664 104.58267574 105.04707483\n 105.5230839 105.96426304 106.45188209 106.91628118 107.40390023\n 107.85668934 108.33269841 108.79709751 109.27310658 109.72589569\n 110.21351474 110.66630385 111.14231293 111.618322 112.08272109\n 112.54712018 113.02312925 113.47591837 113.95192744 114.41632653\n 114.8923356 115.35673469 115.82113379 116.29714286 116.77315193\n 117.21433107 117.71356009 118.16634921 118.65396825 119.11836735\n 119.59437642 120.04716553 120.51156463 120.97596372 121.46358277\n 121.91637188 122.41560091 122.86839002 123.28634921 123.79718821\n 124.2615873 124.72598639 125.17877551 125.66639456 126.17723356\n 126.59519274 127.10603175 127.54721088 128.06965986 128.46439909\n 128.91718821 129.41641723 129.8924263 130.36843537 130.82122449\n 131.29723356 131.76163265 132.20281179 132.69043084 133.16643991\n 133.64244898 134.10684807 134.62929705 135.09369615 135.55809524\n 135.97605442 136.44045351 136.91646259 137.41569161 137.89170068\n 138.37931973 138.79727891 139.31972789 139.78412698 140.27174603\n 140.68970522 141.16571429 141.60689342 142.05968254 142.54730159\n 143.03492063 143.51092971 143.98693878 144.4861678 144.96217687\n 145.41496599 145.8677551 146.35537415 146.83138322 147.26095238\n 147.73696145 148.21297052 148.66575964 149.10693878 149.6061678\n 150.03573696 150.48852608]", - "segments_boundaries": "[ 0 22 54 103 131 194 219 248 286 321 439 486 520 552\n 647 683 720 753 781 808 845 871 898 929 974 1082 1109 1136\n 1292]", - "segments_labels": "[0. 1. 2. 1. 1. 1. 3. 1. 1. 1. 1. 1. 1. 1. 3. 1. 1. 1. 1. 1. 1. 1. 1. 1.\n 1. 4. 4. 5.]", - "frequency": "230.88860214871994", - "key": "A#3", - "frequencyFramesPath": "C:\\Users\\hmbem\\Desktop\\Scripts\\Temp_Projects\\polymath_fork_04_10_2023-02_08PM\\polymath\\content\\db\\frequencyFrames\\FlyLike_52_72bebf3a5fc36b049bf11d355784b3660ad20c17fe79e911713ecbd83a6d4c97_FrequencyFrames.txt" - } - } - } -} diff --git a/content/db/frequencyFrames/FlyLike_52_72bebf3a5fc36b049bf11d355784b3660ad20c17fe79e911713ecbd83a6d4c97_FrequencyFrames.txt b/content/db/frequencyFrames/FlyLike_52_72bebf3a5fc36b049bf11d355784b3660ad20c17fe79e911713ecbd83a6d4c97_FrequencyFrames.txt deleted file mode 100644 index 0074e19..0000000 --- a/content/db/frequencyFrames/FlyLike_52_72bebf3a5fc36b049bf11d355784b3660ad20c17fe79e911713ecbd83a6d4c97_FrequencyFrames.txt +++ /dev/null @@ -1 +0,0 @@ -[[0.0, 1967.905278009591, 0.103709705], [0.01, 1964.9268607628826, 0.099331304], [0.02, 1958.2425715626139, 0.08645469], [0.03, 1948.9252354264033, 0.08257764], [0.04, 1946.4658145898013, 0.08408008], [0.05, 1945.7779369750822, 0.059629757], [0.06, 1942.5964935595787, 0.044744253], [0.07, 1960.3090802004226, 0.08782459], [0.08, 1971.2279699029045, 0.3090086], [0.09, 1978.1574771395867, 0.40775114], [0.1, 1985.378224830524, 0.3681484], [0.11, 1961.7153608487627, 0.13651831], [0.12, 1958.911967180277, 0.10595822], [0.13, 1947.25577763332, 0.083459556], [0.14, 1952.0193508736475, 0.06139458], [0.15, 1976.7360127989577, 0.22152248], [0.16, 1976.2093867004162, 0.20978072], [0.17, 1976.7340491372001, 0.22154064], [0.18, 1976.2088076434093, 0.20979631], [0.19, 1976.7340700308555, 0.22153495], [0.2, 1976.2091356830842, 0.20978202], [0.21, 1976.7346931023178, 0.22150563], [0.22, 1976.2090032508622, 0.20977767], [0.23, 1976.7327408409392, 0.22151719], [0.24, 1976.2081790956195, 0.20978966], [0.25, 1976.7349190944087, 0.2215116], [0.26, 1976.2065519885823, 0.209821], [0.27, 1976.7339295507627, 0.22153679], [0.28, 1976.2055181441372, 0.20986235], [0.29, 1976.7330842052365, 0.22154245], [0.3, 1976.2059881171137, 0.2098623], [0.31, 1976.733198682503, 0.22154248], [0.32, 1976.2055181441372, 0.20986235], [0.33, 1976.7330842052365, 0.22154245], [0.34, 1976.2055181441372, 0.20986235], [0.35, 1976.7330842052365, 0.22154245], [0.36, 1976.2055181441372, 0.20986235], [0.37, 1976.7330842052365, 0.22154245], [0.38, 1976.2057660562866, 0.20985632], [0.39, 1976.7326175400708, 0.22153263], [0.4, 1976.208012577148, 0.20986003], [0.41, 1976.7335551906626, 0.22156782], [0.42, 1976.2127787081579, 0.20978257], [0.43, 1976.7361027936088, 0.22157842], [0.44, 1976.214486289175, 0.20979078], [0.45, 1976.7352814699918, 0.22148085], [0.46, 1976.2047873327183, 0.20988552], [0.47, 1976.7348760917175, 0.22159299], [0.48, 1976.2080934321148, 0.20986862], [0.49, 1976.737640257469, 0.22151946], [0.5, 1976.2089056870495, 0.2098303], [0.51, 1976.7362149541268, 0.22156872], [0.52, 1976.203962819668, 0.20991892], [0.53, 1976.7342473411154, 0.22159179], [0.54, 1976.2038635171311, 0.209886], [0.55, 1976.733207062473, 0.22164774], [0.56, 1976.2069839897795, 0.21004014], [0.57, 1976.7322437313633, 0.2216134], [0.58, 1976.2098257528492, 0.21009597], [0.59, 1976.7285350522875, 0.22165897], [0.6, 1976.2057898035712, 0.21007916], [0.61, 1976.725851790734, 0.2216729], [0.62, 1976.206108816658, 0.21010317], [0.63, 1976.726249685947, 0.2216914], [0.64, 1976.2071459455217, 0.21011509], [0.65, 1976.7275108318097, 0.22175999], [0.66, 1976.204256487376, 0.21012509], [0.67, 1976.727564740205, 0.22178426], [0.68, 1976.2021650810993, 0.2101477], [0.69, 1976.7269323822006, 0.22180319], [0.7, 1976.2022325487296, 0.21013525], [0.71, 1976.7250507223948, 0.22178863], [0.72, 1976.2046000666187, 0.21006748], [0.73, 1976.725890464277, 0.22173157], [0.74, 1976.2019493727244, 0.20998573], [0.75, 1976.7238825121144, 0.22168869], [0.76, 1976.197615358099, 0.2099341], [0.77, 1976.7232709140058, 0.22169915], [0.78, 1976.1978362192779, 0.20988108], [0.79, 1976.7235292631142, 0.22169496], [0.8, 1976.194902538271, 0.20989734], [0.81, 1976.725027122701, 0.22168083], [0.82, 1976.197839783833, 0.20992583], [0.83, 1976.7260802256937, 0.22172008], [0.84, 1976.1968026791046, 0.20998253], [0.85, 1976.7264957371706, 0.22179128], [0.86, 1976.197498587687, 0.21007922], [0.87, 1976.7260470916958, 0.22179727], [0.88, 1976.1983372536495, 0.21004741], [0.89, 1976.7259615641992, 0.2217445], [0.9, 1976.1979222584823, 0.21000165], [0.91, 1976.723770736407, 0.22171135], [0.92, 1976.1979864421382, 0.2099262], [0.93, 1976.7207440651382, 0.22170989], [0.94, 1976.1971575764526, 0.2099546], [0.95, 1976.7195972944019, 0.22173761], [0.96, 1976.200342707179, 0.20995633], [0.97, 1976.7187394763341, 0.22168303], [0.98, 1976.2003061876226, 0.20993647], [0.99, 1976.713671690271, 0.2217012], [1.0, 1976.1937391805432, 0.20987396], [1.01, 1976.7162673600815, 0.22216098], [1.02, 1976.1908464686962, 0.21003719], [1.03, 1976.7155367860992, 0.22230573], [1.04, 1976.1890605783492, 0.21012013], [1.05, 1976.7128230902447, 0.22227125], [1.06, 1976.188438340204, 0.21016039], [1.07, 1976.7147430345012, 0.22230399], [1.08, 1976.185669121154, 0.21016802], [1.09, 1976.7122826633608, 0.22227192], [1.1, 1976.1860244424156, 0.21014576], [1.11, 1976.7149850421506, 0.22226906], [1.12, 1976.1875034106793, 0.21005063], [1.13, 1976.7163079683598, 0.22224115], [1.14, 1976.1877996321266, 0.21007083], [1.15, 1976.7182660259152, 0.22222483], [1.16, 1976.189834467859, 0.21007188], [1.17, 1976.7156775901099, 0.22219491], [1.18, 1976.1916558618036, 0.21002957], [1.19, 1976.717003229156, 0.22218983], [1.2, 1976.1884015534336, 0.210087], [1.21, 1976.719745800437, 0.22225781], [1.22, 1976.1935551302315, 0.21023041], [1.23, 1976.7221569243704, 0.22227822], [1.24, 1976.1989369610988, 0.21021442], [1.25, 1976.723129109017, 0.22220546], [1.26, 1976.2023806208188, 0.21016194], [1.27, 1976.722990690394, 0.22214969], [1.28, 1976.2016458556614, 0.21017034], [1.29, 1976.7226254557486, 0.22215575], [1.3, 1976.2011395175182, 0.2102429], [1.31, 1976.7271447155656, 0.22219971], [1.32, 1976.199549222314, 0.21025328], [1.33, 1976.7280244467088, 0.22213794], [1.34, 1976.2009264556739, 0.21019503], [1.35, 1976.729308421919, 0.22209607], [1.36, 1976.2004754546697, 0.2101366], [1.37, 1976.7277414927983, 0.22204335], [1.38, 1976.1998333590284, 0.21006997], [1.39, 1976.7219975976616, 0.22166114], [1.4, 1976.199433665054, 0.21006206], [1.41, 1976.7206481942662, 0.2216427], [1.42, 1976.1980387496099, 0.21006437], [1.43, 1976.7206213226066, 0.22163449], [1.44, 1976.198724639576, 0.21004808], [1.45, 1976.7179044270792, 0.2216582], [1.46, 1976.197500080677, 0.20999604], [1.47, 1976.7142087315724, 0.22164662], [1.48, 1976.2001364623532, 0.21006146], [1.49, 1976.716989829711, 0.22171417], [1.5, 1976.1984337060326, 0.21002468], [1.51, 1976.720604593022, 0.2220526], [1.52, 1976.1992451243605, 0.21007212], [1.53, 1976.7222501969509, 0.22209953], [1.54, 1976.1959612627775, 0.21021292], [1.55, 1976.7163895495562, 0.222226], [1.56, 1976.1889974411283, 0.21006598], [1.57, 1976.7136914488428, 0.22225809], [1.58, 1976.1887309036483, 0.21004854], [1.59, 1976.722019310935, 0.22230309], [1.6, 1976.196821017377, 0.21011184], [1.61, 1976.7191403554448, 0.22178106], [1.62, 1976.1968146608224, 0.21005331], [1.63, 1976.7230781642693, 0.22172342], [1.64, 1976.1971676687317, 0.2100311], [1.65, 1976.7336763370372, 0.22175321], [1.66, 1976.2021636306222, 0.21006575], [1.67, 1976.728485385339, 0.22165489], [1.68, 1976.206156032465, 0.2101531], [1.69, 1976.7249092530756, 0.2217363], [1.7, 1976.207398986448, 0.210188], [1.71, 1976.7291247951407, 0.22167152], [1.72, 1976.2040239358148, 0.21005338], [1.73, 1976.7289460454717, 0.22166875], [1.74, 1976.2016312711457, 0.20993747], [1.75, 1976.7312267197428, 0.22166085], [1.76, 1976.1980078593015, 0.20975943], [1.77, 1976.73263354112, 0.22156115], [1.78, 1976.2022309073795, 0.20971258], [1.79, 1976.7197503747718, 0.22162534], [1.8, 1976.1923222952346, 0.209929], [1.81, 1976.7135413537435, 0.22174288], [1.82, 1976.191537820093, 0.2100254], [1.83, 1976.7213625433385, 0.22178863], [1.84, 1976.1892461934103, 0.2101114], [1.85, 1976.7165206839898, 0.22181308], [1.86, 1976.1863372935863, 0.21032436], [1.87, 1976.7104929327204, 0.22195041], [1.88, 1976.1942995866766, 0.21035016], [1.89, 1976.7256032760347, 0.22189845], [1.9, 1976.1968565201532, 0.2102451], [1.91, 1976.730597764022, 0.22178702], [1.92, 1976.1944849698577, 0.21015278], [1.93, 1976.720615154293, 0.22171001], [1.94, 1976.1894562581333, 0.21017025], [1.95, 1976.7215901328764, 0.22181265], [1.96, 1976.1935057876942, 0.21016887], [1.97, 1976.7255121242456, 0.22168736], [1.98, 1976.1940901228306, 0.21006674], [1.99, 1976.7276104577265, 0.22175826], [2.0, 1976.2013957575448, 0.21010084], [2.01, 1976.731550680559, 0.22177008], [2.02, 1976.201916992553, 0.21010967], [2.03, 1976.7283248658327, 0.22154015], [2.04, 1976.203754671244, 0.21015275], [2.05, 1976.723938012883, 0.22155981], [2.06, 1976.2003881698392, 0.21017347], [2.07, 1976.7229420328586, 0.22157405], [2.08, 1976.2008919095385, 0.21017662], [2.09, 1976.7298604171756, 0.22161976], [2.1, 1976.1970599933225, 0.21016304], [2.11, 1976.7270191095974, 0.22173427], [2.12, 1976.1950842429258, 0.21030426], [2.13, 1976.726662212009, 0.22185238], [2.14, 1976.199826115799, 0.21017605], [2.15, 1976.7170478312332, 0.22168775], [2.16, 1976.1943550254687, 0.20995188], [2.17, 1976.7249972712282, 0.22162922], [2.18, 1976.197242824965, 0.20995572], [2.19, 1976.7392946521657, 0.22169964], [2.2, 1976.2085066102932, 0.20988448], [2.21, 1976.7396906652582, 0.2216015], [2.22, 1976.2138109793395, 0.2097385], [2.23, 1976.7379044679362, 0.2214839], [2.24, 1976.2084297916008, 0.2097072], [2.25, 1976.7402914142806, 0.22161126], [2.26, 1976.210668713692, 0.2099125], [2.27, 1976.74119765256, 0.22160904], [2.28, 1976.2166489169206, 0.20982546], [2.29, 1976.7413506424205, 0.22158718], [2.3, 1976.2161889063034, 0.20966722], [2.31, 1976.7415837046585, 0.22171001], [2.32, 1976.2090164297547, 0.20960794], [2.33, 1976.7378497052835, 0.22166425], [2.34, 1976.2110080524108, 0.20977981], [2.35, 1976.7387207466752, 0.22178558], [2.36, 1976.2131242071953, 0.20978273], [2.37, 1976.7422576724348, 0.22184326], [2.38, 1976.2181651175163, 0.20995247], [2.39, 1976.745014547978, 0.22187276], [2.4, 1976.2230966065458, 0.21009448], [2.41, 1976.7460917620697, 0.22197543], [2.42, 1976.222857720266, 0.21010274], [2.43, 1976.7460047631243, 0.22198753], [2.44, 1976.2258683653306, 0.21014903], [2.45, 1976.7461225524628, 0.22192101], [2.46, 1976.2234981348067, 0.21016812], [2.47, 1976.7404807236815, 0.22188993], [2.48, 1976.2227822160144, 0.21005605], [2.49, 1976.7400362730475, 0.22193357], [2.5, 1976.21714208997, 0.21002412], [2.51, 1976.736679330497, 0.22209844], [2.52, 1976.2145188490874, 0.21008809], [2.53, 1976.7413665167956, 0.22206007], [2.54, 1976.205202944751, 0.2103674], [2.55, 1976.7311915932657, 0.22213116], [2.56, 1976.2100570131872, 0.21053201], [2.57, 1976.7370948135601, 0.2223413], [2.58, 1976.2092857376094, 0.21061417], [2.59, 1976.7317652564568, 0.22234605], [2.6, 1976.1972195487076, 0.21078023], [2.61, 1976.721207892764, 0.22240375], [2.62, 1976.196986898136, 0.2108982], [2.63, 1976.717813937206, 0.22245735], [2.64, 1976.1932776171343, 0.21091561], [2.65, 1976.71506164766, 0.22250734], [2.66, 1976.1919474737706, 0.2109431], [2.67, 1976.7162459941462, 0.22256881], [2.68, 1976.18584848597, 0.21079952], [2.69, 1976.7134609236055, 0.22248407], [2.7, 1976.184025088126, 0.21060708], [2.71, 1976.7089439153574, 0.22239864], [2.72, 1976.1883430933476, 0.21056846], [2.73, 1976.7116992374727, 0.2224176], [2.74, 1976.1795975945806, 0.21070184], [2.75, 1976.7130723699463, 0.22242372], [2.76, 1976.1762399545964, 0.2107109], [2.77, 1976.7066616454188, 0.22248144], [2.78, 1976.1718843576214, 0.21075381], [2.79, 1976.7064770025686, 0.22256485], [2.8, 1976.1776131330078, 0.21084858], [2.81, 1976.7092700004282, 0.2227263], [2.82, 1976.1731272345858, 0.21098335], [2.83, 1976.7115451058328, 0.22283785], [2.84, 1976.1715712536893, 0.21088268], [2.85, 1976.710950804581, 0.22286342], [2.86, 1976.1696589892103, 0.210802], [2.87, 1976.7055298791527, 0.22278716], [2.88, 1976.1708439971276, 0.21079649], [2.89, 1976.7100951515163, 0.22277652], [2.9, 1976.1727109564142, 0.2106768], [2.91, 1976.7011599977716, 0.22266416], [2.92, 1976.1760277268359, 0.21062036], [2.93, 1976.6935045458674, 0.22261295], [2.94, 1976.175618003917, 0.2105321], [2.95, 1976.6959739335027, 0.22260317], [2.96, 1976.1773809396536, 0.21057698], [2.97, 1976.7009307640187, 0.22245207], [2.98, 1976.1819928211548, 0.21051493], [2.99, 1976.6994795563985, 0.22240652], [3.0, 1976.176839571631, 0.21044782], [3.01, 1976.6951624328644, 0.22243299], [3.02, 1976.1783830596828, 0.21058342], [3.03, 1976.6981052049032, 0.22246908], [3.04, 1976.1811448714957, 0.21055709], [3.05, 1976.7016806723636, 0.22241113], [3.06, 1976.1884765780972, 0.21029502], [3.07, 1976.7021755562507, 0.22230713], [3.08, 1976.1884724299207, 0.21025641], [3.09, 1976.706096669623, 0.22234404], [3.1, 1976.1910945288016, 0.21045871], [3.11, 1976.7052845660826, 0.22254446], [3.12, 1976.1907902155249, 0.21046369], [3.13, 1976.7056078025325, 0.22244789], [3.14, 1976.1880538586386, 0.21056116], [3.15, 1976.7025542456477, 0.22246644], [3.16, 1976.174292136817, 0.21051969], [3.17, 1976.7030284139819, 0.22248481], [3.18, 1976.17113502263, 0.2105848], [3.19, 1976.7026200183384, 0.22241803], [3.2, 1976.172663079889, 0.21058208], [3.21, 1976.6997240259363, 0.22254519], [3.22, 1976.1760256977109, 0.21052219], [3.23, 1976.698781313442, 0.22254178], [3.24, 1976.1788369939322, 0.21051838], [3.25, 1976.6967955929952, 0.22250168], [3.26, 1976.1801671079302, 0.21056533], [3.27, 1976.7023694995962, 0.22253336], [3.28, 1868.6695869318296, 0.17399807], [3.29, 1667.682173577551, 0.4812588], [3.3, 1496.109558248697, 0.5576888], [3.31, 1368.5000847534209, 0.5263448], [3.32, 1307.0873319780057, 0.0619154], [3.33, 1117.7453312374184, 0.19679557], [3.34, 1045.8649009893736, 0.3634957], [3.35, 895.3959904916628, 0.4655367], [3.36, 855.8068393175846, 0.4474632], [3.37, 733.0253430032257, 0.7360056], [3.38, 687.1680278215777, 0.75600487], [3.39, 624.469300154321, 0.76305014], [3.4, 534.1442784455348, 0.76695395], [3.41, 503.3305441350536, 0.8030491], [3.42, 442.8255426636647, 0.8465629], [3.43, 389.57480831817077, 0.8286158], [3.44, 373.2363270242654, 0.8247955], [3.45, 321.0856566479457, 0.7886169], [3.46, 300.97356322701125, 0.5969775], [3.47, 259.13946632234604, 0.3285913], [3.48, 238.43528468523758, 0.086165614], [3.49, 225.52145854857264, 0.15736178], [3.5, 211.59772593397108, 0.120807536], [3.51, 194.77994239324502, 0.25488332], [3.52, 183.53074155031752, 0.5585633], [3.53, 168.17520097462176, 0.6867483], [3.54, 149.63236958107677, 0.49925604], [3.55, 141.73926967815052, 0.64486414], [3.56, 141.8745836010794, 0.71925324], [3.57, 141.9155749316286, 0.78213954], [3.58, 142.2135713455733, 0.7915459], [3.59, 144.08857140303735, 0.7726245], [3.6, 146.72382875075124, 0.7267679], [3.61, 148.71742581195403, 0.6097387], [3.62, 150.6331984021483, 0.69848645], [3.63, 152.06331869483859, 0.70187336], [3.64, 152.16960167459993, 0.63098973], [3.65, 148.4176277710187, 0.6249575], [3.66, 145.6281520544371, 0.7699163], [3.67, 143.49424013520004, 0.6859133], [3.68, 143.5840163778072, 0.4062125], [3.69, 149.02459778075482, 0.40421832], [3.7, 151.59139258521344, 0.49111688], [3.71, 149.30523254302565, 0.37270522], [3.72, 147.49417710375928, 0.2297493], [3.73, 150.74558641456866, 0.37122774], [3.74, 150.83349076689507, 0.36564445], [3.75, 151.8674384946718, 0.36585343], [3.76, 151.40495822068044, 0.19969603], [3.77, 152.40022049450323, 0.22193846], [3.78, 151.49832468959747, 0.12943847], [3.79, 150.65486038701044, 0.3165815], [3.8, 151.25218582333235, 0.34259027], [3.81, 150.45613205753062, 0.19385931], [3.82, 148.18901800026197, 0.25491127], [3.83, 141.8966259141177, 0.4283681], [3.84, 141.35791746007308, 0.5992606], [3.85, 142.2686385748981, 0.69279736], [3.86, 144.00602067934815, 0.6530981], [3.87, 144.83463210447053, 0.7095512], [3.88, 145.13264163022734, 0.7595152], [3.89, 145.40514516387364, 0.7516349], [3.9, 145.2342158955061, 0.7393997], [3.91, 144.90862315805546, 0.6495383], [3.92, 143.86959459232594, 0.54997486], [3.93, 142.99200463615693, 0.6307792], [3.94, 142.285997932878, 0.6089376], [3.95, 142.9846287575347, 0.6098802], [3.96, 144.32455446851162, 0.44410038], [3.97, 145.76311110254525, 0.42615014], [3.98, 147.01733717651987, 0.44378623], [3.99, 149.35930056536637, 0.6043062], [4.0, 150.4059576446957, 0.6364606], [4.01, 150.21720595523124, 0.70194167], [4.02, 149.26865256428505, 0.7244012], [4.03, 147.40667117421512, 0.6459904], [4.04, 145.81201307362142, 0.72621167], [4.05, 143.76788985281115, 0.7152988], [4.06, 142.23211030726574, 0.6478965], [4.07, 140.9356672040885, 0.5784215], [4.08, 138.53869197943476, 0.3040354], [4.09, 134.4880040107946, 0.32593668], [4.1, 132.63070896565435, 0.38704523], [4.11, 133.05748595989536, 0.2542878], [4.12, 136.99241035260818, 0.31518066], [4.13, 139.97410467183445, 0.57659155], [4.14, 142.70315580033082, 0.5500247], [4.15, 146.64610341944595, 0.6904798], [4.16, 149.12055049775208, 0.7211154], [4.17, 149.81933455233002, 0.689908], [4.18, 149.90614904380368, 0.6320848], [4.19, 148.65645551481305, 0.4799073], [4.2, 147.25490740731792, 0.56921154], [4.21, 145.71516159251476, 0.3865228], [4.22, 144.8047890981584, 0.44260803], [4.23, 144.2494786650985, 0.42465213], [4.24, 144.31771805359944, 0.6880529], [4.25, 144.43854302204488, 0.8043359], [4.26, 143.8061760272852, 0.79720634], [4.27, 143.39924512871625, 0.8054492], [4.28, 143.88629140315805, 0.79936415], [4.29, 144.09581835620594, 0.7976897], [4.3, 144.2698951438235, 0.84211916], [4.31, 144.86802930688253, 0.8387061], [4.32, 146.0526594684519, 0.82500744], [4.33, 146.96252806927356, 0.81858015], [4.34, 147.5475120131683, 0.8345097], [4.35, 147.3362259631728, 0.7762152], [4.36, 146.93747384135068, 0.6017026], [4.37, 146.1071530698592, 0.43099216], [4.38, 146.55495300669344, 0.15895881], [4.39, 147.32928196210116, 0.07756882], [4.4, 147.8771035048613, 0.2572435], [4.41, 149.40406354632734, 0.28719798], [4.42, 149.4555443961581, 0.2832625], [4.43, 152.62423820926924, 0.22191547], [4.44, 152.99375532526415, 0.29184055], [4.45, 152.50233638082582, 0.13302399], [4.46, 151.32803215831206, 0.086176425], [4.47, 149.7774210887419, 0.24379644], [4.48, 147.50920591687768, 0.48169908], [4.49, 146.08231730938226, 0.63707495], [4.5, 146.51453287608416, 0.75015223], [4.51, 146.41958997275492, 0.7844654], [4.52, 146.5979295994637, 0.7858574], [4.53, 146.89422943542087, 0.6377767], [4.54, 147.54103981804133, 0.5011906], [4.55, 147.5926744586985, 0.29840386], [4.56, 147.78695931050908, 0.33992946], [4.57, 147.5467972512359, 0.22420126], [4.58, 148.86728063534144, 0.21888632], [4.59, 147.9126479510918, 0.43620512], [4.6, 147.75329768579456, 0.6543819], [4.61, 147.20361714097035, 0.75584733], [4.62, 147.32964605698075, 0.8108036], [4.63, 147.44420652031803, 0.84167874], [4.64, 147.25033359688513, 0.8107891], [4.65, 147.883586295125, 0.72224057], [4.66, 148.5267220566734, 0.634144], [4.67, 149.28722630076427, 0.44188327], [4.68, 150.47014497629232, 0.25010028], [4.69, 150.81516531910697, 0.130201], [4.7, 150.3380940437373, 0.25229555], [4.71, 149.45995689227698, 0.21074246], [4.72, 149.85364599024086, 0.2658471], [4.73, 150.40309320166452, 0.48239306], [4.74, 149.36552140272624, 0.51737535], [4.75, 148.3325070320083, 0.45587677], [4.76, 147.32188183093345, 0.46077424], [4.77, 147.01289080438426, 0.42392984], [4.78, 146.24313629500142, 0.2528956], [4.79, 148.88733411543873, 0.19009121], [4.8, 147.88000220459477, 0.20735131], [4.81, 139.6243323433429, 0.2209959], [4.82, 142.44603949369258, 0.39063406], [4.83, 144.1982329034359, 0.5572389], [4.84, 145.6443195135445, 0.6885497], [4.85, 147.1179511965321, 0.57317775], [4.86, 148.15374297505144, 0.53204453], [4.87, 148.44953428890295, 0.61839694], [4.88, 147.86377110646558, 0.80327123], [4.89, 147.37652345329784, 0.86217064], [4.9, 146.57099713893192, 0.8463574], [4.91, 145.76605740691068, 0.86427516], [4.92, 145.80943859829645, 0.7971841], [4.93, 146.18482397733348, 0.68452185], [4.94, 147.61415980772014, 0.73134965], [4.95, 149.72021491579386, 0.7447969], [4.96, 151.19261959093026, 0.75674736], [4.97, 152.68924767453817, 0.61669344], [4.98, 154.14365682354224, 0.5501341], [4.99, 154.1127342392267, 0.44238833], [5.0, 152.92519150352942, 0.56714433], [5.01, 150.91273331857715, 0.6237902], [5.02, 147.18999645633377, 0.7235423], [5.03, 145.41910855526245, 0.74716103], [5.04, 140.9128828081918, 0.57406604], [5.05, 136.11951071735425, 0.5069566], [5.06, 119.59031501538047, 0.1981522], [5.07, 118.33698169355591, 0.3530404], [5.08, 117.25610497336604, 0.5432302], [5.09, 115.36712301587065, 0.51630956], [5.1, 114.59621540327026, 0.52501166], [5.11, 113.74257327222283, 0.5626822], [5.12, 113.44454320707612, 0.5338032], [5.13, 114.84079383907826, 0.26866722], [5.14, 124.527246104533, 0.42028505], [5.15, 138.40788303237355, 0.2680519], [5.16, 139.88470734236495, 0.52378625], [5.17, 141.18177069966794, 0.6676502], [5.18, 142.90915447495993, 0.694026], [5.19, 143.97992428645264, 0.7425709], [5.2, 143.31203737576368, 0.6654592], [5.21, 143.07918417129412, 0.6891332], [5.22, 141.94489990956663, 0.68403584], [5.23, 142.29807279636492, 0.6603012], [5.24, 141.98095133732895, 0.6715893], [5.25, 143.29550972437502, 0.5535794], [5.26, 144.5267199862885, 0.37489837], [5.27, 146.28022489886865, 0.4097247], [5.28, 146.8653138432254, 0.54485404], [5.29, 146.83853118884423, 0.3369508], [5.3, 146.615493601827, 0.2969093], [5.31, 146.92310351935328, 0.42057312], [5.32, 146.70420184247928, 0.45832327], [5.33, 146.9110151698513, 0.5196791], [5.34, 145.43412198521312, 0.5364029], [5.35, 143.6091844951471, 0.3663473], [5.36, 142.03515070664747, 0.46000764], [5.37, 143.0409555951435, 0.4674178], [5.38, 145.79525215431198, 0.63678604], [5.39, 147.36614612353634, 0.7664674], [5.4, 147.8710886340533, 0.80627495], [5.41, 148.9774786908106, 0.7701431], [5.42, 149.99180586465357, 0.7483374], [5.43, 151.0244072564282, 0.7452431], [5.44, 151.19641658631826, 0.6671604], [5.45, 149.32080927313126, 0.71662766], [5.46, 147.59862206041896, 0.7643727], [5.47, 146.17762408418184, 0.75234765], [5.48, 145.3380480168366, 0.7874501], [5.49, 145.3405830542588, 0.7992428], [5.5, 145.43101564605672, 0.80152994], [5.51, 145.7864068092449, 0.7918185], [5.52, 146.278968587248, 0.7485946], [5.53, 146.70859362705943, 0.7154896], [5.54, 145.9218465071081, 0.7322272], [5.55, 145.67309454355194, 0.81341803], [5.56, 145.93215250717373, 0.843525], [5.57, 145.92190092532735, 0.85009396], [5.58, 146.69324232253967, 0.8620561], [5.59, 146.40948305684753, 0.8443146], [5.6, 146.5758067614223, 0.81938845], [5.61, 147.1464579477345, 0.81688124], [5.62, 147.2403441541414, 0.85328406], [5.63, 147.44617073128094, 0.82163054], [5.64, 147.17023226396987, 0.8380836], [5.65, 147.23987957834512, 0.831673], [5.66, 146.92057128113913, 0.8326244], [5.67, 146.26040534619997, 0.8114218], [5.68, 146.12098221195424, 0.845074], [5.69, 146.26291630754753, 0.79477054], [5.7, 145.63091688763737, 0.79402477], [5.71, 145.79532835051336, 0.7754845], [5.72, 146.80995126326152, 0.66761714], [5.73, 147.8544964898195, 0.5543067], [5.74, 149.667569307742, 0.25162917], [5.75, 149.5270231458594, 0.25633076], [5.76, 149.3870465590987, 0.3235046], [5.77, 149.53417914623535, 0.4719285], [5.78, 149.5454081938588, 0.14902915], [5.79, 149.5321108753551, 0.15601215], [5.8, 149.28002581521946, 0.13929927], [5.81, 149.04753983350278, 0.30674097], [5.82, 149.2161651058694, 0.17552847], [5.83, 148.39563764880256, 0.35095936], [5.84, 149.0389660256574, 0.60012627], [5.85, 150.65624615221213, 0.59669715], [5.86, 151.13264908067418, 0.4175697], [5.87, 150.6622453150452, 0.20836523], [5.88, 149.24828669062103, 0.0939481], [5.89, 148.1716467068686, 0.31393555], [5.9, 147.65035433662294, 0.40003175], [5.91, 148.48428114338975, 0.49027345], [5.92, 148.71716878905386, 0.5033394], [5.93, 149.10619169762262, 0.62817633], [5.94, 148.8960032495258, 0.48264003], [5.95, 149.55989825456552, 0.42027846], [5.96, 149.00639007095404, 0.53324974], [5.97, 149.04933202502042, 0.55278563], [5.98, 148.58837985314292, 0.41142142], [5.99, 147.8458009894029, 0.40120864], [6.0, 148.39212571779518, 0.51508313], [6.01, 148.06520367735365, 0.48990935], [6.02, 147.40806944787795, 0.59156084], [6.03, 147.09496392542155, 0.6696582], [6.04, 147.06374019667612, 0.73925745], [6.05, 146.98251273373867, 0.7487865], [6.06, 146.69850358666122, 0.6119457], [6.07, 146.2577651389538, 0.39496076], [6.08, 145.96460977914126, 0.48870513], [6.09, 145.88034669553065, 0.6820519], [6.1, 146.82486368188387, 0.7679799], [6.11, 147.64230325426976, 0.80160016], [6.12, 148.81410840609445, 0.793038], [6.13, 149.11449369361006, 0.7197624], [6.14, 149.35817157432328, 0.40109393], [6.15, 148.9099356199976, 0.34042865], [6.16, 149.07684169756888, 0.6344545], [6.17, 148.4843805683181, 0.72052914], [6.18, 148.04648621380426, 0.65628695], [6.19, 146.9969057551668, 0.53984654], [6.2, 145.99436079313796, 0.11685997], [6.21, 141.83102467837713, 0.12941855], [6.22, 137.3989806398107, 0.17025986], [6.23, 134.31831171107663, 0.1691201], [6.24, 137.5893513693467, 0.18769072], [6.25, 139.3901624398278, 0.3288582], [6.26, 140.95226826049634, 0.46900848], [6.27, 141.48656284183357, 0.33484966], [6.28, 146.99974238225406, 0.26256964], [6.29, 148.477274907446, 0.19754423], [6.3, 148.12909907712455, 0.13428426], [6.31, 147.9342629668555, 0.21179794], [6.32, 147.71901043370295, 0.39035928], [6.33, 147.96916695740347, 0.2988669], [6.34, 148.04296311351305, 0.21289682], [6.35, 148.1803486565588, 0.21514161], [6.36, 147.80914649744284, 0.16963707], [6.37, 146.61382987469392, 0.23552647], [6.38, 147.20066161949407, 0.10505532], [6.39, 130.02614160690018, 0.19794299], [6.4, 120.20848813728315, 0.33095905], [6.41, 122.74890871445776, 0.43601057], [6.42, 124.23527609644083, 0.39116773], [6.43, 122.76722913069574, 0.3244336], [6.44, 117.52648926595491, 0.3130904], [6.45, 115.93730476662932, 0.32177424], [6.46, 115.82340986547949, 0.27048594], [6.47, 119.56515878867044, 0.15955678], [6.48, 120.86516079679377, 0.12779093], [6.49, 119.53469475421953, 0.1153543], [6.5, 119.68465623844097, 0.16699396], [6.51, 119.79288920390759, 0.2712165], [6.52, 119.19421183979146, 0.20642188], [6.53, 119.78430885322555, 0.3313034], [6.54, 121.6820984881158, 0.14593013], [6.55, 124.6738797676852, 0.18441634], [6.56, 134.4843815287609, 0.31305528], [6.57, 142.41168940229227, 0.13886009], [6.58, 144.90230750280767, 0.11518227], [6.59, 150.47460406917082, 0.1723878], [6.6, 149.63591035467965, 0.16879751], [6.61, 145.99020269186357, 0.31894892], [6.62, 145.0710070186754, 0.5904962], [6.63, 144.91904967518684, 0.68400383], [6.64, 146.55513779874255, 0.711586], [6.65, 147.07257026143157, 0.80712265], [6.66, 146.76416089164314, 0.777919], [6.67, 145.99216531213233, 0.7799155], [6.68, 145.76431882472303, 0.75817347], [6.69, 146.2750956955238, 0.73433816], [6.7, 146.28110911334366, 0.6971625], [6.71, 146.71064423186527, 0.69455427], [6.72, 147.24731865273438, 0.7034707], [6.73, 147.58476671931018, 0.7803073], [6.74, 147.67959197109676, 0.7830005], [6.75, 147.82574625979805, 0.8309223], [6.76, 147.80814511619363, 0.82306755], [6.77, 148.89192453868554, 0.8179076], [6.78, 149.42943658656247, 0.79360867], [6.79, 150.68314602285648, 0.82128656], [6.8, 150.66398064304502, 0.78685606], [6.81, 151.05525083353584, 0.79389715], [6.82, 150.64587784917393, 0.7873104], [6.83, 149.92308708452742, 0.79721177], [6.84, 148.3690015970072, 0.722571], [6.85, 145.7224200133577, 0.6143604], [6.86, 143.48742714517704, 0.459961], [6.87, 139.2997846126485, 0.26458892], [6.88, 130.13242972253838, 0.23092496], [6.89, 127.74139888494288, 0.33044785], [6.9, 130.44476556795027, 0.5240199], [6.91, 141.12134222391242, 0.37893727], [6.92, 147.35610424611158, 0.42493296], [6.93, 147.9634366858025, 0.73833156], [6.94, 148.65655662788646, 0.82800525], [6.95, 148.80733672259598, 0.8603402], [6.96, 149.23812440293472, 0.84958047], [6.97, 148.96280534359917, 0.7510123], [6.98, 147.6714596073736, 0.6049014], [6.99, 145.88782594727184, 0.60566247], [7.0, 143.42660100888597, 0.6635916], [7.01, 142.63597753716522, 0.7262947], [7.02, 143.78290333809224, 0.7075571], [7.03, 145.25471259824138, 0.8003094], [7.04, 145.79143186397823, 0.76498395], [7.05, 146.87624820828853, 0.71156025], [7.06, 148.02498499871837, 0.73307127], [7.07, 148.87672171853353, 0.7668826], [7.08, 148.42068208489383, 0.7281707], [7.09, 147.205532423454, 0.7165765], [7.1, 146.5393353833236, 0.67912877], [7.11, 146.49757352313867, 0.66211605], [7.12, 147.3570173186354, 0.68521327], [7.13, 146.34612553294255, 0.65903467], [7.14, 143.89681668571706, 0.66817945], [7.15, 140.9859420368584, 0.6654901], [7.16, 138.6205212061231, 0.6946262], [7.17, 138.40868302641326, 0.6889139], [7.18, 138.37049678288372, 0.7067474], [7.19, 137.2919018323899, 0.6915577], [7.2, 135.51951100083937, 0.5868045], [7.21, 133.57873407376835, 0.59598833], [7.22, 133.36601748394347, 0.585875], [7.23, 134.17300477469593, 0.55072945], [7.24, 135.49100279979515, 0.5451089], [7.25, 137.98592832617524, 0.5384638], [7.26, 141.9204822564633, 0.6016275], [7.27, 144.86288227957093, 0.6623618], [7.28, 145.8510516960209, 0.72477674], [7.29, 147.1786863141353, 0.7694391], [7.3, 147.19683312244743, 0.80562866], [7.31, 147.66646067076292, 0.85449344], [7.32, 147.50256339973836, 0.86380917], [7.33, 147.5260206086722, 0.87133443], [7.34, 146.8122464206315, 0.85316163], [7.35, 146.00981531545352, 0.80917233], [7.36, 144.94343251742322, 0.81547403], [7.37, 144.10032497434102, 0.81320083], [7.38, 144.22212091458044, 0.8470305], [7.39, 143.65818694651813, 0.86056614], [7.4, 143.59026495582617, 0.8443281], [7.41, 143.44971453325851, 0.81920236], [7.42, 144.26433585321047, 0.82969373], [7.43, 145.76861603257458, 0.84048855], [7.44, 146.53903165048843, 0.85284007], [7.45, 147.20241611494475, 0.8797148], [7.46, 147.70754563236633, 0.86822206], [7.47, 147.50256427626243, 0.8219222], [7.48, 145.8537936975654, 0.79804766], [7.49, 143.16586340375392, 0.64327043], [7.5, 141.51269674006588, 0.66420627], [7.51, 139.4554970966846, 0.45972815], [7.52, 141.0607974446461, 0.1380883], [7.53, 143.01583840099298, 0.37675238], [7.54, 146.0640986363217, 0.55039483], [7.55, 146.36666582815357, 0.4511838], [7.56, 147.01270119457786, 0.36163282], [7.57, 148.4007228982046, 0.501137], [7.58, 148.10966501157006, 0.3803347], [7.59, 148.74192345009132, 0.20962593], [7.6, 148.13308749004761, 0.17785098], [7.61, 148.40763658311081, 0.26771146], [7.62, 149.58612036615077, 0.30918816], [7.63, 148.61663788070868, 0.30481303], [7.64, 148.00763382066145, 0.17409882], [7.65, 144.89094007555624, 0.15032643], [7.66, 136.74094872265383, 0.24898115], [7.67, 124.71073165539126, 0.25826374], [7.68, 116.70452670480115, 0.21027192], [7.69, 113.1821220736508, 0.1913054], [7.7, 114.3430560406466, 0.44075876], [7.71, 114.69476737540204, 0.56354773], [7.72, 115.12806687975495, 0.65838903], [7.73, 115.24038910683146, 0.66584504], [7.74, 115.56949380691657, 0.5686859], [7.75, 131.0792680217179, 0.2557739], [7.76, 147.1287356437341, 0.45384514], [7.77, 147.16447300409698, 0.64071876], [7.78, 147.4240807557461, 0.7915822], [7.79, 147.05459256812603, 0.6162186], [7.8, 146.48217656125547, 0.52722204], [7.81, 146.56507466255033, 0.31747803], [7.82, 163.42146633720833, 0.3080612], [7.83, 183.1963458175067, 0.28224474], [7.84, 202.36106678539238, 0.09433444], [7.85, 201.21531223263338, 0.1258144], [7.86, 196.9224120706119, 0.1709907], [7.87, 195.64578725682856, 0.29090038], [7.88, 196.49439399480906, 0.21393937], [7.89, 196.37151937168684, 0.35852048], [7.9, 197.01570530725843, 0.17359231], [7.91, 196.5959839908351, 0.39177835], [7.92, 197.13157757856126, 0.15291488], [7.93, 197.3524410047622, 0.27467144], [7.94, 182.81251824169607, 0.11704348], [7.95, 165.2015510939191, 0.26544458], [7.96, 154.46947987199843, 0.3273167], [7.97, 157.3193632935138, 0.4136867], [7.98, 152.67964787779897, 0.4170589], [7.99, 148.7729434375454, 0.3844104], [8.0, 148.8392151045136, 0.18890177], [8.01, 139.15308186595777, 0.35273924], [8.02, 120.60364814833905, 0.40907055], [8.03, 111.66881509531643, 0.4557821], [8.04, 112.19019295556723, 0.4683915], [8.05, 111.56574255425917, 0.37327892], [8.06, 111.76051034243876, 0.45814025], [8.07, 112.31165846387107, 0.6144972], [8.08, 113.90023693903919, 0.506881], [8.09, 116.76353443955551, 0.23909213], [8.1, 119.7165472944466, 0.62628394], [8.11, 122.42470332206325, 0.6727277], [8.12, 123.4711402824231, 0.5606222], [8.13, 125.17348557177112, 0.59069955], [8.14, 126.30248705741025, 0.5923449], [8.15, 126.56287253225244, 0.51923454], [8.16, 128.64211109371013, 0.5442809], [8.17, 129.58561840590227, 0.5856982], [8.18, 128.35917720680158, 0.56471014], [8.19, 127.0441038246671, 0.64227885], [8.2, 125.20161430997754, 0.7004657], [8.21, 123.98650357496044, 0.704689], [8.22, 122.84646958070986, 0.6062845], [8.23, 121.04147757096838, 0.7222029], [8.24, 119.72253364414334, 0.68851435], [8.25, 117.90358619108191, 0.58644533], [8.26, 114.65165481019909, 0.4957042], [8.27, 112.78546294100771, 0.571525], [8.28, 111.3363896434723, 0.653263], [8.29, 110.67157865955619, 0.70376664], [8.3, 110.44749211133819, 0.46036285], [8.31, 110.98846104211675, 0.2017449], [8.32, 111.95443967884785, 0.23263557], [8.33, 112.23318521279535, 0.10767961], [8.34, 111.9685973037938, 0.06915921], [8.35, 111.14287708122436, 0.10839764], [8.36, 111.0527366380442, 0.13974728], [8.37, 111.03549642712244, 0.12402299], [8.38, 111.18367108337108, 0.2225384], [8.39, 111.89822015079719, 0.46029675], [8.4, 111.75674321384679, 0.49784675], [8.41, 111.97546334067624, 0.43231708], [8.42, 112.38658072395417, 0.19613133], [8.43, 112.94240991996725, 0.1408995], [8.44, 112.8074980397422, 0.43481216], [8.45, 113.14120756504025, 0.52259165], [8.46, 113.79862767042987, 0.5362059], [8.47, 114.65452322808059, 0.7082782], [8.48, 114.16219016841, 0.66429263], [8.49, 113.81194938349176, 0.5426836], [8.5, 128.8298225039836, 0.14537877], [8.51, 147.33087925176343, 0.13141316], [8.52, 147.59932722686048, 0.27284053], [8.53, 153.55138396096413, 0.23027107], [8.54, 166.11342640374448, 0.39046898], [8.55, 166.76272437702062, 0.59876895], [8.56, 164.29834519047654, 0.5394873], [8.57, 161.0052840952245, 0.35938862], [8.58, 151.0835023099108, 0.3497373], [8.59, 148.85501755858738, 0.38072473], [8.6, 148.2030484851506, 0.14170326], [8.61, 146.96499531887085, 0.092594266], [8.62, 144.63355435827575, 0.11496319], [8.63, 141.03605527169077, 0.20081234], [8.64, 135.59031572722623, 0.14871325], [8.65, 130.0681480344031, 0.18587562], [8.66, 126.53168256436516, 0.14708872], [8.67, 123.04505686344083, 0.16025564], [8.68, 117.3339262176109, 0.19931234], [8.69, 116.10024285373223, 0.32856387], [8.7, 116.1105417227018, 0.39326134], [8.71, 117.0627872567488, 0.508048], [8.72, 116.93744176020013, 0.20455949], [8.73, 116.09542313613943, 0.21903878], [8.74, 113.65449526338145, 0.21905594], [8.75, 113.35544823181685, 0.20856437], [8.76, 113.4234606946473, 0.23507369], [8.77, 114.22049104217612, 0.28316566], [8.78, 113.38067312200066, 0.4336058], [8.79, 114.42788110617948, 0.4764527], [8.8, 114.07726750922698, 0.65007186], [8.81, 113.79946206569164, 0.697699], [8.82, 112.86003296645212, 0.6979222], [8.83, 112.26420442558931, 0.69194543], [8.84, 112.5157862548929, 0.6563087], [8.85, 112.33595361479547, 0.53157884], [8.86, 111.96133545260662, 0.47914907], [8.87, 111.50500946642381, 0.4609694], [8.88, 111.35283249960281, 0.5245726], [8.89, 110.95498994582597, 0.42870745], [8.9, 110.47858768770811, 0.48467147], [8.91, 109.93140496955604, 0.6523063], [8.92, 108.8644549066581, 0.5817332], [8.93, 108.10772021457224, 0.41912824], [8.94, 111.30506377771505, 0.2238684], [8.95, 115.46408249778142, 0.24559088], [8.96, 122.72641423982466, 0.26792088], [8.97, 128.5727591462091, 0.25970381], [8.98, 135.5230012500291, 0.29072303], [8.99, 141.67628771005968, 0.5647524], [9.0, 147.62416199321484, 0.59053886], [9.01, 158.42685958812447, 0.6627294], [9.02, 164.35615356394865, 0.6218491], [9.03, 165.9882434007129, 0.5580626], [9.04, 179.94985389167763, 0.26279157], [9.05, 190.56633059220792, 0.20708388], [9.06, 191.35103967894173, 0.28274104], [9.07, 191.36471918069813, 0.21478283], [9.08, 187.00150387536036, 0.2287761], [9.09, 184.10024484541648, 0.2847083], [9.1, 170.1892474007386, 0.2545645], [9.11, 164.3323492294361, 0.5880875], [9.12, 160.75764662632452, 0.22857112], [9.13, 150.24356935288378, 0.22575481], [9.14, 147.09232522041387, 0.49522796], [9.15, 148.23903649545676, 0.46551216], [9.16, 148.003558140873, 0.5667437], [9.17, 146.44243136535013, 0.4395934], [9.18, 145.77462473218407, 0.58257467], [9.19, 145.59834505640518, 0.32935116], [9.2, 157.55957408611923, 0.16981755], [9.21, 180.14058402690273, 0.17290679], [9.22, 190.56794647295538, 0.22541265], [9.23, 189.92490596913515, 0.20380878], [9.24, 188.4447591319196, 0.32662916], [9.25, 185.26532990100552, 0.42815635], [9.26, 176.95665814716853, 0.5296287], [9.27, 171.5696229899041, 0.53936803], [9.28, 167.9045929421682, 0.45820934], [9.29, 163.67092037167083, 0.5820694], [9.3, 159.05903142884426, 0.6595071], [9.31, 156.01522094107773, 0.67551297], [9.32, 153.35991958971854, 0.38030675], [9.33, 149.8290995910412, 0.20180322], [9.34, 167.29058953313432, 0.09560577], [9.35, 163.8545117992288, 0.07246297], [9.36, 154.75024936634247, 0.12656738], [9.37, 147.5610025800734, 0.47578752], [9.38, 136.52656999041412, 0.6584732], [9.39, 130.0109312963197, 0.6878234], [9.4, 116.2758190762454, 0.6547375], [9.41, 112.44036871644022, 0.5244363], [9.42, 112.90611079800803, 0.65146136], [9.43, 112.7873830773349, 0.6886822], [9.44, 112.42623783050361, 0.6635127], [9.45, 112.08726563779136, 0.6942101], [9.46, 111.96114205001798, 0.5887298], [9.47, 112.04101708238362, 0.4182908], [9.48, 113.75486509656396, 0.41187796], [9.49, 114.32527667714706, 0.56189394], [9.5, 114.48942492368255, 0.59399915], [9.51, 114.87088065009927, 0.68873], [9.52, 114.45152370826106, 0.6418159], [9.53, 115.23431391183392, 0.5986563], [9.54, 114.4869666356913, 0.4602792], [9.55, 127.53796701799578, 0.46990237], [9.56, 142.5579005700421, 0.370326], [9.57, 163.9216157692728, 0.10973759], [9.58, 181.0163165099559, 0.23953497], [9.59, 195.1686878928134, 0.1502737], [9.6, 223.49667727104287, 0.19846079], [9.61, 245.45078846410837, 0.32734188], [9.62, 245.3561584328709, 0.35967615], [9.63, 245.70335185077795, 0.23792349], [9.64, 244.09415971884283, 0.3799059], [9.65, 244.45513086387376, 0.38508412], [9.66, 234.22587973520078, 0.076438904], [9.67, 208.0979972435569, 0.14399052], [9.68, 193.47337969023005, 0.24822973], [9.69, 192.37169344141563, 0.3193355], [9.7, 192.46498851233483, 0.17902595], [9.71, 191.93688196435755, 0.24145548], [9.72, 191.31190914531604, 0.17570804], [9.73, 191.25340815808883, 0.23417039], [9.74, 191.87393007616177, 0.13266015], [9.75, 171.08806844832355, 0.1597321], [9.76, 153.89382398275552, 0.2124983], [9.77, 137.26184942784678, 0.13154364], [9.78, 121.76033461574221, 0.23486926], [9.79, 108.89513303722198, 0.30918425], [9.8, 108.95938756335595, 0.36411047], [9.81, 107.54524277591088, 0.22734103], [9.82, 103.54813439118035, 0.23438136], [9.83, 110.19998789172632, 0.10933527], [9.84, 115.23556948623097, 0.26987842], [9.85, 114.26050899035559, 0.28635195], [9.86, 114.3199240674764, 0.3709896], [9.87, 115.20698029650333, 0.4405586], [9.88, 115.84670202871918, 0.43502432], [9.89, 117.14593236070706, 0.34875458], [9.9, 117.45266712284067, 0.33741632], [9.91, 117.26666164054392, 0.3694593], [9.92, 116.89433671757955, 0.60208434], [9.93, 115.63926066391468, 0.5867563], [9.94, 113.93345414152877, 0.59471065], [9.95, 112.39168498288187, 0.56871635], [9.96, 109.82415033669243, 0.52801913], [9.97, 108.72364633763242, 0.26578808], [9.98, 108.19947901251271, 0.16757694], [9.99, 109.24268056799835, 0.2711861], [10.0, 110.10163860761267, 0.35705537], [10.01, 110.23592979888684, 0.35975358], [10.02, 110.42740893347201, 0.18066122], [10.03, 110.51252332077388, 0.10357214], [10.04, 109.25318926551874, 0.3016671], [10.05, 108.73650613340149, 0.25221717], [10.06, 108.85832905861892, 0.3116909], [10.07, 109.28438819746356, 0.25776324], [10.08, 109.95683195788348, 0.17700398], [10.09, 111.44420241887035, 0.23167612], [10.1, 111.97816631808011, 0.2604435], [10.11, 111.78923594963926, 0.33131197], [10.12, 110.81848712656605, 0.4594936], [10.13, 110.68298950336415, 0.71757925], [10.14, 110.63928403472816, 0.8183494], [10.15, 110.8158223719239, 0.77684593], [10.16, 110.16371388223192, 0.67020166], [10.17, 108.15132004310044, 0.3640957], [10.18, 105.26422283771674, 0.29653338], [10.19, 105.23701866036407, 0.19715983], [10.2, 106.56976545681107, 0.2704063], [10.21, 108.65081694631797, 0.16941664], [10.22, 109.20263720067337, 0.41911384], [10.23, 109.9864223320045, 0.1536568], [10.24, 111.2352432274949, 0.19091645], [10.25, 112.16440198233738, 0.4769774], [10.26, 112.94380849579778, 0.3828797], [10.27, 113.00716959320398, 0.45347738], [10.28, 113.6760467946257, 0.6029455], [10.29, 113.77298510433207, 0.63179135], [10.3, 113.67782444277097, 0.72460955], [10.31, 113.42614147647075, 0.6658407], [10.32, 113.29960984647165, 0.657649], [10.33, 113.14352672404637, 0.6333904], [10.34, 113.61525748264013, 0.583016], [10.35, 112.81756341157079, 0.54687923], [10.36, 111.30439302029598, 0.5727884], [10.37, 110.03007880717264, 0.55997497], [10.38, 110.2455986500285, 0.36560282], [10.39, 111.98463854813289, 0.11278587], [10.4, 114.15007903694602, 0.14535058], [10.41, 121.9399079141779, 0.2191979], [10.42, 138.2775479975952, 0.579824], [10.43, 146.53796221659343, 0.42635915], [10.44, 150.7828466556845, 0.40984988], [10.45, 153.19191649482048, 0.56043714], [10.46, 155.0321143799529, 0.7255206], [10.47, 154.52306537471608, 0.7780834], [10.48, 153.93210921234208, 0.6987611], [10.49, 151.4506162667038, 0.67008585], [10.5, 149.21109741369088, 0.74639064], [10.51, 146.99761836690902, 0.8162711], [10.52, 146.25465273301825, 0.8571265], [10.53, 145.95129691236113, 0.8624409], [10.54, 146.73863973560043, 0.86891884], [10.55, 147.72594691969596, 0.88378006], [10.56, 148.8608039666349, 0.88416445], [10.57, 149.7138736243192, 0.83507735], [10.58, 149.4055000917372, 0.79567426], [10.59, 149.1564475729246, 0.60277295], [10.6, 148.78240886270717, 0.5427425], [10.61, 149.2000766891348, 0.45688865], [10.62, 151.2378349423761, 0.57556874], [10.63, 155.0331702254326, 0.5174854], [10.64, 158.65216312587194, 0.59644634], [10.65, 163.73186954728078, 0.5577586], [10.66, 173.32773518250792, 0.5819644], [10.67, 180.83803393884938, 0.6752377], [10.68, 185.87412275585504, 0.7265266], [10.69, 189.56959034792186, 0.77755207], [10.7, 190.35157706148135, 0.75760907], [10.71, 191.91813480988742, 0.72166854], [10.72, 194.2682025354731, 0.40907714], [10.73, 196.41953110847817, 0.23755436], [10.74, 194.79185106193552, 0.16129637], [10.75, 179.31565469369974, 0.12473466], [10.76, 160.73319156426317, 0.11270688], [10.77, 144.29719855728442, 0.1294461], [10.78, 130.99090632739183, 0.15600415], [10.79, 121.3533372269321, 0.45366767], [10.8, 119.05968860069922, 0.6315514], [10.81, 117.36580139764078, 0.7638078], [10.82, 116.77282603975739, 0.8756051], [10.83, 116.62552206823436, 0.87033635], [10.84, 115.8098042655931, 0.8441728], [10.85, 116.38430493066595, 0.81709474], [10.86, 116.8366836212244, 0.83759785], [10.87, 118.31425414448589, 0.7025025], [10.88, 120.40120311666902, 0.7256986], [10.89, 121.90406623285122, 0.80486494], [10.9, 123.3484616215417, 0.7072106], [10.91, 125.39834701411421, 0.676902], [10.92, 127.74338958383346, 0.65607035], [10.93, 127.90430979891171, 0.6879762], [10.94, 128.4548860049852, 0.5198682], [10.95, 129.04067700215256, 0.37826732], [10.96, 128.18898528918118, 0.4138646], [10.97, 127.031993481422, 0.5446667], [10.98, 127.80805154701602, 0.63873065], [10.99, 127.99094611636289, 0.6947609], [11.0, 127.91781280313386, 0.7653434], [11.01, 127.96478551476804, 0.7463056], [11.02, 127.85181519460103, 0.7325707], [11.03, 127.8739223114832, 0.72104645], [11.04, 127.55162869515524, 0.6521597], [11.05, 127.2225280325271, 0.615757], [11.06, 127.20485962989605, 0.5457047], [11.07, 126.54613227000212, 0.49755096], [11.08, 129.73057977613226, 0.44920105], [11.09, 138.81879962634596, 0.39944956], [11.1, 149.46856579610008, 0.24435315], [11.11, 158.01538257833377, 0.12117201], [11.12, 160.91396068602197, 0.18303595], [11.13, 158.43634629840832, 0.16917114], [11.14, 145.75662379791177, 0.4022925], [11.15, 145.44946130548743, 0.2720825], [11.16, 141.27203753521297, 0.43324158], [11.17, 142.20207471745212, 0.30593914], [11.18, 143.89260377495665, 0.17073393], [11.19, 151.64280767283688, 0.16077477], [11.2, 169.35599921855882, 0.28770754], [11.21, 185.65320652247553, 0.32945344], [11.22, 197.03806224085906, 0.2215159], [11.23, 221.3078785254099, 0.23342012], [11.24, 225.5886047647528, 0.19164298], [11.25, 243.86257369117072, 0.23239851], [11.26, 269.93772487751176, 0.10538025], [11.27, 277.161910131994, 0.2560553], [11.28, 315.3628477691707, 0.26051435], [11.29, 330.2255110842268, 0.09957048], [11.3, 360.8965978862609, 0.3105331], [11.31, 381.6087406032082, 0.4480804], [11.32, 380.5754873905457, 0.40222996], [11.33, 383.34424314020475, 0.23365757], [11.34, 382.72707147211435, 0.23344286], [11.35, 380.0815407323543, 0.16396438], [11.36, 379.9543143279229, 0.22878012], [11.37, 382.3001819437854, 0.24219215], [11.38, 388.23161300771915, 0.3053155], [11.39, 384.12139965421096, 0.2171401], [11.4, 358.18680768381427, 0.21785708], [11.41, 338.50701250267775, 0.2372909], [11.42, 329.184311747228, 0.1597913], [11.43, 318.42546855709554, 0.17738658], [11.44, 289.7702618054674, 0.2163813], [11.45, 284.5737215632977, 0.3294498], [11.46, 283.7600215536541, 0.27370286], [11.47, 277.74754437681, 0.27500242], [11.48, 273.9752246775454, 0.21179146], [11.49, 275.2431156064988, 0.34932724], [11.5, 286.91187657477883, 0.5351952], [11.51, 293.4646118973729, 0.40060952], [11.52, 298.9479533461211, 0.6955124], [11.53, 309.073129979544, 0.7521849], [11.54, 326.5199698781402, 0.84105414], [11.55, 334.0603702049292, 0.8232428], [11.56, 335.2368823328658, 0.8818588], [11.57, 333.4730845747151, 0.8440509], [11.58, 336.1588294594279, 0.7235493], [11.59, 348.69822447493283, 0.6153189], [11.6, 355.6370457657019, 0.49896908], [11.61, 364.623764508294, 0.43429184], [11.62, 369.60497976509987, 0.44763693], [11.63, 373.64356424100976, 0.24681734], [11.64, 376.8988258385706, 0.45838323], [11.65, 377.5650278927292, 0.60756534], [11.66, 376.4158244875626, 0.79647154], [11.67, 377.8792145748835, 0.73700655], [11.68, 377.6478435020315, 0.6035636], [11.69, 376.3305726906457, 0.49456385], [11.7, 372.4710025536974, 0.42084533], [11.71, 369.4975889548688, 0.3670825], [11.72, 396.6350080156418, 0.21837965], [11.73, 426.3792687883077, 0.18585032], [11.74, 468.99790542962137, 0.21172404], [11.75, 484.2923813707659, 0.27180418], [11.76, 480.1375672363291, 0.3592056], [11.77, 479.9653976436499, 0.45018402], [11.78, 477.53995225473665, 0.53434604], [11.79, 476.11449960774473, 0.47788423], [11.8, 479.26390328827824, 0.3351048], [11.81, 474.38267941002096, 0.16076429], [11.82, 444.72811964860523, 0.15464707], [11.83, 413.1427673203408, 0.24345341], [11.84, 392.56313439998485, 0.31712398], [11.85, 384.776179665442, 0.23348618], [11.86, 383.8472206729542, 0.41022164], [11.87, 381.0395805663371, 0.39073786], [11.88, 382.30882845746953, 0.2573249], [11.89, 382.7036914269166, 0.30800042], [11.9, 382.1045117363232, 0.3720482], [11.91, 379.01117442057364, 0.35413632], [11.92, 380.87085979200685, 0.30926493], [11.93, 384.48574816684754, 0.17336753], [11.94, 384.83248992509186, 0.21144654], [11.95, 384.9191893346671, 0.2533911], [11.96, 384.7488873643647, 0.2705475], [11.97, 388.8217781601836, 0.2889579], [11.98, 387.8635692478888, 0.5145945], [11.99, 384.10670355310606, 0.4784957], [12.0, 381.0951104083856, 0.48968515], [12.01, 376.98690565665976, 0.63759923], [12.02, 374.35135300633505, 0.70006675], [12.03, 375.3219423685425, 0.66586936], [12.04, 378.32439053815995, 0.5321881], [12.05, 378.6502047500819, 0.4980969], [12.06, 379.9385157630098, 0.41866603], [12.07, 356.1975094829199, 0.29032895], [12.08, 318.44855999147165, 0.41046768], [12.09, 286.52417743356153, 0.2540135], [12.1, 267.3313805925645, 0.36123618], [12.11, 237.36284141397783, 0.3428973], [12.12, 219.04400931507553, 0.36736962], [12.13, 188.66777486039575, 0.33913162], [12.14, 179.77945194573635, 0.26089156], [12.15, 156.71368094235245, 0.2837571], [12.16, 158.44133021337439, 0.17607822], [12.17, 162.37053173000982, 0.27693483], [12.18, 166.75587864409874, 0.27063328], [12.19, 165.4768138788292, 0.33758402], [12.2, 164.49969918118154, 0.45669857], [12.21, 163.40727455779373, 0.42753562], [12.22, 163.91734053157097, 0.50612223], [12.23, 164.86707009997747, 0.42439514], [12.24, 168.48546040658925, 0.626422], [12.25, 171.18771853980704, 0.6269918], [12.26, 171.40548053566746, 0.70644736], [12.27, 170.76813545216135, 0.69206566], [12.28, 169.3051989567341, 0.5527044], [12.29, 166.24909571176977, 0.6017842], [12.3, 164.1478017004383, 0.5282222], [12.31, 162.20712789984213, 0.5355369], [12.32, 160.90664382107065, 0.4825514], [12.33, 159.53864545788383, 0.30396545], [12.34, 158.71461158430515, 0.3844385], [12.35, 155.08828450886642, 0.56933856], [12.36, 155.478293574137, 0.7006142], [12.37, 154.8743064618589, 0.7929863], [12.38, 151.59641341339682, 0.7621367], [12.39, 147.15456032899093, 0.6807269], [12.4, 144.9033202220091, 0.69026506], [12.41, 143.06380907838187, 0.65922445], [12.42, 142.05264226409255, 0.4870105], [12.43, 140.53162983049603, 0.3319178], [12.44, 138.5611251748257, 0.18901823], [12.45, 137.3924305420469, 0.15650967], [12.46, 139.85090821973972, 0.12184808], [12.47, 139.96647961278745, 0.16871592], [12.48, 140.7879798672338, 0.17974153], [12.49, 140.85732026970456, 0.12201342], [12.5, 139.38465798854406, 0.16364011], [12.51, 139.57814311748183, 0.14727369], [12.52, 139.3984491579332, 0.25184232], [12.53, 138.939278481546, 0.14403938], [12.54, 137.18448915675677, 0.1284381], [12.55, 137.54808558881925, 0.24181981], [12.56, 138.5356419712216, 0.23674579], [12.57, 138.99725093939043, 0.29718947], [12.58, 139.98267936167775, 0.44165525], [12.59, 139.79175777207723, 0.49365342], [12.6, 138.17372735479498, 0.3451468], [12.61, 139.33842594859075, 0.3322729], [12.62, 140.9429438061611, 0.29948312], [12.63, 157.26406102934044, 0.25574702], [12.64, 157.9290392619964, 0.3740665], [12.65, 160.59856011274178, 0.41656095], [12.66, 183.53738854523414, 0.3938308], [12.67, 208.21893299456048, 0.4656982], [12.68, 233.39862541057573, 0.3086164], [12.69, 264.28365522579725, 0.2654316], [12.7, 289.7302751245501, 0.22249211], [12.71, 335.6164394051241, 0.41017953], [12.72, 371.67579490420957, 0.5052944], [12.73, 370.7113536433427, 0.5473025], [12.74, 368.00966521353985, 0.6355997], [12.75, 367.96867780258486, 0.62404394], [12.76, 365.5202486251228, 0.51272315], [12.77, 361.23582816536185, 0.43888745], [12.78, 365.3500404464337, 0.489471], [12.79, 364.59432240370796, 0.52067834], [12.8, 365.84954694912426, 0.62581515], [12.81, 364.5762955341653, 0.6422051], [12.82, 363.16174761302506, 0.60214245], [12.83, 360.42566265865304, 0.68503726], [12.84, 360.6811420146374, 0.619117], [12.85, 358.74870447864225, 0.5340721], [12.86, 355.164537789569, 0.35994068], [12.87, 357.0385237239265, 0.11916199], [12.88, 353.90148891427117, 0.16042669], [12.89, 351.6308836207328, 0.34894666], [12.9, 358.9517696938901, 0.53554827], [12.91, 356.2599353870388, 0.36359566], [12.92, 360.3417706480898, 0.38436106], [12.93, 362.9698881929929, 0.3515712], [12.94, 358.9486934118247, 0.25909927], [12.95, 358.6488879567439, 0.19207393], [12.96, 356.6931318035522, 0.31959397], [12.97, 354.6747869697914, 0.28745726], [12.98, 352.22116426305786, 0.40240642], [12.99, 350.6347748746362, 0.53540057], [13.0, 347.404446722211, 0.5627362], [13.01, 345.5113313139654, 0.46311712], [13.02, 342.4537621216509, 0.6043719], [13.03, 338.1843945285698, 0.7152112], [13.04, 337.5731200417306, 0.61621433], [13.05, 333.96285162667203, 0.50243497], [13.06, 333.0873745614442, 0.5058426], [13.07, 327.0270571275256, 0.33660012], [13.08, 339.26936906513043, 0.21598126], [13.09, 355.30155646292746, 0.21174726], [13.1, 359.4375067286322, 0.45036802], [13.11, 358.5069068655352, 0.5364557], [13.12, 361.1969622271922, 0.71300775], [13.13, 360.60680454833994, 0.3437287], [13.14, 361.12998915929376, 0.4819649], [13.15, 359.9548738294459, 0.40662813], [13.16, 361.1721003507878, 0.35818684], [13.17, 359.20254943847533, 0.32798377], [13.18, 357.41426711773545, 0.5271271], [13.19, 356.2422428453791, 0.71785617], [13.2, 359.5542298550156, 0.7419715], [13.21, 360.5704261526065, 0.7311935], [13.22, 360.29100684028265, 0.76016444], [13.23, 359.82801168080016, 0.72165066], [13.24, 359.70714090215046, 0.57490623], [13.25, 358.3045631813943, 0.5747589], [13.26, 350.83204089343786, 0.28807658], [13.27, 367.31944748835025, 0.21264781], [13.28, 381.7046774550815, 0.24113329], [13.29, 388.86608548078976, 0.10547199], [13.3, 385.430075655978, 0.14762786], [13.31, 385.77893644904947, 0.1555568], [13.32, 383.7599930405502, 0.22133896], [13.33, 380.1890866366415, 0.2529796], [13.34, 387.36529151971985, 0.5137267], [13.35, 390.06284426994233, 0.6097905], [13.36, 392.39985649683706, 0.61500525], [13.37, 391.94846162770347, 0.56692284], [13.38, 396.49818135301734, 0.58532774], [13.39, 396.18091802691333, 0.606415], [13.4, 393.6299176729147, 0.5743882], [13.41, 386.65141198841764, 0.59207565], [13.42, 375.8040860941754, 0.4463045], [13.43, 370.78161330002183, 0.4947347], [13.44, 363.3912483078853, 0.295096], [13.45, 361.93550305484325, 0.37098223], [13.46, 360.05713396616505, 0.5683657], [13.47, 359.09002000239815, 0.5137727], [13.48, 355.4247749583005, 0.63686085], [13.49, 355.83122362330573, 0.768237], [13.5, 353.6678049222281, 0.7964919], [13.51, 351.51865099195686, 0.81989807], [13.52, 351.6547635519406, 0.8265725], [13.53, 349.89224192882637, 0.8319051], [13.54, 350.14631402233243, 0.8541967], [13.55, 348.9991038576561, 0.8327148], [13.56, 348.82951818114344, 0.8402325], [13.57, 348.57105698141356, 0.8289184], [13.58, 348.29848021115185, 0.81503993], [13.59, 350.3858148409556, 0.86949277], [13.6, 350.83640170684055, 0.8515597], [13.61, 350.2743649844586, 0.8461413], [13.62, 348.70013888511374, 0.79879665], [13.63, 347.2902515579393, 0.7710454], [13.64, 346.76024448764514, 0.7700782], [13.65, 346.84539479080104, 0.69213897], [13.66, 351.21803775173237, 0.5178646], [13.67, 350.4846511311894, 0.21347933], [13.68, 350.88495693809165, 0.097636916], [13.69, 351.4686184016783, 0.08529687], [13.7, 348.5118478825352, 0.18114942], [13.71, 347.7751980982881, 0.1619076], [13.72, 356.32327442317194, 0.19301054], [13.73, 364.72801728121135, 0.16002545], [13.74, 366.70367080045105, 0.16553627], [13.75, 365.74072825394063, 0.20309484], [13.76, 364.26683915041707, 0.34575576], [13.77, 362.67194849493546, 0.26021516], [13.78, 353.6200709269889, 0.16670614], [13.79, 354.73365742425847, 0.406374], [13.8, 355.62794362896335, 0.66141623], [13.81, 355.65566540447657, 0.80016714], [13.82, 353.87367697357354, 0.8065037], [13.83, 354.34804379991135, 0.78206176], [13.84, 354.6867949219562, 0.5567049], [13.85, 360.4443675104378, 0.305572], [13.86, 368.3360888897365, 0.26793507], [13.87, 373.3446087710206, 0.4323802], [13.88, 385.7075862396229, 0.5064356], [13.89, 402.99776774610837, 0.24579789], [13.9, 417.80835799719455, 0.3204729], [13.91, 420.10337348782537, 0.18748507], [13.92, 423.9026223225783, 0.21122392], [13.93, 423.27245795045985, 0.27515146], [13.94, 424.9586371070616, 0.44638532], [13.95, 421.27883169761344, 0.2891401], [13.96, 422.7599180188826, 0.16769193], [13.97, 366.52493859577623, 0.09945999], [13.98, 336.4039693189116, 0.15230818], [13.99, 339.6083565051532, 0.3102438], [14.0, 336.8625693616897, 0.6282561], [14.01, 335.35706209895636, 0.70109], [14.02, 335.51011190458803, 0.7348858], [14.03, 335.46404337944216, 0.7736521], [14.04, 334.97234784661634, 0.6936918], [14.05, 335.72049107656676, 0.7048765], [14.06, 334.4987885087213, 0.72187465], [14.07, 332.6359163984852, 0.66739553], [14.08, 331.40682745905883, 0.65441746], [14.09, 331.7234411978486, 0.4346838], [14.1, 332.7938910403591, 0.19426638], [14.11, 333.50001798242226, 0.16752318], [14.12, 335.9621592048478, 0.15434264], [14.13, 341.80985022337956, 0.27359444], [14.14, 348.33628532144354, 0.5614938], [14.15, 357.9839160677012, 0.6953921], [14.16, 362.2816823842322, 0.6766058], [14.17, 360.14240781262515, 0.6618362], [14.18, 360.5270133621665, 0.6103567], [14.19, 357.12480772124906, 0.62182045], [14.2, 359.00234808362177, 0.59479994], [14.21, 357.3070973138189, 0.452014], [14.22, 350.71561253547964, 0.36919132], [14.23, 348.1411801513211, 0.5432622], [14.24, 343.375726456352, 0.5842699], [14.25, 340.0860519116117, 0.61250645], [14.26, 339.227790282196, 0.6183626], [14.27, 339.7659657130541, 0.56602407], [14.28, 339.3389709802392, 0.47821823], [14.29, 337.36205372753295, 0.39504883], [14.3, 333.94744857248827, 0.40046546], [14.31, 331.3011137348522, 0.47103372], [14.32, 331.83022072563153, 0.28753412], [14.33, 332.6915476108252, 0.44600633], [14.34, 332.952388098268, 0.41420838], [14.35, 331.11145342777775, 0.4686419], [14.36, 329.474486287175, 0.25399902], [14.37, 331.95085746124266, 0.08683103], [14.38, 332.64497563412044, 0.19459933], [14.39, 331.07017374388016, 0.1905797], [14.4, 332.1614962822092, 0.10294408], [14.41, 329.9771350870561, 0.11640215], [14.42, 332.25198162363876, 0.10371404], [14.43, 331.83678520900355, 0.12027845], [14.44, 319.41481655777363, 0.48976263], [14.45, 284.4198982128433, 0.53462315], [14.46, 270.5916428140189, 0.42221308], [14.47, 246.86478714674746, 0.16196454], [14.48, 230.82034771021515, 0.44369575], [14.49, 231.21071346200216, 0.7542677], [14.5, 231.9225360042352, 0.800947], [14.51, 231.3250117084918, 0.76836765], [14.52, 231.39781763086, 0.8057132], [14.53, 231.2857610340612, 0.8269008], [14.54, 232.5782145818681, 0.8472465], [14.55, 233.66448909474764, 0.9040115], [14.56, 234.85253466763004, 0.88728464], [14.57, 235.9043620513321, 0.89221275], [14.58, 235.98331326027926, 0.89489186], [14.59, 235.6884046422957, 0.89768016], [14.6, 234.4554159418492, 0.88239306], [14.61, 232.37004499049775, 0.83331656], [14.62, 229.12815213543297, 0.8234293], [14.63, 225.59854277791888, 0.84124863], [14.64, 223.3504886078162, 0.82007015], [14.65, 220.46901718375975, 0.48102632], [14.66, 236.63761224514946, 0.3801976], [14.67, 245.3377858820807, 0.549016], [14.68, 252.0277595294475, 0.69250983], [14.69, 256.8419457502137, 0.7229391], [14.7, 259.8507126048435, 0.7147653], [14.71, 265.1561093068826, 0.6469593], [14.72, 271.06493586500505, 0.6408475], [14.73, 276.85320504691794, 0.71187216], [14.74, 278.28607960741067, 0.7768812], [14.75, 278.62078345418206, 0.7887108], [14.76, 277.9992177694243, 0.80338466], [14.77, 276.8129214543236, 0.79321355], [14.78, 277.3886779827187, 0.77947235], [14.79, 276.0125203166262, 0.7377989], [14.8, 277.8035960840831, 0.80061066], [14.81, 280.9718347351426, 0.8706134], [14.82, 281.6765152182947, 0.8579437], [14.83, 284.8884571171806, 0.8260075], [14.84, 285.89124015664424, 0.83412427], [14.85, 284.40010060108057, 0.7776966], [14.86, 281.479537972008, 0.715647], [14.87, 277.0549546560012, 0.5077653], [14.88, 268.4049504400289, 0.2663769], [14.89, 295.36007729309085, 0.23008263], [14.9, 321.2509433727695, 0.36273822], [14.91, 362.3339891122186, 0.4098209], [14.92, 379.5282885529744, 0.36843723], [14.93, 377.05905403640094, 0.23016688], [14.94, 369.09972924729226, 0.3103859], [14.95, 342.8719002874042, 0.14353636], [14.96, 332.7431227097841, 0.18004395], [14.97, 326.1700138305433, 0.25400808], [14.98, 308.3539827593803, 0.41355225], [14.99, 304.6663994275463, 0.42300975], [15.0, 306.58482390351435, 0.43432653], [15.01, 304.92043585032866, 0.2706942], [15.02, 306.63449812682416, 0.16361648], [15.03, 299.54826987809565, 0.21480362], [15.04, 287.4062452221186, 0.13193296], [15.05, 280.01286560542394, 0.16673037], [15.06, 275.0322405857417, 0.17584468], [15.07, 270.1400444284313, 0.15988359], [15.08, 270.6203372233642, 0.52870524], [15.09, 273.96799995120307, 0.71280414], [15.1, 275.40425468991884, 0.8065509], [15.11, 275.6883944200214, 0.82360667], [15.12, 275.60854186306756, 0.81828624], [15.13, 277.03897543808876, 0.82732457], [15.14, 277.39034744503954, 0.8678435], [15.15, 278.0019345778471, 0.89034504], [15.16, 278.3512770078226, 0.9021775], [15.17, 279.61468837195974, 0.8914854], [15.18, 280.0848663333902, 0.89962566], [15.19, 279.57149404289555, 0.90334976], [15.2, 278.8008433059877, 0.91685903], [15.21, 277.9838790328018, 0.91625017], [15.22, 277.07386644788863, 0.9025681], [15.23, 276.1996917330184, 0.8760564], [15.24, 275.7616090671031, 0.8617236], [15.25, 274.86746068952874, 0.8226772], [15.26, 273.20609352054464, 0.7655729], [15.27, 269.7762027766056, 0.7482114], [15.28, 266.10217770124524, 0.7401434], [15.29, 267.9401929534181, 0.70188355], [15.3, 271.859888049312, 0.758166], [15.31, 275.7004581472672, 0.8115985], [15.32, 279.7792170689451, 0.8808061], [15.33, 280.51436028908114, 0.9131034], [15.34, 279.66400676391623, 0.89777565], [15.35, 277.50345299277393, 0.89917904], [15.36, 275.5947449202704, 0.87804335], [15.37, 274.24682562369037, 0.85858035], [15.38, 273.4109228710834, 0.8426646], [15.39, 273.9614707022672, 0.85523725], [15.4, 274.0009635097565, 0.8527902], [15.41, 275.66650449028464, 0.8792361], [15.42, 277.30008980629975, 0.8957492], [15.43, 278.3105218801992, 0.9085032], [15.44, 278.3869513108779, 0.8997915], [15.45, 277.96943828189956, 0.882468], [15.46, 277.195919503996, 0.8690195], [15.47, 276.016606310778, 0.8459436], [15.48, 273.8079737415367, 0.8267288], [15.49, 268.2616582333193, 0.8044534], [15.5, 261.0140138429581, 0.7182889], [15.51, 256.9022057702266, 0.70331293], [15.52, 254.15358716902932, 0.7255084], [15.53, 253.85155682087384, 0.71008736], [15.54, 257.9371382210412, 0.70940274], [15.55, 263.1129494469867, 0.6439672], [15.56, 271.99254207607817, 0.69886225], [15.57, 277.77058451397943, 0.8552495], [15.58, 279.32919884042303, 0.8647756], [15.59, 278.67508881113076, 0.8499236], [15.6, 276.69914944877564, 0.82190716], [15.61, 274.50013923244205, 0.8198402], [15.62, 273.653017726975, 0.80754364], [15.63, 273.27077329427584, 0.8109778], [15.64, 273.60013009053466, 0.8323576], [15.65, 274.3118955133452, 0.8582748], [15.66, 275.4517938292786, 0.8691488], [15.67, 277.9391749495235, 0.8971662], [15.68, 279.90750492562233, 0.88761216], [15.69, 280.5293968305609, 0.8960517], [15.7, 279.7020684981733, 0.87143695], [15.71, 278.3498041182809, 0.8804439], [15.72, 275.8136617128066, 0.80801696], [15.73, 271.2122605184975, 0.7621482], [15.74, 268.37542493679996, 0.790608], [15.75, 269.4163041164627, 0.7209134], [15.76, 275.64484899609204, 0.756511], [15.77, 277.3237451079055, 0.78025866], [15.78, 278.12446190263637, 0.82941616], [15.79, 277.5600489048349, 0.770394], [15.8, 278.1286357597495, 0.7636331], [15.81, 275.2592697989149, 0.65920806], [15.82, 272.95128054492056, 0.62476987], [15.83, 276.582602575901, 0.6166531], [15.84, 278.57401940703005, 0.74417126], [15.85, 277.92061353940005, 0.6928616], [15.86, 278.21163289885465, 0.6423887], [15.87, 322.1310409465406, 0.36477703], [15.88, 354.567436918938, 0.48681852], [15.89, 353.3992106462705, 0.72711366], [15.9, 351.1523679953779, 0.80973876], [15.91, 349.80554613399727, 0.85107434], [15.92, 350.0130432259708, 0.8127779], [15.93, 350.62408024412787, 0.6368001], [15.94, 347.7467183974196, 0.18180093], [15.95, 343.40320750839345, 0.071195565], [15.96, 338.1775884422324, 0.30481538], [15.97, 328.37914287839334, 0.37914175], [15.98, 325.85095337584573, 0.21161878], [15.99, 323.24621281933105, 0.25569797], [16.0, 322.3818491783629, 0.23135565], [16.01, 321.8068308774982, 0.12705629], [16.02, 317.53107014738936, 0.12389094], [16.03, 310.5994507360571, 0.15094455], [16.04, 311.6846395952841, 0.1712364], [16.05, 307.1047725494643, 0.2558631], [16.06, 307.53693938664406, 0.57831633], [16.07, 299.96595349208957, 0.662034], [16.08, 290.75830652727814, 0.48457283], [16.09, 283.64458520292953, 0.109805316], [16.1, 278.05259779726055, 0.0484091], [16.11, 281.36008094676333, 0.37230384], [16.12, 280.6134951868322, 0.69237643], [16.13, 280.94069399888605, 0.81542635], [16.14, 281.43986129441055, 0.85789907], [16.15, 279.57543968529603, 0.8448054], [16.16, 277.07566865313345, 0.83310694], [16.17, 273.0750074261819, 0.8288885], [16.18, 272.18753281067603, 0.8491201], [16.19, 271.8157835628535, 0.8599078], [16.2, 273.1827019867765, 0.84476817], [16.21, 274.5779723260606, 0.8535628], [16.22, 275.2042068441912, 0.8421671], [16.23, 275.65279469271553, 0.8576048], [16.24, 275.84622511490574, 0.8614981], [16.25, 276.73563900439507, 0.8577956], [16.26, 276.70812871933344, 0.8371434], [16.27, 277.19814610548167, 0.838656], [16.28, 277.9627092078783, 0.8488752], [16.29, 277.93058303669176, 0.84983397], [16.3, 277.4786816936096, 0.8441682], [16.31, 276.70765069181914, 0.8308387], [16.32, 276.98540505222246, 0.8392244], [16.33, 277.7583776560774, 0.8668472], [16.34, 278.0535612114144, 0.87588525], [16.35, 278.021356823761, 0.8636975], [16.36, 277.79209935840606, 0.848671], [16.37, 278.77640814353083, 0.8226556], [16.38, 278.28358038751026, 0.76543534], [16.39, 276.756793294713, 0.6184204], [16.4, 277.69350238814764, 0.59822476], [16.41, 275.868468040318, 0.41786543], [16.42, 245.3584481837426, 0.29625124], [16.43, 217.71283629381384, 0.21302307], [16.44, 196.70212117386157, 0.1905378], [16.45, 196.28572997708548, 0.48155758], [16.46, 197.54151307176375, 0.60066336], [16.47, 200.48520737114808, 0.59160525], [16.48, 206.12658727661508, 0.6869777], [16.49, 209.14162535659653, 0.7610753], [16.5, 210.25794709407188, 0.8186631], [16.51, 209.3728845856471, 0.82363266], [16.52, 207.65037968951603, 0.8464192], [16.53, 206.64270662400884, 0.8569457], [16.54, 206.72144075382872, 0.84998614], [16.55, 207.38403500134825, 0.8675045], [16.56, 209.259763401577, 0.85293555], [16.57, 211.45654750942896, 0.8540989], [16.58, 212.4756824006346, 0.86921316], [16.59, 211.27192758434742, 0.847432], [16.6, 209.14214637937252, 0.82141167], [16.61, 206.72087845533568, 0.81855863], [16.62, 203.6054636768797, 0.7908551], [16.63, 199.5454845313628, 0.76785207], [16.64, 195.11648019126739, 0.519135], [16.65, 184.94791891359785, 0.5466969], [16.66, 177.5546619772166, 0.5950842], [16.67, 171.73285098430273, 0.76856786], [16.68, 167.5917357633184, 0.81344527], [16.69, 164.3221538321056, 0.7885926], [16.7, 162.78665969123375, 0.81680095], [16.71, 163.87892721438885, 0.7611587], [16.72, 166.8648411910832, 0.7430981], [16.73, 171.25037349966493, 0.7337541], [16.74, 174.4243309631513, 0.7010031], [16.75, 176.30288814474764, 0.7329299], [16.76, 176.45279418942874, 0.7549276], [16.77, 174.92101614754506, 0.7613428], [16.78, 173.05774222349567, 0.79656327], [16.79, 171.47201748228824, 0.77849525], [16.8, 171.3175940343042, 0.8029722], [16.81, 170.9843720465097, 0.7938482], [16.82, 170.88539088043777, 0.7978276], [16.83, 172.43556354720795, 0.803998], [16.84, 174.97184397468206, 0.751739], [16.85, 178.16820560357758, 0.735312], [16.86, 180.83857246060774, 0.80933213], [16.87, 181.75544330418745, 0.8158701], [16.88, 182.91371016900348, 0.78728443], [16.89, 183.7064309768586, 0.46211118], [16.9, 186.2400969233228, 0.40542218], [16.91, 193.8101415817065, 0.217963], [16.92, 196.22929503072842, 0.0858281], [16.93, 198.053766499095, 0.16858724], [16.94, 201.88341213373448, 0.2745647], [16.95, 205.85664372148213, 0.15537041], [16.96, 207.5131677951504, 0.07545249], [16.97, 207.10693907561037, 0.055665843], [16.98, 209.66003326713684, 0.16988997], [16.99, 210.9100463168892, 0.35045972], [17.0, 209.3551885976404, 0.5962289], [17.01, 206.53926303632738, 0.648962], [17.02, 205.45862215708706, 0.723645], [17.03, 205.58628189983023, 0.757234], [17.04, 205.24657562502352, 0.7332319], [17.05, 205.74845204400032, 0.68706185], [17.06, 206.92419597666824, 0.6183184], [17.07, 208.04384230002339, 0.6136843], [17.08, 209.0766577430597, 0.6773895], [17.09, 209.23720829458568, 0.70399225], [17.1, 209.81844445680315, 0.7300613], [17.11, 210.12280961648452, 0.7439434], [17.12, 210.2639112590505, 0.7819952], [17.13, 210.39261393798267, 0.7792886], [17.14, 210.03643437048765, 0.76863676], [17.15, 208.7051445699693, 0.78586274], [17.16, 207.7089135571831, 0.79670703], [17.17, 205.90653851035927, 0.81123364], [17.18, 204.46790790439312, 0.7917706], [17.19, 204.11317018643996, 0.8307481], [17.2, 204.5309694397594, 0.8202408], [17.21, 205.7437697794887, 0.84810835], [17.22, 207.0326796337706, 0.83872867], [17.23, 208.3661926595076, 0.85909355], [17.24, 208.9253255682773, 0.8371392], [17.25, 208.4704726726473, 0.8205433], [17.26, 207.45594698059435, 0.79438096], [17.27, 206.8505159164114, 0.7950391], [17.28, 206.48383171315112, 0.7938886], [17.29, 206.34510919764793, 0.8203916], [17.3, 205.5076608154958, 0.8403762], [17.31, 203.29402851727647, 0.81255156], [17.32, 200.01509647865234, 0.7621894], [17.33, 195.7712375754335, 0.7641802], [17.34, 191.67633781781262, 0.7862361], [17.35, 188.8766396878732, 0.8058857], [17.36, 188.3461785467293, 0.8237974], [17.37, 189.55440428503425, 0.8286267], [17.38, 192.01848732805348, 0.7678204], [17.39, 197.41397491220147, 0.50196606], [17.4, 205.2525787456383, 0.749862], [17.41, 207.14107886503368, 0.83234084], [17.42, 207.47798919681313, 0.85214126], [17.43, 206.64109463243983, 0.8242873], [17.44, 206.83333067937295, 0.8327211], [17.45, 207.5050657438893, 0.84109956], [17.46, 208.177502481702, 0.836489], [17.47, 209.71156697727994, 0.812202], [17.48, 209.8997963411111, 0.8025441], [17.49, 210.06095008672747, 0.8094343], [17.5, 209.85064871703128, 0.7985497], [17.51, 208.30847180555554, 0.84045315], [17.52, 207.39854099732207, 0.80452293], [17.53, 206.18308268697393, 0.82041794], [17.54, 205.64633943481286, 0.804443], [17.55, 204.67408938071964, 0.78224814], [17.56, 203.47146256268402, 0.7861575], [17.57, 225.33533041823137, 0.73159], [17.58, 260.10521220113, 0.59546626], [17.59, 281.8189307380713, 0.49722764], [17.6, 280.4691445329351, 0.69527125], [17.61, 280.09993162218706, 0.7284919], [17.62, 278.77483635179095, 0.82404906], [17.63, 277.64126221138747, 0.79309034], [17.64, 277.10097284460727, 0.7627976], [17.65, 277.64308721660416, 0.748833], [17.66, 275.58601629749063, 0.5963775], [17.67, 275.92930737570737, 0.50008386], [17.68, 276.7813661329715, 0.39078644], [17.69, 278.31194524601193, 0.56288254], [17.7, 278.3619884501538, 0.42565146], [17.71, 276.89643439731606, 0.342088], [17.72, 275.4781480128719, 0.43612605], [17.73, 276.5179091882607, 0.57291335], [17.74, 279.86258092933366, 0.75332516], [17.75, 280.97034782201604, 0.82687306], [17.76, 282.9231179034064, 0.81172174], [17.77, 283.94442870325213, 0.6315245], [17.78, 317.55302324968636, 0.4357035], [17.79, 351.18552316489695, 0.5356831], [17.8, 350.0896663510688, 0.6648612], [17.81, 349.5079815434001, 0.6948535], [17.82, 349.3025550617452, 0.30387592], [17.83, 352.8950418726027, 0.09763096], [17.84, 359.55828732865155, 0.098502494], [17.85, 358.30997954242673, 0.20243937], [17.86, 355.70684325161494, 0.3130479], [17.87, 356.6762940813146, 0.124988824], [17.88, 360.10988305858075, 0.28220522], [17.89, 364.7369808936554, 0.1936178], [17.9, 369.8214630976428, 0.15757671], [17.91, 371.7115614131831, 0.12875685], [17.92, 371.315888718969, 0.17288364], [17.93, 365.24936455964803, 0.13224542], [17.94, 362.6562238446132, 0.09237577], [17.95, 360.5870496934556, 0.41104823], [17.96, 356.1856626256827, 0.5694807], [17.97, 354.8706342263941, 0.7141753], [17.98, 355.1659742529039, 0.7692515], [17.99, 353.28283421059064, 0.7915736], [18.0, 351.9581650410132, 0.7788748], [18.01, 354.0469624855671, 0.7245733], [18.02, 354.1083495988655, 0.7074435], [18.03, 349.5889657730632, 0.5465311], [18.04, 341.5190501324091, 0.34504122], [18.05, 338.019073930535, 0.21947637], [18.06, 304.58537048114044, 0.21457268], [18.07, 276.5782302323249, 0.4737841], [18.08, 277.17613590207225, 0.68267924], [18.09, 274.0336496131638, 0.66652197], [18.1, 275.6694345571669, 0.7427364], [18.11, 277.24447186272664, 0.8487736], [18.12, 278.17703689329096, 0.8718192], [18.13, 278.5247850936888, 0.71793634], [18.14, 280.228880017327, 0.28863665], [18.15, 291.10108812094217, 0.045441333], [18.16, 319.0528391422043, 0.039257385], [18.17, 341.6486845639487, 0.11759734], [18.18, 354.31472514927066, 0.5199807], [18.19, 352.1170367137975, 0.62229997], [18.2, 350.16343763048656, 0.6489907], [18.21, 350.92352054476646, 0.52315], [18.22, 351.5875235891977, 0.4088346], [18.23, 354.60465383933706, 0.4125228], [18.24, 353.55138942760306, 0.40138817], [18.25, 354.0572942188719, 0.6569824], [18.26, 353.26732558874073, 0.6515715], [18.27, 350.4276291779447, 0.514632], [18.28, 347.5546446752038, 0.43673745], [18.29, 304.63877585373774, 0.3840695], [18.3, 266.52823784685535, 0.15363342], [18.31, 232.5191529714903, 0.44146895], [18.32, 208.41985297412214, 0.44434828], [18.33, 204.55229130747495, 0.27201366], [18.34, 197.4026832001632, 0.36869627], [18.35, 197.27860819242463, 0.7371231], [18.36, 198.5292364786879, 0.7721156], [18.37, 201.8245746370292, 0.75797504], [18.38, 205.23414519059858, 0.8145184], [18.39, 207.50194132132006, 0.86958665], [18.4, 208.14058065586084, 0.87166816], [18.41, 207.57800841266504, 0.87229043], [18.42, 206.82601267759884, 0.8629605], [18.43, 206.8793649743242, 0.8631313], [18.44, 206.83477297345976, 0.85878724], [18.45, 207.20349820260418, 0.87565845], [18.46, 207.3055089824034, 0.8346808], [18.47, 206.6420642011056, 0.7256138], [18.48, 207.49436627519114, 0.62065387], [18.49, 207.7176134951063, 0.5140923], [18.5, 205.2010049275725, 0.5159371], [18.51, 230.84590363737271, 0.20702958], [18.52, 257.2508134468976, 0.36234513], [18.53, 281.5831083626245, 0.62476885], [18.54, 278.9080045137274, 0.6427731], [18.55, 277.682009319877, 0.64303166], [18.56, 274.2953556873957, 0.5967821], [18.57, 264.6948996130312, 0.34934598], [18.58, 235.52470739011545, 0.52080077], [18.59, 237.13712331605444, 0.61040884], [18.6, 238.65613294588456, 0.7982474], [18.61, 238.06885501226358, 0.8341635], [18.62, 237.49920236929978, 0.83992445], [18.63, 235.2544059357923, 0.823942], [18.64, 232.59480307442217, 0.83286685], [18.65, 229.2172659272687, 0.8365483], [18.66, 226.64142778250323, 0.8188375], [18.67, 222.53431901397624, 0.73636246], [18.68, 219.9742036808293, 0.6416279], [18.69, 217.615571071126, 0.4255941], [18.7, 249.27095938031619, 0.13046524], [18.71, 280.00621105673844, 0.23248604], [18.72, 282.29093814993263, 0.26030743], [18.73, 279.8647917005606, 0.17295612], [18.74, 273.36306657171644, 0.22985342], [18.75, 266.19264602312546, 0.24881178], [18.76, 262.88259885643265, 0.12834008], [18.77, 257.93458963439394, 0.14738245], [18.78, 257.0162012118778, 0.18872236], [18.79, 255.64367738324094, 0.15862669], [18.8, 250.35421467651253, 0.15329596], [18.81, 247.32566752747186, 0.35264048], [18.82, 246.56213408062268, 0.12837876], [18.83, 241.30948122789508, 0.13478875], [18.84, 235.42229607805606, 0.2369487], [18.85, 236.352357054246, 0.32589343], [18.86, 265.29539177832015, 0.2232777], [18.87, 270.5073139795953, 0.45980936], [18.88, 276.1762435447157, 0.6511899], [18.89, 278.7044704467345, 0.8433259], [18.9, 278.58294724401, 0.868386], [18.91, 276.19660178299364, 0.82209694], [18.92, 275.00215353221404, 0.828999], [18.93, 274.2813249774458, 0.8312271], [18.94, 274.01418034290714, 0.81480116], [18.95, 274.89513713318775, 0.83476156], [18.96, 275.5128730974209, 0.8303365], [18.97, 275.7411049500118, 0.8250295], [18.98, 275.6719686383546, 0.8375507], [18.99, 276.1597827233306, 0.8390054], [19.0, 277.1461296778731, 0.8571147], [19.01, 278.771824940224, 0.8577649], [19.02, 281.12971437188867, 0.83065844], [19.03, 283.4162822311302, 0.73997617], [19.04, 284.81108787043473, 0.7800209], [19.05, 282.8731360955033, 0.81864494], [19.06, 281.62030997091284, 0.8578106], [19.07, 279.5315872835862, 0.7997021], [19.08, 277.2774067705972, 0.5935075], [19.09, 270.7044523242125, 0.4790888], [19.1, 259.91171769876394, 0.5191579], [19.11, 262.76832272367835, 0.6369655], [19.12, 260.2098114903578, 0.7704986], [19.13, 258.2283498304836, 0.6661683], [19.14, 255.9448467517349, 0.629891], [19.15, 252.93538167423839, 0.43807313], [19.16, 253.57343895998793, 0.18294092], [19.17, 246.72564435047153, 0.18912897], [19.18, 239.01330312881416, 0.17205384], [19.19, 245.57394418531806, 0.5195565], [19.2, 250.6988951010622, 0.6852912], [19.21, 255.68109551301245, 0.723771], [19.22, 261.190755484946, 0.7445594], [19.23, 264.3104115249552, 0.8402221], [19.24, 267.6949550495434, 0.8333388], [19.25, 270.54064319197124, 0.8046748], [19.26, 274.8257577016986, 0.8162436], [19.27, 277.9266996408051, 0.87469393], [19.28, 278.46804227883354, 0.8779501], [19.29, 278.1053930631718, 0.8807024], [19.3, 277.7270615471069, 0.884292], [19.31, 277.3194340811277, 0.8732988], [19.32, 276.7167738147106, 0.86921996], [19.33, 276.0100189432855, 0.8647182], [19.34, 275.3879201063971, 0.8601394], [19.35, 275.6583869701211, 0.8682215], [19.36, 276.2939414635454, 0.85473716], [19.37, 277.2588331323702, 0.8737731], [19.38, 278.5281042740706, 0.8980956], [19.39, 278.7259565010934, 0.8859544], [19.4, 279.0151151427904, 0.8829165], [19.41, 278.6212075916894, 0.8781242], [19.42, 277.8531258124172, 0.87245494], [19.43, 276.73904860935545, 0.82986975], [19.44, 276.17978357053084, 0.82181317], [19.45, 276.07107229618987, 0.84447795], [19.46, 276.0987037797991, 0.84095865], [19.47, 276.7400601651967, 0.8088264], [19.48, 276.3459226860931, 0.7846484], [19.49, 276.9145071059367, 0.71866196], [19.5, 276.29759132071825, 0.69648093], [19.51, 274.97103682369976, 0.537454], [19.52, 273.7370073427453, 0.5558129], [19.53, 272.83433221801266, 0.45254615], [19.54, 274.5607535930235, 0.59144723], [19.55, 277.1142259463777, 0.48751163], [19.56, 277.9855520376031, 0.6683311], [19.57, 278.1536811753675, 0.8523419], [19.58, 279.6389665596929, 0.8804739], [19.59, 279.9403448702201, 0.8950736], [19.6, 278.7165213229041, 0.9077556], [19.61, 277.5430315226635, 0.89086044], [19.62, 276.5102392855641, 0.865691], [19.63, 276.11767132660765, 0.8675408], [19.64, 274.9624545545827, 0.87364423], [19.65, 272.76020714882003, 0.83510214], [19.66, 269.26778553965283, 0.8059147], [19.67, 264.50550053870404, 0.78857255], [19.68, 260.4886491770119, 0.7293086], [19.69, 259.20876604962024, 0.75582993], [19.7, 262.58261999718223, 0.62088966], [19.71, 264.9220421166093, 0.388961], [19.72, 266.4820555689631, 0.23130412], [19.73, 266.56155004647417, 0.24586044], [19.74, 271.1391541627603, 0.179298], [19.75, 273.6026315120267, 0.22332944], [19.76, 274.421417022503, 0.5005584], [19.77, 275.7024845997091, 0.6854352], [19.78, 277.97506002586636, 0.8005052], [19.79, 277.5932478506751, 0.81938875], [19.8, 277.43429613154024, 0.8076051], [19.81, 277.9595631426712, 0.84251714], [19.82, 279.17861071830157, 0.8486893], [19.83, 279.15572584572095, 0.8689018], [19.84, 278.74117321867965, 0.89449453], [19.85, 277.58508988365963, 0.88652986], [19.86, 277.02213741826546, 0.8909189], [19.87, 276.7659601357272, 0.8801136], [19.88, 276.6851904491923, 0.8766074], [19.89, 277.0102198496949, 0.8834852], [19.9, 277.0594936158815, 0.8874177], [19.91, 277.31310947450635, 0.8930764], [19.92, 277.4953194617884, 0.8955664], [19.93, 277.52242316876783, 0.8907199], [19.94, 276.98107483237584, 0.8910572], [19.95, 276.0517141778427, 0.86639535], [19.96, 273.1407952068622, 0.8118777], [19.97, 272.0871946433738, 0.63982433], [19.98, 272.55147671787347, 0.36482736], [19.99, 279.25308374065867, 0.4107424], [20.0, 277.64781974157484, 0.6042137], [20.01, 276.39416650826774, 0.5862362], [20.02, 276.5509245152465, 0.7026042], [20.03, 276.9759626825077, 0.75464076], [20.04, 275.790893027965, 0.7688057], [20.05, 275.15300537476975, 0.800251], [20.06, 275.67207790742873, 0.8164817], [20.07, 275.80974213356444, 0.8434556], [20.08, 276.2885201473621, 0.81968135], [20.09, 277.2309677396809, 0.81825024], [20.1, 277.7894013025237, 0.83358794], [20.11, 278.5861095238378, 0.79541785], [20.12, 279.7211614739564, 0.5692529], [20.13, 283.2937230910812, 0.26470214], [20.14, 290.2947131094148, 0.23590702], [20.15, 289.81979642848, 0.16843167], [20.16, 292.0557067119966, 0.27688807], [20.17, 283.13906097436035, 0.1922847], [20.18, 280.45499663101606, 0.17467979], [20.19, 275.55251233981676, 0.17668818], [20.2, 248.69093577968516, 0.2725785], [20.21, 220.73358908889745, 0.16560423], [20.22, 196.64631792644417, 0.11473727], [20.23, 185.30081784857575, 0.2949121], [20.24, 187.89187655660655, 0.6034604], [20.25, 192.61904643040555, 0.5483152], [20.26, 199.33167278041714, 0.6708103], [20.27, 203.21369032937454, 0.73734796], [20.28, 205.10875763844652, 0.81196094], [20.29, 205.18477837467086, 0.7914004], [20.3, 204.49654836530493, 0.78364635], [20.31, 202.79225472973332, 0.79858845], [20.32, 200.92525749962235, 0.79536766], [20.33, 199.68509960681715, 0.76614237], [20.34, 199.73691031150335, 0.7631943], [20.35, 201.26308550845243, 0.77706563], [20.36, 204.06962062913206, 0.7053979], [20.37, 207.17880580391187, 0.68730336], [20.38, 209.53175945794627, 0.74114656], [20.39, 211.74340395739137, 0.7888224], [20.4, 213.73777344126992, 0.8518549], [20.41, 214.80880051321165, 0.8499414], [20.42, 214.78649757707382, 0.831192], [20.43, 213.74511264521502, 0.82294244], [20.44, 209.49651272162617, 0.7486491], [20.45, 207.25670322204218, 0.8083304], [20.46, 206.28684142169814, 0.8203416], [20.47, 205.67486613859327, 0.8195895], [20.48, 206.36538849632365, 0.81729114], [20.49, 207.57921212011996, 0.82160026], [20.5, 209.17787675837087, 0.79963595], [20.51, 210.54603354551705, 0.78648216], [20.52, 211.486177955733, 0.8062922], [20.53, 211.63112499556988, 0.7917702], [20.54, 210.8259391862852, 0.79859066], [20.55, 209.69703154109297, 0.76781714], [20.56, 207.07844239379344, 0.74301213], [20.57, 203.54503364476471, 0.6684747], [20.58, 196.91712578988825, 0.4981216], [20.59, 188.85254944555862, 0.5487751], [20.6, 184.8527804362513, 0.5252493], [20.61, 181.00416955096415, 0.44571677], [20.62, 176.4512085033523, 0.3346953], [20.63, 173.22615204852178, 0.61142796], [20.64, 164.86591149550702, 0.23004052], [20.65, 160.13169696735272, 0.5145046], [20.66, 151.20390186210827, 0.37030858], [20.67, 148.67295273989419, 0.22950831], [20.68, 145.66555253328656, 0.3863319], [20.69, 143.72738445401632, 0.20147103], [20.7, 161.80668435749962, 0.17999223], [20.71, 180.43594391413424, 0.068530336], [20.72, 196.3612876247529, 0.24998507], [20.73, 201.31172538418804, 0.46968126], [20.74, 205.74617871963468, 0.51785946], [20.75, 208.44849459295304, 0.761811], [20.76, 207.6985651765244, 0.8053388], [20.77, 206.532941490662, 0.7746555], [20.78, 206.19410689439087, 0.7805613], [20.79, 206.49467312897937, 0.7719123], [20.8, 208.29267829922273, 0.765659], [20.81, 209.58339022793797, 0.70364565], [20.82, 211.5250610873952, 0.5493235], [20.83, 214.7537127769634, 0.5607474], [20.84, 217.3402097196836, 0.654987], [20.85, 218.89602566943054, 0.7696221], [20.86, 218.7526251022329, 0.83509314], [20.87, 217.98766939603698, 0.86816394], [20.88, 218.32176726622004, 0.85811764], [20.89, 218.82907274031268, 0.84986645], [20.9, 219.02550349142317, 0.82865584], [20.91, 219.09752423658915, 0.78477806], [20.92, 217.0450363238933, 0.6831432], [20.93, 208.40050190578182, 0.5403927], [20.94, 206.81336108604043, 0.6780077], [20.95, 206.6135297808204, 0.62193006], [20.96, 206.86873960487532, 0.69190824], [20.97, 207.52238074998576, 0.70746714], [20.98, 208.01790771552726, 0.7304743], [20.99, 208.80288244370317, 0.74731296], [21.0, 208.66029472816672, 0.77830184], [21.01, 208.50543960269206, 0.7623738], [21.02, 207.92002157381893, 0.80131114], [21.03, 207.1704601311548, 0.77582127], [21.04, 207.16863329627273, 0.7404105], [21.05, 206.6347994724996, 0.7703467], [21.06, 206.61124477229552, 0.7683783], [21.07, 207.0956220460996, 0.70272046], [21.08, 206.84273178948163, 0.6012308], [21.09, 207.29236551624157, 0.62280375], [21.1, 207.17954690184908, 0.6081548], [21.11, 206.66456770441613, 0.7270975], [21.12, 206.68916474630169, 0.7097742], [21.13, 206.6962063654138, 0.7519711], [21.14, 206.63307321748368, 0.81181], [21.15, 206.6602249349228, 0.7981008], [21.16, 206.76071899259753, 0.8062694], [21.17, 206.97829836107974, 0.8306356], [21.18, 207.23516485547447, 0.7840079], [21.19, 207.85430020222717, 0.685686], [21.2, 207.827308657577, 0.7137167], [21.21, 207.42177213429304, 0.8076106], [21.22, 206.9976874741285, 0.803651], [21.23, 207.0529205630761, 0.8216516], [21.24, 206.81829264260287, 0.8198426], [21.25, 206.37557880548454, 0.8258175], [21.26, 205.73578911788644, 0.8150281], [21.27, 205.58047878726327, 0.7931678], [21.28, 206.22849005885473, 0.7720219], [21.29, 206.52372888649592, 0.7958565], [21.3, 206.9999791164287, 0.7977795], [21.31, 207.23356185225927, 0.8284626], [21.32, 207.3589511921364, 0.824561], [21.33, 207.20157916896252, 0.8207635], [21.34, 207.26096885762485, 0.8400764], [21.35, 207.01506866330362, 0.8266362], [21.36, 206.63695444576683, 0.8351476], [21.37, 206.50198748060288, 0.84970224], [21.38, 206.02299612784435, 0.85227627], [21.39, 205.79676657544485, 0.8212904], [21.4, 205.252338903347, 0.74702674], [21.41, 204.93990371294214, 0.64007866], [21.42, 205.3282251664335, 0.40629458], [21.43, 186.76084979129098, 0.36715797], [21.44, 185.75756221180632, 0.36835155], [21.45, 180.798452243724, 0.36058062], [21.46, 173.43571553659427, 0.26169664], [21.47, 165.048254126373, 0.5118129], [21.48, 155.62615072229713, 0.5388593], [21.49, 141.58746649176402, 0.58596593], [21.5, 138.78938102828914, 0.5218108], [21.51, 139.01089760507958, 0.6988334], [21.52, 138.8417163826848, 0.6798513], [21.53, 138.30947655269478, 0.44004416], [21.54, 136.44458661644936, 0.20690516], [21.55, 128.12034078269267, 0.5115541], [21.56, 118.99978440258111, 0.33252907], [21.57, 115.33067583482106, 0.097271524], [21.58, 121.11178909297577, 0.15941474], [21.59, 122.68760101790502, 0.163595], [21.6, 129.78894218432822, 0.12248216], [21.61, 140.89044583313932, 0.14036186], [21.62, 144.94283477528742, 0.13823633], [21.63, 151.3692106936129, 0.19966319], [21.64, 161.92563348228032, 0.24863946], [21.65, 170.7400696928312, 0.13261016], [21.66, 176.8606149616856, 0.2041183], [21.67, 184.67501775861874, 0.24373277], [21.68, 194.43110236793103, 0.1114864], [21.69, 204.62735534499163, 0.07382247], [21.7, 208.73255770571663, 0.20672299], [21.71, 206.45146766171473, 0.1363204], [21.72, 203.6805982550478, 0.10300828], [21.73, 204.42987285786597, 0.109519035], [21.74, 214.37040572118082, 0.12005449], [21.75, 227.620786618555, 0.22311053], [21.76, 237.33236972814524, 0.12534823], [21.77, 260.676470476591, 0.11495696], [21.78, 272.9531055489289, 0.15682666], [21.79, 270.15831343321986, 0.3113295], [21.8, 269.47702911085776, 0.4657658], [21.81, 271.18083682285805, 0.5225815], [21.82, 273.7670663975631, 0.5810187], [21.83, 274.51023006392774, 0.66196626], [21.84, 273.84100387562034, 0.6980188], [21.85, 274.0823326187573, 0.67794317], [21.86, 276.11346246838406, 0.668766], [21.87, 278.03862879084676, 0.6870767], [21.88, 275.9218158885406, 0.4732452], [21.89, 247.12484424542316, 0.4706073], [21.9, 218.26875892558374, 0.56076396], [21.91, 193.02961437968176, 0.6552625], [21.92, 170.59055622240464, 0.74749297], [21.93, 172.0242039678537, 0.7446626], [21.94, 172.63359215508703, 0.75135803], [21.95, 172.4737573018049, 0.7374927], [21.96, 172.94302185028258, 0.71945465], [21.97, 173.9302384535775, 0.7462213], [21.98, 173.76106621887806, 0.6708231], [21.99, 171.7149205046168, 0.6150965], [22.0, 171.12935304014994, 0.711397], [22.01, 171.60046621040595, 0.6009053], [22.02, 172.57561044304998, 0.44305146], [22.03, 172.03200550583944, 0.3574303], [22.04, 169.91610242469906, 0.35181114], [22.05, 166.00230425708372, 0.33525142], [22.06, 160.47775123679855, 0.08838855], [22.07, 158.1658552422888, 0.13734499], [22.08, 160.80763383121393, 0.12453211], [22.09, 174.77547030808697, 0.21441507], [22.1, 190.77550572629946, 0.17700358], [22.11, 203.44609802280044, 0.43872514], [22.12, 205.34550135552598, 0.63764167], [22.13, 208.0529979253746, 0.72898567], [22.14, 210.56189008179945, 0.68267226], [22.15, 213.81942840478365, 0.6659949], [22.16, 215.5660217727292, 0.7533562], [22.17, 237.1723357919047, 0.7187156], [22.18, 273.4134153185113, 0.60729235], [22.19, 304.9623307364375, 0.5268523], [22.2, 338.02456354816394, 0.5391733], [22.21, 374.9821049492277, 0.5045289], [22.22, 411.19815761000126, 0.55410475], [22.23, 412.9338304760575, 0.5418763], [22.24, 417.6681154509331, 0.57157385], [22.25, 423.0161205660949, 0.49551305], [22.26, 429.7993466497229, 0.4801253], [22.27, 435.1066942330358, 0.40047923], [22.28, 438.98227212770115, 0.19989868], [22.29, 453.2445012397533, 0.3365139], [22.3, 461.4330368641794, 0.2210057], [22.31, 464.9024723450867, 0.15716416], [22.32, 470.1049139582947, 0.15977657], [22.33, 472.67785588996264, 0.3001807], [22.34, 469.42661861053125, 0.5440433], [22.35, 468.819901379814, 0.49320528], [22.36, 467.192367431055, 0.5184209], [22.37, 465.9203237241196, 0.65138954], [22.38, 465.73861821049456, 0.72517353], [22.39, 463.35677945605994, 0.68889815], [22.4, 463.476886998997, 0.7393575], [22.41, 462.5250084042489, 0.7274325], [22.42, 464.15180347489894, 0.7351909], [22.43, 439.1321124659647, 0.53568864], [22.44, 380.9369590068497, 0.32247832], [22.45, 348.06909108934093, 0.11908907], [22.46, 321.7462133132722, 0.22621907], [22.47, 277.0581294871241, 0.5106192], [22.48, 275.07987261661896, 0.5537142], [22.49, 272.5790281121132, 0.48948547], [22.5, 270.67882966111506, 0.53705716], [22.51, 270.1041510898893, 0.20525974], [22.52, 273.4384666589008, 0.2621759], [22.53, 284.76616081565106, 0.14134797], [22.54, 282.4194914434439, 0.03447468], [22.55, 285.2874839365808, 0.51437587], [22.56, 285.32052703025647, 0.68525875], [22.57, 282.2111862569806, 0.6236497], [22.58, 284.48493571197434, 0.46517184], [22.59, 282.97010446872093, 0.53878695], [22.6, 280.3989388005495, 0.4634671], [22.61, 276.59656475693646, 0.22788338], [22.62, 275.15659162035024, 0.12375284], [22.63, 279.9394722538239, 0.26267034], [22.64, 280.5515011160552, 0.66348135], [22.65, 279.9038694462497, 0.6879469], [22.66, 278.2769525710994, 0.46517858], [22.67, 275.7237781634256, 0.46262443], [22.68, 273.9950342993331, 0.29641208], [22.69, 274.858009785947, 0.55410856], [22.7, 274.6937006424374, 0.5059253], [22.71, 277.1697784826365, 0.55406386], [22.72, 276.4829861564336, 0.579301], [22.73, 273.77450337921937, 0.6477296], [22.74, 275.6939234134627, 0.52339095], [22.75, 273.1475749184002, 0.1923622], [22.76, 274.3130418839037, 0.45898068], [22.77, 273.94204164910974, 0.66105103], [22.78, 275.40116614298955, 0.62450653], [22.79, 276.5347214152758, 0.7090079], [22.8, 277.94640953759574, 0.80205005], [22.81, 279.13506446355586, 0.86486804], [22.82, 278.63660440855335, 0.8535368], [22.83, 278.83701851189664, 0.8263993], [22.84, 277.99587957441753, 0.7803452], [22.85, 277.34329795032926, 0.5831534], [22.86, 316.42381178317, 0.19553305], [22.87, 353.2667579408448, 0.2786462], [22.88, 350.5347150787731, 0.5545875], [22.89, 355.34452787363534, 0.41755196], [22.9, 350.28826763652313, 0.6024415], [22.91, 350.23529481677195, 0.6748909], [22.92, 350.6489159874962, 0.3946952], [22.93, 350.90055280462144, 0.589213], [22.94, 352.61945611492695, 0.48090613], [22.95, 352.6167558510076, 0.48989892], [22.96, 345.413507459204, 0.370584], [22.97, 344.5106776237601, 0.26551512], [22.98, 346.6845175612931, 0.25662637], [22.99, 322.14577302894924, 0.08864966], [23.0, 281.16049150627595, 0.3251479], [23.01, 282.20782895205724, 0.6464286], [23.02, 281.9750858077456, 0.76310724], [23.03, 280.8808571190573, 0.84260285], [23.04, 280.2416710769775, 0.86650103], [23.05, 279.98860071648676, 0.86280495], [23.06, 279.06720441770807, 0.8867447], [23.07, 278.35269169779673, 0.90082663], [23.08, 276.54481402701424, 0.86829174], [23.09, 273.6417478083246, 0.8108046], [23.1, 270.9231442573121, 0.8438628], [23.11, 270.6768013306318, 0.810682], [23.12, 276.4525319086399, 0.72796154], [23.13, 282.8512411043065, 0.83935887], [23.14, 288.39425177237615, 0.7979548], [23.15, 294.9974899486126, 0.7403492], [23.16, 304.9842789524393, 0.7623302], [23.17, 309.0402852245659, 0.8708647], [23.18, 311.5927029938862, 0.8586455], [23.19, 312.64860749246856, 0.8685534], [23.2, 311.3062293629647, 0.8576955], [23.21, 309.998626535709, 0.85561997], [23.22, 309.4599386158101, 0.86569107], [23.23, 308.6541563410861, 0.84669083], [23.24, 307.9525207244463, 0.7828577], [23.25, 306.07977076103975, 0.7044551], [23.26, 305.6440460518272, 0.6522509], [23.27, 307.5809124790584, 0.39450318], [23.28, 282.14561691070924, 0.22908701], [23.29, 279.8483366952599, 0.31884292], [23.3, 277.07094295483626, 0.46268144], [23.31, 275.9965013675828, 0.6617901], [23.32, 276.8847404823022, 0.738645], [23.33, 277.22561311114055, 0.7497861], [23.34, 278.38065516411666, 0.8090181], [23.35, 278.5343057196064, 0.77649564], [23.36, 278.9242017705656, 0.62299186], [23.37, 318.4004131138282, 0.26504478], [23.38, 354.7301553553837, 0.49017763], [23.39, 351.9680508052715, 0.65197694], [23.4, 351.0283667680915, 0.74631447], [23.41, 350.89976949363256, 0.7537766], [23.42, 351.74411068085067, 0.7164083], [23.43, 353.8991393710827, 0.68608874], [23.44, 360.222530730788, 0.38040307], [23.45, 406.2436774730471, 0.12089451], [23.46, 411.5577254311143, 0.121056564], [23.47, 418.2108929436241, 0.0506999], [23.48, 430.4519598685129, 0.04606478], [23.49, 443.0499265290341, 0.047496494], [23.5, 452.1464403718194, 0.22826241], [23.51, 464.91955214989923, 0.073272325], [23.52, 484.2342401187026, 0.090236954], [23.53, 501.61692209547203, 0.23177172], [23.54, 512.7934532420533, 0.5536729], [23.55, 524.5424067481924, 0.12988755], [23.56, 533.2257383048105, 0.4418534], [23.57, 544.8676830429214, 0.53923637], [23.58, 548.0360855881438, 0.46275285], [23.59, 548.6921580451944, 0.40977988], [23.6, 548.568884104543, 0.27693337], [23.61, 549.563183503568, 0.21313633], [23.62, 551.5938851170629, 0.46008855], [23.63, 552.5296254763682, 0.253642], [23.64, 552.8243478918972, 0.3976638], [23.65, 505.9591069444269, 0.29679075], [23.66, 439.28376911845305, 0.5683801], [23.67, 398.80338760773157, 0.6122401], [23.68, 346.7866743670062, 0.50169957], [23.69, 306.07355024267514, 0.14146312], [23.7, 279.6901181013956, 0.54193425], [23.71, 278.3244715575497, 0.8293507], [23.72, 277.2849828112883, 0.8429255], [23.73, 275.5581719186557, 0.84529275], [23.74, 273.98601705907004, 0.80197763], [23.75, 271.6339829636524, 0.7225729], [23.76, 266.998231895461, 0.5642328], [23.77, 262.6399026039736, 0.5776666], [23.78, 263.59403312129257, 0.5408748], [23.79, 265.55795967436154, 0.706006], [23.8, 265.02688524780746, 0.76531047], [23.81, 264.7524401363854, 0.7691969], [23.82, 263.78868994694534, 0.7091764], [23.83, 262.98899122831756, 0.53152376], [23.84, 273.580196246019, 0.31669152], [23.85, 242.48923895869308, 0.46026808], [23.86, 218.33893124750458, 0.33189067], [23.87, 208.25975129556437, 0.37421727], [23.88, 199.48019329072682, 0.3602441], [23.89, 193.75834187898985, 0.5130835], [23.9, 188.31151747204873, 0.73189074], [23.91, 189.4689529935149, 0.6366192], [23.92, 196.3825943764317, 0.19979009], [23.93, 222.88980163047356, 0.40616372], [23.94, 226.37877555833217, 0.4490284], [23.95, 234.69574337691242, 0.33431086], [23.96, 238.2374115973726, 0.7181838], [23.97, 240.1731306283093, 0.7859866], [23.98, 241.85631588063768, 0.8346497], [23.99, 241.36770295861413, 0.7763427], [24.0, 239.27902392254308, 0.7486776], [24.01, 237.3528978388179, 0.7247673], [24.02, 233.21001318388258, 0.35236478], [24.03, 228.7779372793503, 0.42697826], [24.04, 227.98896274506862, 0.5984365], [24.05, 229.75821398889383, 0.59185946], [24.06, 231.3982765476726, 0.733664], [24.07, 232.20132176447373, 0.8089069], [24.08, 232.51007435491243, 0.79013336], [24.09, 230.99142568198334, 0.54295295], [24.1, 229.24442674683834, 0.30463463], [24.11, 224.34042981862714, 0.3490808], [24.12, 216.83924949424846, 0.3249148], [24.13, 207.1158920479607, 0.24806818], [24.14, 204.69726702352133, 0.15591441], [24.15, 209.85015928820386, 0.11980742], [24.16, 213.0601492255403, 0.36626825], [24.17, 214.52783857275875, 0.40421602], [24.18, 213.8466202706657, 0.54745686], [24.19, 213.08423646188388, 0.5544991], [24.2, 211.82847060539302, 0.6347753], [24.21, 211.5600599688818, 0.65286326], [24.22, 212.8332727904667, 0.5285531], [24.23, 212.2878781833051, 0.45940822], [24.24, 213.1295411373352, 0.37003076], [24.25, 214.0487776162195, 0.33973172], [24.26, 216.47827203005772, 0.39580038], [24.27, 217.47371133068867, 0.6298881], [24.28, 215.0846574381581, 0.5991922], [24.29, 216.1547191142607, 0.46049184], [24.3, 216.96418374710888, 0.4353882], [24.31, 216.25396982600068, 0.43516675], [24.32, 219.65104633749522, 0.41191885], [24.33, 221.82814018433828, 0.71969056], [24.34, 219.1673344111606, 0.6924631], [24.35, 217.3644586463804, 0.69166327], [24.36, 215.5487230630777, 0.38493377], [24.37, 216.60341115265118, 0.108285375], [24.38, 217.3492111863699, 0.115187354], [24.39, 217.28526718714835, 0.17334402], [24.4, 216.0665636514371, 0.2645212], [24.41, 216.34524954604115, 0.13982178], [24.42, 219.18890776931167, 0.12400379], [24.43, 219.6652060099875, 0.1204275], [24.44, 218.78367916222086, 0.056582388], [24.45, 219.37320619647755, 0.07188692], [24.46, 218.42125937917288, 0.1220486], [24.47, 216.68955849038, 0.37541863], [24.48, 216.42271177836133, 0.37389874], [24.49, 217.08449782654407, 0.321299], [24.5, 217.40980296053093, 0.36414602], [24.51, 218.94632268388352, 0.16744839], [24.52, 219.0097425108293, 0.23285374], [24.53, 219.43430887648537, 0.13285868], [24.54, 221.4891927011793, 0.2870474], [24.55, 225.12576191128628, 0.22563775], [24.56, 228.71488254459388, 0.28833443], [24.57, 231.09273138114534, 0.32904026], [24.58, 231.62983354137535, 0.3441934], [24.59, 230.19611046381655, 0.2998805], [24.6, 229.6309289396762, 0.39364702], [24.61, 224.26169579793958, 0.39995033], [24.62, 221.3657815488299, 0.33341634], [24.63, 218.41113245549974, 0.22091359], [24.64, 215.21746078506578, 0.19504383], [24.65, 214.5764639564879, 0.17618369], [24.66, 239.61964991964948, 0.09072342], [24.67, 269.27792706895445, 0.11073728], [24.68, 304.09087260052456, 0.17415766], [24.69, 336.4109450018125, 0.25698707], [24.7, 377.3124141560521, 0.18490382], [24.71, 414.92460337178187, 0.19275418], [24.72, 415.28105596507254, 0.40189776], [24.73, 419.63557412201106, 0.19486776], [24.74, 420.3897122195399, 0.30461687], [24.75, 424.35424149023453, 0.13463885], [24.76, 424.71984173561486, 0.19617014], [24.77, 426.9072654820558, 0.37435842], [24.78, 430.2391649554107, 0.20564704], [24.79, 427.3749476794077, 0.236898], [24.8, 425.50304634077924, 0.22074653], [24.81, 420.9324628688339, 0.20348085], [24.82, 419.53211924502426, 0.1990722], [24.83, 419.7727574154158, 0.23762454], [24.84, 422.03548354152076, 0.2855381], [24.85, 418.7590371363248, 0.40560624], [24.86, 375.33881728494623, 0.31376022], [24.87, 330.3293610073696, 0.4517523], [24.88, 292.4460444331598, 0.2855397], [24.89, 259.45815175213863, 0.31072015], [24.9, 232.17115952483533, 0.33117208], [24.91, 208.07656946301273, 0.30035108], [24.92, 207.51395203790352, 0.35561463], [24.93, 205.93365210680759, 0.26118466], [24.94, 206.4884761292294, 0.2555674], [24.95, 207.34919268474704, 0.39279953], [24.96, 207.65303553276124, 0.3832586], [24.97, 204.18604034075787, 0.27810323], [24.98, 203.0442541956188, 0.26950407], [24.99, 204.65004564131547, 0.3460496], [25.0, 206.2898943442983, 0.36073214], [25.01, 205.80944113453893, 0.35851413], [25.02, 203.64023225929338, 0.22649562], [25.03, 206.06566562980322, 0.15839145], [25.04, 210.06598474513342, 0.1605021], [25.05, 212.0999466617283, 0.20874311], [25.06, 216.34822818024585, 0.10370014], [25.07, 225.26918432061717, 0.17651634], [25.08, 233.30365871677918, 0.33007655], [25.09, 246.63278896079927, 0.39569274], [25.1, 252.86525813732038, 0.2950904], [25.11, 261.5718571344265, 0.121801175], [25.12, 278.94098528720565, 0.051376224], [25.13, 280.16091209236197, 0.24215694], [25.14, 278.7579116883268, 0.7599088], [25.15, 279.1189247558894, 0.80825174], [25.16, 279.17570967053143, 0.75449115], [25.17, 279.58258527476056, 0.7049304], [25.18, 279.5415129140013, 0.77225494], [25.19, 279.01411636906926, 0.716182], [25.2, 278.65511701236085, 0.5455433], [25.21, 277.530965964545, 0.6661609], [25.22, 278.4043907834716, 0.6872336], [25.23, 278.129873521855, 0.7299028], [25.24, 279.2985991094143, 0.7258207], [25.25, 280.9368972401487, 0.7666829], [25.26, 282.22839931948164, 0.7385947], [25.27, 257.6827386088468, 0.4064777], [25.28, 230.67334914480153, 0.31356987], [25.29, 205.8549309641438, 0.64085126], [25.3, 180.54283808352207, 0.656799], [25.31, 169.7762147283887, 0.74920857], [25.32, 149.93480539910252, 0.15333876], [25.33, 130.31293530333008, 0.12927072], [25.34, 119.00956681851042, 0.19291599], [25.35, 103.79989527024824, 0.08601708], [25.36, 93.71864108571849, 0.11934125], [25.37, 81.60493089003916, 0.23293163], [25.38, 75.13287070915277, 0.7031767], [25.39, 65.2696631182327, 0.7915146], [25.4, 56.396998154381535, 0.8268564], [25.41, 51.874665600124416, 0.8347679], [25.42, 51.96811477538944, 0.77881986], [25.43, 52.2164170700215, 0.8298814], [25.44, 52.01261340366344, 0.8100851], [25.45, 52.010601756490004, 0.81549734], [25.46, 51.888865269758256, 0.7876008], [25.47, 51.724753764332796, 0.77760065], [25.48, 52.309773280343, 0.7906331], [25.49, 51.93845769235163, 0.78667], [25.5, 52.2822075689795, 0.78350097], [25.51, 51.838167559464964, 0.77091986], [25.52, 52.04309980878585, 0.7825181], [25.53, 51.816945315265755, 0.7539965], [25.54, 52.22696666320901, 0.7889258], [25.55, 51.92943634550522, 0.78628314], [25.56, 52.20699206643128, 0.791974], [25.57, 52.09409021916705, 0.71875393], [25.58, 52.56114225523844, 0.7012404], [25.59, 52.31516568175238, 0.6820539], [25.6, 52.64705209103269, 0.6730745], [25.61, 52.34643477925644, 0.61259717], [25.62, 52.73969542075254, 0.6345879], [25.63, 52.4023686211536, 0.40218186], [25.64, 52.32849376750097, 0.40360793], [25.65, 52.639275765988955, 0.37387416], [25.66, 52.7263980642497, 0.39454186], [25.67, 52.370807319500045, 0.2731612], [25.68, 52.772064519989016, 0.19298021], [25.69, 53.50633125712531, 0.32907116], [25.7, 53.46372109602654, 0.5589221], [25.71, 53.27292683330587, 0.64668375], [25.72, 52.014959722345026, 0.30903676], [25.73, 52.60135829965499, 0.39587435], [25.74, 52.71619131854446, 0.1880552], [25.75, 52.793927481747396, 0.19694304], [25.76, 52.041738153333156, 0.45767295], [25.77, 52.05687039370559, 0.5748554], [25.78, 52.181203567335345, 0.6118668], [25.79, 52.57424448290462, 0.68278104], [25.8, 51.95256446906056, 0.61325884], [25.81, 51.9916711753632, 0.63879615], [25.82, 51.38981632280024, 0.5383564], [25.83, 51.88415382171762, 0.5962114], [25.84, 52.19923701958156, 0.51231766], [25.85, 52.510624816382155, 0.46393073], [25.86, 53.02559222680796, 0.2711349], [25.87, 52.53077995289282, 0.31807834], [25.88, 52.305034968708625, 0.24210493], [25.89, 51.98788720295977, 0.32823247], [25.9, 51.75673945722374, 0.2127151], [25.91, 51.775835954810894, 0.29741767], [25.92, 51.60923391101939, 0.20001383], [25.93, 51.691127956404095, 0.25947392], [25.94, 51.48840121431328, 0.20825729], [25.95, 51.585343193761766, 0.18391627], [25.96, 51.48429307104506, 0.13330793], [25.97, 51.990417733628654, 0.20967096], [25.98, 52.59877351593552, 0.25578743], [25.99, 52.87065659180285, 0.5252759], [26.0, 52.9261033304913, 0.49440593], [26.01, 52.10697419653944, 0.6576825], [26.02, 51.79325165541446, 0.62659585], [26.03, 51.20289039064291, 0.5947542], [26.04, 51.21350192446948, 0.2402625], [26.05, 53.62904354995489, 0.3651886], [26.06, 56.31855412950724, 0.17236874], [26.07, 57.6655676558157, 0.41011786], [26.08, 57.620863161390794, 0.52993333], [26.09, 57.78698131219798, 0.5575449], [26.1, 57.884282077827976, 0.5354663], [26.11, 57.54370207194475, 0.6555914], [26.12, 57.82592719979955, 0.70524824], [26.13, 57.973170702167245, 0.6946338], [26.14, 57.68350704899869, 0.52381337], [26.15, 57.751709540628376, 0.5324627], [26.16, 57.20541465320594, 0.5474908], [26.17, 57.44432988440285, 0.54444027], [26.18, 57.52782506169741, 0.624582], [26.19, 57.693771914463305, 0.58665717], [26.2, 57.377792556204135, 0.57064426], [26.21, 57.10864135415469, 0.52047604], [26.22, 57.75930830769788, 0.5796753], [26.23, 57.60579672201744, 0.5271509], [26.24, 57.692189707607085, 0.5614159], [26.25, 57.721094304726066, 0.6983463], [26.26, 58.19914897878529, 0.79473716], [26.27, 59.44206261861616, 0.6026986], [26.28, 54.777591928567034, 0.31170052], [26.29, 49.18658741380145, 0.10063176], [26.3, 45.47320014743845, 0.21824242], [26.31, 39.87116819662932, 0.28114298], [26.32, 36.221955131533875, 0.29141584], [26.33, 37.4579018406486, 0.40126535], [26.34, 38.51953118498305, 0.50977015], [26.35, 38.59367545807938, 0.59853315], [26.36, 39.17074815287642, 0.56724656], [26.37, 39.10382562271642, 0.56581056], [26.38, 38.42342723824651, 0.65650344], [26.39, 38.35955931571649, 0.36800358], [26.4, 38.48591068846659, 0.5059874], [26.41, 38.87536300075384, 0.668497], [26.42, 38.62001025312156, 0.457405], [26.43, 38.75659024948448, 0.62558323], [26.44, 38.75637689882706, 0.6432474], [26.45, 38.7914880973017, 0.6285149], [26.46, 42.50341025732692, 0.65696776], [26.47, 50.60109518381089, 0.5716757], [26.48, 56.09150200343714, 0.6797261], [26.49, 60.493430362030686, 0.6953731], [26.5, 70.04565706007413, 0.6237184], [26.51, 77.24060961954622, 0.14140189], [26.52, 89.32651100196601, 0.36155447], [26.53, 97.12535024228944, 0.28833893], [26.54, 110.42016092803098, 0.45312294], [26.55, 125.2956158480529, 0.43631572], [26.56, 139.72847622683742, 0.57859385], [26.57, 140.65712220701616, 0.5785873], [26.58, 141.0846501221242, 0.73316085], [26.59, 140.36241171040905, 0.67329055], [26.6, 139.52832801451638, 0.41353738], [26.61, 139.98258393263472, 0.28375024], [26.62, 146.04283336640606, 0.2973809], [26.63, 156.0628587781141, 0.5085733], [26.64, 166.80965579380614, 0.43061754], [26.65, 173.0943427645924, 0.17718668], [26.66, 173.0448494910891, 0.25200218], [26.67, 173.23684102182372, 0.29668415], [26.68, 175.24074456759774, 0.22868018], [26.69, 160.17934916493968, 0.26727676], [26.7, 141.4768735877777, 0.3120948], [26.71, 125.30407264771343, 0.36121833], [26.72, 125.82602327753683, 0.37266305], [26.73, 125.28230045382365, 0.4624627], [26.74, 123.37009353624671, 0.43687582], [26.75, 124.11298544900896, 0.4223388], [26.76, 128.62689523324545, 0.26269412], [26.77, 134.69896830050138, 0.43135163], [26.78, 141.43511854508236, 0.33302253], [26.79, 143.67520745401484, 0.5258645], [26.8, 150.5279484971763, 0.6076942], [26.81, 152.36295176211974, 0.65554047], [26.82, 154.67717001971957, 0.7988124], [26.83, 155.91781562245413, 0.8562748], [26.84, 156.62116418551324, 0.8313476], [26.85, 155.62276245326544, 0.82260954], [26.86, 154.54876057680667, 0.8026063], [26.87, 153.99596939862, 0.8165905], [26.88, 154.81318673566798, 0.81223804], [26.89, 155.38429207938606, 0.8378767], [26.9, 155.40008958776662, 0.8214537], [26.91, 156.34356304264338, 0.8599594], [26.92, 156.5991229972431, 0.8452361], [26.93, 156.8178648809354, 0.8075727], [26.94, 156.42602919807604, 0.8094403], [26.95, 156.09324088809697, 0.8270597], [26.96, 172.47634409829703, 0.65439534], [26.97, 195.94384201093337, 0.540752], [26.98, 219.99412290902583, 0.26555634], [26.99, 251.25461615973876, 0.387193], [27.0, 278.9588966942208, 0.5880119], [27.01, 276.73616017442635, 0.67448026], [27.02, 277.3671741980575, 0.7271021], [27.03, 279.1185873899733, 0.7101833], [27.04, 279.36163266702584, 0.6954313], [27.05, 277.51949585476996, 0.6734211], [27.06, 276.57054641227904, 0.7065532], [27.07, 274.6734121104766, 0.7309786], [27.08, 275.3597607321352, 0.7898332], [27.09, 276.3812503441686, 0.78740954], [27.1, 276.35434711575635, 0.76960176], [27.11, 275.5295546158055, 0.6879156], [27.12, 277.4692932727841, 0.43115664], [27.13, 269.9186185803898, 0.49825194], [27.14, 246.6472125750262, 0.76056063], [27.15, 233.09784463772107, 0.77556473], [27.16, 223.27998889965477, 0.83053166], [27.17, 202.03801895721887, 0.82444715], [27.18, 192.00768014283278, 0.60538507], [27.19, 176.66266117070649, 0.22902007], [27.2, 162.9567787812255, 0.28638548], [27.21, 156.2683887062625, 0.4056046], [27.22, 150.91657584753517, 0.27689782], [27.23, 151.29635320507597, 0.14950454], [27.24, 148.5168963904079, 0.26785266], [27.25, 148.76142839672275, 0.30301422], [27.26, 147.75751399088216, 0.31084788], [27.27, 146.9250519775303, 0.16100474], [27.28, 148.58718186580097, 0.1437097], [27.29, 147.07411085856796, 0.6126202], [27.3, 146.88800988417808, 0.41291794], [27.31, 145.22664916828114, 0.6707693], [27.32, 144.6874171230936, 0.672839], [27.33, 145.02898513108224, 0.72617435], [27.34, 144.98723664263682, 0.75541556], [27.35, 144.3384087945493, 0.75687885], [27.36, 144.93541821796745, 0.76317257], [27.37, 145.28126223318907, 0.71232456], [27.38, 144.3264451643844, 0.7680135], [27.39, 144.5473936238367, 0.77190477], [27.4, 143.477294466533, 0.8032778], [27.41, 143.5830951568074, 0.84465355], [27.42, 143.84546332421723, 0.82466036], [27.43, 143.29436277010961, 0.8146411], [27.44, 141.7610526389908, 0.78298235], [27.45, 139.53419055778707, 0.78534186], [27.46, 137.87040053469144, 0.5762779], [27.47, 136.77333480180386, 0.550453], [27.48, 138.89493702278997, 0.44842544], [27.49, 138.71242066805897, 0.5764416], [27.5, 138.41647327399056, 0.66716355], [27.51, 137.05123413364828, 0.59438396], [27.52, 135.70004743218198, 0.4961086], [27.53, 137.227561523836, 0.51612574], [27.54, 137.98123308773665, 0.39716956], [27.55, 139.20225676322244, 0.4965031], [27.56, 139.90513740395542, 0.44446838], [27.57, 139.6198667755924, 0.5683228], [27.58, 139.42082302638045, 0.6225395], [27.59, 138.51627452579234, 0.59087795], [27.6, 136.90538843366846, 0.6069459], [27.61, 136.24035495381872, 0.42279235], [27.62, 135.56826478330368, 0.58084065], [27.63, 135.0915472649639, 0.40402126], [27.64, 135.14995667163865, 0.55879503], [27.65, 136.64994996285583, 0.53185254], [27.66, 139.33829144596925, 0.70270133], [27.67, 141.3486507010956, 0.4971436], [27.68, 142.83582409520005, 0.1702916], [27.69, 143.52785130332882, 0.29216537], [27.7, 146.052195132669, 0.39020061], [27.71, 152.33773724806628, 0.36395872], [27.72, 157.25743917027853, 0.64058435], [27.73, 160.0438626427832, 0.6578706], [27.74, 160.98460187925568, 0.69896483], [27.75, 160.26826527635095, 0.74315464], [27.76, 158.02089981071893, 0.65826494], [27.77, 155.98770411730726, 0.6851956], [27.78, 154.34392701175557, 0.7104491], [27.79, 153.38345387730774, 0.7680826], [27.8, 152.61343596554508, 0.79581046], [27.81, 152.22767041442475, 0.79683596], [27.82, 152.01808378384254, 0.76720476], [27.83, 152.8377636098223, 0.7836915], [27.84, 153.31183115808057, 0.7572462], [27.85, 150.82387294706493, 0.70997137], [27.86, 148.5023234909105, 0.7307402], [27.87, 146.52777033321823, 0.8045451], [27.88, 144.7493058047821, 0.85001874], [27.89, 142.57304707567013, 0.8045974], [27.9, 139.86584782189672, 0.77839166], [27.91, 137.69240681429014, 0.85571206], [27.92, 136.3155646976979, 0.82163197], [27.93, 135.08849291104414, 0.8442941], [27.94, 134.9432605479262, 0.8329999], [27.95, 135.78201620228094, 0.82238674], [27.96, 136.93991894868094, 0.8258649], [27.97, 138.448772720491, 0.8345193], [27.98, 139.2084064235362, 0.82450175], [27.99, 139.52963543275726, 0.82255125], [28.0, 138.9340310698917, 0.8384619], [28.01, 138.56054887855092, 0.8155033], [28.02, 138.55649497402138, 0.8262817], [28.03, 138.41595929998064, 0.81139964], [28.04, 138.62528756372876, 0.8489621], [28.05, 138.9897147346916, 0.8711473], [28.06, 138.82174222109842, 0.8822246], [28.07, 138.79952573409577, 0.87457746], [28.08, 138.19422380277564, 0.85255027], [28.09, 137.7597665830125, 0.84169614], [28.1, 137.2383780563972, 0.83020824], [28.11, 136.2742178300744, 0.8110853], [28.12, 135.35714903884698, 0.72269547], [28.13, 134.1030665759198, 0.69093066], [28.14, 135.58066683812757, 0.22081606], [28.15, 140.89569863639227, 0.21101734], [28.16, 144.93401027894126, 0.11795901], [28.17, 139.05133917815922, 0.07220455], [28.18, 130.6647663713757, 0.10223943], [28.19, 124.15024861206972, 0.049481433], [28.2, 125.47684419163244, 0.20090862], [28.21, 129.16458844197265, 0.28624067], [28.22, 132.96851708937444, 0.4858688], [28.23, 135.19230094464922, 0.47025537], [28.24, 137.73128973256132, 0.3622027], [28.25, 140.2831725655614, 0.38410714], [28.26, 140.98716576120842, 0.47299597], [28.27, 142.82077294548185, 0.36468], [28.28, 141.66167479153307, 0.34367207], [28.29, 142.95127782423947, 0.22678272], [28.3, 143.95844915253713, 0.21156763], [28.31, 145.1806183663892, 0.17252104], [28.32, 143.5445355723648, 0.3294266], [28.33, 140.99329250542755, 0.14644817], [28.34, 137.84387966504735, 0.17594656], [28.35, 137.55359046690162, 0.18068564], [28.36, 137.17347926966082, 0.07728007], [28.37, 140.3033977025326, 0.13467571], [28.38, 145.1194644179679, 0.13027094], [28.39, 146.8455815450306, 0.30259335], [28.4, 143.58453566193327, 0.5312361], [28.41, 141.74956386377096, 0.64448094], [28.42, 140.24205315901366, 0.6648642], [28.43, 138.80049703745303, 0.8120165], [28.44, 138.29819745077276, 0.82004434], [28.45, 137.7024131730078, 0.8271445], [28.46, 137.74242554274608, 0.8494162], [28.47, 137.83255236869564, 0.8392812], [28.48, 138.1831759410503, 0.83118284], [28.49, 138.15271210974117, 0.8164407], [28.5, 138.44313839115446, 0.8366164], [28.51, 138.20938076711795, 0.7658033], [28.52, 137.7586121575587, 0.78489804], [28.53, 137.42252070851376, 0.8079817], [28.54, 137.0816407279802, 0.79790235], [28.55, 137.11780455380887, 0.80385107], [28.56, 137.6887353247494, 0.82087255], [28.57, 138.3878691900337, 0.82259405], [28.58, 138.68060298137084, 0.80485874], [28.59, 139.18624415807318, 0.83603317], [28.6, 139.17437206780482, 0.8416229], [28.61, 138.9421059623493, 0.84373486], [28.62, 138.10857833704222, 0.811272], [28.63, 137.6617512676949, 0.8191523], [28.64, 137.4107799629039, 0.81176716], [28.65, 137.10170386462713, 0.8166858], [28.66, 137.27536463872235, 0.8161049], [28.67, 137.34581589876416, 0.79270196], [28.68, 137.21298572950113, 0.7999206], [28.69, 137.35071380175881, 0.82885385], [28.7, 137.4102438487475, 0.8234331], [28.71, 137.54473141466497, 0.835072], [28.72, 137.72993130304826, 0.85811716], [28.73, 137.3783087941705, 0.83782136], [28.74, 137.15901652920846, 0.84173113], [28.75, 137.2136488721014, 0.8596105], [28.76, 137.28754652885647, 0.85270506], [28.77, 137.145798402073, 0.86221796], [28.78, 137.63440947717882, 0.8573219], [28.79, 137.77179316102158, 0.85617316], [28.8, 138.0205264168364, 0.8558416], [28.81, 137.96775936277305, 0.86124486], [28.82, 137.44562392678344, 0.8649509], [28.83, 136.9593374663935, 0.8482921], [28.84, 137.47981349782148, 0.85392123], [28.85, 138.36220832627245, 0.8165798], [28.86, 139.66786409993426, 0.77689785], [28.87, 141.071061376647, 0.75419277], [28.88, 142.42882467574867, 0.8036748], [28.89, 141.9715585543122, 0.81934637], [28.9, 140.7227326188903, 0.8049665], [28.91, 139.15700005168955, 0.84807044], [28.92, 137.3114071532276, 0.81594247], [28.93, 135.89442159710956, 0.820683], [28.94, 134.66781316073087, 0.81971306], [28.95, 134.1456031335321, 0.83540833], [28.96, 134.47353451886477, 0.83285856], [28.97, 135.8195589816567, 0.7755507], [28.98, 137.44934031356098, 0.7336732], [28.99, 141.34081849699865, 0.34089717], [29.0, 146.29143144503414, 0.62508684], [29.01, 150.18462302187208, 0.6018756], [29.02, 152.73274869593473, 0.6434296], [29.03, 151.1688585503207, 0.4335333], [29.04, 147.35275668670891, 0.25492978], [29.05, 145.74068113442743, 0.6168567], [29.06, 141.6469635638135, 0.7940802], [29.07, 140.05893574231038, 0.66657364], [29.08, 138.75526922332082, 0.60391426], [29.09, 136.67277856743604, 0.610817], [29.1, 134.63893838054506, 0.7270846], [29.11, 133.3027180579844, 0.7856515], [29.12, 133.30957869269224, 0.7174563], [29.13, 132.88042396097657, 0.7051101], [29.14, 133.80670664529424, 0.5712346], [29.15, 137.81772306937287, 0.6140092], [29.16, 140.38333919928394, 0.73051274], [29.17, 142.28328293429567, 0.81168956], [29.18, 142.14037539646006, 0.8315615], [29.19, 140.75688800289225, 0.7359955], [29.2, 138.8372241615571, 0.8624408], [29.21, 138.06051412942003, 0.8558535], [29.22, 138.5270644678321, 0.85148317], [29.23, 138.9718533890576, 0.8634797], [29.24, 140.04346514535737, 0.7879561], [29.25, 141.34088473966216, 0.71643525], [29.26, 144.93545174218647, 0.733679], [29.27, 147.92471604057465, 0.70109546], [29.28, 152.3863951454837, 0.6896963], [29.29, 154.838276267835, 0.77430254], [29.3, 155.751763777512, 0.86507595], [29.31, 155.82397211829482, 0.8452123], [29.32, 154.9216532628197, 0.78053015], [29.33, 152.84496846955616, 0.7728534], [29.34, 151.62739249925653, 0.73659676], [29.35, 151.0171977871404, 0.7310132], [29.36, 150.14147699489345, 0.7092085], [29.37, 150.7708276485188, 0.3173915], [29.38, 152.4584581640966, 0.4452212], [29.39, 162.41765818348696, 0.2588563], [29.4, 178.2605914123434, 0.2507152], [29.41, 192.69633542498713, 0.2755989], [29.42, 218.78371579885626, 0.35649177], [29.43, 227.99155879263355, 0.5384566], [29.44, 230.2158473508165, 0.6125952], [29.45, 231.43079465580823, 0.71333206], [29.46, 231.92307478158193, 0.6926636], [29.47, 232.52304033000914, 0.6367242], [29.48, 232.66624629172637, 0.5713844], [29.49, 232.41693107921674, 0.5670451], [29.5, 215.63960499975684, 0.24073745], [29.51, 186.36318559933454, 0.18585624], [29.52, 169.99268219314533, 0.18837652], [29.53, 151.44282361678012, 0.19755626], [29.54, 152.61976474740976, 0.32661995], [29.55, 152.8067850447713, 0.42701313], [29.56, 154.4439083297617, 0.4641191], [29.57, 158.65676979351275, 0.58693534], [29.58, 159.41244830017763, 0.6928239], [29.59, 159.92690350455032, 0.69642663], [29.6, 159.49673327011925, 0.73718226], [29.61, 160.3425468037221, 0.59621185], [29.62, 159.2499460812456, 0.47189623], [29.63, 157.71320641585487, 0.33822], [29.64, 155.92753121029898, 0.2375987], [29.65, 141.89458130195047, 0.24370937], [29.66, 141.78213463141773, 0.27483088], [29.67, 152.31645220751983, 0.26151535], [29.68, 156.826336358254, 0.44743827], [29.69, 158.2665712545931, 0.5991006], [29.7, 158.49637628447238, 0.5724523], [29.71, 159.83412228306403, 0.5010137], [29.72, 163.09456560199024, 0.5747571], [29.73, 164.35413459823235, 0.5869014], [29.74, 166.05654655801396, 0.6091064], [29.75, 168.89801088557536, 0.53391254], [29.76, 171.4756367082502, 0.6693185], [29.77, 173.09710870986515, 0.6742189], [29.78, 172.5585173767539, 0.5499162], [29.79, 164.83597591499247, 0.2363933], [29.8, 159.55507906142955, 0.21302389], [29.81, 153.12694364019092, 0.16802977], [29.82, 153.13926516502204, 0.1600336], [29.83, 139.1235755862977, 0.13596985], [29.84, 120.84233623755068, 0.56936896], [29.85, 114.74034134920407, 0.7606926], [29.86, 101.24472456514054, 0.7512239], [29.87, 90.64225310431227, 0.67463416], [29.88, 82.68685133304665, 0.7606846], [29.89, 73.37205859595922, 0.7082454], [29.9, 63.69254688249073, 0.7948579], [29.91, 58.307360224606846, 0.8400405], [29.92, 58.72390053566509, 0.8281612], [29.93, 58.89443595588568, 0.78198266], [29.94, 58.772814059542284, 0.8206331], [29.95, 58.47812242147597, 0.8324329], [29.96, 58.29702953508259, 0.8339828], [29.97, 58.59345877838678, 0.827292], [29.98, 58.31327304583038, 0.7983823], [29.99, 58.70359405977709, 0.7776447], [30.0, 58.61523526882049, 0.81804925], [30.01, 58.35264637178614, 0.8253113], [30.02, 58.4015100294794, 0.3570767], [30.03, 59.79364300172118, 0.08250585], [30.04, 63.63761993491211, 0.16299917], [30.05, 66.57929246667882, 0.18036506], [30.06, 71.51854770826876, 0.2882842], [30.07, 75.44962937638773, 0.27774388], [30.08, 76.76541706832965, 0.18636417], [30.09, 79.64150136379693, 0.111805126], [30.1, 83.1722070315584, 0.0805119], [30.11, 87.01835335552026, 0.18428554], [30.12, 92.56539484718581, 0.20885378], [30.13, 92.88931738797905, 0.10303694], [30.14, 95.26366560869155, 0.12224765], [30.15, 102.34512500915838, 0.34853488], [30.16, 106.30507217438665, 0.18827921], [30.17, 109.68492174264648, 0.09107166], [30.18, 114.00762726158743, 0.0654858], [30.19, 116.19894794878945, 0.1982147], [30.2, 117.3310122681066, 0.21261078], [30.21, 116.16905073761768, 0.13675974], [30.22, 115.6868792642143, 0.09902354], [30.23, 116.35355220069287, 0.40140554], [30.24, 116.76419124720695, 0.44406155], [30.25, 116.97939289167955, 0.2244943], [30.26, 115.49252279316151, 0.17466159], [30.27, 115.25830980397356, 0.1691025], [30.28, 115.48349592588627, 0.13437043], [30.29, 116.14997566387797, 0.4501205], [30.3, 116.903286181253, 0.46623707], [30.31, 116.82701202092431, 0.3919001], [30.32, 116.88885160222186, 0.12602937], [30.33, 116.77444157317376, 0.1391519], [30.34, 117.10373378015763, 0.29796737], [30.35, 122.62724077382788, 0.3572504], [30.36, 136.30649420766565, 0.5088518], [30.37, 140.34305351781796, 0.24204446], [30.38, 140.57985615094222, 0.44211465], [30.39, 139.77380627131117, 0.5587865], [30.4, 139.3589934297982, 0.43798506], [30.41, 138.37011361934887, 0.3895866], [30.42, 137.06514895295012, 0.54842705], [30.43, 136.90115304398643, 0.5126335], [30.44, 136.67964407540782, 0.392089], [30.45, 136.04156591494413, 0.24465765], [30.46, 136.94827684533354, 0.27768758], [30.47, 136.62574511413078, 0.33266243], [30.48, 135.47963948411908, 0.22598028], [30.49, 131.4285159854089, 0.07794333], [30.5, 133.091244741904, 0.08996147], [30.51, 136.30950295775224, 0.31138355], [30.52, 136.08661403621133, 0.38767743], [30.53, 135.46611149665938, 0.33470154], [30.54, 136.85652115042774, 0.2655313], [30.55, 138.74017956010005, 0.25661212], [30.56, 138.44878521373278, 0.3750422], [30.57, 138.57874015161133, 0.5068969], [30.58, 138.70820733724176, 0.20224991], [30.59, 137.15203940337273, 0.31521618], [30.6, 137.87940806470115, 0.45144355], [30.61, 137.80393244788897, 0.4901814], [30.62, 138.2301669690784, 0.53693706], [30.63, 138.2675840923353, 0.37104177], [30.64, 139.60837851992102, 0.48848283], [30.65, 139.29076301529204, 0.30098778], [30.66, 139.18731326252367, 0.2816046], [30.67, 139.88455558076635, 0.16839488], [30.68, 139.598364142138, 0.33845899], [30.69, 140.2308563752902, 0.4447354], [30.7, 140.91446419666963, 0.49696815], [30.71, 139.03127313295832, 0.6043904], [30.72, 151.8171357371873, 0.6686702], [30.73, 174.3493327288454, 0.62709683], [30.74, 184.43495550016377, 0.3901148], [30.75, 216.9523364574563, 0.30929494], [30.76, 232.11390478581762, 0.22164759], [30.77, 231.94748137196467, 0.6008188], [30.78, 231.81900243102837, 0.67646015], [30.79, 232.0288513770535, 0.6645894], [30.8, 231.92672194784188, 0.6134671], [30.81, 231.19275314977585, 0.64527905], [30.82, 231.89488775111042, 0.6079366], [30.83, 231.56875337445973, 0.7089445], [30.84, 231.95420729376193, 0.66241026], [30.85, 233.6653797270135, 0.7209517], [30.86, 233.5483333219659, 0.74665993], [30.87, 232.73265931253314, 0.76291937], [30.88, 232.61246787854316, 0.7658415], [30.89, 233.0539844431292, 0.6885585], [30.9, 233.18195334131477, 0.6029904], [30.91, 232.65860866187904, 0.6228201], [30.92, 232.95611860220367, 0.7271733], [30.93, 231.26778971298916, 0.72340137], [30.94, 231.17465701903024, 0.6524215], [30.95, 230.75496375732865, 0.3746455], [30.96, 231.02749742096182, 0.22362857], [30.97, 232.73312930326753, 0.12333032], [30.98, 229.71471268017376, 0.13758366], [30.99, 227.97098892410713, 0.50812954], [31.0, 224.6036596543608, 0.57887936], [31.01, 219.80042538240906, 0.22865143], [31.02, 218.10671994642445, 0.13444395], [31.03, 215.7880283478893, 0.08104086], [31.04, 212.4156553943183, 0.15467466], [31.05, 211.86072245335782, 0.07305845], [31.06, 210.23097383655534, 0.15690865], [31.07, 206.6076013526745, 0.43117842], [31.08, 202.6749802513511, 0.56299984], [31.09, 198.3150918350703, 0.38673675], [31.1, 196.17517270952564, 0.52074355], [31.11, 188.9182622456781, 0.5104112], [31.12, 181.9288683466309, 0.46038038], [31.13, 178.19318065527736, 0.33636796], [31.14, 176.0869937870999, 0.22303124], [31.15, 174.1993799591198, 0.47764057], [31.16, 172.06971207486237, 0.38890955], [31.17, 171.43493165154803, 0.55558085], [31.18, 166.12122617923364, 0.68035525], [31.19, 158.32437414909808, 0.36697602], [31.2, 153.14346642931594, 0.09215678], [31.21, 152.57652157600768, 0.26210162], [31.22, 153.05892677572896, 0.18116297], [31.23, 154.98186520717502, 0.55426115], [31.24, 157.12295393190453, 0.6158523], [31.25, 161.50549197740773, 0.41813183], [31.26, 163.61348394457227, 0.48891518], [31.27, 164.61114980136327, 0.49830294], [31.28, 163.9260450082424, 0.5851089], [31.29, 162.5785682348859, 0.6574331], [31.3, 160.32226086959503, 0.6261775], [31.31, 157.70303145842996, 0.6201694], [31.32, 155.5769911254925, 0.6391638], [31.33, 153.34129562484003, 0.69003206], [31.34, 152.95598774314286, 0.7294407], [31.35, 151.5055886449277, 0.7176285], [31.36, 151.62794977724508, 0.8083519], [31.37, 152.7687993777282, 0.76329094], [31.38, 155.40050084392772, 0.77296734], [31.39, 157.45304004065267, 0.8184394], [31.4, 158.67667147168012, 0.81757945], [31.41, 159.53426397126162, 0.8168936], [31.42, 159.79412300807303, 0.7644285], [31.43, 158.74751582426734, 0.7122261], [31.44, 156.0022595116266, 0.5491328], [31.45, 155.21956982191173, 0.52012104], [31.46, 153.2568077654169, 0.31711286], [31.47, 149.39623992758482, 0.30767614], [31.48, 149.30847273083114, 0.3645477], [31.49, 162.67360428834408, 0.21966417], [31.5, 185.53543797573462, 0.20646816], [31.51, 204.41182075168228, 0.30146524], [31.52, 203.6142894894306, 0.3134376], [31.53, 201.74900246813684, 0.44042638], [31.54, 200.24019239108472, 0.3655359], [31.55, 199.59492348149556, 0.23710188], [31.56, 196.55663615243117, 0.31994724], [31.57, 196.9577066584036, 0.3051452], [31.58, 201.29353814084158, 0.31297043], [31.59, 207.56434629540507, 0.34103674], [31.6, 209.96103327295026, 0.5465583], [31.61, 209.9123787833081, 0.61864525], [31.62, 209.5350997146374, 0.47327298], [31.63, 204.8153812350151, 0.41807532], [31.64, 189.7503309451697, 0.33528203], [31.65, 175.59102686374587, 0.48272294], [31.66, 175.2408583154936, 0.7453003], [31.67, 174.5447992161074, 0.7681443], [31.68, 173.22527967691406, 0.7652071], [31.69, 172.70395500596268, 0.7287664], [31.7, 174.17367501125668, 0.7630849], [31.71, 174.64560304714084, 0.7891759], [31.72, 175.9175541924, 0.7522443], [31.73, 177.68857212282032, 0.6547749], [31.74, 178.8687813448905, 0.4681303], [31.75, 181.16016287241183, 0.27552426], [31.76, 181.3364125262169, 0.5075676], [31.77, 178.48769131825202, 0.2158432], [31.78, 177.62412999864756, 0.32987744], [31.79, 177.9356796210179, 0.28962505], [31.8, 175.48964526768975, 0.18949059], [31.81, 174.98365879905978, 0.18068656], [31.82, 176.1515245100259, 0.27909672], [31.83, 174.63456055737998, 0.25505826], [31.84, 175.53723775704097, 0.2437264], [31.85, 177.61902140193357, 0.46560434], [31.86, 177.85456531670278, 0.2398443], [31.87, 175.8258023379244, 0.117389165], [31.88, 172.62200254533468, 0.09990942], [31.89, 175.82715727930423, 0.16755134], [31.9, 175.7127095848003, 0.18063618], [31.91, 174.9382607187799, 0.16453807], [31.92, 176.2206541731909, 0.1310106], [31.93, 176.40400538146596, 0.066747755], [31.94, 176.38333578644762, 0.0837047], [31.95, 175.58934591794358, 0.26072037], [31.96, 175.59738374678344, 0.3028357], [31.97, 176.75158835109517, 0.39442807], [31.98, 176.92846553470346, 0.29780307], [31.99, 175.5650080966331, 0.1600795], [32.0, 171.491245181447, 0.30854648], [32.01, 168.29344781257822, 0.16976626], [32.02, 157.71805246925726, 0.21156512], [32.03, 150.8159332722956, 0.1426509], [32.04, 148.02461669876604, 0.17122276], [32.05, 145.57525204599776, 0.14335866], [32.06, 144.16264563493976, 0.33340442], [32.07, 142.59970306375075, 0.3292624], [32.08, 142.52135518054322, 0.32241008], [32.09, 141.67587813736876, 0.16152698], [32.1, 140.97374543695818, 0.15364854], [32.11, 138.73794916307133, 0.23362237], [32.12, 138.19977365700814, 0.25227883], [32.13, 138.3268120839532, 0.36087513], [32.14, 137.01434622925186, 0.26222116], [32.15, 136.7319924610369, 0.2221078], [32.16, 136.46581366704748, 0.254598], [32.17, 136.9315532382389, 0.2736365], [32.18, 138.87254448956998, 0.27258298], [32.19, 139.88497899052476, 0.16693379], [32.2, 139.20808817010757, 0.2020676], [32.21, 139.35222846259776, 0.16357829], [32.22, 141.23022642263166, 0.15727417], [32.23, 140.87066448135772, 0.12138539], [32.24, 138.96769203839048, 0.12268862], [32.25, 137.198616780035, 0.21715915], [32.26, 136.69431588325804, 0.24787357], [32.27, 136.46414677266756, 0.12080724], [32.28, 137.1686321098377, 0.16514203], [32.29, 139.0254867456507, 0.20439583], [32.3, 141.15468170692336, 0.2334933], [32.31, 141.07352099429764, 0.24303024], [32.32, 140.51676287404788, 0.2603556], [32.33, 139.6141233847368, 0.27857128], [32.34, 139.4133196969455, 0.14443506], [32.35, 143.25941274539178, 0.15412873], [32.36, 152.10177202379435, 0.16375664], [32.37, 169.6751541901153, 0.13957465], [32.38, 176.48111676302477, 0.3179814], [32.39, 178.3030929527067, 0.30680618], [32.4, 187.30949775167034, 0.24214478], [32.41, 203.8624126960018, 0.18515745], [32.42, 207.91867144438737, 0.339166], [32.43, 210.3203118042826, 0.35705274], [32.44, 210.52184542592346, 0.4533835], [32.45, 207.7093586927464, 0.6876986], [32.46, 206.85743996475463, 0.6805538], [32.47, 206.3779658185033, 0.6041796], [32.48, 205.209671882811, 0.7760604], [32.49, 204.8987826024332, 0.7864545], [32.5, 205.10666923191113, 0.80536216], [32.51, 204.8728409056794, 0.80661416], [32.52, 205.2336494145177, 0.7978588], [32.53, 205.53561481050392, 0.76739466], [32.54, 206.39901317085014, 0.77243155], [32.55, 206.39974823440423, 0.7665877], [32.56, 207.12790450785155, 0.7281794], [32.57, 207.9939310450809, 0.5738615], [32.58, 208.400007197169, 0.3562222], [32.59, 207.9457633482465, 0.30500942], [32.6, 207.36456184884676, 0.43263867], [32.61, 205.8292978403959, 0.54145217], [32.62, 205.38074652034658, 0.5584914], [32.63, 204.46813109205243, 0.33246326], [32.64, 203.41553861692307, 0.6247665], [32.65, 202.33752909812895, 0.41741395], [32.66, 200.24633905114405, 0.59334755], [32.67, 197.2720367891084, 0.5999691], [32.68, 189.06361535849155, 0.5515872], [32.69, 182.0647734459285, 0.35532776], [32.7, 178.04693993876293, 0.3580991], [32.71, 176.514072403957, 0.45893908], [32.72, 176.1840658235806, 0.30753204], [32.73, 175.19645309923834, 0.34111533], [32.74, 176.08515003834196, 0.30307978], [32.75, 175.6690940183363, 0.35719553], [32.76, 175.9573777956196, 0.5297646], [32.77, 175.17137577408832, 0.34129936], [32.78, 175.6563591419809, 0.3885122], [32.79, 175.85156920697716, 0.34009054], [32.8, 175.81692632586285, 0.25271282], [32.81, 175.7769732636855, 0.2229464], [32.82, 174.2686082198651, 0.344423], [32.83, 174.46258394820913, 0.23445101], [32.84, 176.54309837442156, 0.30624098], [32.85, 179.37507864159426, 0.26615348], [32.86, 181.58337935754327, 0.31492046], [32.87, 180.78392449688752, 0.26343882], [32.88, 176.98620590014195, 0.46469322], [32.89, 176.114719048849, 0.35955384], [32.9, 175.53944123341952, 0.3690725], [32.91, 176.92498660033138, 0.22621161], [32.92, 168.67850706878133, 0.3293302], [32.93, 147.69790971836505, 0.4736276], [32.94, 137.60997062728066, 0.49455047], [32.95, 138.48302043896143, 0.6160864], [32.96, 138.07125585482146, 0.6528238], [32.97, 138.12140494860907, 0.64648664], [32.98, 137.84061743608396, 0.6811707], [32.99, 137.50772390861684, 0.676416], [33.0, 137.61615157239763, 0.60741425], [33.01, 155.43275517831364, 0.47388092], [33.02, 174.847543194674, 0.3327483], [33.03, 175.59566918929536, 0.38560367], [33.04, 176.32744280117433, 0.3841737], [33.05, 174.55564114208988, 0.4412805], [33.06, 175.4199538836558, 0.40507904], [33.07, 155.12714617157172, 0.3518416], [33.08, 139.27468124937414, 0.42646864], [33.09, 138.73263694243266, 0.47715288], [33.1, 138.82924050242815, 0.6190446], [33.11, 138.4483301880024, 0.5793579], [33.12, 137.84480752326903, 0.7040025], [33.13, 137.5420596657824, 0.616187], [33.14, 137.0698813027685, 0.42594892], [33.15, 136.6074666285706, 0.3524316], [33.16, 137.6658526128241, 0.3546614], [33.17, 137.88376538293178, 0.4270789], [33.18, 138.8308994327392, 0.34681755], [33.19, 141.12266080017005, 0.37791213], [33.2, 140.58182544759978, 0.5511592], [33.21, 142.201355775349, 0.65515786], [33.22, 142.23803981350892, 0.6267954], [33.23, 142.41217194923715, 0.5827117], [33.24, 144.50430215311715, 0.56993043], [33.25, 147.92829054277263, 0.4372576], [33.26, 150.86217172063675, 0.33872768], [33.27, 151.00655600678198, 0.364879], [33.28, 148.79267648345984, 0.37199163], [33.29, 147.73498342709834, 0.3437162], [33.3, 145.7281021975265, 0.36771312], [33.31, 143.61297209396304, 0.49180862], [33.32, 142.62358826610478, 0.4422344], [33.33, 139.15520570538916, 0.4682423], [33.34, 137.90206393162453, 0.50194466], [33.35, 138.7302592774908, 0.48244357], [33.36, 136.80845560689056, 0.5404728], [33.37, 137.75121632904248, 0.5017706], [33.38, 137.54643781414475, 0.5452769], [33.39, 137.35723168170148, 0.46997973], [33.4, 147.37744271940875, 0.55887383], [33.41, 168.01776340760696, 0.45040354], [33.42, 177.453942032482, 0.20965825], [33.43, 174.9308130869373, 0.18734059], [33.44, 176.66635325179374, 0.2266262], [33.45, 179.33402980741945, 0.5198349], [33.46, 178.45301574985197, 0.27022198], [33.47, 174.37308146187218, 0.2298727], [33.48, 163.75129074338844, 0.18623747], [33.49, 176.9810377498732, 0.27594957], [33.5, 178.50117819941568, 0.33150065], [33.51, 182.63709841756824, 0.35403118], [33.52, 193.0520498123642, 0.3904292], [33.53, 205.82415279008836, 0.34947488], [33.54, 219.78702836302588, 0.31285512], [33.55, 228.97010036442117, 0.12870584], [33.56, 231.18840158169388, 0.44188705], [33.57, 228.96855074460743, 0.49722502], [33.58, 230.41136983854244, 0.7053319], [33.59, 231.6479590411979, 0.6959484], [33.6, 234.05446113588408, 0.6411805], [33.61, 234.45857279329627, 0.71798646], [33.62, 233.59025470929905, 0.62361443], [33.63, 232.48860088077583, 0.7186087], [33.64, 231.9589624877185, 0.7622583], [33.65, 231.13279110236874, 0.76476604], [33.66, 231.78323097925818, 0.777457], [33.67, 232.36237197575696, 0.8110251], [33.68, 233.11371475600714, 0.8386377], [33.69, 233.59003102941554, 0.87274987], [33.7, 233.54806632589901, 0.8809592], [33.71, 233.32495185849152, 0.85805935], [33.72, 233.76075846295583, 0.8811504], [33.73, 233.3691519016752, 0.8846191], [33.74, 232.91503093677332, 0.8444532], [33.75, 233.33678427175644, 0.8680698], [33.76, 233.7206876234336, 0.7801908], [33.77, 234.73780480442178, 0.462082], [33.78, 215.2871753613559, 0.3185285], [33.79, 187.7729697680516, 0.18303366], [33.8, 171.04394702933075, 0.19960558], [33.81, 153.738245526656, 0.31144574], [33.82, 140.12553622905457, 0.39301434], [33.83, 119.78520418569556, 0.28504], [33.84, 108.38976040210733, 0.12767139], [33.85, 96.94373450021857, 0.06504825], [33.86, 84.8942911172796, 0.05585882], [33.87, 77.86308134795482, 0.04794868], [33.88, 68.03331888235459, 0.12777719], [33.89, 61.0435958240014, 0.097048625], [33.9, 56.35058035632142, 0.15717189], [33.91, 47.687351906421505, 0.19305615], [33.92, 43.163354236502144, 0.11199817], [33.93, 38.610352517671025, 0.18650667], [33.94, 38.91396162240361, 0.30244836], [33.95, 38.87974708944723, 0.31950295], [33.96, 38.39022547589914, 0.17380348], [33.97, 38.356012895208835, 0.1492077], [33.98, 38.99409975886319, 0.22153525], [33.99, 39.29450533869775, 0.25482258], [34.0, 40.22810951882317, 0.14935113], [34.01, 39.66026816051618, 0.4025919], [34.02, 39.785576893725185, 0.34563774], [34.03, 39.086507584839076, 0.53570807], [34.04, 38.29546205689446, 0.32194096], [34.05, 37.83969326070987, 0.30394894], [34.06, 38.39682802953479, 0.5840322], [34.07, 38.66248794542522, 0.38590688], [34.08, 38.88162129712012, 0.6210128], [34.09, 38.810969945629886, 0.558898], [34.1, 38.86785287058687, 0.4636166], [34.11, 39.04938231924384, 0.6122323], [34.12, 39.07968208611407, 0.5290963], [34.13, 38.91534891566656, 0.5953598], [34.14, 38.55620238998111, 0.54472786], [34.15, 38.43671152946165, 0.5114976], [34.16, 38.784830511023706, 0.5481035], [34.17, 38.90615440921845, 0.5226346], [34.18, 38.942727678086435, 0.507689], [34.19, 38.643466647913705, 0.59966296], [34.2, 38.469199166597996, 0.6569472], [34.21, 38.711272766005266, 0.7082041], [34.22, 38.81894244566666, 0.64533424], [34.23, 38.78452469748797, 0.67986584], [34.24, 43.06146212719678, 0.4829894], [34.25, 48.29174169775992, 0.632182], [34.26, 57.05782391106143, 0.56441414], [34.27, 60.340969186644514, 0.5430729], [34.28, 69.44255482677731, 0.33057758], [34.29, 78.79075011373884, 0.3328172], [34.3, 89.12213543518128, 0.58109903], [34.31, 98.07062167216914, 0.53894794], [34.32, 111.6076672179698, 0.5816463], [34.33, 126.52288936419455, 0.60765207], [34.34, 137.64025986579588, 0.5173118], [34.35, 137.40574832680358, 0.6351534], [34.36, 137.12548971464633, 0.6076258], [34.37, 137.33268461581002, 0.5079832], [34.38, 137.785393494899, 0.60376674], [34.39, 138.27567235237734, 0.5937355], [34.4, 137.70859529077154, 0.28311303], [34.41, 137.60576854586478, 0.5455756], [34.42, 137.4356047437286, 0.61172813], [34.43, 136.4302922136959, 0.67367613], [34.44, 137.2722768394895, 0.3499121], [34.45, 137.52630382791628, 0.31971908], [34.46, 138.5308247828428, 0.3994494], [34.47, 138.79255246401294, 0.3297122], [34.48, 138.94208241224757, 0.33249697], [34.49, 138.23347523559764, 0.49953467], [34.5, 138.44981770782977, 0.4925991], [34.51, 138.49960693839458, 0.57692605], [34.52, 138.08839198440944, 0.562453], [34.53, 138.04711382977476, 0.6070513], [34.54, 138.56883209463814, 0.499333], [34.55, 138.73367928952354, 0.3686955], [34.56, 138.49416115567408, 0.5066705], [34.57, 138.1678345996539, 0.38913354], [34.58, 138.00697717177843, 0.48674798], [34.59, 137.52682663884192, 0.5787619], [34.6, 138.10931931146897, 0.5441785], [34.61, 138.30429334547406, 0.47120857], [34.62, 138.47535675649414, 0.30679634], [34.63, 123.67048677385606, 0.5576409], [34.64, 116.12400371370458, 0.7334073], [34.65, 102.07636103471445, 0.7729419], [34.66, 93.4014589045875, 0.825073], [34.67, 80.04143903527492, 0.7913509], [34.68, 77.11630986698705, 0.73019916], [34.69, 66.81183067761671, 0.55508286], [34.7, 59.33752861871195, 0.48811233], [34.71, 54.952812976994, 0.16581318], [34.72, 48.57034860841725, 0.1205305], [34.73, 44.01703385193763, 0.13691702], [34.74, 39.3146806262354, 0.37870336], [34.75, 39.044255247802624, 0.44268575], [34.76, 38.590144872404856, 0.15569313], [34.77, 39.90600006914761, 0.25607762], [34.78, 41.188809494680314, 0.4674574], [34.79, 42.212355855103645, 0.4780005], [34.8, 45.05016711675542, 0.299672], [34.81, 46.03877658284943, 0.15598749], [34.82, 46.40457365443122, 0.44469443], [34.83, 45.904761020670975, 0.66258466], [34.84, 45.645002038062266, 0.5653244], [34.85, 44.417434969023375, 0.45122853], [34.86, 43.913684376323936, 0.33117792], [34.87, 43.9473016886794, 0.2819029], [34.88, 43.92249572141921, 0.29694745], [34.89, 44.14855055333533, 0.43891186], [34.9, 43.53470961719854, 0.43924725], [34.91, 43.58131062010734, 0.41789916], [34.92, 43.72490398534023, 0.65580916], [34.93, 44.07510519736266, 0.6948821], [34.94, 44.072201456704576, 0.65358025], [34.95, 44.288240864663436, 0.68263036], [34.96, 44.06231353806177, 0.7141689], [34.97, 43.60529008051902, 0.6812512], [34.98, 43.598983718581096, 0.5277784], [34.99, 43.29212196808571, 0.50293577], [35.0, 43.852047165211644, 0.5184724], [35.01, 43.71085868978785, 0.63683575], [35.02, 43.63104225568969, 0.58233035], [35.03, 43.82416292341076, 0.4735285], [35.04, 43.45882775981146, 0.5483148], [35.05, 43.01594307835907, 0.4234621], [35.06, 43.272475268836985, 0.5258824], [35.07, 43.59744745238998, 0.6666873], [35.08, 43.73275767281815, 0.61521846], [35.09, 43.744829434176, 0.6851415], [35.1, 43.85872104045066, 0.6277703], [35.11, 43.85084557337356, 0.6475429], [35.12, 43.744376608844576, 0.5852337], [35.13, 43.62497875974213, 0.6197995], [35.14, 43.720868768433704, 0.74056095], [35.15, 43.47214334299811, 0.6566634], [35.16, 43.66594023014943, 0.7643163], [35.17, 43.84911970346919, 0.5842603], [35.18, 44.35011762117008, 0.29156035], [35.19, 47.2849516277321, 0.40413442], [35.2, 52.93071940325277, 0.30911663], [35.21, 57.85172780938717, 0.13963018], [35.22, 65.20695812664444, 0.15783218], [35.23, 70.26410504963404, 0.17454478], [35.24, 77.78994679237182, 0.18159693], [35.25, 86.89228793118205, 0.33317956], [35.26, 91.0168919883167, 0.68845075], [35.27, 105.0138747461748, 0.6906871], [35.28, 108.03146915519896, 0.64279455], [35.29, 119.84984664154582, 0.69113624], [35.3, 135.47050049132548, 0.7446032], [35.31, 139.56606435460412, 0.7692456], [35.32, 155.2758806347121, 0.6400591], [35.33, 173.1912440419929, 0.6496608], [35.34, 181.88979181753908, 0.6223914], [35.35, 205.14722314100382, 0.3716533], [35.36, 215.90321782860687, 0.38351384], [35.37, 218.40908217229594, 0.6584634], [35.38, 218.06914711621388, 0.6775956], [35.39, 215.47728149882323, 0.68422663], [35.4, 213.68724702476044, 0.7297355], [35.41, 210.16420604010264, 0.67737395], [35.42, 207.43922002544662, 0.732995], [35.43, 205.84574279744996, 0.64911795], [35.44, 205.17565159469282, 0.3701762], [35.45, 205.5411027883697, 0.41835484], [35.46, 206.24447906633802, 0.50525254], [35.47, 207.36296207702136, 0.50851154], [35.48, 208.6403118317628, 0.36260542], [35.49, 220.48278865693462, 0.5368643], [35.5, 250.84763852329957, 0.4551214], [35.51, 272.31094279359354, 0.46844515], [35.52, 293.32677280174437, 0.14138386], [35.53, 332.9063380179417, 0.13270357], [35.54, 350.2830240313586, 0.10448888], [35.55, 351.3025068626639, 0.36899468], [35.56, 352.767133604382, 0.5831978], [35.57, 352.51683246309767, 0.60776734], [35.58, 353.27728701553224, 0.589964], [35.59, 352.4184466507563, 0.67422587], [35.6, 351.32496418738094, 0.63157976], [35.61, 351.9681970013813, 0.56046623], [35.62, 350.9554853923453, 0.3406129], [35.63, 373.7908190708598, 0.48891374], [35.64, 408.0667459048923, 0.25005117], [35.65, 421.34102138763006, 0.24204175], [35.66, 422.5279120902027, 0.2332731], [35.67, 420.76521495724717, 0.17444348], [35.68, 421.60980734452863, 0.1386643], [35.69, 419.8876404288137, 0.15870818], [35.7, 418.46855809635855, 0.52525634], [35.71, 417.52048220301157, 0.5442873], [35.72, 418.34549339858194, 0.3318979], [35.73, 422.07002921545126, 0.40654886], [35.74, 425.72073262426494, 0.4458624], [35.75, 425.5129694861239, 0.31717822], [35.76, 426.27442760073336, 0.29219288], [35.77, 422.3372225075077, 0.18896683], [35.78, 425.6177030059014, 0.26244697], [35.79, 428.15755763605927, 0.15425745], [35.8, 429.16099945619777, 0.21345659], [35.81, 429.0229286064631, 0.66938525], [35.82, 430.7617126142883, 0.45684966], [35.83, 431.7151725805152, 0.59971005], [35.84, 428.66141649599024, 0.29432732], [35.85, 429.9895483317025, 0.34878024], [35.86, 427.03358519636083, 0.3533503], [35.87, 425.59074502822557, 0.5045554], [35.88, 424.6320749061575, 0.5019572], [35.89, 416.9968549265542, 0.40725678], [35.9, 414.10795663168403, 0.26774108], [35.91, 412.28430488105636, 0.36874133], [35.92, 411.98384783634566, 0.54663044], [35.93, 411.6006342039805, 0.45186257], [35.94, 414.92553441074017, 0.3917977], [35.95, 415.0429192382169, 0.54179114], [35.96, 418.34327029246356, 0.20369618], [35.97, 417.48360165304297, 0.40379444], [35.98, 418.6200374773972, 0.20350552], [35.99, 418.3346841455181, 0.17258212], [36.0, 420.88869313565675, 0.25495648], [36.01, 419.2281231073965, 0.37533817], [36.02, 417.9465991169425, 0.44891194], [36.03, 415.8227739600212, 0.48934978], [36.04, 416.8230667212292, 0.5447261], [36.05, 415.55688244389967, 0.58224857], [36.06, 415.3680408349576, 0.67689276], [36.07, 416.95767945096117, 0.6457863], [36.08, 416.5208565859766, 0.63615954], [36.09, 417.95442130823915, 0.5647868], [36.1, 419.2274358346976, 0.60631233], [36.11, 418.6196482306155, 0.64632076], [36.12, 418.78654625917466, 0.76720965], [36.13, 419.36951818429134, 0.6893278], [36.14, 417.669046784656, 0.58054155], [36.15, 417.55949178175575, 0.5496431], [36.16, 416.6173327810601, 0.58893347], [36.17, 414.0467619040245, 0.41331694], [36.18, 397.1330411680881, 0.17470406], [36.19, 351.19438110206136, 0.5594901], [36.2, 344.7542812394133, 0.7040561], [36.21, 316.24848303677885, 0.7190631], [36.22, 293.2719134095893, 0.64957875], [36.23, 269.32862621835505, 0.7366367], [36.24, 258.11450998435424, 0.76225084], [36.25, 236.79234529197646, 0.60352695], [36.26, 212.77211986265485, 0.31710297], [36.27, 203.0244722122672, 0.6082864], [36.28, 203.28928209392973, 0.79660875], [36.29, 204.9385761470469, 0.786748], [36.3, 207.48622385770545, 0.8250081], [36.31, 208.47855738044348, 0.83813584], [36.32, 208.75604450503448, 0.8070752], [36.33, 208.41359721378416, 0.76062965], [36.34, 207.05284585503134, 0.7214488], [36.35, 205.77542575377012, 0.72666126], [36.36, 204.91304597438494, 0.70104903], [36.37, 204.05033125660577, 0.6484947], [36.38, 203.90538868568794, 0.62144226], [36.39, 204.87550058412072, 0.6376339], [36.4, 204.93682304207414, 0.6559452], [36.41, 205.01327526872532, 0.6355435], [36.42, 203.5529755273248, 0.52649784], [36.43, 180.07006915434434, 0.31857818], [36.44, 177.5608858479163, 0.5900083], [36.45, 175.4006239296314, 0.6655924], [36.46, 173.15786542649306, 0.7158177], [36.47, 173.46727031405462, 0.734721], [36.48, 173.72787331515667, 0.7242033], [36.49, 174.6625221540254, 0.7140299], [36.5, 175.5153006595367, 0.73306924], [36.51, 175.99872950218426, 0.71769536], [36.52, 175.66196168753177, 0.7381821], [36.53, 175.73709780364308, 0.73340225], [36.54, 175.57614973712617, 0.7365833], [36.55, 175.61263739899954, 0.7432617], [36.56, 175.98040896368346, 0.7109096], [36.57, 175.32385094754636, 0.55655134], [36.58, 174.07468613968894, 0.378284], [36.59, 169.28861457279837, 0.31872165], [36.6, 163.7806300812744, 0.06607143], [36.61, 155.3672901983958, 0.15702085], [36.62, 147.91276573715425, 0.21003827], [36.63, 156.06318445691917, 0.16167183], [36.64, 164.41702382848237, 0.1530737], [36.65, 169.2552844103025, 0.16381621], [36.66, 168.83968407943718, 0.24101311], [36.67, 192.71092099762262, 0.21980986], [36.68, 193.447137637171, 0.18865155], [36.69, 209.73777288080248, 0.3934484], [36.7, 211.5281018753787, 0.47389182], [36.71, 212.51976448848094, 0.37710777], [36.72, 211.0729874721089, 0.24050389], [36.73, 206.33668185374086, 0.17560713], [36.74, 207.07499776006478, 0.138218], [36.75, 208.56996028751124, 0.14949399], [36.76, 209.65966335737986, 0.16510814], [36.77, 210.69666299352465, 0.12723333], [36.78, 212.11333583388233, 0.26352918], [36.79, 213.9124486385067, 0.17503124], [36.8, 210.45012213378658, 0.1701727], [36.81, 189.91609775977957, 0.38137543], [36.82, 181.17093919612768, 0.21779951], [36.83, 173.9521444287051, 0.18679911], [36.84, 163.56606689480188, 0.16840908], [36.85, 165.9044176388505, 0.29700592], [36.86, 171.8734918177196, 0.22665818], [36.87, 174.15309155562312, 0.3399424], [36.88, 175.41028093172085, 0.36733714], [36.89, 174.32787961097586, 0.4238832], [36.9, 173.6951982350681, 0.19254243], [36.91, 178.1635675720284, 0.26532203], [36.92, 181.1613401971198, 0.15808092], [36.93, 162.52573659337568, 0.10554638], [36.94, 148.07603913872373, 0.071015924], [36.95, 130.82354430974775, 0.08684021], [36.96, 115.98105878700179, 0.06041828], [36.97, 105.11344428059178, 0.04288654], [36.98, 94.2495463215144, 0.05353423], [36.99, 83.69461665830195, 0.07004996], [37.0, 74.69944124287784, 0.10139277], [37.01, 64.16054309529473, 0.051180124], [37.02, 58.33891322823773, 0.09280636], [37.03, 51.92715862318125, 0.069262356], [37.04, 52.43972591968354, 0.100374736], [37.05, 52.30319481404785, 0.22030273], [37.06, 51.901634168596985, 0.1874685], [37.07, 50.7308109291974, 0.06886297], [37.08, 50.42376186938982, 0.11454126], [37.09, 49.732338908400706, 0.14321768], [37.1, 51.24665520220575, 0.33784813], [37.11, 53.620003031740424, 0.16948783], [37.12, 54.60841909189193, 0.40167612], [37.13, 53.880753221732796, 0.2677084], [37.14, 53.5190521800559, 0.49940482], [37.15, 53.1654896103517, 0.38370135], [37.16, 56.10985329375289, 0.29940683], [37.17, 65.24571725953925, 0.16576], [37.18, 69.91369774173678, 0.1287196], [37.19, 77.7939041937145, 0.10060173], [37.2, 83.25865594213218, 0.13241246], [37.21, 92.8523050632194, 0.13735247], [37.22, 101.85437204632058, 0.09959907], [37.23, 107.04546558949218, 0.115405835], [37.24, 107.19306649940899, 0.17707929], [37.25, 107.73509218213532, 0.23770577], [37.26, 107.47974219996911, 0.3331816], [37.27, 106.99583231032804, 0.24411514], [37.28, 114.20520679218052, 0.117641315], [37.29, 125.93613999003463, 0.23336211], [37.3, 135.72023480228006, 0.20207109], [37.31, 143.5379279232572, 0.12299462], [37.32, 146.36176156395743, 0.114199854], [37.33, 142.06686897094002, 0.14753032], [37.34, 131.49416895581984, 0.25357014], [37.35, 126.67164174827062, 0.30119225], [37.36, 118.39422717377752, 0.3187922], [37.37, 115.72090685379818, 0.6548424], [37.38, 117.00775240950219, 0.6106523], [37.39, 117.49159014051304, 0.7035344], [37.4, 117.49078825539485, 0.6682001], [37.41, 117.43845353547795, 0.70619345], [37.42, 117.4007448371901, 0.46180478], [37.43, 118.09046840698726, 0.48775572], [37.44, 118.59832044205564, 0.22622165], [37.45, 119.22005215868484, 0.43269798], [37.46, 119.9446340785403, 0.777093], [37.47, 122.23686432006524, 0.8005746], [37.48, 126.51695643664002, 0.7807463], [37.49, 131.9113916021922, 0.7764833], [37.5, 132.5707392167578, 0.82306874], [37.51, 135.49242417514213, 0.7096319], [37.52, 139.1087266507594, 0.31101936], [37.53, 141.22369792461575, 0.21719517], [37.54, 140.09021731363185, 0.15883134], [37.55, 154.04129671711036, 0.13259262], [37.56, 175.45497867657147, 0.3394268], [37.57, 191.10692693748032, 0.16467293], [37.58, 217.5678185519011, 0.12645757], [37.59, 233.4012920596716, 0.26512766], [37.6, 234.93085814736173, 0.20024656], [37.61, 235.23003203445802, 0.2584739], [37.62, 233.5324964498197, 0.12123543], [37.63, 233.55505689139878, 0.19339705], [37.64, 233.3443965638045, 0.1783561], [37.65, 233.93058538596532, 0.25288552], [37.66, 234.0743576326655, 0.25906226], [37.67, 237.61809738118927, 0.13260503], [37.68, 245.64735965285448, 0.1985861], [37.69, 252.57863434641774, 0.2919047], [37.7, 265.57743117470284, 0.47769997], [37.71, 273.1466008209998, 0.22000295], [37.72, 274.8787579480557, 0.12542374], [37.73, 270.3854653502561, 0.28594804], [37.74, 258.0591011193278, 0.27786568], [37.75, 246.00590649498113, 0.18491186], [37.76, 240.60346374457666, 0.101361014], [37.77, 233.702525246407, 0.15961295], [37.78, 233.61598592675517, 0.37642813], [37.79, 233.0911441225963, 0.5166706], [37.8, 232.51716788742644, 0.5686987], [37.81, 232.70988086873166, 0.5572464], [37.82, 233.23281247777115, 0.64613247], [37.83, 231.91780524318239, 0.639846], [37.84, 233.2007073121362, 0.7643516], [37.85, 232.44222938047943, 0.67092675], [37.86, 231.67080781939387, 0.71174794], [37.87, 231.33665517271777, 0.626497], [37.88, 232.47636343657715, 0.60243875], [37.89, 231.92857500179073, 0.6780697], [37.9, 231.98433723537119, 0.66868937], [37.91, 231.5906602412568, 0.5566336], [37.92, 233.1289096744325, 0.7143242], [37.93, 233.63564846903705, 0.58153635], [37.94, 233.58696521977657, 0.6459857], [37.95, 232.9904897424869, 0.6909553], [37.96, 233.22056876302693, 0.68786216], [37.97, 233.0251218533094, 0.74318063], [37.98, 232.6984037230563, 0.5515246], [37.99, 234.0015141445352, 0.17233115], [38.0, 223.35814690622112, 0.16786331], [38.01, 200.1936223132155, 0.67585784], [38.02, 190.1303241127021, 0.79811156], [38.03, 179.26042475221334, 0.780802], [38.04, 164.38770821932405, 0.7133361], [38.05, 147.2812926703193, 0.54552907], [38.06, 140.88964671414283, 0.58517206], [38.07, 140.6247193910698, 0.64833575], [38.08, 139.0955267583743, 0.7746893], [38.09, 138.95725389490423, 0.724527], [38.1, 139.03169999534913, 0.70242345], [38.11, 139.6344602637947, 0.77812165], [38.12, 140.78403875086752, 0.60077363], [38.13, 144.22217368463063, 0.3657253], [38.14, 147.4652240609672, 0.22329621], [38.15, 150.86909762234063, 0.24592566], [38.16, 153.09082410685426, 0.44015747], [38.17, 153.06860976233986, 0.43343583], [38.18, 154.0025322520271, 0.44435525], [38.19, 154.41970323544618, 0.43044633], [38.2, 154.31410251955384, 0.46149233], [38.21, 154.55372493287302, 0.48442483], [38.22, 154.86180313645517, 0.55429417], [38.23, 154.21523375647644, 0.55093044], [38.24, 154.30313607034344, 0.35832185], [38.25, 155.2624522041139, 0.5247991], [38.26, 155.19100770066308, 0.34574977], [38.27, 155.46374043417126, 0.32445467], [38.28, 161.45111713098572, 0.20282711], [38.29, 182.89058342090183, 0.17746416], [38.3, 191.87667208095644, 0.17488267], [38.31, 204.72352322953122, 0.16134915], [38.32, 228.2574465406633, 0.22135226], [38.33, 233.9121654493998, 0.23420006], [38.34, 233.96953088065044, 0.5334967], [38.35, 232.9866642690446, 0.69022745], [38.36, 231.33356558513418, 0.6850662], [38.37, 231.86762935049072, 0.71395564], [38.38, 232.65682683147912, 0.6753765], [38.39, 233.6609684571819, 0.743827], [38.4, 233.5115691512598, 0.7002879], [38.41, 232.95375423680463, 0.70440465], [38.42, 233.32733882781267, 0.7307174], [38.43, 231.77694019980464, 0.49738702], [38.44, 230.01499286322198, 0.23949596], [38.45, 228.34485334244533, 0.25855932], [38.46, 230.71399912409476, 0.093862526], [38.47, 233.76741723250458, 0.069057725], [38.48, 236.59144405989534, 0.052072413], [38.49, 237.26575134828852, 0.529636], [38.5, 239.96793651231965, 0.53527784], [38.51, 242.92961694871875, 0.17317638], [38.52, 244.61572655469783, 0.18515852], [38.53, 250.66104364026967, 0.17398167], [38.54, 252.698561656651, 0.20166044], [38.55, 258.28865760342734, 0.094429], [38.56, 257.24902816696084, 0.10319393], [38.57, 259.65405381132535, 0.4255339], [38.58, 261.6370412402769, 0.45174092], [38.59, 262.0192640333105, 0.39149517], [38.6, 268.24596984804685, 0.4307793], [38.61, 273.53125839412246, 0.4746463], [38.62, 272.6367722955447, 0.4131835], [38.63, 274.78787916465654, 0.23217922], [38.64, 272.1056652311277, 0.14353094], [38.65, 273.57112039644545, 0.515866], [38.66, 272.1009348077412, 0.51203984], [38.67, 270.605295251824, 0.7187499], [38.68, 271.6576867858908, 0.73369896], [38.69, 269.3373560104339, 0.41496444], [38.7, 273.23529348227936, 0.3004467], [38.71, 273.1678788408145, 0.11952176], [38.72, 274.0874742792983, 0.17127682], [38.73, 271.46336444289767, 0.37205645], [38.74, 268.94344408134305, 0.6713855], [38.75, 266.0697815928628, 0.70645183], [38.76, 263.026839898669, 0.5833602], [38.77, 261.4896582393068, 0.40694904], [38.78, 260.31521240533453, 0.31518477], [38.79, 261.6646416472993, 0.37052882], [38.8, 262.8949677552321, 0.2360469], [38.81, 261.8128522911637, 0.37046552], [38.82, 261.45202243857386, 0.2347452], [38.83, 254.07058111300734, 0.28844565], [38.84, 251.69736885354965, 0.4539097], [38.85, 251.99748355179253, 0.2566676], [38.86, 244.62080112305495, 0.2081551], [38.87, 239.09507945443357, 0.34339356], [38.88, 227.8263373631883, 0.21667494], [38.89, 216.59537254538137, 0.31559074], [38.9, 211.66484726652314, 0.31950414], [38.91, 208.6254152389999, 0.47974792], [38.92, 209.01848482030852, 0.47462994], [38.93, 212.51021173233494, 0.3984477], [38.94, 226.0596377675927, 0.4894304], [38.95, 247.53711266953385, 0.3760485], [38.96, 251.8130756648085, 0.40188685], [38.97, 247.26582255180506, 0.565871], [38.98, 244.04139544358577, 0.69110465], [38.99, 242.17532797495878, 0.6891407], [39.0, 238.27444245595984, 0.72295856], [39.01, 236.4040438316664, 0.7656906], [39.02, 235.45002726194045, 0.7525826], [39.03, 234.6829106813305, 0.67241496], [39.04, 235.08058674186992, 0.69952446], [39.05, 235.02732094806538, 0.559013], [39.06, 234.73098336035488, 0.6413466], [39.07, 231.68745179585517, 0.7596416], [39.08, 229.484066688645, 0.80186635], [39.09, 228.36533972202704, 0.8181524], [39.1, 226.50555524085388, 0.8156246], [39.11, 224.29102793403646, 0.7437937], [39.12, 223.98749590386961, 0.5210647], [39.13, 221.21069496481869, 0.13899826], [39.14, 208.9297200432099, 0.1171357], [39.15, 203.88655880940127, 0.3840681], [39.16, 190.7263006431903, 0.5340127], [39.17, 169.0708293395677, 0.5611786], [39.18, 155.77222003296458, 0.60005385], [39.19, 138.56209692177566, 0.5761775], [39.2, 129.21657250109374, 0.6120443], [39.21, 115.03226749836094, 0.323677], [39.22, 105.83509159400818, 0.19135806], [39.23, 104.74888883546079, 0.1972818], [39.24, 94.40932618178118, 0.21015431], [39.25, 84.5285977455857, 0.29060584], [39.26, 77.51877034510547, 0.19164637], [39.27, 68.67438266673804, 0.37423068], [39.28, 60.461556313213684, 0.25364366], [39.29, 53.80065526285601, 0.28567138], [39.3, 48.1409310513217, 0.19455294], [39.31, 43.16333640316215, 0.31296813], [39.32, 43.910289633180206, 0.2726293], [39.33, 47.017152221500744, 0.564665], [39.34, 47.999463131081875, 0.6702402], [39.35, 48.975031808546625, 0.7127482], [39.36, 51.28403545124654, 0.44560823], [39.37, 51.74288850838642, 0.10464542], [39.38, 47.34710892023297, 0.07413937], [39.39, 41.652723971732684, 0.14146939], [39.4, 42.93956041173267, 0.16292888], [39.41, 44.53437448732637, 0.19246028], [39.42, 45.17813072038645, 0.14143449], [39.43, 43.82802416084776, 0.11348189], [39.44, 44.389751831816284, 0.08062406], [39.45, 44.54063779603155, 0.100289315], [39.46, 44.35270703314999, 0.39853257], [39.47, 44.72404252463057, 0.3836726], [39.48, 45.455430296524, 0.1791071], [39.49, 45.84890254327721, 0.19612692], [39.5, 46.76471839060555, 0.342996], [39.51, 46.85195029623049, 0.42580006], [39.52, 46.90276680545102, 0.2922169], [39.53, 47.3148776371029, 0.26497918], [39.54, 47.93810553548808, 0.28930876], [39.55, 47.419437764817985, 0.23239514], [39.56, 47.42726263928948, 0.6383166], [39.57, 47.202506796387205, 0.4529549], [39.58, 47.196515406231626, 0.54222333], [39.59, 46.8867221927632, 0.17062342], [39.6, 46.59942669469469, 0.27991506], [39.61, 45.32948471319318, 0.28208658], [39.62, 44.97893399588018, 0.37224433], [39.63, 44.619530691027734, 0.30348098], [39.64, 44.30194146123671, 0.21753614], [39.65, 45.0604331461104, 0.21050654], [39.66, 45.077771825753885, 0.34939376], [39.67, 44.689714102785494, 0.29795432], [39.68, 45.03403099834565, 0.3023149], [39.69, 45.50349771273889, 0.33786517], [39.7, 45.35039831497994, 0.25810426], [39.71, 45.25962790890347, 0.26151377], [39.72, 45.706990491555274, 0.19049871], [39.73, 46.23240656237215, 0.29954064], [39.74, 46.88424541363767, 0.35412323], [39.75, 46.8366007341404, 0.4828806], [39.76, 46.31277077237863, 0.4937895], [39.77, 45.85199529571601, 0.53654844], [39.78, 45.97927489220122, 0.45632184], [39.79, 45.47090549408772, 0.4555027], [39.8, 45.25683875303166, 0.40445602], [39.81, 45.289044814937824, 0.337486], [39.82, 45.77256614506656, 0.43693936], [39.83, 45.65033270393191, 0.47821006], [39.84, 46.72391819932053, 0.4579584], [39.85, 47.4041736563406, 0.3387311], [39.86, 45.727492614207094, 0.37695098], [39.87, 44.96211421788965, 0.5690136], [39.88, 45.356042206604734, 0.38040373], [39.89, 45.72319806635665, 0.2895355], [39.9, 47.18803851091948, 0.19648834], [39.91, 48.49214505271653, 0.2443713], [39.92, 48.69659947295033, 0.13044308], [39.93, 48.55442746737235, 0.26103693], [39.94, 46.830881174481966, 0.47878763], [39.95, 46.27828852079369, 0.56146806], [39.96, 45.803163188702214, 0.28134558], [39.97, 45.17202949057102, 0.16239217], [39.98, 44.85970116455357, 0.15650249], [39.99, 44.8958664846608, 0.16651465], [40.0, 44.55410191804254, 0.15323664], [40.01, 45.20766493449807, 0.1511577], [40.02, 45.31957307163655, 0.22967121], [40.03, 46.11164007073835, 0.16762634], [40.04, 46.47259836011811, 0.3372972], [40.05, 46.13401864052021, 0.353282], [40.06, 45.42271382909501, 0.49887055], [40.07, 44.95520387365794, 0.5535663], [40.08, 45.57287561933822, 0.43679145], [40.09, 45.6324683334304, 0.54043895], [40.1, 45.67467324286467, 0.64204514], [40.11, 44.9622748648373, 0.57577384], [40.12, 44.918571852692175, 0.44931653], [40.13, 44.78400597007997, 0.4562273], [40.14, 44.290179180956756, 0.3157162], [40.15, 45.7317233984978, 0.34902447], [40.16, 45.80789097953101, 0.61706823], [40.17, 45.53575387469007, 0.5828048], [40.18, 44.91642921497625, 0.6422369], [40.19, 45.070828402824276, 0.6283806], [40.2, 45.20604831172817, 0.6147796], [40.21, 45.88508528218718, 0.7102633], [40.22, 46.35461914843329, 0.75119925], [40.23, 46.97589919344166, 0.61009294], [40.24, 46.69337697410745, 0.64940053], [40.25, 46.90985880948354, 0.6862806], [40.26, 51.31755546380616, 0.64656085], [40.27, 60.32137318254122, 0.71605045], [40.28, 65.56753099932062, 0.67722124], [40.29, 74.05794353008248, 0.6330815], [40.3, 86.64303917382821, 0.5987566], [40.31, 90.93729678391537, 0.618432], [40.32, 104.98557814917972, 0.5257206], [40.33, 118.1169339681181, 0.18237785], [40.34, 132.68581653184398, 0.46769357], [40.35, 145.4354984886084, 0.25565553], [40.36, 164.02974302008306, 0.31363434], [40.37, 179.56398744197526, 0.50204945], [40.38, 178.86028370866623, 0.72935635], [40.39, 178.8347616766225, 0.7658103], [40.4, 179.25995763676502, 0.75036496], [40.41, 180.504079389354, 0.72422725], [40.42, 181.44532467532142, 0.7412551], [40.43, 181.77406194123623, 0.72089976], [40.44, 181.0215909524714, 0.61326545], [40.45, 181.3837715377084, 0.52340597], [40.46, 176.69625992010543, 0.36182043], [40.47, 187.4635878493481, 0.18845618], [40.48, 199.93751330985194, 0.29053202], [40.49, 200.87725200054993, 0.4159583], [40.5, 204.81193361823554, 0.5677389], [40.51, 208.10348368253014, 0.70617837], [40.52, 210.85932713835345, 0.6650204], [40.53, 210.87977289671971, 0.7000103], [40.54, 210.01754297986196, 0.70890707], [40.55, 208.13765312261563, 0.7259767], [40.56, 206.30698564373873, 0.78451115], [40.57, 206.04373997076266, 0.7642457], [40.58, 206.1931602583928, 0.69554245], [40.59, 206.557409999637, 0.66510737], [40.6, 207.82943331906094, 0.6482525], [40.61, 201.87959683068257, 0.4892672], [40.62, 183.52907966588964, 0.3090985], [40.63, 175.85799745158184, 0.46877304], [40.64, 166.0710158641046, 0.6804225], [40.65, 157.93909708396356, 0.544334], [40.66, 143.5714371878354, 0.4280494], [40.67, 137.14796513332266, 0.21249142], [40.68, 136.91234317993826, 0.3569478], [40.69, 136.01861655375487, 0.43371883], [40.7, 135.53414407997968, 0.6327092], [40.71, 136.04458495695806, 0.6510254], [40.72, 137.52171519714767, 0.59049046], [40.73, 139.34501341448168, 0.66609454], [40.74, 140.61170319427043, 0.59685475], [40.75, 139.82881315670167, 0.53212816], [40.76, 139.17832287536763, 0.65872633], [40.77, 139.48698362203206, 0.6408458], [40.78, 139.19796740044487, 0.40388358], [40.79, 131.1467605250387, 0.16548622], [40.8, 120.1294568136335, 0.29740655], [40.81, 109.23581931378608, 0.1745898], [40.82, 102.50176990348888, 0.21719077], [40.83, 93.30937043702441, 0.09300719], [40.84, 83.45701550416982, 0.19985281], [40.85, 79.80582752832932, 0.30492863], [40.86, 72.11425754895566, 0.20020679], [40.87, 65.79500980854814, 0.3227277], [40.88, 60.813968774942204, 0.33850724], [40.89, 53.92207669928588, 0.10163171], [40.9, 50.8490886702854, 0.26332122], [40.91, 46.04267548286286, 0.11442096], [40.92, 40.52916935297777, 0.23192698], [40.93, 37.624901911076876, 0.19610544], [40.94, 34.61187929375318, 0.3166336], [40.95, 34.77907056770968, 0.48436984], [40.96, 35.08366805415832, 0.2514433], [40.97, 34.884001311026864, 0.29515335], [40.98, 35.17474159557629, 0.14045763], [40.99, 34.982881542017275, 0.254711], [41.0, 34.73825872246475, 0.38331634], [41.01, 34.76761325747909, 0.3260739], [41.02, 34.59839545361493, 0.38460675], [41.03, 34.53360276215377, 0.37822452], [41.04, 34.97770328186411, 0.38054872], [41.05, 36.297550837263024, 0.09644336], [41.06, 37.613097704736354, 0.08981721], [41.07, 38.93751238339921, 0.15057795], [41.08, 38.72308389346235, 0.09936811], [41.09, 38.79280137287036, 0.22999959], [41.1, 38.38239083022306, 0.44438314], [41.11, 38.064581499277914, 0.38991073], [41.12, 38.57314586069912, 0.58867353], [41.13, 38.582089726183206, 0.6724857], [41.14, 38.57355367587101, 0.6110841], [41.15, 38.64582348912572, 0.6587621], [41.16, 38.264950938178906, 0.57118756], [41.17, 38.48796012358676, 0.7408291], [41.18, 38.652689311986805, 0.7787945], [41.19, 38.626643621996394, 0.77576596], [41.2, 38.562659918199046, 0.7970247], [41.21, 38.577020086955514, 0.79882216], [41.22, 38.63539998422549, 0.80665547], [41.23, 38.96801452625978, 0.79094756], [41.24, 38.627692937253045, 0.7899371], [41.25, 38.63946028499198, 0.82018584], [41.26, 38.53729045228561, 0.8059157], [41.27, 37.95512088796531, 0.49625713], [41.28, 36.839789959126705, 0.49096403], [41.29, 36.79901386103574, 0.33113834], [41.3, 38.33885491217665, 0.21069512], [41.31, 39.83513822684864, 0.09546256], [41.32, 40.744304161665056, 0.21479517], [41.33, 41.95468234268687, 0.20675877], [41.34, 43.54698725620334, 0.49581978], [41.35, 45.58564691980537, 0.5230192], [41.36, 46.09876322632958, 0.5174876], [41.37, 46.36424215080964, 0.441101], [41.38, 46.82314626777884, 0.28123173], [41.39, 48.039128610656256, 0.27080575], [41.4, 51.31819866905954, 0.187685], [41.41, 51.69244343960354, 0.108981736], [41.42, 51.935344060518176, 0.13551624], [41.43, 48.3420213673375, 0.10258216], [41.44, 48.09602971131399, 0.33139083], [41.45, 47.584292495189445, 0.3431178], [41.46, 47.49376443436111, 0.49444723], [41.47, 47.06676941711481, 0.3533878], [41.48, 47.061788929397, 0.32430694], [41.49, 46.76521421164268, 0.16694543], [41.5, 46.64144861907162, 0.15886891], [41.51, 46.317089306149114, 0.3721935], [41.52, 46.32691734181408, 0.3005454], [41.53, 46.18858656044893, 0.19495563], [41.54, 46.09502835328229, 0.2910974], [41.55, 46.17176934056878, 0.4587938], [41.56, 46.43860130009119, 0.32906243], [41.57, 46.50221263709164, 0.40457168], [41.58, 46.38789175231614, 0.2552904], [41.59, 46.396965021989885, 0.49525905], [41.6, 46.38822778560944, 0.42114234], [41.61, 46.32396228189318, 0.53289497], [41.62, 46.34219310611406, 0.5195238], [41.63, 46.60176110609367, 0.55255044], [41.64, 46.406839112180755, 0.63575035], [41.65, 47.08381643634866, 0.6073806], [41.66, 47.470511084020856, 0.49242815], [41.67, 47.015013506942466, 0.558586], [41.68, 46.655673108496636, 0.5689372], [41.69, 46.626018382040414, 0.6024761], [41.7, 46.48297982267897, 0.60063], [41.71, 46.362059621244555, 0.59505737], [41.72, 46.371184633556965, 0.5992979], [41.73, 46.17373400911673, 0.61236525], [41.74, 46.39047070239525, 0.5740653], [41.75, 46.46382504732249, 0.4428503], [41.76, 46.54233491575668, 0.4742826], [41.77, 46.2089051294588, 0.44475502], [41.78, 46.34486028714555, 0.39669457], [41.79, 46.38102550395196, 0.28080115], [41.8, 46.52228704827664, 0.25703153], [41.81, 46.27239969893661, 0.17939983], [41.82, 46.830658483058876, 0.30189145], [41.83, 46.732555618186396, 0.1740001], [41.84, 46.70393417035186, 0.19543682], [41.85, 46.54960891794992, 0.15894416], [41.86, 46.5168403727818, 0.19845141], [41.87, 47.32108592812217, 0.13168019], [41.88, 47.11956113399131, 0.144971], [41.89, 46.90380026766917, 0.21337035], [41.9, 46.717056591570355, 0.19970725], [41.91, 46.805391056155486, 0.2613756], [41.92, 46.69557076148383, 0.27323568], [41.93, 46.8750200005877, 0.14678971], [41.94, 47.73107377181317, 0.18974426], [41.95, 47.50962390042288, 0.23533319], [41.96, 47.42010642579637, 0.19482906], [41.97, 47.78865945987886, 0.29064053], [41.98, 46.69498298910817, 0.38901728], [41.99, 46.57472875145524, 0.45388618], [42.0, 46.68069489888677, 0.5244614], [42.01, 46.39115252894857, 0.4691864], [42.02, 46.54236753319086, 0.575108], [42.03, 46.57474379255512, 0.4750478], [42.04, 46.840831613238336, 0.6055517], [42.05, 46.504409939427376, 0.47934], [42.06, 46.75202740350127, 0.64579475], [42.07, 46.6201815970159, 0.6441266], [42.08, 46.79470255164638, 0.7432654], [42.09, 46.64627884179943, 0.75784844], [42.1, 46.5458227576508, 0.78159624], [42.11, 46.50830775873239, 0.7867032], [42.12, 46.478419662088434, 0.8068611], [42.13, 46.70161006287317, 0.8067067], [42.14, 46.610928153445926, 0.82329977], [42.15, 46.9080567240527, 0.761241], [42.16, 46.4557434956742, 0.65593934], [42.17, 44.91858810158223, 0.5923234], [42.18, 44.817660852489105, 0.49147508], [42.19, 47.81638092402912, 0.3053591], [42.2, 50.542336050018655, 0.26831016], [42.21, 51.32498224759929, 0.15474378], [42.22, 52.045119838870264, 0.12838216], [42.23, 52.39794253893126, 0.14294377], [42.24, 52.23391434448232, 0.21349923], [42.25, 52.25224273004349, 0.4839656], [42.26, 52.46061610304369, 0.5593988], [42.27, 52.27022064771985, 0.31662267], [42.28, 52.825568953545464, 0.5547319], [42.29, 52.8511486382742, 0.66937757], [42.3, 52.75277841794677, 0.65964097], [42.31, 52.28432784846408, 0.7500179], [42.32, 52.034123644707805, 0.7631932], [42.33, 51.913180135863755, 0.7537751], [42.34, 51.822296105168675, 0.74196434], [42.35, 51.75921484248722, 0.64216745], [42.36, 52.01937650882624, 0.6535621], [42.37, 52.67132129402752, 0.4256148], [42.38, 52.51197226740146, 0.5807535], [42.39, 51.84509818432301, 0.69844604], [42.4, 51.63324919740354, 0.7638956], [42.41, 51.71730719070227, 0.6606108], [42.42, 52.21574669132912, 0.6662062], [42.43, 53.29817759800112, 0.39799863], [42.44, 53.84059673470132, 0.3835248], [42.45, 53.79342087033848, 0.29745054], [42.46, 53.8073213802861, 0.24231048], [42.47, 53.8613919835737, 0.15973242], [42.48, 52.92290329640042, 0.24887714], [42.49, 52.852992491088045, 0.17102177], [42.5, 54.04841480683008, 0.124674074], [42.51, 57.27870095384723, 0.1399973], [42.52, 61.97820318546099, 0.17724276], [42.53, 67.0378692065014, 0.1858299], [42.54, 69.07260832394228, 0.17818943], [42.55, 74.1462269816944, 0.13848591], [42.56, 80.54589663571383, 0.41936648], [42.57, 85.95950122421036, 0.43483073], [42.58, 88.7079720584773, 0.47867337], [42.59, 92.54577630200231, 0.1358763], [42.6, 102.14544758292773, 0.31382167], [42.61, 105.31255524430853, 0.086451605], [42.62, 105.72136438639225, 0.13059776], [42.63, 105.798103669823, 0.263589], [42.64, 106.18943668848674, 0.2851248], [42.65, 105.70562063844334, 0.32646385], [42.66, 106.2070567915971, 0.280872], [42.67, 106.2915627458729, 0.19644023], [42.68, 106.12552463698196, 0.31893012], [42.69, 117.17980921347645, 0.3261878], [42.7, 129.62808663340226, 0.3133575], [42.71, 145.47478082365453, 0.31873462], [42.72, 155.8525654742748, 0.32524183], [42.73, 154.75347358425836, 0.40804148], [42.74, 153.61260602162395, 0.27988896], [42.75, 156.47590556593903, 0.575728], [42.76, 163.9734226454539, 0.66038257], [42.77, 177.04826096447195, 0.7159314], [42.78, 186.17648479701202, 0.6808967], [42.79, 196.7364289139266, 0.5336503], [42.8, 207.41836701674026, 0.53370464], [42.81, 210.24237978256875, 0.54068273], [42.82, 214.6467570071469, 0.40760264], [42.83, 223.14454533971085, 0.16984326], [42.84, 234.97003664760905, 0.20089135], [42.85, 247.49469624363897, 0.21133022], [42.86, 258.99946636695137, 0.15919942], [42.87, 266.24624485397146, 0.13180669], [42.88, 270.41408544661823, 0.37877795], [42.89, 268.42098673375335, 0.28617582], [42.9, 268.79020068032423, 0.1610298], [42.91, 300.4901105388651, 0.20152695], [42.92, 352.81171423925446, 0.17361061], [42.93, 387.1861417340982, 0.20441583], [42.94, 388.88789126663147, 0.18542124], [42.95, 393.47158021980135, 0.2101172], [42.96, 358.9641372315072, 0.23452424], [42.97, 358.9286955654412, 0.24225841], [42.98, 362.35204108318874, 0.30462217], [42.99, 367.55140992354285, 0.2702063], [43.0, 372.8224327832761, 0.12870911], [43.01, 380.22430471228597, 0.1891759], [43.02, 380.7527041429028, 0.101824634], [43.03, 379.3897332479102, 0.1957398], [43.04, 375.1826090985371, 0.13995834], [43.05, 374.98458473188475, 0.1748602], [43.06, 371.0423502457479, 0.14122027], [43.07, 365.4453701027038, 0.19578576], [43.08, 358.28534889114223, 0.24737768], [43.09, 334.65953059578703, 0.26399618], [43.1, 328.8250378213715, 0.31437173], [43.11, 320.35800511527265, 0.37552395], [43.12, 298.7231424561932, 0.38125426], [43.13, 286.87080814185873, 0.3110524], [43.14, 284.7131511865042, 0.4654708], [43.15, 287.79174632224664, 0.30643502], [43.16, 294.58196356530294, 0.10427424], [43.17, 309.5549306260038, 0.19531888], [43.18, 313.9711570454074, 0.4019492], [43.19, 330.8105750776713, 0.286722], [43.2, 346.497763863801, 0.14885525], [43.21, 366.5397657088397, 0.2502116], [43.22, 369.7542388652851, 0.38204917], [43.23, 377.9887543954869, 0.19050956], [43.24, 399.3066457393446, 0.16114713], [43.25, 419.58790062227246, 0.06543408], [43.26, 435.5740719977, 0.20980707], [43.27, 456.14853490477515, 0.21882358], [43.28, 459.8009993458586, 0.28500682], [43.29, 462.3347338088645, 0.29641846], [43.3, 462.68196875142445, 0.15662788], [43.31, 467.1011722375178, 0.20286623], [43.32, 477.3826765422427, 0.15640292], [43.33, 462.21611154914206, 0.0876761], [43.34, 438.6523536403808, 0.096732125], [43.35, 409.27437705925445, 0.23636019], [43.36, 398.77930945958656, 0.24934208], [43.37, 385.64591047271216, 0.4685057], [43.38, 358.35868386606825, 0.45866358], [43.39, 331.12403224817797, 0.26625973], [43.4, 311.51605873835103, 0.33849654], [43.41, 289.03836597168254, 0.22005822], [43.42, 280.38161379996336, 0.2097837], [43.43, 278.50298154486904, 0.2481381], [43.44, 280.67041549211433, 0.26570547], [43.45, 317.0123366469289, 0.20690438], [43.46, 374.48515621037757, 0.1696869], [43.47, 409.3392774732842, 0.17097695], [43.48, 410.7430761742926, 0.462029], [43.49, 413.00644283790945, 0.6012651], [43.5, 415.88503596483497, 0.6954848], [43.51, 416.10247392190473, 0.6727164], [43.52, 418.858470076722, 0.64716035], [43.53, 416.36913532393066, 0.5816453], [43.54, 417.5191004869698, 0.64279085], [43.55, 415.92992253996135, 0.6946826], [43.56, 413.94812820194267, 0.64430183], [43.57, 412.3280409156745, 0.60218096], [43.58, 408.9038113684817, 0.527671], [43.59, 410.7695561840432, 0.30434853], [43.6, 402.87564069507437, 0.14507236], [43.61, 404.61385489289796, 0.3008784], [43.62, 406.84947775796763, 0.44773024], [43.63, 411.6643931630098, 0.5060075], [43.64, 417.9117321628118, 0.46209696], [43.65, 416.5653422326017, 0.5514677], [43.66, 418.5275916521269, 0.5006161], [43.67, 417.4696628596429, 0.7403412], [43.68, 416.94848657659867, 0.7353222], [43.69, 415.6548682178886, 0.6900625], [43.7, 416.5758276668196, 0.62672573], [43.71, 419.09559879834654, 0.7112796], [43.72, 422.3957974504965, 0.5912293], [43.73, 383.88115242444474, 0.35905895], [43.74, 332.2995116088245, 0.23644854], [43.75, 290.6461303141651, 0.22638965], [43.76, 268.7683659000948, 0.37645322], [43.77, 232.65209986200324, 0.54079074], [43.78, 213.34944665130462, 0.43691182], [43.79, 181.96898478868218, 0.41659623], [43.8, 164.84264273369854, 0.3796682], [43.81, 143.0485664711934, 0.42136663], [43.82, 136.16481508506672, 0.505755], [43.83, 116.43186049156301, 0.5252991], [43.84, 107.4081570134766, 0.5677041], [43.85, 92.92050252960051, 0.38501728], [43.86, 82.47704876315316, 0.3181427], [43.87, 72.90634992073593, 0.21725011], [43.88, 65.13684622708743, 0.45026922], [43.89, 57.85135746660815, 0.6554531], [43.9, 57.594836004121404, 0.6287766], [43.91, 57.49081586300382, 0.570846], [43.92, 57.22583932302243, 0.57093936], [43.93, 57.43971184340995, 0.58365965], [43.94, 57.51135885634394, 0.5805966], [43.95, 57.39207314133492, 0.4129195], [43.96, 56.18793008441368, 0.4472622], [43.97, 57.42113171575934, 0.24403451], [43.98, 58.367068606893326, 0.5522437], [43.99, 58.89812283894321, 0.6651428], [44.0, 58.8220430325649, 0.70832705], [44.01, 58.50986464220388, 0.8312101], [44.02, 58.741231880693825, 0.7604166], [44.03, 58.095332434058705, 0.7178804], [44.04, 58.462894487062286, 0.74671423], [44.05, 58.52420761710068, 0.76733124], [44.06, 58.727871167073566, 0.76626974], [44.07, 58.78716636998306, 0.7314901], [44.08, 58.653520837291104, 0.5464786], [44.09, 57.8381020041935, 0.07826208], [44.1, 56.46151581526215, 0.10477563], [44.11, 55.13872256193687, 0.2039853], [44.12, 52.694587835855046, 0.1626636], [44.13, 51.55977036529173, 0.14973733], [44.14, 49.56094643102644, 0.15311167], [44.15, 46.867892168381104, 0.12883042], [44.16, 44.81826891077194, 0.13123086], [44.17, 43.767965863579605, 0.082084276], [44.18, 43.37541568658174, 0.1871182], [44.19, 43.99829127103958, 0.30993602], [44.2, 43.60154466502293, 0.16276614], [44.21, 43.35127768880693, 0.19802596], [44.22, 43.22808695880974, 0.10631692], [44.23, 43.887447017176356, 0.16366911], [44.24, 44.181701150540135, 0.15978196], [44.25, 43.641797449357504, 0.18367545], [44.26, 43.45507527189298, 0.18445763], [44.27, 43.550741975829936, 0.31428784], [44.28, 43.909628301807864, 0.40377825], [44.29, 44.15725028619051, 0.27132258], [44.3, 44.291418289559836, 0.2448486], [44.31, 44.31057053110578, 0.2063065], [44.32, 44.23598128893367, 0.33391774], [44.33, 44.54219035787213, 0.50761515], [44.34, 44.47122889372259, 0.46675542], [44.35, 44.66859343565417, 0.5218689], [44.36, 44.38017649239572, 0.3938307], [44.37, 44.3078011437036, 0.4179178], [44.38, 43.89327288674083, 0.3818711], [44.39, 44.024478205627034, 0.20686124], [44.4, 44.2026759060729, 0.21612668], [44.41, 43.56375865024384, 0.29350173], [44.42, 43.67462646500529, 0.3642808], [44.43, 43.856898859866206, 0.22813244], [44.44, 43.881330934011345, 0.24796371], [44.45, 44.52464356880255, 0.3556513], [44.46, 44.56062342457032, 0.45394], [44.47, 43.96701978089329, 0.26468006], [44.48, 43.023400822219855, 0.16627158], [44.49, 43.770724839711505, 0.22616568], [44.5, 43.97246990236002, 0.5048145], [44.51, 44.010960188168475, 0.663021], [44.52, 43.84315069994496, 0.59821886], [44.53, 43.78201057653172, 0.65009123], [44.54, 43.90604302022484, 0.46389848], [44.55, 43.987149184215546, 0.6393453], [44.56, 43.860396324104194, 0.61392546], [44.57, 43.15725862160144, 0.60461956], [44.58, 43.099855219322826, 0.6479794], [44.59, 43.10967069464919, 0.58735317], [44.6, 43.68268073693646, 0.5442227], [44.61, 43.66551386564698, 0.31265834], [44.62, 43.67165216683531, 0.48147908], [44.63, 43.907142009258365, 0.24798666], [44.64, 43.907319568805306, 0.15716478], [44.65, 44.402968249019835, 0.13920861], [44.66, 43.4378776061874, 0.1621435], [44.67, 43.37454988049519, 0.077748716], [44.68, 43.292164344132104, 0.098281555], [44.69, 43.816410613174966, 0.15601023], [44.7, 43.89136714623056, 0.2743929], [44.71, 44.1251359352142, 0.50736403], [44.72, 44.48587432402682, 0.57196915], [44.73, 44.37427963654422, 0.63176024], [44.74, 43.9398233240161, 0.6987444], [44.75, 43.89427136458277, 0.6171581], [44.76, 44.04265103984855, 0.50901115], [44.77, 43.87471820622182, 0.19067095], [44.78, 44.651484022064416, 0.11885606], [44.79, 45.736264667406786, 0.18826498], [44.8, 46.60174849761993, 0.17661496], [44.81, 47.467108362309105, 0.25017148], [44.82, 48.09571167220618, 0.16493031], [44.83, 49.18162950612482, 0.3522753], [44.84, 49.61125224130737, 0.389577], [44.85, 49.6295312935662, 0.36796558], [44.86, 50.32089378901753, 0.49004364], [44.87, 51.15759121654608, 0.5972327], [44.88, 51.85354185183732, 0.7164739], [44.89, 52.344009288885694, 0.7314899], [44.9, 54.03250114080394, 0.6240204], [44.91, 54.77109080013647, 0.46025023], [44.92, 55.96016713032447, 0.54704356], [44.93, 56.806701748160464, 0.41826716], [44.94, 57.641220078080224, 0.44825274], [44.95, 57.95560205280494, 0.37411243], [44.96, 57.81614722873405, 0.14082727], [44.97, 58.0404400317387, 0.18159842], [44.98, 57.635871073509534, 0.56220347], [44.99, 58.20096000281285, 0.68998647], [45.0, 57.7938335248868, 0.7953014], [45.01, 57.82111174491048, 0.75473315], [45.02, 58.7014519227818, 0.27641448], [45.03, 62.43741847712079, 0.33572784], [45.04, 69.93107558896752, 0.44071737], [45.05, 74.34491438616205, 0.31855333], [45.06, 76.59333640135122, 0.2887074], [45.07, 81.18626511865406, 0.21858296], [45.08, 90.42505727369809, 0.20857662], [45.09, 96.10854260792294, 0.14037985], [45.1, 103.80510490256795, 0.08151213], [45.11, 109.89449457418951, 0.27377567], [45.12, 116.83385852087291, 0.156726], [45.13, 123.96368409759502, 0.11649024], [45.14, 135.38479176443437, 0.1698576], [45.15, 146.02184945872682, 0.19338399], [45.16, 158.03278503786817, 0.14018783], [45.17, 167.55023622035932, 0.07029826], [45.18, 172.41137929567185, 0.06651037], [45.19, 175.4237273904746, 0.09113392], [45.2, 175.59420204032105, 0.19417578], [45.21, 175.53069392376753, 0.2780378], [45.22, 175.1116018747933, 0.31740472], [45.23, 175.81080159765148, 0.2617096], [45.24, 176.19935680825216, 0.18177049], [45.25, 175.7033334297805, 0.2850576], [45.26, 174.18960021716708, 0.4252838], [45.27, 174.4974536771869, 0.26110196], [45.28, 175.2928322225125, 0.29053393], [45.29, 176.76779301304717, 0.5943777], [45.3, 176.206911610755, 0.5722211], [45.31, 175.61473998524903, 0.6199897], [45.32, 174.72257026509496, 0.5133232], [45.33, 186.5043546242239, 0.51369977], [45.34, 213.99849328554384, 0.2760514], [45.35, 231.57291961542086, 0.28643098], [45.36, 232.9810448084457, 0.45144212], [45.37, 231.44646390984462, 0.42498773], [45.38, 232.39165211159667, 0.49323484], [45.39, 231.34656931702014, 0.63697094], [45.4, 231.4763391226557, 0.61319417], [45.41, 230.8073958173054, 0.656575], [45.42, 231.47309406389863, 0.70034164], [45.43, 231.42647843165176, 0.69796884], [45.44, 231.22679482005483, 0.66307217], [45.45, 231.07167995673092, 0.7012067], [45.46, 231.9222870409847, 0.72469497], [45.47, 232.08331448791927, 0.7285692], [45.48, 232.06194905416154, 0.7566257], [45.49, 232.27082858301145, 0.7781226], [45.5, 232.06899124632687, 0.8093718], [45.51, 207.57361898402075, 0.77876943], [45.52, 179.01289050474088, 0.6914677], [45.53, 156.16348690888964, 0.5050452], [45.54, 139.3436190139169, 0.3270925], [45.55, 138.03763200744743, 0.64452034], [45.56, 136.75407686518264, 0.78704405], [45.57, 135.5027574360595, 0.78550273], [45.58, 135.3482954277773, 0.7783366], [45.59, 133.90564200978017, 0.72857904], [45.6, 133.00428952733006, 0.76716536], [45.61, 132.52870134652767, 0.7580622], [45.62, 131.55457010368306, 0.5807724], [45.63, 132.6547299472077, 0.5519062], [45.64, 132.18648078633237, 0.5374046], [45.65, 133.95443322805977, 0.640965], [45.66, 135.6895494365203, 0.7426864], [45.67, 136.38284144818016, 0.766998], [45.68, 137.41432872329557, 0.77267766], [45.69, 139.12417518294512, 0.7897301], [45.7, 140.5450179305526, 0.7225281], [45.71, 142.52421216479982, 0.6670927], [45.72, 146.16462672267323, 0.75805366], [45.73, 147.99942122726543, 0.66058356], [45.74, 148.41520674032824, 0.62503517], [45.75, 146.31322388322215, 0.65592444], [45.76, 142.56637681919574, 0.70070326], [45.77, 141.17387275307837, 0.74186295], [45.78, 139.18820972698117, 0.8185813], [45.79, 137.43905906157545, 0.7574016], [45.8, 137.26861378687482, 0.6950511], [45.81, 137.5231813049566, 0.6624286], [45.82, 138.86971349748148, 0.6735356], [45.83, 141.86939800258085, 0.38404965], [45.84, 145.85784356386785, 0.25464082], [45.85, 152.07514532093592, 0.43894324], [45.86, 166.5543124040849, 0.43120712], [45.87, 186.93507971086063, 0.2069715], [45.88, 211.3861814453776, 0.46340975], [45.89, 231.23175158006322, 0.4001842], [45.9, 231.62103852360605, 0.24744616], [45.91, 232.6715760713555, 0.3276595], [45.92, 231.39555051220927, 0.3660035], [45.93, 231.95526400157294, 0.56909513], [45.94, 232.29143368509952, 0.6110896], [45.95, 229.87727254093474, 0.39384392], [45.96, 228.2446617291036, 0.23073955], [45.97, 223.59355387000332, 0.07574413], [45.98, 219.84787273387406, 0.059548676], [45.99, 216.80971528571777, 0.11126549], [46.0, 213.79805713774377, 0.12982865], [46.01, 210.2703048002196, 0.40375045], [46.02, 206.0024834853185, 0.7057445], [46.03, 194.36793568357592, 0.6971804], [46.04, 185.08306836133107, 0.56194615], [46.05, 179.2593755925142, 0.5561579], [46.06, 176.67901689915016, 0.6741049], [46.07, 176.23479935010874, 0.68403506], [46.08, 174.063345417194, 0.7313596], [46.09, 169.41205220032174, 0.74831086], [46.1, 163.3425209790861, 0.61128116], [46.11, 152.2973946050249, 0.56006813], [46.12, 146.37843985688292, 0.33097804], [46.13, 141.09065825967778, 0.2878187], [46.14, 138.40953101405273, 0.22992977], [46.15, 133.1782432641864, 0.5014581], [46.16, 129.6851416630023, 0.28380212], [46.17, 124.74995095497209, 0.36297202], [46.18, 119.74571159424536, 0.2571604], [46.19, 116.92144183781815, 0.31059867], [46.2, 115.73758602921859, 0.51971513], [46.21, 115.75245351007071, 0.68577254], [46.22, 117.0990258016486, 0.75253075], [46.23, 118.03581589024496, 0.8169765], [46.24, 118.08855681882896, 0.8548993], [46.25, 128.7695667238933, 0.8399243], [46.26, 147.98115219970282, 0.82481235], [46.27, 171.15270111611454, 0.7302343], [46.28, 188.03336163140753, 0.72034127], [46.29, 212.45354220845167, 0.5725441], [46.3, 231.8357145365278, 0.37194955], [46.31, 232.04469541125405, 0.4541732], [46.32, 234.1601508154159, 0.53971255], [46.33, 234.19457548641017, 0.2701892], [46.34, 234.3718275759059, 0.33371946], [46.35, 234.27927866360474, 0.36049858], [46.36, 234.0249275250606, 0.4190712], [46.37, 233.29014042219023, 0.53968006], [46.38, 233.63222874729118, 0.5919797], [46.39, 232.80188366149514, 0.68449694], [46.4, 233.6218095795208, 0.6393563], [46.41, 233.8514819035633, 0.6348075], [46.42, 233.90911773142165, 0.6115148], [46.43, 232.8926873126576, 0.6395695], [46.44, 231.44493918042758, 0.5721855], [46.45, 206.55095117897076, 0.2699401], [46.46, 180.3782574470009, 0.48488918], [46.47, 157.8239513495939, 0.46162176], [46.48, 141.19455554667167, 0.56479394], [46.49, 142.3680860542437, 0.6780497], [46.5, 142.6246168086418, 0.7689349], [46.51, 142.11854985589747, 0.76554066], [46.52, 140.71641905942806, 0.7461071], [46.53, 138.58964229647975, 0.7094119], [46.54, 135.6628065403466, 0.73673797], [46.55, 133.4621292355149, 0.8187102], [46.56, 132.4613286438921, 0.843105], [46.57, 132.7612428000116, 0.76819795], [46.58, 134.7048038736345, 0.64992225], [46.59, 138.2689523340721, 0.56886876], [46.6, 140.87639051977686, 0.594068], [46.61, 144.64221179697887, 0.62797856], [46.62, 147.05202992854, 0.67793715], [46.63, 146.99364983608538, 0.48704788], [46.64, 145.11579319981013, 0.49997428], [46.65, 142.0270885079932, 0.6081565], [46.66, 138.92110449757263, 0.7378064], [46.67, 137.13858324574932, 0.77486867], [46.68, 136.4155032444593, 0.7683881], [46.69, 136.6736707237965, 0.74422646], [46.7, 138.25405592546014, 0.761664], [46.71, 139.35024567977874, 0.77447367], [46.72, 140.02149363925966, 0.69194824], [46.73, 140.18250894889817, 0.66557103], [46.74, 140.37324755083117, 0.5271037], [46.75, 138.44249121760834, 0.2609568], [46.76, 139.91765329631093, 0.05583561], [46.77, 141.00402703259454, 0.18918166], [46.78, 141.87362858693172, 0.40153235], [46.79, 142.84112693808436, 0.5826028], [46.8, 145.67476778002225, 0.48558426], [46.81, 145.75551129461232, 0.2763657], [46.82, 146.90330508541618, 0.41070318], [46.83, 148.02275351300943, 0.7102546], [46.84, 149.8650944384914, 0.72016877], [46.85, 152.59524946993952, 0.7254391], [46.86, 154.8271623965596, 0.41881278], [46.87, 157.7897078428271, 0.13706578], [46.88, 162.27698801716002, 0.1111707], [46.89, 165.85546800730353, 0.18529509], [46.9, 167.98295114741785, 0.17546023], [46.91, 167.89438309849626, 0.2335404], [46.92, 170.23749902408125, 0.17175487], [46.93, 172.44493140728028, 0.11280013], [46.94, 173.10476071281187, 0.09424426], [46.95, 175.65448998726464, 0.060817197], [46.96, 173.242161429286, 0.18244861], [46.97, 169.29317778372263, 0.35228786], [46.98, 166.10116645587905, 0.43963385], [46.99, 163.94227608889932, 0.23322962], [47.0, 163.473326022692, 0.24548447], [47.01, 162.96482749503238, 0.1286517], [47.02, 162.25960582427862, 0.2218651], [47.03, 160.89091622769553, 0.2049479], [47.04, 153.8879107583409, 0.097088575], [47.05, 154.91194871657714, 0.17007868], [47.06, 159.10048272004812, 0.47831285], [47.07, 163.80271271682065, 0.23572068], [47.08, 167.35360971494822, 0.14659442], [47.09, 171.54727946723676, 0.3001718], [47.1, 173.75883632152167, 0.3433702], [47.11, 175.63960370528605, 0.5005854], [47.12, 175.05240516712723, 0.5263165], [47.13, 174.9049339689283, 0.5704881], [47.14, 174.66839192570097, 0.49576312], [47.15, 174.77184771294316, 0.58962584], [47.16, 174.8250460647876, 0.5760981], [47.17, 175.36838193059583, 0.59172374], [47.18, 176.06877385750005, 0.6279422], [47.19, 177.1833095603877, 0.69453794], [47.2, 177.4631101545657, 0.68833745], [47.21, 178.2651138577878, 0.61379254], [47.22, 177.68669161009737, 0.57866293], [47.23, 175.32538291132636, 0.16725059], [47.24, 174.1269817703667, 0.13679767], [47.25, 173.7772569747525, 0.35237208], [47.26, 176.5128416570661, 0.5834211], [47.27, 178.78676572294594, 0.5038156], [47.28, 179.6643711486503, 0.590105], [47.29, 179.79074348466338, 0.5656588], [47.3, 178.32048234965248, 0.49140713], [47.31, 178.29667373243745, 0.42307946], [47.32, 177.84934499494904, 0.41497546], [47.33, 177.57767563264522, 0.4598003], [47.34, 180.49604784370234, 0.673869], [47.35, 179.4770596355129, 0.62089884], [47.36, 179.1161180533033, 0.64979047], [47.37, 178.28662239213966, 0.59743136], [47.38, 176.76432979582114, 0.23145027], [47.39, 174.76802466950159, 0.46732298], [47.4, 175.80315257880872, 0.55383235], [47.41, 175.01961574537808, 0.7197252], [47.42, 174.7047734360119, 0.7892823], [47.43, 174.7051648903145, 0.795356], [47.44, 174.76427506671112, 0.8219297], [47.45, 174.82391756070953, 0.8349032], [47.46, 174.73657499047195, 0.8238405], [47.47, 174.43320494192534, 0.8060351], [47.48, 174.35799735326412, 0.8455854], [47.49, 174.47344009734837, 0.84093577], [47.5, 174.79406667458707, 0.84855056], [47.51, 174.83538223886507, 0.81931055], [47.52, 175.02052194226485, 0.8108956], [47.53, 174.72770081348182, 0.8155841], [47.54, 174.63635000164112, 0.8066142], [47.55, 174.58074909954456, 0.78761095], [47.56, 174.9493058833693, 0.8185626], [47.57, 174.8655926194473, 0.82463795], [47.58, 174.7657921056615, 0.82374525], [47.59, 174.61697168936018, 0.80485946], [47.6, 174.91253996502735, 0.7877125], [47.61, 174.4785629025607, 0.7736708], [47.62, 173.7751872215481, 0.73996], [47.63, 173.25802210029894, 0.7006156], [47.64, 173.6929873780311, 0.6767219], [47.65, 174.91232582958062, 0.41476664], [47.66, 176.71584110779204, 0.22070104], [47.67, 177.0013675596423, 0.42004266], [47.68, 176.23224492275116, 0.41735774], [47.69, 176.85012071227374, 0.49334252], [47.7, 176.68379363014648, 0.47460163], [47.71, 176.40788875670623, 0.47212288], [47.72, 177.41383734719176, 0.30925527], [47.73, 175.97481673760996, 0.2942782], [47.74, 175.6139123134072, 0.5641855], [47.75, 175.4334589704466, 0.6641551], [47.76, 175.8286608817798, 0.70186216], [47.77, 175.50745057532424, 0.75109], [47.78, 175.39736577572353, 0.78238785], [47.79, 175.5358855839492, 0.78950655], [47.8, 174.8162115966681, 0.7607542], [47.81, 174.4628058634986, 0.7530252], [47.82, 174.5367720328335, 0.74707544], [47.83, 175.18172229318228, 0.75141656], [47.84, 174.9240016634311, 0.7037209], [47.85, 174.9675257818439, 0.6466803], [47.86, 173.7628942300512, 0.55590665], [47.87, 175.04362016850843, 0.6247282], [47.88, 175.74156310828096, 0.6559909], [47.89, 176.04773187249108, 0.6658278], [47.9, 175.36112993955655, 0.54351944], [47.91, 174.9273293562899, 0.6208535], [47.92, 175.59347297152408, 0.3994718], [47.93, 158.25170572438213, 0.37839854], [47.94, 136.26705070073302, 0.6677114], [47.95, 120.76704328255417, 0.75135654], [47.96, 120.13159581905234, 0.65787673], [47.97, 118.80094710815541, 0.6657452], [47.98, 116.65562809573589, 0.7176884], [47.99, 115.1436243849004, 0.75668955], [48.0, 113.87295545853857, 0.80779594], [48.01, 113.13425279159821, 0.76810694], [48.02, 114.28080442087051, 0.7139429], [48.03, 116.12802788775555, 0.5586984], [48.04, 119.76624192413468, 0.39931616], [48.05, 126.32326037243215, 0.4272683], [48.06, 127.65856484348853, 0.76307136], [48.07, 129.12359247308805, 0.7917612], [48.08, 129.63444000821323, 0.8457036], [48.09, 130.52856661749377, 0.8724954], [48.1, 129.9272823988162, 0.83371943], [48.11, 128.12402147451675, 0.7375774], [48.12, 124.54933653695733, 0.50025564], [48.13, 135.5571067289174, 0.46610242], [48.14, 146.83871119262344, 0.46922642], [48.15, 168.33391410032402, 0.38248068], [48.16, 175.42124968666965, 0.3556162], [48.17, 175.38692252326913, 0.37730324], [48.18, 176.38992377624493, 0.41428605], [48.19, 175.4917957694606, 0.4718241], [48.2, 173.57602373153523, 0.39044777], [48.21, 175.85001894035062, 0.53673166], [48.22, 176.08154468637713, 0.6307371], [48.23, 175.45056561372775, 0.66109896], [48.24, 175.24996303875702, 0.7369269], [48.25, 174.62461222431637, 0.7538021], [48.26, 175.11363560349514, 0.7814033], [48.27, 174.86458200363626, 0.757831], [48.28, 174.93546878683168, 0.7827199], [48.29, 174.72661256452204, 0.77078956], [48.3, 175.4906760994565, 0.776804], [48.31, 175.20543509900773, 0.7498075], [48.32, 175.0863544571909, 0.7926009], [48.33, 174.9927985005962, 0.75328904], [48.34, 175.34257960156435, 0.68927807], [48.35, 155.61098497360192, 0.41654322], [48.36, 137.83434512137143, 0.3615086], [48.37, 137.64114949710165, 0.6857764], [48.38, 138.01536427477996, 0.75502104], [48.39, 138.85077186675122, 0.7837361], [48.4, 139.87390234216602, 0.7783476], [48.41, 141.16127219763848, 0.77273387], [48.42, 141.36231968327647, 0.7342315], [48.43, 141.2470612981207, 0.7774199], [48.44, 139.93888514339608, 0.8134508], [48.45, 138.68173789156128, 0.8537933], [48.46, 137.3417358203593, 0.8488505], [48.47, 137.3357753796776, 0.8567301], [48.48, 137.69836286292698, 0.83681023], [48.49, 137.88722361916743, 0.8426732], [48.5, 138.87615716785854, 0.85169345], [48.51, 139.4745043491701, 0.8475755], [48.52, 139.386508957426, 0.8559713], [48.53, 139.8561875656503, 0.84592855], [48.54, 139.3058286983206, 0.86260265], [48.55, 138.58229782251098, 0.86118305], [48.56, 138.03793066038645, 0.84949917], [48.57, 137.60674285363362, 0.8613674], [48.58, 137.73066251136947, 0.84989697], [48.59, 137.79266553757867, 0.8482207], [48.6, 138.57536736499785, 0.8431415], [48.61, 138.16173563746838, 0.7498177], [48.62, 138.85189844167104, 0.6748264], [48.63, 140.45218747624182, 0.51002735], [48.64, 141.7588544592584, 0.4791371], [48.65, 143.70836044770806, 0.5220974], [48.66, 142.85820200169655, 0.62557346], [48.67, 142.22514471424026, 0.48011217], [48.68, 140.18827013078254, 0.58626527], [48.69, 138.61668281786325, 0.44104737], [48.7, 135.82017187868342, 0.2939989], [48.71, 127.04754970194621, 0.24305141], [48.72, 118.03231254311095, 0.47056827], [48.73, 118.15673193320579, 0.5298037], [48.74, 123.27299414616337, 0.80527186], [48.75, 138.38508095932406, 0.8088509], [48.76, 147.8041623915002, 0.6773987], [48.77, 155.84555722786558, 0.22587632], [48.78, 163.82359636301277, 0.13238719], [48.79, 159.33141363720316, 0.24847297], [48.8, 155.4522716450286, 0.2042388], [48.81, 153.1347960396962, 0.15635446], [48.82, 157.3803402561179, 0.2992654], [48.83, 161.41542226426526, 0.37646323], [48.84, 161.37330573090978, 0.49365664], [48.85, 163.492654068815, 0.5177292], [48.86, 164.56035214274547, 0.2928572], [48.87, 162.78019628908172, 0.13102852], [48.88, 162.10553187315247, 0.17590447], [48.89, 164.6492639384721, 0.31552204], [48.9, 168.03745510324163, 0.28141022], [48.91, 169.30165183008796, 0.21184838], [48.92, 172.6090028458645, 0.14451844], [48.93, 172.28677742680014, 0.11179204], [48.94, 172.84384924126098, 0.25354725], [48.95, 174.7970363417723, 0.10640906], [48.96, 178.49060874166275, 0.33236635], [48.97, 177.9886706690732, 0.33609024], [48.98, 176.07602898362572, 0.30832854], [48.99, 174.12327174353592, 0.09584869], [49.0, 174.3070105863487, 0.2406846], [49.01, 174.63505433550014, 0.20035654], [49.02, 174.09602022169128, 0.0858762], [49.03, 173.01321864958638, 0.14998268], [49.04, 172.98307231782772, 0.27244088], [49.05, 174.70514472664684, 0.336427], [49.06, 176.51804000068606, 0.32098258], [49.07, 175.84176272069217, 0.30086505], [49.08, 172.64410561810024, 0.22150493], [49.09, 171.06193995225507, 0.23205967], [49.1, 170.36640252933978, 0.38478115], [49.11, 172.71510936429377, 0.5741995], [49.12, 174.7132566784349, 0.65031046], [49.13, 172.92838032000526, 0.7123978], [49.14, 170.58692306779625, 0.76061696], [49.15, 167.68373477068633, 0.75122947], [49.16, 164.71962184197088, 0.78640634], [49.17, 162.01356922488281, 0.7668764], [49.18, 160.01994619112037, 0.7689268], [49.19, 159.13388235351948, 0.7689624], [49.2, 156.7872356368275, 0.7976657], [49.21, 156.04155642605673, 0.78618234], [49.22, 154.9374943842502, 0.78662753], [49.23, 154.926536387567, 0.7383223], [49.24, 150.74879506530328, 0.32629493], [49.25, 147.23211556259028, 0.15523016], [49.26, 145.3612563316589, 0.26039204], [49.27, 145.14516003492386, 0.5965646], [49.28, 145.9587560167712, 0.6484042], [49.29, 144.3498909563736, 0.32611963], [49.3, 141.8187452368899, 0.5238244], [49.31, 141.14232599420174, 0.71567196], [49.32, 140.25875151433206, 0.7975376], [49.33, 140.169857099626, 0.8080185], [49.34, 139.64170175542418, 0.8577727], [49.35, 138.66103909417677, 0.84616977], [49.36, 137.54644021962014, 0.8277507], [49.37, 135.73041482492326, 0.8043133], [49.38, 134.6005603184237, 0.82497203], [49.39, 134.8965972723607, 0.81705505], [49.4, 136.03945650017457, 0.7891811], [49.41, 137.58627782704485, 0.75762135], [49.42, 140.07404838014696, 0.78516704], [49.43, 142.90344300795033, 0.7861142], [49.44, 144.40722651034676, 0.6914981], [49.45, 146.87560811244003, 0.7153936], [49.46, 148.1776050480762, 0.7457342], [49.47, 148.04431686096873, 0.7879488], [49.48, 147.25489259112152, 0.74979556], [49.49, 144.2705338857075, 0.6419143], [49.5, 141.90576202115318, 0.6650313], [49.51, 140.26774652729816, 0.71612966], [49.52, 139.14141633649172, 0.7704306], [49.53, 138.93267598128944, 0.8039213], [49.54, 140.38333249443232, 0.7347502], [49.55, 142.49961357188485, 0.64557785], [49.56, 145.6469445622317, 0.5326822], [49.57, 147.85063675258368, 0.6472599], [49.58, 149.93369228587736, 0.75583786], [49.59, 150.56381001913113, 0.79120725], [49.6, 150.12546904178802, 0.72708833], [49.61, 147.88482368614427, 0.6698879], [49.62, 145.56185401163322, 0.7267179], [49.63, 143.5293739774219, 0.6388378], [49.64, 141.95324170325253, 0.4447273], [49.65, 137.26465153251758, 0.21109009], [49.66, 120.51297317089697, 0.23062238], [49.67, 112.9843044220356, 0.26610968], [49.68, 97.6598433855159, 0.49349427], [49.69, 85.90126389262706, 0.5065661], [49.7, 76.34129829509108, 0.4513942], [49.71, 66.8724755430564, 0.34269482], [49.72, 58.59122107040954, 0.16680215], [49.73, 50.87082743974176, 0.06594111], [49.74, 45.639061198411966, 0.2029233], [49.75, 44.892953966915684, 0.07737232], [49.76, 43.58129096894986, 0.4896676], [49.77, 43.21911242884372, 0.59499913], [49.78, 43.37875587850773, 0.61222607], [49.79, 43.35147815144475, 0.61439186], [49.8, 43.2778891364796, 0.62386787], [49.81, 43.519657413754615, 0.6556228], [49.82, 43.507970869041216, 0.5723893], [49.83, 43.16767306875251, 0.44075617], [49.84, 43.08771318035689, 0.4962354], [49.85, 43.16690453254223, 0.59078634], [49.86, 43.62628772076918, 0.5976295], [49.87, 43.541933054526574, 0.3627635], [49.88, 43.77731482063048, 0.5788899], [49.89, 43.617218755495024, 0.4426116], [49.9, 43.60902645397769, 0.5335025], [49.91, 43.7554390314784, 0.47217354], [49.92, 43.10148829788191, 0.52776045], [49.93, 42.29195925122141, 0.4642253], [49.94, 42.23803832927922, 0.22902548], [49.95, 43.088333955977625, 0.33336127], [49.96, 43.23056916660842, 0.1246278], [49.97, 43.28846733579398, 0.1745295], [49.98, 43.57884424448277, 0.20551881], [49.99, 43.02715658513155, 0.4090751], [50.0, 43.191796781765824, 0.61444646], [50.01, 43.10714186858232, 0.6263028], [50.02, 43.65839919971437, 0.729069], [50.03, 43.622451881691255, 0.670898], [50.04, 43.674601596382985, 0.76739883], [50.05, 43.51798008779437, 0.7457539], [50.06, 43.48216945465572, 0.7740749], [50.07, 43.62102671539117, 0.80863774], [50.08, 43.488870542726126, 0.7401671], [50.09, 43.774457578889134, 0.78723145], [50.1, 43.79311295853134, 0.780023], [50.11, 43.632389830886794, 0.7892257], [50.12, 43.560393286515186, 0.7015666], [50.13, 43.61614490611271, 0.7903558], [50.14, 43.623315403066805, 0.7983538], [50.15, 43.46345554680693, 0.7368255], [50.16, 43.62017329050143, 0.80317974], [50.17, 43.67694548281483, 0.673311], [50.18, 44.34577188127424, 0.38733995], [50.19, 49.065354513442514, 0.06669362], [50.2, 57.84770194777895, 0.19641422], [50.21, 66.02383753324456, 0.19761139], [50.22, 73.25777876076452, 0.68490547], [50.23, 84.15237441647162, 0.84697646], [50.24, 90.73351024850965, 0.89224017], [50.25, 106.17644638942502, 0.8898797], [50.26, 120.89655217031995, 0.88685054], [50.27, 130.80549976237313, 0.8842088], [50.28, 130.28590833236865, 0.8151625], [50.29, 129.90478815760432, 0.79955715], [50.3, 131.22786431963408, 0.86786574], [50.31, 131.22155727007504, 0.87545794], [50.32, 132.2092052212921, 0.8187152], [50.33, 133.1581751850314, 0.8258264], [50.34, 133.7080172744769, 0.73649025], [50.35, 135.2249881524368, 0.67996377], [50.36, 136.9328316349429, 0.75729764], [50.37, 138.2023857041052, 0.82112676], [50.38, 138.91101178399038, 0.8465162], [50.39, 138.78691802064557, 0.8441467], [50.4, 138.45500378458988, 0.83276796], [50.41, 137.5132505121424, 0.81696236], [50.42, 135.7667889956528, 0.7090833], [50.43, 132.13890276408213, 0.7605903], [50.44, 130.54372654271856, 0.8492556], [50.45, 129.92209070641712, 0.8494548], [50.46, 130.98990955509842, 0.8466205], [50.47, 132.2495246853513, 0.7954743], [50.48, 132.99410961208065, 0.67537534], [50.49, 135.43628946188772, 0.6152043], [50.5, 138.69988678212502, 0.83331007], [50.51, 140.15711395538716, 0.83104414], [50.52, 140.32157853003392, 0.8556485], [50.53, 139.80086691688862, 0.85628265], [50.54, 137.98891536304, 0.80304974], [50.55, 135.5399783275148, 0.7304479], [50.56, 133.26436890602702, 0.8020698], [50.57, 131.5952384013233, 0.79541326], [50.58, 129.42432549234528, 0.7333987], [50.59, 128.19915848598492, 0.6962524], [50.6, 128.0066383226999, 0.76437145], [50.61, 127.50932455965929, 0.7698932], [50.62, 126.9515185068404, 0.6876034], [50.63, 125.3983006646994, 0.48089027], [50.64, 127.76131669053262, 0.17260139], [50.65, 129.73024984648399, 0.051598173], [50.66, 143.71693770865846, 0.049193025], [50.67, 128.73700287732586, 0.07312554], [50.68, 125.33643221075917, 0.068995185], [50.69, 123.60155271818516, 0.06384149], [50.7, 130.87244273734964, 0.11111377], [50.71, 139.4470922572483, 0.24240494], [50.72, 148.30964220792998, 0.29160315], [50.73, 154.11572549235058, 0.23669034], [50.74, 159.29075084167727, 0.253434], [50.75, 161.09727832153837, 0.5566336], [50.76, 161.96334487762417, 0.5145344], [50.77, 160.8547364534725, 0.32913342], [50.78, 161.61812664539917, 0.36477253], [50.79, 163.1999062009562, 0.2610128], [50.8, 166.4797313678095, 0.1080926], [50.81, 169.91455345820268, 0.3584561], [50.82, 174.85024207365225, 0.21261017], [50.83, 174.56048582433107, 0.17307895], [50.84, 175.30304814967238, 0.35455558], [50.85, 176.65173985485836, 0.4166222], [50.86, 176.23905035070288, 0.5105736], [50.87, 175.3568221804137, 0.6284677], [50.88, 175.0002585128354, 0.6713328], [50.89, 173.74337106702103, 0.5683938], [50.9, 172.4540334085492, 0.56208473], [50.91, 169.77836067044007, 0.5156904], [50.92, 168.60858782963157, 0.47553718], [50.93, 164.26159026809222, 0.40715215], [50.94, 159.72611382068493, 0.30043945], [50.95, 155.94506912329453, 0.29508403], [50.96, 154.3088631590773, 0.2565827], [50.97, 155.88062319853722, 0.14928237], [50.98, 157.92362991584707, 0.19756144], [50.99, 155.84293361976196, 0.20204867], [51.0, 144.19732025854793, 0.13909423], [51.01, 146.20045086031308, 0.21837346], [51.02, 148.53743688278945, 0.18866257], [51.03, 151.17063143953683, 0.2667099], [51.04, 157.4963920460917, 0.26657534], [51.05, 159.00428655766194, 0.20862304], [51.06, 162.01031592995875, 0.33934256], [51.07, 165.86500708479477, 0.5504559], [51.08, 169.17542648505543, 0.6110724], [51.09, 171.05044886514676, 0.6682746], [51.1, 173.75637550860722, 0.59040546], [51.11, 175.25936836462705, 0.527874], [51.12, 176.6292284522727, 0.51122], [51.13, 174.5191109715593, 0.2867726], [51.14, 173.04006711643382, 0.5440041], [51.15, 174.90869761438287, 0.5654691], [51.16, 175.71108096634111, 0.7336183], [51.17, 175.16872059099268, 0.8108574], [51.18, 175.39220240327765, 0.8252323], [51.19, 174.80315653984917, 0.80683994], [51.2, 174.67378237597006, 0.80249584], [51.21, 174.820262832512, 0.7825537], [51.22, 174.3964186806939, 0.7650205], [51.23, 174.9706420455796, 0.78145075], [51.24, 174.73349928650293, 0.75908315], [51.25, 174.48143306267923, 0.7194015], [51.26, 175.26359758602672, 0.7189231], [51.27, 175.32637989816135, 0.71212006], [51.28, 175.86532332493138, 0.7097389], [51.29, 175.4994833354495, 0.73430324], [51.3, 174.841993167539, 0.7551967], [51.31, 175.16171450711317, 0.7456704], [51.32, 175.33344321664632, 0.7636237], [51.33, 175.35912454887324, 0.7636305], [51.34, 175.30804184368554, 0.77048254], [51.35, 174.70326022687374, 0.77386105], [51.36, 174.61916359710847, 0.7574175], [51.37, 175.45855245012748, 0.7546443], [51.38, 175.87281342736122, 0.7179808], [51.39, 174.5926124362774, 0.7516893], [51.4, 173.98519792011317, 0.7512963], [51.41, 172.82958723756576, 0.7503039], [51.42, 172.60209425591125, 0.67752767], [51.43, 173.09938462078233, 0.6469089], [51.44, 175.2042513987506, 0.5919467], [51.45, 177.84626676168315, 0.6972731], [51.46, 178.71394556474218, 0.7433882], [51.47, 176.6013664838962, 0.63001275], [51.48, 174.78865363722616, 0.628658], [51.49, 174.50553256089248, 0.49094635], [51.5, 175.31754519371856, 0.4483034], [51.51, 175.9352135495633, 0.39569145], [51.52, 175.6945587769603, 0.5107323], [51.53, 175.241588610121, 0.46935537], [51.54, 174.7607048613625, 0.60849357], [51.55, 173.66296511581868, 0.6712913], [51.56, 174.79846735163784, 0.62058467], [51.57, 173.91004488747524, 0.4039555], [51.58, 173.85323252505225, 0.2636598], [51.59, 166.54335392491743, 0.26701605], [51.6, 153.411248501209, 0.11033646], [51.61, 144.7983774067951, 0.12972423], [51.62, 140.9142454502824, 0.43866932], [51.63, 127.06946345795166, 0.6510833], [51.64, 119.38967350697992, 0.33690137], [51.65, 108.42876543995953, 0.4006751], [51.66, 106.2232580238491, 0.48243526], [51.67, 96.73047989580053, 0.34325576], [51.68, 93.0716555947191, 0.20639198], [51.69, 83.87936678398307, 0.18224563], [51.7, 77.54472260048372, 0.1096813], [51.71, 74.58536966146332, 0.11993053], [51.72, 68.75453628779911, 0.11404716], [51.73, 62.67134921171579, 0.24824136], [51.74, 60.65606117027747, 0.30481258], [51.75, 55.47526687983733, 0.10508906], [51.76, 52.180146288059994, 0.15883482], [51.77, 51.845617216122626, 0.22646208], [51.78, 51.89403656746829, 0.17580391], [51.79, 52.82176815412192, 0.22461137], [51.8, 52.183424858678755, 0.15978704], [51.81, 52.2863558020527, 0.18498696], [51.82, 53.21542334586142, 0.29895714], [51.83, 54.30447588459966, 0.451995], [51.84, 53.88688663309481, 0.22660156], [51.85, 52.31746619827108, 0.20427279], [51.86, 53.84429190646608, 0.091556065], [51.87, 55.53448169234824, 0.13792324], [51.88, 53.50617059851912, 0.15968315], [51.89, 52.91677541991069, 0.40764222], [51.9, 52.49275318757298, 0.23621729], [51.91, 52.58888162235425, 0.3250876], [51.92, 52.959027711550426, 0.27359268], [51.93, 52.61302891365033, 0.14872858], [51.94, 51.85503002775506, 0.15747254], [51.95, 51.67458081909874, 0.106032915], [51.96, 51.48977041177326, 0.15917562], [51.97, 52.048860316482376, 0.15486078], [51.98, 52.310851611995275, 0.11392309], [51.99, 52.36468977076708, 0.1473168], [52.0, 52.211446367953386, 0.24742496], [52.01, 52.05298465652798, 0.26128602], [52.02, 51.935090742492555, 0.38360217], [52.03, 52.09498949830011, 0.5344873], [52.04, 52.0878959406881, 0.7123728], [52.05, 51.42494958138526, 0.5015402], [52.06, 51.11300563179678, 0.43847215], [52.07, 51.62583537581579, 0.5011427], [52.08, 52.461023316853996, 0.674699], [52.09, 52.319603348814425, 0.66585106], [52.1, 52.2359310960637, 0.6708977], [52.11, 51.37831136966669, 0.4991299], [52.12, 51.63553691249546, 0.5724088], [52.13, 52.107671872091444, 0.6706397], [52.14, 52.67011467074936, 0.7412117], [52.15, 52.085198627101825, 0.6675886], [52.16, 52.21989244638487, 0.75612956], [52.17, 51.94692483410712, 0.666414], [52.18, 52.01903369388827, 0.75319207], [52.19, 51.90105351178869, 0.67747897], [52.2, 52.137957805855336, 0.75817007], [52.21, 52.00500006603957, 0.68174237], [52.22, 52.248402343586505, 0.74397725], [52.23, 52.06858993437873, 0.70584065], [52.24, 52.01427558343888, 0.71884024], [52.25, 52.38295199403164, 0.6716722], [52.26, 52.42463182274781, 0.7160098], [52.27, 53.263461696442135, 0.6703339], [52.28, 53.84083269057002, 0.4139384], [52.29, 54.552589003000264, 0.26902634], [52.3, 53.71739843469285, 0.16086744], [52.31, 53.9524351659087, 0.17054543], [52.32, 53.19263012615576, 0.2782556], [52.33, 53.49710065923382, 0.58442354], [52.34, 54.19554808930231, 0.63721365], [52.35, 54.282583631346384, 0.590439], [52.36, 53.994962550300265, 0.66989726], [52.37, 53.58554749231786, 0.6480782], [52.38, 54.38866541536057, 0.5757405], [52.39, 54.49754337699363, 0.68277377], [52.4, 54.39161679378651, 0.6635456], [52.41, 54.68727347822175, 0.64860404], [52.42, 55.44878711820527, 0.5196157], [52.43, 55.45928996980395, 0.57656145], [52.44, 54.387814074521756, 0.40300912], [52.45, 52.76773777163649, 0.12216055], [52.46, 53.05435638956815, 0.13571694], [52.47, 53.165063760719555, 0.1300602], [52.48, 54.86617352908445, 0.22606443], [52.49, 57.24659558765125, 0.18033122], [52.5, 57.49976940433464, 0.3236549], [52.51, 58.246458659370006, 0.35372385], [52.52, 60.136998311638436, 0.14604661], [52.53, 66.23258929863049, 0.14931296], [52.54, 72.78949475181464, 0.22843689], [52.55, 77.72388752792416, 0.43217894], [52.56, 88.06080525070186, 0.6686604], [52.57, 96.10974416768231, 0.5121437], [52.58, 104.13440083694069, 0.47966433], [52.59, 112.30713989670673, 0.26556018], [52.6, 122.91422555413136, 0.06794201], [52.61, 133.43075447154257, 0.29370955], [52.62, 146.73539096299618, 0.13067098], [52.63, 154.37042079861155, 0.08035816], [52.64, 170.1847540543127, 0.44833574], [52.65, 184.6980952553705, 0.1740186], [52.66, 184.38076508582427, 0.098491654], [52.67, 185.39458090743642, 0.13285972], [52.68, 183.7351805575404, 0.113433756], [52.69, 187.18847370946048, 0.106819406], [52.7, 186.97436548694168, 0.21267764], [52.71, 185.85770090195166, 0.39272135], [52.72, 184.04092635838, 0.467468], [52.73, 185.35508557238938, 0.3583463], [52.74, 186.43363411009364, 0.38572586], [52.75, 184.8408036244408, 0.2971387], [52.76, 182.27212512283165, 0.46202654], [52.77, 182.96026710345959, 0.53969043], [52.78, 183.993312113377, 0.60012245], [52.79, 183.8705707977187, 0.7320865], [52.8, 184.01181665848748, 0.74751997], [52.81, 184.6944245934473, 0.7671935], [52.82, 185.32240037922375, 0.74856335], [52.83, 186.06490643296468, 0.705876], [52.84, 186.24651360678885, 0.76646674], [52.85, 186.19778948964293, 0.79367435], [52.86, 186.04406696242256, 0.75258106], [52.87, 185.284173310954, 0.784209], [52.88, 184.88864065311802, 0.80439836], [52.89, 183.7741066785119, 0.7893938], [52.9, 183.37011752474527, 0.7979589], [52.91, 182.61251031294253, 0.814373], [52.92, 183.84099910167822, 0.8065063], [52.93, 183.00247176110759, 0.80273175], [52.94, 182.96335966009337, 0.82100695], [52.95, 183.1923898314563, 0.8325454], [52.96, 184.07677334986374, 0.8209689], [52.97, 183.915361156119, 0.8208152], [52.98, 185.20998757186302, 0.83894473], [52.99, 185.33681682524556, 0.81997967], [53.0, 186.73067798947335, 0.7818574], [53.01, 190.00119962769904, 0.7607493], [53.02, 191.23736890393735, 0.7540389], [53.03, 192.4621937962795, 0.7922326], [53.04, 192.46886736694987, 0.8071815], [53.05, 192.4514323524225, 0.79096293], [53.06, 191.77991580338843, 0.783008], [53.07, 188.95990873856323, 0.75867254], [53.08, 185.76643597384108, 0.83463293], [53.09, 184.6873807968903, 0.8336087], [53.1, 184.42553862076187, 0.83823854], [53.11, 184.64857359451844, 0.86774176], [53.12, 184.6114400698471, 0.8628411], [53.13, 184.80585708659345, 0.8769188], [53.14, 184.8315183195307, 0.84861785], [53.15, 185.13777680551328, 0.8598419], [53.16, 185.93720563175194, 0.8465799], [53.17, 185.99795363181659, 0.86052793], [53.18, 185.55670542428868, 0.8627907], [53.19, 184.5794847281353, 0.8391715], [53.2, 183.2844830309284, 0.80154765], [53.21, 179.9199386570549, 0.7202191], [53.22, 177.740730611298, 0.7742413], [53.23, 177.42490240588637, 0.83336556], [53.24, 177.98734797728488, 0.84518814], [53.25, 178.47099689161266, 0.8621916], [53.26, 178.6702677832606, 0.85676754], [53.27, 178.10337844799844, 0.8537221], [53.28, 177.06621474585165, 0.8375374], [53.29, 175.3638718138021, 0.8116268], [53.3, 173.9542394237045, 0.81392616], [53.31, 173.13258727685437, 0.81395376], [53.32, 172.57057046854985, 0.75541353], [53.33, 173.32822936503067, 0.7573949], [53.34, 174.65878260049433, 0.7389659], [53.35, 175.56761116337768, 0.7893464], [53.36, 175.9975827466983, 0.7692741], [53.37, 176.0714903392812, 0.77314585], [53.38, 175.23218589010085, 0.7251515], [53.39, 175.43339142762645, 0.79159695], [53.4, 175.10167150052433, 0.7865947], [53.41, 175.20133614754906, 0.7946024], [53.42, 175.17673899298876, 0.75566584], [53.43, 174.59452099772864, 0.7502728], [53.44, 174.12317655954467, 0.7327736], [53.45, 173.5668494914341, 0.5972808], [53.46, 172.61244814073513, 0.5806331], [53.47, 172.90414732458368, 0.29471064], [53.48, 176.4450448426203, 0.14713243], [53.49, 180.00376791155378, 0.30164313], [53.5, 181.74954397833824, 0.22679925], [53.51, 180.73497903750038, 0.67278767], [53.52, 180.8306216843418, 0.7272175], [53.53, 182.46465885111837, 0.6488378], [53.54, 185.3808465387121, 0.72947055], [53.55, 189.19500389401452, 0.6015719], [53.56, 199.11325757834015, 0.6984416], [53.57, 203.98704563770846, 0.71535647], [53.58, 208.00842692695187, 0.7143275], [53.59, 211.01190784898478, 0.738084], [53.6, 212.8716991805826, 0.6553257], [53.61, 215.523401846644, 0.73326707], [53.62, 216.913939438758, 0.6522361], [53.63, 218.22588788712602, 0.7609368], [53.64, 219.66944802468473, 0.7279034], [53.65, 220.15666510224816, 0.7616567], [53.66, 221.29663844334226, 0.78425413], [53.67, 222.29360919612301, 0.7650548], [53.68, 224.31801874389805, 0.7780254], [53.69, 226.80650127332024, 0.6126144], [53.7, 232.13198911398368, 0.32984266], [53.71, 234.38404451155088, 0.033940338], [53.72, 237.53694972276827, 0.13364701], [53.73, 235.39384932962952, 0.39461505], [53.74, 233.28946027658785, 0.57848316], [53.75, 232.57751387614402, 0.5668533], [53.76, 233.23331189601515, 0.550054], [53.77, 233.13131689938092, 0.6325015], [53.78, 232.80825227768423, 0.7250319], [53.79, 232.4817190015885, 0.7240526], [53.8, 231.42052247901844, 0.68391275], [53.81, 232.02179209286362, 0.6625929], [53.82, 233.4145872133654, 0.5606896], [53.83, 233.0380648627061, 0.46320382], [53.84, 233.5849166583502, 0.54039574], [53.85, 233.51045944529437, 0.553705], [53.86, 233.0546218794184, 0.58362746], [53.87, 232.30813278154386, 0.59808284], [53.88, 232.92141497613898, 0.63060933], [53.89, 233.03383699546728, 0.6065778], [53.9, 232.7869249075367, 0.4606491], [53.91, 232.83360661207578, 0.57330084], [53.92, 232.9732312804794, 0.420408], [53.93, 233.12874727379432, 0.43094146], [53.94, 232.98372214330726, 0.5610087], [53.95, 231.26839719554374, 0.14676678], [53.96, 212.86989792856878, 0.261877], [53.97, 188.23370067018658, 0.51968837], [53.98, 167.98484115982762, 0.7268614], [53.99, 156.5930416841405, 0.8294315], [54.0, 157.05272712548916, 0.8268316], [54.01, 156.84794039260362, 0.8068567], [54.02, 155.1202192972438, 0.7790449], [54.03, 154.3536402895155, 0.8025588], [54.04, 154.61975414425314, 0.7564507], [54.05, 155.76802643325817, 0.77665764], [54.06, 156.760799412701, 0.753943], [54.07, 158.3266747746017, 0.74907804], [54.08, 160.15271975196902, 0.7513795], [54.09, 162.31902083792068, 0.75903726], [54.1, 165.18779491762172, 0.7409355], [54.11, 169.26749674700173, 0.78077525], [54.12, 171.6185672389109, 0.81843853], [54.13, 172.563113977265, 0.84613067], [54.14, 172.79846400009873, 0.8523925], [54.15, 172.78801548948638, 0.82732296], [54.16, 170.90748579779924, 0.7996448], [54.17, 168.64382497773335, 0.7667933], [54.18, 166.05054696429744, 0.7060793], [54.19, 161.67885858445743, 0.6647038], [54.2, 157.45382455083742, 0.6885551], [54.21, 155.42569905994765, 0.7322606], [54.22, 154.72802275428927, 0.7479742], [54.23, 154.60731560471777, 0.78395325], [54.24, 154.82398773696818, 0.8373357], [54.25, 154.3830476637896, 0.8234893], [54.26, 154.17943474236546, 0.7796174], [54.27, 153.7811624830209, 0.7760405], [54.28, 154.16681454377127, 0.76963854], [54.29, 152.4474448592854, 0.6849476], [54.3, 151.0514761571319, 0.6860742], [54.31, 150.1217779970438, 0.5513519], [54.32, 146.10706506934804, 0.42796803], [54.33, 143.58480991538053, 0.58617824], [54.34, 142.29839103168743, 0.5397858], [54.35, 142.20834639564262, 0.4224604], [54.36, 146.7993939436913, 0.30565912], [54.37, 147.364846118981, 0.2862858], [54.38, 148.77431577838638, 0.113751456], [54.39, 148.2917608739796, 0.12707081], [54.4, 146.82618903549636, 0.09853801], [54.41, 145.6421455385772, 0.12317399], [54.42, 139.26570283403905, 0.07398964], [54.43, 125.7826946394211, 0.11158712], [54.44, 117.1663758521781, 0.13292626], [54.45, 106.38990953862113, 0.0877286], [54.46, 95.8994445452102, 0.15629753], [54.47, 87.30283684056704, 0.1316051], [54.48, 81.05827672190475, 0.09014564], [54.49, 72.36653474734946, 0.1749275], [54.5, 66.84080084891306, 0.14910856], [54.51, 58.53723737668574, 0.19349295], [54.52, 55.13970836341136, 0.14521293], [54.53, 48.21652840910615, 0.13173015], [54.54, 48.67231270930066, 0.51148665], [54.55, 48.55358329763118, 0.5467991], [54.56, 47.6286936440666, 0.70825565], [54.57, 46.98393129299525, 0.68312246], [54.58, 46.62888638473801, 0.67035335], [54.59, 45.856547798288354, 0.51366633], [54.6, 45.25752030511025, 0.41671804], [54.61, 44.64934498621477, 0.39872462], [54.62, 44.023526660776426, 0.46489462], [54.63, 44.04521157651839, 0.22828859], [54.64, 43.8682563865444, 0.29908535], [54.65, 43.856365083217, 0.35855854], [54.66, 43.74345536444916, 0.49988073], [54.67, 43.91234613248099, 0.6341977], [54.68, 44.10098602138434, 0.3781723], [54.69, 44.36827852773063, 0.3153539], [54.7, 44.361743145369616, 0.17581856], [54.71, 44.22756373778953, 0.28889617], [54.72, 43.77182287478685, 0.2536526], [54.73, 44.33767188926762, 0.26558292], [54.74, 45.26786546061867, 0.4101771], [54.75, 46.12660096018203, 0.54530567], [54.76, 45.83485317927017, 0.6394003], [54.77, 45.03405475194725, 0.6165788], [54.78, 44.59831897456539, 0.62417847], [54.79, 45.182933776526426, 0.5143454], [54.8, 46.01164464613588, 0.47209668], [54.81, 45.86974616547826, 0.40081307], [54.82, 45.74826513664186, 0.47378772], [54.83, 45.51976421976793, 0.4446746], [54.84, 46.1965966791417, 0.6774869], [54.85, 45.76369530259321, 0.6351571], [54.86, 45.87051385274111, 0.6843883], [54.87, 45.37583569134234, 0.6780423], [54.88, 45.59246113674375, 0.64841324], [54.89, 45.295726388345514, 0.64540607], [54.9, 45.00748478587185, 0.51691574], [54.91, 46.13757019253555, 0.47378966], [54.92, 45.91200875088441, 0.5375636], [54.93, 46.50092469299971, 0.6118268], [54.94, 45.849554242817014, 0.5998881], [54.95, 45.36865067024644, 0.59094334], [54.96, 45.19195273105785, 0.57334673], [54.97, 45.80931219365452, 0.6003675], [54.98, 45.49886772124505, 0.54152477], [54.99, 46.21391213312728, 0.60870856], [55.0, 46.2942106004957, 0.63744676], [55.01, 46.46799316444998, 0.66817224], [55.02, 46.334559232184915, 0.6504236], [55.03, 46.21940038762723, 0.740103], [55.04, 45.45884704776213, 0.6133092], [55.05, 45.40114857198546, 0.63337445], [55.06, 45.65460219320849, 0.6261812], [55.07, 45.7266894865339, 0.6453206], [55.08, 46.411109020360385, 0.76932114], [55.09, 46.27683890638565, 0.63408256], [55.1, 46.48843695860781, 0.24658227], [55.11, 43.53155866367307, 0.21324462], [55.12, 39.124150118361996, 0.57260597], [55.13, 36.012759111587364, 0.60288364], [55.14, 33.73015698702393, 0.52732766], [55.15, 32.416472705900375, 0.60113645], [55.16, 32.61689071701288, 0.4825158], [55.17, 32.78467505343479, 0.55608773], [55.18, 32.838978852375035, 0.6102515], [55.19, 32.837310406599144, 0.65958893], [55.2, 32.788854023087524, 0.5637406], [55.21, 32.70688708753561, 0.52725554], [55.22, 32.62812449144776, 0.6404836], [55.23, 32.62624898657976, 0.73163015], [55.24, 32.665499102925736, 0.6675606], [55.25, 32.620512674928506, 0.6475305], [55.26, 32.623070253104025, 0.65548533], [55.27, 32.67032502175453, 0.6931356], [55.28, 32.68849916123421, 0.6921085], [55.29, 32.694179823392815, 0.7000488], [55.3, 32.70201782135913, 0.69034886], [55.31, 34.59660153065733, 0.6524905], [55.32, 35.68896281051209, 0.60898036], [55.33, 40.80890595598473, 0.600923], [55.34, 42.62047332776814, 0.40360293], [55.35, 47.78519946486735, 0.12095608], [55.36, 50.54311155197446, 0.21605888], [55.37, 50.83428834129588, 0.60505193], [55.38, 51.10031920016796, 0.70238614], [55.39, 51.715301805586805, 0.7858157], [55.4, 52.24410487324108, 0.81745666], [55.41, 52.228416504481146, 0.82098895], [55.42, 51.66735356104417, 0.7421396], [55.43, 51.89393922482219, 0.78517544], [55.44, 52.298326711084485, 0.7685852], [55.45, 52.56749340067103, 0.7683756], [55.46, 52.213981946579594, 0.78801984], [55.47, 51.82669937355282, 0.73937446], [55.48, 51.66372510531151, 0.7398907], [55.49, 51.691027083801806, 0.7450644], [55.5, 52.499661025982874, 0.7323148], [55.51, 52.322174058016984, 0.8123761], [55.52, 52.1723180022359, 0.781076], [55.53, 51.76592124535122, 0.71699387], [55.54, 52.06973314867872, 0.75409025], [55.55, 51.95883335814021, 0.74694973], [55.56, 52.543780150449564, 0.7267781], [55.57, 52.17941447628323, 0.69625795], [55.58, 52.12677544092361, 0.72112346], [55.59, 51.71817155980756, 0.61558235], [55.6, 52.180899830211914, 0.67711174], [55.61, 52.260785482172274, 0.58131284], [55.62, 52.3464224574844, 0.35799462], [55.63, 51.553235264140085, 0.115898065], [55.64, 51.40696944576917, 0.27420565], [55.65, 51.72698664301003, 0.2326094], [55.66, 52.297001009740846, 0.36494908], [55.67, 51.19825490757514, 0.26885414], [55.68, 50.94298691479197, 0.36463273], [55.69, 51.005408689799154, 0.3212116], [55.7, 52.15281697417683, 0.30708644], [55.71, 51.62455878238309, 0.14400691], [55.72, 51.44238637756156, 0.17617181], [55.73, 52.205338113058204, 0.23828495], [55.74, 51.54812398851577, 0.36362422], [55.75, 51.221217894609, 0.40921414], [55.76, 51.317943009900155, 0.5330394], [55.77, 52.31046946934605, 0.57811177], [55.78, 51.91231546072625, 0.57108593], [55.79, 51.85398274919075, 0.52694947], [55.8, 51.310899795592, 0.49286953], [55.81, 52.708160393035335, 0.59952545], [55.82, 52.37029951178903, 0.62596726], [55.83, 52.45030613511744, 0.5955473], [55.84, 51.28148775397318, 0.37189773], [55.85, 51.59280597675596, 0.46779475], [55.86, 52.28405169505477, 0.5580343], [55.87, 52.93245483848725, 0.51228774], [55.88, 53.66598222455189, 0.30725998], [55.89, 53.859983175578364, 0.2311177], [55.9, 54.36368368203614, 0.2205184], [55.91, 54.730163476198314, 0.2341408], [55.92, 54.41397209867716, 0.5079714], [55.93, 54.3983774714827, 0.5956143], [55.94, 53.859212409659484, 0.52671766], [55.95, 53.804582571532706, 0.42981446], [55.96, 54.49045043717986, 0.42373574], [55.97, 54.219520968124186, 0.14501148], [55.98, 54.46621482392827, 0.10198259], [55.99, 54.335568549861804, 0.22386336], [56.0, 54.4133901687724, 0.27024236], [56.01, 53.47401210517536, 0.17239106], [56.02, 54.371175482972085, 0.12672597], [56.03, 54.36415777261227, 0.2310295], [56.04, 54.47129532673662, 0.11405965], [56.05, 55.951722642333465, 0.16999231], [56.06, 57.32453322407451, 0.09362481], [56.07, 57.114334050812076, 0.20413043], [56.08, 56.34047514977912, 0.20822206], [56.09, 56.13829512322247, 0.12914707], [56.1, 56.4615188529969, 0.089948274], [56.11, 55.76096371583532, 0.163973], [56.12, 56.36222054497138, 0.13694277], [56.13, 55.88994061777654, 0.21684936], [56.14, 56.70073634330806, 0.117137775], [56.15, 58.67255715537801, 0.10234435], [56.16, 59.157249125357865, 0.2368428], [56.17, 59.810723043015095, 0.29794297], [56.18, 57.436682317867295, 0.5317192], [56.19, 57.532535618711336, 0.19591323], [56.2, 58.8256599894843, 0.28799674], [56.21, 59.656344863116985, 0.36402723], [56.22, 59.30723760290661, 0.5630604], [56.23, 57.59774988817944, 0.60911256], [56.24, 57.72303402053059, 0.6302387], [56.25, 58.21877700553188, 0.7674348], [56.26, 58.16347750662405, 0.7955845], [56.27, 58.71106475663649, 0.5077193], [56.28, 62.63979122346298, 0.15356612], [56.29, 69.53982937342955, 0.1430047], [56.3, 75.22343108348657, 0.15257621], [56.31, 78.68727669364216, 0.56555915], [56.32, 88.85068512544584, 0.4250054], [56.33, 94.20372234802298, 0.315836], [56.34, 102.62409226502598, 0.14073065], [56.35, 109.38948845683372, 0.119676545], [56.36, 122.89519221206304, 0.13796288], [56.37, 126.68981966553594, 0.116439454], [56.38, 138.56061801903058, 0.23138164], [56.39, 152.63441861955752, 0.17536189], [56.4, 158.6640953166944, 0.37201378], [56.41, 159.3140226463426, 0.46121296], [56.42, 157.08614641204807, 0.27909738], [56.43, 158.9011060766881, 0.18058772], [56.44, 166.95900960471678, 0.26181698], [56.45, 180.1032550115967, 0.19588098], [56.46, 184.39816402930734, 0.1740466], [56.47, 185.1699800979412, 0.09776058], [56.48, 185.8866275451948, 0.32019532], [56.49, 186.01001042680718, 0.32860446], [56.5, 186.41895770196976, 0.2580899], [56.51, 188.23490171530082, 0.17902915], [56.52, 184.52137786764592, 0.3115836], [56.53, 181.98033083888419, 0.48298132], [56.54, 180.68637851050295, 0.7627009], [56.55, 180.27614682998146, 0.7829032], [56.56, 178.82240166242252, 0.7192242], [56.57, 177.89023765179732, 0.5938776], [56.58, 177.82900490349323, 0.637855], [56.59, 178.20589760051305, 0.6965306], [56.6, 178.33455887774352, 0.6827858], [56.61, 177.78013361165569, 0.4817957], [56.62, 179.35383667429235, 0.51087373], [56.63, 180.9003777309995, 0.70588297], [56.64, 181.48850805877703, 0.82119083], [56.65, 181.25206285541304, 0.792175], [56.66, 180.08817180908508, 0.61045754], [56.67, 182.88367501353434, 0.46525633], [56.68, 185.82682557847727, 0.3750149], [56.69, 188.22862473083973, 0.37393913], [56.7, 185.93785186858707, 0.64232], [56.71, 184.82142483093295, 0.711249], [56.72, 185.0050000939021, 0.81409687], [56.73, 185.36843025194312, 0.8260517], [56.74, 185.4121492313613, 0.81949407], [56.75, 185.39361031579315, 0.75430787], [56.76, 185.07450181461263, 0.7760503], [56.77, 184.8989336607508, 0.7675407], [56.78, 185.99403632739748, 0.70498514], [56.79, 186.94585240706886, 0.7439826], [56.8, 186.14077847878235, 0.7246614], [56.81, 186.19596191761002, 0.7420606], [56.82, 185.7273828175251, 0.7040903], [56.83, 185.673484140663, 0.4474722], [56.84, 185.72549934452496, 0.3035064], [56.85, 184.89880017744258, 0.34336802], [56.86, 185.46148092235754, 0.29829964], [56.87, 186.59268918703816, 0.3627574], [56.88, 185.74006972635132, 0.379106], [56.89, 186.38036450752475, 0.27826428], [56.9, 185.43447220223487, 0.3453865], [56.91, 185.39617700279305, 0.32685298], [56.92, 184.97063083304485, 0.35674348], [56.93, 186.0681680918227, 0.39720652], [56.94, 185.41649517809827, 0.38803723], [56.95, 175.1445000694093, 0.5268454], [56.96, 150.6452191593889, 0.4163135], [56.97, 138.8849683411093, 0.48603457], [56.98, 139.07176380893316, 0.38321966], [56.99, 138.65109364872032, 0.2428141], [57.0, 138.83298066403492, 0.34778222], [57.01, 139.10924959617486, 0.24011324], [57.02, 139.28850723328236, 0.31365725], [57.03, 139.3378303707703, 0.3023598], [57.04, 139.25500784618725, 0.44557762], [57.05, 138.5217480544319, 0.35257566], [57.06, 138.074182951379, 0.37984738], [57.07, 136.94008148846757, 0.5136099], [57.08, 136.60691839586056, 0.5279462], [57.09, 136.0363934393325, 0.6339801], [57.1, 136.08281899294278, 0.67071056], [57.11, 136.2731651733127, 0.6564268], [57.12, 136.63210800293695, 0.6604711], [57.13, 137.1709012645858, 0.74726385], [57.14, 137.19632028821826, 0.7724042], [57.15, 138.01183813078705, 0.7694506], [57.16, 137.00504048350612, 0.6696312], [57.17, 135.9268647134795, 0.34940964], [57.18, 129.77851273392614, 0.1984796], [57.19, 120.78801137937998, 0.4319652], [57.2, 106.82217298471619, 0.690887], [57.21, 103.94085796338403, 0.612714], [57.22, 99.2315494644549, 0.4846922], [57.23, 89.24511677942598, 0.23089324], [57.24, 83.16766865889696, 0.11321228], [57.25, 77.20046578899155, 0.30514058], [57.26, 71.97397793974937, 0.36560693], [57.27, 65.54538767410371, 0.17803991], [57.28, 60.402085982134885, 0.23760077], [57.29, 55.44942799975294, 0.5017573], [57.3, 52.60568214355135, 0.2878802], [57.31, 46.59361691612929, 0.10123897], [57.32, 43.96955378826581, 0.2063578], [57.33, 44.14121437198351, 0.2779561], [57.34, 44.149360141571734, 0.2293192], [57.35, 43.9725338455053, 0.38481763], [57.36, 43.96103864411259, 0.32178044], [57.37, 44.03993297986311, 0.1833447], [57.38, 44.07599744481371, 0.26650545], [57.39, 44.500034394306184, 0.35426465], [57.4, 44.04894357457542, 0.20692451], [57.41, 44.09593594755877, 0.13472953], [57.42, 43.64079221107769, 0.23691596], [57.43, 43.795778716521866, 0.2170216], [57.44, 44.28074241472497, 0.26500154], [57.45, 44.41984204031069, 0.49997523], [57.46, 44.294382042386424, 0.47216007], [57.47, 44.23915603424192, 0.45856878], [57.48, 44.05921725343545, 0.5112781], [57.49, 43.80861327680406, 0.41360566], [57.5, 43.72912531989886, 0.5212362], [57.51, 43.81041385686785, 0.38238874], [57.52, 43.78862771497397, 0.41964105], [57.53, 43.7586405337896, 0.20372434], [57.54, 43.66261008181458, 0.34304914], [57.55, 43.41119437453446, 0.44575474], [57.56, 43.336626331227265, 0.28023344], [57.57, 43.71854496987737, 0.3964267], [57.58, 43.748235607722066, 0.40861872], [57.59, 43.5722393741255, 0.55135167], [57.6, 43.734210401283434, 0.59491336], [57.61, 43.782764318938476, 0.6105128], [57.62, 48.49891770836406, 0.50998515], [57.63, 55.963149563339314, 0.5633915], [57.64, 60.921751456901475, 0.6133064], [57.65, 69.35226950436609, 0.5619601], [57.66, 78.46182008818629, 0.5819273], [57.67, 85.86846992217666, 0.41299444], [57.68, 94.98185507265384, 0.12317875], [57.69, 105.07777394819401, 0.37878162], [57.7, 116.0935054902065, 0.4707851], [57.71, 133.03127731435222, 0.6707579], [57.72, 151.7152422532598, 0.76895255], [57.73, 167.42973271853123, 0.7522249], [57.74, 193.5837255633349, 0.75315195], [57.75, 207.8802619304409, 0.7584931], [57.76, 208.00382410458442, 0.6862551], [57.77, 208.162262885087, 0.7341661], [57.78, 208.22370044402538, 0.7686827], [57.79, 208.14634534576842, 0.8173748], [57.8, 208.10657778324048, 0.83178395], [57.81, 207.93638236425363, 0.84370565], [57.82, 207.97020649954345, 0.79642755], [57.83, 207.7381798728588, 0.72217256], [57.84, 207.94700414979985, 0.70111597], [57.85, 208.03420697915186, 0.6961207], [57.86, 207.64167661347997, 0.6168776], [57.87, 207.98304652106862, 0.6812667], [57.88, 208.02412058231283, 0.72638583], [57.89, 207.9838829276551, 0.76636034], [57.9, 208.1763728112065, 0.7623939], [57.91, 208.3386798327929, 0.7702924], [57.92, 208.18875873595744, 0.70775473], [57.93, 207.87217962049522, 0.6454948], [57.94, 207.90950644081374, 0.51191276], [57.95, 189.49657052328627, 0.2806034], [57.96, 170.56675622575625, 0.3958885], [57.97, 156.07032149163683, 0.5464495], [57.98, 155.8510220627273, 0.5190962], [57.99, 153.964211055652, 0.3899576], [58.0, 152.62416133315799, 0.25133836], [58.01, 150.1423919018902, 0.18181746], [58.02, 149.68382238686672, 0.19694036], [58.03, 150.61663933166014, 0.22888008], [58.04, 153.06334488855742, 0.14775561], [58.05, 153.54643417619388, 0.25070632], [58.06, 155.28289669614597, 0.13445963], [58.07, 156.4962675262921, 0.13909842], [58.08, 159.532597717018, 0.32732576], [58.09, 158.23713905745825, 0.42860618], [58.1, 156.61490042059214, 0.53803366], [58.11, 155.87464548070153, 0.5027517], [58.12, 157.67817081990324, 0.14944911], [58.13, 157.46346754910402, 0.31326938], [58.14, 160.19056900312177, 0.11140051], [58.15, 160.5941993264227, 0.32353497], [58.16, 158.89546956489522, 0.14739977], [58.17, 159.33608322224725, 0.07267786], [58.18, 157.4726954185021, 0.08261516], [58.19, 158.59449470522313, 0.24186724], [58.2, 159.89117545415414, 0.1979185], [58.21, 159.40513206441966, 0.3523956], [58.22, 159.4135081428639, 0.4917942], [58.23, 157.71082891650852, 0.5156563], [58.24, 155.86451642911666, 0.48237324], [58.25, 155.6912413227454, 0.5781948], [58.26, 155.8342595443729, 0.57262945], [58.27, 155.43173169258205, 0.600294], [58.28, 155.5615655467211, 0.36591375], [58.29, 152.95717687052533, 0.22132649], [58.3, 151.89524383459383, 0.30680078], [58.31, 150.91448859949222, 0.3361637], [58.32, 150.66201581170188, 0.143597], [58.33, 156.23172640007695, 0.18064366], [58.34, 170.94615676212504, 0.24217306], [58.35, 175.9724746834817, 0.32378438], [58.36, 176.73337705569932, 0.42983374], [58.37, 175.5833487031867, 0.3924246], [58.38, 174.9457058257102, 0.44660753], [58.39, 173.75758541719205, 0.54949605], [58.4, 173.6729046437998, 0.621635], [58.41, 173.81326768666548, 0.6042099], [58.42, 175.94787220537035, 0.6464639], [58.43, 177.41957486302792, 0.6093519], [58.44, 177.68781406371446, 0.5215507], [58.45, 177.34446630282963, 0.50442797], [58.46, 186.81781942083052, 0.32848665], [58.47, 221.10984809304117, 0.30118454], [58.48, 234.89642663324727, 0.3938037], [58.49, 234.22691116561313, 0.6622179], [58.5, 234.11253026618422, 0.7982643], [58.51, 233.7878310202355, 0.86177623], [58.52, 233.40000424312407, 0.8527486], [58.53, 232.81762925428936, 0.87272996], [58.54, 233.46452579103897, 0.8809782], [58.55, 233.4773563055717, 0.8950941], [58.56, 232.4150899091553, 0.860503], [58.57, 232.66946883255358, 0.8580638], [58.58, 233.09627456422697, 0.88556296], [58.59, 233.16732456266595, 0.8789039], [58.6, 233.08417907827038, 0.8502852], [58.61, 232.37704560321777, 0.8265316], [58.62, 232.70512412122002, 0.86184853], [58.63, 233.1022703968088, 0.8468861], [58.64, 233.62194903269864, 0.8501592], [58.65, 232.85483377320006, 0.82782024], [58.66, 232.2386884846132, 0.81006074], [58.67, 232.27635039241378, 0.8115368], [58.68, 232.62547228750168, 0.8057288], [58.69, 232.23465157627427, 0.75960153], [58.7, 231.9519250831112, 0.70088756], [58.71, 233.85864984963064, 0.7100043], [58.72, 233.87947576414703, 0.67473453], [58.73, 233.05135773478455, 0.60431343], [58.74, 231.31247640802545, 0.59846723], [58.75, 232.3488861192746, 0.6613456], [58.76, 233.61767549987977, 0.6432673], [58.77, 232.77555943827454, 0.5152798], [58.78, 230.66073136278905, 0.3648424], [58.79, 232.7985256498459, 0.4367934], [58.8, 233.63583275061995, 0.40193802], [58.81, 231.9530153338739, 0.38851276], [58.82, 210.10706318204308, 0.3874191], [58.83, 182.34575021145866, 0.49052724], [58.84, 164.11491941903168, 0.38442084], [58.85, 143.30087056598694, 0.17482837], [58.86, 132.34655447809882, 0.13339299], [58.87, 112.1332735781509, 0.21380989], [58.88, 97.92523868018196, 0.51206654], [58.89, 88.53734970843735, 0.65250164], [58.9, 87.04054515152217, 0.58989435], [58.91, 86.54438975583898, 0.4406626], [58.92, 87.37004660554435, 0.42569876], [58.93, 87.14292689191655, 0.38824654], [58.94, 86.24773972944423, 0.4110789], [58.95, 86.64090350752254, 0.497105], [58.96, 86.79033720996834, 0.4476985], [58.97, 86.1593707683125, 0.42078382], [58.98, 86.22741343465044, 0.4333845], [58.99, 86.18574775974577, 0.43957072], [59.0, 85.03244062529971, 0.3365629], [59.01, 84.4212668093833, 0.42453137], [59.02, 84.58131626198534, 0.5200522], [59.03, 84.64208314965671, 0.55145884], [59.04, 84.60988241397068, 0.49159932], [59.05, 85.93879587602936, 0.22367275], [59.06, 87.2061339857732, 0.14990719], [59.07, 83.98108466516503, 0.31056687], [59.08, 77.96280618995216, 0.29362544], [59.09, 70.71580531365964, 0.13246687], [59.1, 66.25138068842217, 0.130471], [59.11, 61.28098531678826, 0.15754642], [59.12, 54.65093090724718, 0.23938213], [59.13, 51.77899372363265, 0.15764712], [59.14, 51.757577815843774, 0.27274317], [59.15, 52.1607360255432, 0.42056552], [59.16, 52.70309695519142, 0.63006836], [59.17, 52.5659223629172, 0.5224343], [59.18, 52.489026551779354, 0.47468254], [59.19, 52.007905858933924, 0.48412144], [59.2, 52.05938186350818, 0.5874915], [59.21, 52.42738766478638, 0.4531675], [59.22, 53.116170621842976, 0.55699915], [59.23, 53.448189739974566, 0.4739953], [59.24, 52.80045665973347, 0.28442705], [59.25, 54.947645369271285, 0.07732697], [59.26, 59.53390769029077, 0.13052756], [59.27, 64.12423852878933, 0.20965877], [59.28, 70.66063795322319, 0.20136237], [59.29, 75.54107092583554, 0.11924894], [59.3, 79.78997939359073, 0.14946628], [59.31, 85.54976148877834, 0.100162886], [59.32, 91.53489426358442, 0.15073887], [59.33, 98.13669129498547, 0.14781062], [59.34, 107.74065742774226, 0.24500518], [59.35, 116.00787535204633, 0.31384373], [59.36, 120.9529012913235, 0.19338417], [59.37, 121.18788654115079, 0.18256646], [59.38, 121.4139033856454, 0.29583955], [59.39, 121.0442656234949, 0.3282023], [59.4, 119.10379713333582, 0.21233371], [59.41, 117.26531884806947, 0.21269941], [59.42, 108.38592522205826, 0.24289139], [59.43, 96.01625626187439, 0.27243125], [59.44, 85.43275568710243, 0.4101737], [59.45, 76.37021249293488, 0.38517538], [59.46, 70.38313905544611, 0.24111556], [59.47, 61.07194906038398, 0.15277901], [59.48, 56.39750071842825, 0.17345469], [59.49, 55.57478006340148, 0.12695064], [59.5, 55.578565055991646, 0.23764542], [59.51, 54.457275983589064, 0.19230676], [59.52, 54.5589200763164, 0.34730285], [59.53, 53.91976920752931, 0.27807924], [59.54, 54.65639587806283, 0.18397176], [59.55, 53.80608938294778, 0.055737145], [59.56, 55.47081025660968, 0.084976256], [59.57, 53.3826378330981, 0.12739705], [59.58, 53.698946005013475, 0.17991672], [59.59, 53.70266730507764, 0.115742], [59.6, 53.88665996761773, 0.19586077], [59.61, 54.38302696110112, 0.14523035], [59.62, 54.749899586774696, 0.24919052], [59.63, 55.03345612513945, 0.15031344], [59.64, 55.08020418238595, 0.124886215], [59.65, 55.31515027822789, 0.12673983], [59.66, 55.07460528433772, 0.09854133], [59.67, 54.64531652573616, 0.057886265], [59.68, 54.94979828936752, 0.24085955], [59.69, 54.862070899346875, 0.15387486], [59.7, 55.146779154294244, 0.09353325], [59.71, 55.48000349127371, 0.094771825], [59.72, 55.24262293270107, 0.13435847], [59.73, 55.19271976009547, 0.29697394], [59.74, 54.94305362292855, 0.29633364], [59.75, 54.66450492167518, 0.1797769], [59.76, 53.84714772478739, 0.1071144], [59.77, 53.49642755975139, 0.10963492], [59.78, 55.07528167783747, 0.09782923], [59.79, 55.952787928691876, 0.13120428], [59.8, 56.22477296537141, 0.06626467], [59.81, 57.18420169001074, 0.08148624], [59.82, 58.62189892845349, 0.15520015], [59.83, 58.69411012777549, 0.2225139], [59.84, 56.988436374774444, 0.24177517], [59.85, 56.970000276316604, 0.13353479], [59.86, 57.476802409242126, 0.18780246], [59.87, 58.20060352781248, 0.24868326], [59.88, 58.84322509341981, 0.41935], [59.89, 58.75116735303838, 0.58159226], [59.9, 58.34555849958811, 0.4072034], [59.91, 57.472921444921845, 0.29327625], [59.92, 58.09753059598441, 0.28780463], [59.93, 58.09036680928643, 0.29071802], [59.94, 58.24679479573482, 0.37519935], [59.95, 58.744721088218974, 0.40012124], [59.96, 58.239570655118236, 0.6043202], [59.97, 58.31002928345331, 0.64223564], [59.98, 58.0791273983224, 0.70172596], [59.99, 58.40148109797302, 0.71008074], [60.0, 58.586784346860384, 0.78701377], [60.01, 58.46676638884144, 0.8132157], [60.02, 58.831136525701694, 0.40441525], [60.03, 64.39824461827006, 0.120818414], [60.04, 71.9662034348262, 0.093786195], [60.05, 78.72711419681765, 0.1664114], [60.06, 88.39664869278623, 0.7283863], [60.07, 97.30097051015895, 0.49985117], [60.08, 107.9709230231928, 0.58079106], [60.09, 115.01277731234369, 0.443057], [60.1, 127.52701442135998, 0.20786078], [60.11, 144.2843973334385, 0.22928405], [60.12, 154.12994481762289, 0.16881256], [60.13, 158.18494390999257, 0.52248466], [60.14, 158.7942304804241, 0.6034532], [60.15, 158.23661845128436, 0.56875217], [60.16, 157.59751880600538, 0.51745754], [60.17, 154.41783470443147, 0.51020914], [60.18, 155.09065831157497, 0.3245492], [60.19, 155.4658178695597, 0.32184702], [60.2, 158.2010898977283, 0.4156863], [60.21, 160.96929220774524, 0.55658555], [60.22, 162.1043491640255, 0.5615072], [60.23, 164.19146381929292, 0.620915], [60.24, 167.27215150982065, 0.45430502], [60.25, 171.81976178733845, 0.43261066], [60.26, 176.88751262147144, 0.5602715], [60.27, 177.30355205663642, 0.7370729], [60.28, 176.86047803918302, 0.7628481], [60.29, 175.35730428833813, 0.7780456], [60.3, 173.99637346743157, 0.7597942], [60.31, 173.4766449944458, 0.8222437], [60.32, 173.47301964970964, 0.760312], [60.33, 174.29897260968178, 0.78743297], [60.34, 174.85500580886853, 0.7821265], [60.35, 174.5555082645743, 0.80139804], [60.36, 175.10742781841128, 0.73017293], [60.37, 176.30098582315955, 0.66766185], [60.38, 178.64150464560402, 0.6588111], [60.39, 178.48019408130597, 0.65305334], [60.4, 177.25516225735205, 0.55787504], [60.41, 174.03369651473503, 0.46998942], [60.42, 170.9284014655941, 0.48310062], [60.43, 169.4976353549618, 0.34353432], [60.44, 168.70275386366728, 0.19295458], [60.45, 158.2844158998822, 0.25612712], [60.46, 175.39123438567123, 0.15300807], [60.47, 174.5306781114003, 0.17986196], [60.48, 168.89099653767644, 0.37064162], [60.49, 171.7915643371251, 0.28802896], [60.5, 173.19647459553556, 0.3031148], [60.51, 173.1487717114841, 0.29473078], [60.52, 170.8380634375682, 0.3203478], [60.53, 169.90838534146476, 0.27413982], [60.54, 161.3961313069696, 0.41271704], [60.55, 153.32904926033893, 0.63796693], [60.56, 138.68307391286382, 0.7050966], [60.57, 135.94598238005744, 0.5636767], [60.58, 136.91521767362352, 0.6656858], [60.59, 137.66123933973884, 0.6814372], [60.6, 137.3350914614411, 0.68448436], [60.61, 135.52723458771698, 0.6868715], [60.62, 133.68551924473547, 0.5072961], [60.63, 131.09875820128138, 0.37625504], [60.64, 132.30414683291653, 0.37574306], [60.65, 134.1900713847922, 0.6318584], [60.66, 135.22738072427626, 0.6423797], [60.67, 136.40734988627932, 0.5642069], [60.68, 137.41200224801275, 0.7688118], [60.69, 138.2023898391841, 0.79394335], [60.7, 138.52478904333458, 0.78598547], [60.71, 138.76769810642813, 0.81318814], [60.72, 139.15448138118057, 0.8563661], [60.73, 139.6561638553161, 0.8485135], [60.74, 139.77549565929988, 0.7286768], [60.75, 140.99552830091753, 0.46083388], [60.76, 144.72926619282032, 0.41694555], [60.77, 146.63547192402373, 0.2956401], [60.78, 147.85492263699453, 0.255991], [60.79, 137.85163548001765, 0.17600566], [60.8, 143.37542744755348, 0.26973382], [60.81, 142.1181162923318, 0.5093094], [60.82, 140.73283446500147, 0.74616945], [60.83, 139.6452136078115, 0.82344145], [60.84, 138.39744143261007, 0.790184], [60.85, 137.36192191264158, 0.7140832], [60.86, 135.47153462849363, 0.57798684], [60.87, 132.93891354846136, 0.4720818], [60.88, 131.57647220839007, 0.4640078], [60.89, 140.87277628367423, 0.2335566], [60.9, 141.80135933015026, 0.39294872], [60.91, 141.19281803055006, 0.37992293], [60.92, 140.6962050871203, 0.42184654], [60.93, 138.89965063537085, 0.46830136], [60.94, 137.1479063441255, 0.56109786], [60.95, 136.17905433817083, 0.51670676], [60.96, 135.41673699890353, 0.30930814], [60.97, 140.382712884999, 0.29130584], [60.98, 140.46717862497277, 0.21918756], [60.99, 139.55882578004918, 0.104282685], [61.0, 139.1234453820497, 0.10989808], [61.01, 137.12336144163504, 0.22999738], [61.02, 138.26502533817995, 0.42634466], [61.03, 139.59615422588595, 0.4367375], [61.04, 140.90533217862938, 0.60756147], [61.05, 142.3208338493898, 0.23384403], [61.06, 144.74149660974004, 0.44000342], [61.07, 147.61589721587282, 0.3102621], [61.08, 149.68268606719946, 0.18477242], [61.09, 150.15196716239547, 0.23032409], [61.1, 152.8531222966614, 0.16834515], [61.11, 156.19947329082856, 0.13814104], [61.12, 157.23567340870264, 0.2561812], [61.13, 160.04089862471022, 0.54608685], [61.14, 164.40354966062512, 0.4694323], [61.15, 167.58955539044172, 0.55663395], [61.16, 168.46646049468916, 0.36555713], [61.17, 171.58628756519846, 0.27836695], [61.18, 172.69124670257906, 0.18928315], [61.19, 170.64491434352846, 0.17141329], [61.2, 169.20488781461665, 0.47084865], [61.21, 169.03401623485144, 0.5287591], [61.22, 170.31305479033645, 0.59442735], [61.23, 171.9011890186094, 0.61111146], [61.24, 175.45823347354485, 0.691473], [61.25, 176.99393713444215, 0.7697866], [61.26, 179.1598026807253, 0.7742078], [61.27, 182.4215283282119, 0.72147745], [61.28, 183.41035272522032, 0.7159879], [61.29, 183.60402261945336, 0.54655474], [61.3, 182.47185977147933, 0.38156316], [61.31, 175.31727496203135, 0.16269977], [61.32, 169.70128683324492, 0.0942835], [61.33, 146.50080733393725, 0.13306175], [61.34, 134.11088238659087, 0.19714579], [61.35, 115.71678820930182, 0.42139992], [61.36, 115.73970496792515, 0.6225631], [61.37, 115.43480824037447, 0.5133569], [61.38, 115.48953876923875, 0.48886007], [61.39, 121.2914557282614, 0.18985234], [61.4, 134.68631343072326, 0.22570214], [61.41, 139.67703439084164, 0.15516666], [61.42, 139.2021452881224, 0.12994935], [61.43, 133.36439677303275, 0.15446982], [61.44, 126.00978500585995, 0.19941328], [61.45, 118.56703676352646, 0.16103214], [61.46, 115.26908427221551, 0.20573065], [61.47, 115.81587586559515, 0.2976294], [61.48, 116.25683788933807, 0.32670844], [61.49, 125.90514048191199, 0.33039895], [61.5, 139.2037182909025, 0.32624638], [61.51, 140.09477977377634, 0.33016664], [61.52, 137.65776528339012, 0.3958236], [61.53, 137.44280283482112, 0.5642336], [61.54, 138.3296587272448, 0.63563484], [61.55, 138.81148169465607, 0.71503407], [61.56, 138.5498476422007, 0.6990138], [61.57, 138.75425635122465, 0.7615595], [61.58, 139.03839298275471, 0.73280275], [61.59, 139.30926886027953, 0.73456436], [61.6, 138.85337784900145, 0.77688974], [61.61, 138.27957259636895, 0.7257098], [61.62, 136.8795497874412, 0.5937483], [61.63, 136.75866387094493, 0.47931123], [61.64, 130.44701301906525, 0.41811422], [61.65, 119.00814964924386, 0.45720083], [61.66, 108.38447713766331, 0.46157402], [61.67, 99.94695228515845, 0.64799213], [61.68, 92.56002845221008, 0.63039196], [61.69, 83.05364707796137, 0.7492433], [61.7, 78.10914442493217, 0.66242236], [61.71, 71.18794441115455, 0.46532288], [61.72, 64.1167807411353, 0.3307586], [61.73, 58.58978739618646, 0.3215731], [61.74, 52.3982329239356, 0.26075682], [61.75, 48.44586504966469, 0.19085765], [61.76, 44.3506026818097, 0.20586233], [61.77, 39.664324231092166, 0.17478906], [61.78, 36.82706867589729, 0.20670176], [61.79, 36.86221431607534, 0.31414017], [61.8, 38.44352733680727, 0.32772025], [61.81, 40.769156495589066, 0.1611537], [61.82, 45.14943285523576, 0.09517439], [61.83, 46.797422495792425, 0.62130857], [61.84, 47.07767631762376, 0.631453], [61.85, 43.54576637268689, 0.39472172], [61.86, 37.95900775746091, 0.15029997], [61.87, 37.9386573818243, 0.38514924], [61.88, 37.04272558458921, 0.10350918], [61.89, 41.31843851207326, 0.12400173], [61.9, 41.990874994779205, 0.1378155], [61.91, 43.252562176235315, 0.1433777], [61.92, 44.09913543243644, 0.26569107], [61.93, 44.04654331768411, 0.7066575], [61.94, 44.095918442493286, 0.609063], [61.95, 44.77619272390541, 0.5544582], [61.96, 45.215097971102374, 0.5116586], [61.97, 45.3625242645803, 0.6485845], [61.98, 45.40025784889579, 0.6999569], [61.99, 45.602502513893086, 0.6918383], [62.0, 45.58590871910372, 0.6692895], [62.01, 46.01035711578325, 0.65256214], [62.02, 46.17243960577737, 0.605582], [62.03, 46.17123515955531, 0.6729695], [62.04, 45.93603981519191, 0.6059413], [62.05, 46.2504043808526, 0.72996134], [62.06, 46.4549255798255, 0.7947056], [62.07, 46.410711577044594, 0.7101948], [62.08, 46.375872696602556, 0.7550222], [62.09, 46.20438037392181, 0.62025076], [62.1, 45.949441618030704, 0.59598684], [62.11, 46.43312528827949, 0.6963716], [62.12, 46.52801914042627, 0.6990767], [62.13, 46.732050632531156, 0.6560838], [62.14, 46.278182776152015, 0.6302996], [62.15, 46.46405447415668, 0.6677653], [62.16, 46.146494025761626, 0.67805934], [62.17, 46.16162892041301, 0.61391014], [62.18, 45.58119465873213, 0.53043884], [62.19, 46.12529324181499, 0.71347314], [62.2, 46.17678953054916, 0.61369395], [62.21, 46.49403021602605, 0.6801207], [62.22, 46.50086624878693, 0.63906324], [62.23, 46.86244803744128, 0.69321364], [62.24, 46.696646726731146, 0.60804343], [62.25, 46.627893331400294, 0.77280223], [62.26, 46.32087147125294, 0.7020826], [62.27, 46.20507816945607, 0.727584], [62.28, 46.40687582051519, 0.72510797], [62.29, 46.17529317548649, 0.7293762], [62.3, 46.2944666052402, 0.7294391], [62.31, 46.38511670685713, 0.7722395], [62.32, 46.55180980142559, 0.7282927], [62.33, 46.2698582553519, 0.7396023], [62.34, 46.88262265647416, 0.7915827], [62.35, 46.64812656075104, 0.7318768], [62.36, 46.51052020847766, 0.78702706], [62.37, 45.81006164322833, 0.7272101], [62.38, 46.13041413334605, 0.7460899], [62.39, 45.852681830584494, 0.7397413], [62.4, 45.39305078339196, 0.55074793], [62.41, 46.00409701802676, 0.6681346], [62.42, 46.188502866046676, 0.69332814], [62.43, 46.2548763893149, 0.72797483], [62.44, 46.15520363418384, 0.72076255], [62.45, 46.018887696642985, 0.67313576], [62.46, 45.865625798882675, 0.6383823], [62.47, 45.96012837067537, 0.67230445], [62.48, 45.64467578150125, 0.37023222], [62.49, 46.07277183495423, 0.58001983], [62.5, 45.9590849257454, 0.6046268], [62.51, 46.59706852104465, 0.71829593], [62.52, 46.76067262303465, 0.7171788], [62.53, 46.67846353501513, 0.77088195], [62.54, 46.6238731259293, 0.76296985], [62.55, 46.47554494194604, 0.82914644], [62.56, 46.235982323460895, 0.7716717], [62.57, 46.17291313985461, 0.794874], [62.58, 46.282953360997006, 0.81255335], [62.59, 46.27842022669724, 0.81616473], [62.6, 46.56226093449425, 0.82285297], [62.61, 46.6489100479157, 0.7516797], [62.62, 47.123559209660755, 0.74406284], [62.63, 46.718687328196744, 0.6454679], [62.64, 46.7934643589692, 0.6919389], [62.65, 46.12767792919377, 0.5817595], [62.66, 46.10541915051777, 0.5947272], [62.67, 45.84712454068939, 0.59753513], [62.68, 46.128986106392915, 0.6447962], [62.69, 46.56391243497799, 0.71652293], [62.7, 46.83530549939598, 0.76709294], [62.71, 47.16053076050226, 0.7149814], [62.72, 47.05393700614442, 0.72226995], [62.73, 46.466315829084394, 0.69004124], [62.74, 45.71489151083754, 0.641735], [62.75, 46.94728118306914, 0.65953463], [62.76, 46.75735224574006, 0.48523816], [62.77, 46.42375531334718, 0.33084124], [62.78, 44.99278859565649, 0.35598427], [62.79, 46.976331924283926, 0.6486603], [62.8, 47.539579453697094, 0.7153192], [62.81, 47.36365942805736, 0.648071], [62.82, 46.58839488656869, 0.50093395], [62.83, 45.624599531261836, 0.40721717], [62.84, 46.482298703031574, 0.25823656], [62.85, 46.56026161134612, 0.37250265], [62.86, 46.52427812447823, 0.42511114], [62.87, 45.9208333640552, 0.33757052], [62.88, 45.128683297998535, 0.22538097], [62.89, 44.87115277498572, 0.18778501], [62.9, 47.02439545893159, 0.22424771], [62.91, 46.3385478784615, 0.20002967], [62.92, 45.814882305099324, 0.30908114], [62.93, 45.86843210847189, 0.24653503], [62.94, 44.03994396557394, 0.11797933], [62.95, 45.54804098134856, 0.16153093], [62.96, 46.018923658775876, 0.24614798], [62.97, 45.689516993040236, 0.36658263], [62.98, 45.863555978895086, 0.49127558], [62.99, 45.851530112999804, 0.542532], [63.0, 45.851344213755496, 0.553236], [63.01, 46.68034259964504, 0.557237], [63.02, 46.55978257796646, 0.56069076], [63.03, 46.48935443625806, 0.58028686], [63.04, 45.90738207538279, 0.5504003], [63.05, 46.078932677378354, 0.62227166], [63.06, 46.07777975997014, 0.56021476], [63.07, 45.61483609184286, 0.62021005], [63.08, 45.56939749802295, 0.554007], [63.09, 45.56875776268805, 0.31987095], [63.1, 45.954623433071234, 0.47604796], [63.11, 46.33726923588033, 0.5261113], [63.12, 46.92503454118099, 0.3534078], [63.13, 47.10170900306168, 0.24456644], [63.14, 47.11511031216462, 0.1892372], [63.15, 46.355635157050045, 0.26714745], [63.16, 46.52183175273742, 0.22070119], [63.17, 46.638606084471384, 0.17173484], [63.18, 46.94793250441944, 0.19896768], [63.19, 47.3483090451974, 0.083731376], [63.2, 47.03396259537521, 0.20886217], [63.21, 46.448845901269635, 0.31170523], [63.22, 46.29680526834484, 0.63650054], [63.23, 45.816295018389084, 0.6222612], [63.24, 46.201787832069414, 0.6999488], [63.25, 46.334724167740006, 0.635651], [63.26, 46.40970422026838, 0.65885097], [63.27, 46.32390179125862, 0.6335327], [63.28, 46.283881296194906, 0.6827376], [63.29, 46.55822056105163, 0.661103], [63.3, 46.21765639329939, 0.6566257], [63.31, 46.42958298507392, 0.6791013], [63.32, 46.50134321294856, 0.58060646], [63.33, 46.11600590093871, 0.3563465], [63.34, 45.36334149948188, 0.34979117], [63.35, 45.75189707279986, 0.39457235], [63.36, 45.924076918493796, 0.43344146], [63.37, 46.112506679812924, 0.5493445], [63.38, 45.785264174488375, 0.5400513], [63.39, 45.63634854832387, 0.3799495], [63.4, 45.00161476432267, 0.29588494], [63.41, 44.87321415587956, 0.24825665], [63.42, 45.56140008433058, 0.20780712], [63.43, 45.42130412406905, 0.29868826], [63.44, 45.93058295236801, 0.35439357], [63.45, 45.63789314876996, 0.43011117], [63.46, 45.962947854234706, 0.50261194], [63.47, 45.915221014180496, 0.61521673], [63.48, 46.238499199938694, 0.6613365], [63.49, 46.16440849272563, 0.67868775], [63.5, 46.21411246512519, 0.7169182], [63.51, 46.28284877732558, 0.7200764], [63.52, 46.317819326715224, 0.7541186], [63.53, 46.4265716558331, 0.7107601], [63.54, 46.42947526979431, 0.7309601], [63.55, 46.43789179667911, 0.7726498], [63.56, 46.1356018089504, 0.67950636], [63.57, 46.62775700158136, 0.642473], [63.58, 46.57835644608184, 0.410729], [63.59, 46.662069045986584, 0.28321344], [63.6, 47.0447933021132, 0.18205674], [63.61, 46.984898747123374, 0.20529456], [63.62, 47.071431725740894, 0.21157789], [63.63, 47.42512740910355, 0.42259163], [63.64, 47.21150485210672, 0.34967795], [63.65, 48.09293039973134, 0.2284076], [63.66, 47.89320887136867, 0.39475763], [63.67, 47.822216978274525, 0.5815903], [63.68, 47.407590328275894, 0.6637008], [63.69, 46.805783136318375, 0.50612736], [63.7, 47.28829853801271, 0.659643], [63.71, 47.06112295005299, 0.53718674], [63.72, 46.601723505733624, 0.61811924], [63.73, 46.77277741216506, 0.44761723], [63.74, 46.70301516382924, 0.62726986], [63.75, 46.51892949843116, 0.6401729], [63.76, 46.404878519348, 0.63001806], [63.77, 46.390438126700886, 0.1178144], [63.78, 52.52686273852608, 0.1502281], [63.79, 56.14752244805036, 0.31020564], [63.8, 62.18211751996682, 0.27566302], [63.81, 72.52405891962563, 0.43774897], [63.82, 77.4414069616529, 0.4859391], [63.83, 85.13578122569311, 0.32672113], [63.84, 98.43696220560355, 0.2487911], [63.85, 107.03413994064177, 0.12757005], [63.86, 124.1050890571296, 0.24509758], [63.87, 141.58329531407097, 0.18604495], [63.88, 152.82318395835813, 0.24679296], [63.89, 155.4171156394929, 0.27174896], [63.9, 157.78158315797276, 0.1060406], [63.91, 161.9374718055026, 0.05577616], [63.92, 152.18740725789922, 0.1078807], [63.93, 153.80198789886225, 0.095808774], [63.94, 156.62650758173478, 0.26301652], [63.95, 158.05564972323023, 0.36002856], [63.96, 161.12226495488989, 0.11077884], [63.97, 165.40878685958089, 0.22237663], [63.98, 170.68000314407936, 0.20274365], [63.99, 171.25723098123063, 0.17852598], [64.0, 173.51033311474976, 0.35553166], [64.01, 173.2553535118484, 0.48792464], [64.02, 175.14171279614956, 0.5197539], [64.03, 174.80346836565954, 0.5581108], [64.04, 173.9944928655174, 0.6755952], [64.05, 173.37220014360878, 0.71575385], [64.06, 173.48579246637811, 0.76420736], [64.07, 173.48915274835943, 0.73108196], [64.08, 175.2008266687322, 0.75422066], [64.09, 177.25796859741723, 0.7401242], [64.1, 177.4148079480305, 0.7055958], [64.11, 175.2865096633193, 0.49369714], [64.12, 169.96969673720173, 0.45454597], [64.13, 170.25233596390112, 0.20803812], [64.14, 173.59043507747475, 0.28418526], [64.15, 173.05830778305688, 0.4721602], [64.16, 173.322259517951, 0.29041308], [64.17, 175.8910003678918, 0.28958878], [64.18, 177.402732093089, 0.32026199], [64.19, 176.35691048491648, 0.319547], [64.2, 175.91786038672808, 0.43810594], [64.21, 175.11461537666037, 0.4746354], [64.22, 175.46743277439134, 0.6139265], [64.23, 175.34179786741862, 0.6309262], [64.24, 175.54081409456458, 0.582337], [64.25, 175.06281490355437, 0.5245854], [64.26, 165.65243310288332, 0.17985782], [64.27, 146.27801953316006, 0.36042204], [64.28, 135.8856646393369, 0.50594884], [64.29, 135.15592663873184, 0.68338037], [64.3, 134.14134227750236, 0.7807346], [64.31, 132.84070314531667, 0.8098328], [64.32, 132.2501799133515, 0.8091694], [64.33, 131.97288174946613, 0.8118213], [64.34, 131.88107989887757, 0.85382515], [64.35, 132.02222238825863, 0.6721501], [64.36, 132.2453725746348, 0.7262313], [64.37, 132.8784612665472, 0.6789517], [64.38, 134.48015134445873, 0.6952887], [64.39, 136.2056579859026, 0.71214175], [64.4, 138.35135971245242, 0.80892986], [64.41, 139.135742231089, 0.88753825], [64.42, 139.44117104736864, 0.9039534], [64.43, 139.30171438626226, 0.91157615], [64.44, 138.71730317572076, 0.91469765], [64.45, 137.99053598419545, 0.8957311], [64.46, 137.33251066003623, 0.86972874], [64.47, 136.4834828498368, 0.76598567], [64.48, 134.50634337486173, 0.72877187], [64.49, 134.14983856887338, 0.63571686], [64.5, 135.26167211199706, 0.44316384], [64.51, 137.23768432886789, 0.69222206], [64.52, 137.55498403522807, 0.75124985], [64.53, 137.51121911304887, 0.77596253], [64.54, 138.2272964801933, 0.8179055], [64.55, 139.48861771641273, 0.8509177], [64.56, 139.48676861757585, 0.83308035], [64.57, 138.89904545558653, 0.73466396], [64.58, 138.7061721533667, 0.6192731], [64.59, 154.0811679977435, 0.28448087], [64.6, 175.33637929700302, 0.511811], [64.61, 174.57646938123582, 0.6488932], [64.62, 175.59682883709542, 0.73537725], [64.63, 175.65665873562224, 0.7692885], [64.64, 175.89385769585235, 0.74879664], [64.65, 175.76421065300303, 0.75199693], [64.66, 175.99037346824505, 0.72191954], [64.67, 175.88377152638674, 0.7034629], [64.68, 175.37923036070524, 0.7676949], [64.69, 175.32969662072446, 0.7536184], [64.7, 173.4695284485453, 0.27479392], [64.71, 173.00813222268903, 0.44808373], [64.72, 172.86216781052926, 0.11265644], [64.73, 172.36118826278783, 0.062086288], [64.74, 167.17368865082136, 0.103507474], [64.75, 161.23341182946444, 0.16561832], [64.76, 157.2867327210283, 0.48029023], [64.77, 150.70065655015782, 0.61357063], [64.78, 146.12148403047985, 0.3267031], [64.79, 142.0063567429063, 0.33547747], [64.8, 139.6351515165754, 0.19982706], [64.81, 137.73442377461325, 0.27211398], [64.82, 137.6859899340854, 0.527371], [64.83, 135.93879722558424, 0.4391459], [64.84, 137.2321441747024, 0.37725452], [64.85, 137.64897897506592, 0.47346017], [64.86, 138.70820273851322, 0.50787145], [64.87, 138.94431127216882, 0.29422942], [64.88, 137.61619416905933, 0.49621737], [64.89, 137.96080049270034, 0.107632674], [64.9, 137.10980332821867, 0.29614383], [64.91, 137.3255246231358, 0.12887558], [64.92, 142.06524448025073, 0.13467027], [64.93, 145.52716703696808, 0.06747043], [64.94, 151.1220270611392, 0.10817823], [64.95, 150.17485446511503, 0.17112684], [64.96, 150.75649856877465, 0.17514816], [64.97, 158.0857620187386, 0.16547045], [64.98, 167.58925910646872, 0.1773131], [64.99, 176.34684069059873, 0.29923406], [65.0, 177.7883635341862, 0.37841007], [65.01, 181.25514412626828, 0.43416497], [65.02, 177.99698298674656, 0.2733522], [65.03, 175.82957298380978, 0.2492242], [65.04, 176.90343857810288, 0.55370057], [65.05, 176.75405525327093, 0.6285044], [65.06, 175.7781781462835, 0.68617547], [65.07, 174.82114325451025, 0.66275907], [65.08, 174.96616004402412, 0.6421999], [65.09, 175.9216411818784, 0.5923537], [65.1, 176.2568931889171, 0.64676654], [65.11, 176.39497626974247, 0.67715913], [65.12, 176.3758355681349, 0.71996087], [65.13, 176.45095435305436, 0.70880526], [65.14, 175.40222541227163, 0.6959599], [65.15, 175.82859290476716, 0.4904412], [65.16, 176.01770649101766, 0.4792588], [65.17, 175.4460971945518, 0.61393726], [65.18, 175.71278589286376, 0.7039632], [65.19, 176.38752729440867, 0.69056135], [65.2, 175.43305792179038, 0.57557315], [65.21, 173.70903892534795, 0.2406947], [65.22, 153.64932578571296, 0.37450862], [65.23, 141.26117334183994, 0.49915084], [65.24, 140.30871608232945, 0.634124], [65.25, 139.17304030183845, 0.7863697], [65.26, 139.23212724507633, 0.81219256], [65.27, 138.9632518061617, 0.81019354], [65.28, 138.02317723666894, 0.7652087], [65.29, 138.0668029994999, 0.7906483], [65.3, 137.74165669373505, 0.7648947], [65.31, 137.8456867639532, 0.7816438], [65.32, 138.06189856451485, 0.74919826], [65.33, 138.02167611048947, 0.76114637], [65.34, 138.42525236295896, 0.8192468], [65.35, 139.15161693559716, 0.8288358], [65.36, 139.19873736896858, 0.834536], [65.37, 139.2569506138332, 0.73676294], [65.38, 139.3176426743604, 0.6100098], [65.39, 139.05488315292763, 0.45132422], [65.4, 158.54052938738232, 0.328469], [65.41, 176.18553306332612, 0.26950428], [65.42, 206.14451534171408, 0.2532162], [65.43, 226.17622007472784, 0.29029134], [65.44, 230.45719740593202, 0.29197556], [65.45, 233.43422572117888, 0.4381587], [65.46, 236.23561045943532, 0.45362526], [65.47, 238.69500859000817, 0.4569031], [65.48, 238.84792664292743, 0.49576274], [65.49, 236.58461630100715, 0.45435593], [65.5, 232.94364079881632, 0.51527905], [65.51, 230.61122033537546, 0.6139268], [65.52, 228.9917942621134, 0.6977237], [65.53, 228.31194016585812, 0.6750628], [65.54, 230.804877405514, 0.57839227], [65.55, 233.26289402627677, 0.6267397], [65.56, 235.29784299282773, 0.555136], [65.57, 235.8932264378186, 0.3824135], [65.58, 235.8483973434075, 0.4713374], [65.59, 233.48783492816892, 0.3873499], [65.6, 228.79054680533415, 0.5494843], [65.61, 227.04634494951873, 0.6026697], [65.62, 222.07671673490555, 0.6157429], [65.63, 220.98064452235636, 0.62450945], [65.64, 220.41707972170346, 0.4367597], [65.65, 217.92864064095156, 0.24812192], [65.66, 195.04092706960168, 0.033298567], [65.67, 174.83991048135914, 0.4698215], [65.68, 150.21203749799253, 0.6961923], [65.69, 135.40889823151213, 0.6346828], [65.7, 125.22290664879787, 0.59661555], [65.71, 110.85131237941928, 0.6690502], [65.72, 94.02070722476907, 0.68831134], [65.73, 89.39477993982378, 0.70386744], [65.74, 75.66398430610579, 0.628649], [65.75, 68.04763502424753, 0.60041815], [65.76, 59.44247645425137, 0.7305694], [65.77, 50.53769785769062, 0.7714507], [65.78, 46.03635315476323, 0.6861647], [65.79, 45.71059972614877, 0.6496355], [65.8, 45.7796432061749, 0.66914195], [65.81, 46.02849195230245, 0.6928871], [65.82, 45.67927638065501, 0.5451246], [65.83, 45.95903515525568, 0.5576813], [65.84, 45.86729181434041, 0.5857329], [65.85, 46.15489695761365, 0.60710937], [65.86, 46.22656512629405, 0.6358209], [65.87, 46.50947305531507, 0.7119715], [65.88, 46.54604439379127, 0.6418664], [65.89, 46.89053220291101, 0.67861193], [65.9, 47.55743612791374, 0.66770697], [65.91, 47.25110551975425, 0.6501626], [65.92, 47.11419574248752, 0.5515124], [65.93, 46.83725107125953, 0.6507453], [65.94, 46.94504294833243, 0.6504797], [65.95, 46.71428215858738, 0.6520564], [65.96, 46.621634646437435, 0.7289883], [65.97, 46.23608759905751, 0.6070969], [65.98, 46.476862868707094, 0.7264523], [65.99, 46.35990771753788, 0.69964176], [66.0, 46.41223999169668, 0.71456885], [66.01, 46.588344776478394, 0.7227633], [66.02, 46.393983522390194, 0.71948564], [66.03, 46.36535752173945, 0.6956515], [66.04, 46.155639958020124, 0.7192422], [66.05, 45.97233838042706, 0.6773945], [66.06, 45.81856378367867, 0.6384331], [66.07, 45.83324700881127, 0.63269514], [66.08, 46.13443065645378, 0.5337616], [66.09, 46.679604313269635, 0.5751889], [66.1, 46.721478202792895, 0.48008406], [66.11, 46.56986259141692, 0.67310923], [66.12, 45.61538739017726, 0.65042704], [66.13, 46.10931133043052, 0.69984084], [66.14, 46.288711917177004, 0.70493275], [66.15, 46.405405429136685, 0.7099573], [66.16, 46.47830077889934, 0.720892], [66.17, 46.47331980083117, 0.7647088], [66.18, 46.2720436819406, 0.7323398], [66.19, 46.48278192916542, 0.77873045], [66.2, 46.37660414266616, 0.8005461], [66.21, 46.32658343852057, 0.7997055], [66.22, 46.31278626418815, 0.81798303], [66.23, 46.24558842094813, 0.75932604], [66.24, 46.30322131038934, 0.7870288], [66.25, 46.21217989726286, 0.734956], [66.26, 46.33504805992591, 0.74274427], [66.27, 46.18625965065383, 0.74211925], [66.28, 46.20824999316493, 0.7229328], [66.29, 46.13746650313352, 0.6822158], [66.3, 46.17174225967897, 0.7610488], [66.31, 46.21725534399215, 0.7800024], [66.32, 46.15296562708545, 0.76480544], [66.33, 46.368928746328024, 0.81962025], [66.34, 46.320396015021494, 0.8131909], [66.35, 46.648145580927874, 0.81560475], [66.36, 46.57473699944155, 0.7894132], [66.37, 46.88795084867116, 0.7933984], [66.38, 46.94718312371453, 0.79119223], [66.39, 46.87127947693683, 0.78328574], [66.4, 46.64471318004655, 0.724023], [66.41, 46.49603451252376, 0.756899], [66.42, 46.14673736149197, 0.6171593], [66.43, 45.817712279215144, 0.56520283], [66.44, 46.177103445517304, 0.44073308], [66.45, 46.570292376438175, 0.5546315], [66.46, 46.40542401104191, 0.54366094], [66.47, 46.5190082450605, 0.60464674], [66.48, 46.574179182577566, 0.7082493], [66.49, 46.538708232777154, 0.7263789], [66.5, 46.76030194684134, 0.79596776], [66.51, 46.55509980769943, 0.76313984], [66.52, 46.769136921423495, 0.7871981], [66.53, 46.61078369863645, 0.7568442], [66.54, 46.72726689111801, 0.80214185], [66.55, 46.62027194235854, 0.7967794], [66.56, 46.29118423306699, 0.78846437], [66.57, 46.483144805532476, 0.7842099], [66.58, 46.429973186503865, 0.6273704], [66.59, 47.52005789206329, 0.35113895], [66.6, 47.46210015824324, 0.4230815], [66.61, 46.68534221813491, 0.530327], [66.62, 46.59048092497616, 0.4955917], [66.63, 45.769001023996694, 0.30404282], [66.64, 45.92960754183043, 0.32049587], [66.65, 46.42932546733827, 0.46529484], [66.66, 46.62437076534468, 0.36381137], [66.67, 47.813311963254776, 0.5762996], [66.68, 48.44010771178151, 0.67544824], [66.69, 47.89080377116851, 0.5249101], [66.7, 46.56296593600715, 0.30349365], [66.71, 45.765456272488365, 0.34875748], [66.72, 47.44714288426142, 0.36438435], [66.73, 47.80824734868756, 0.38533744], [66.74, 47.77040906395416, 0.15887646], [66.75, 45.87304336939211, 0.2766466], [66.76, 47.75697170544913, 0.4258488], [66.77, 47.79018587739137, 0.3495756], [66.78, 46.662454324841875, 0.45588955], [66.79, 45.597203960823364, 0.49532077], [66.8, 46.09941855544214, 0.29770675], [66.81, 46.59648684804513, 0.22518142], [66.82, 46.667101056124736, 0.4066659], [66.83, 45.77973370515019, 0.5120698], [66.84, 46.40665121074805, 0.636128], [66.85, 46.42825407664378, 0.65991634], [66.86, 46.36063844155405, 0.5383445], [66.87, 46.50214120468949, 0.476429], [66.88, 45.950115477999596, 0.5096653], [66.89, 45.843671051894006, 0.4330602], [66.9, 46.26961807103514, 0.17329283], [66.91, 47.44124219994142, 0.34250134], [66.92, 47.2199931491264, 0.20659588], [66.93, 47.16635557601385, 0.24629733], [66.94, 47.72296002607365, 0.11018971], [66.95, 47.863682204371855, 0.09236628], [66.96, 47.880805762872356, 0.12796657], [66.97, 47.260595339834325, 0.13840945], [66.98, 46.809060310461604, 0.1463754], [66.99, 47.751594909524684, 0.34101337], [67.0, 48.21833817293108, 0.53527874], [67.01, 47.46276507601162, 0.53262335], [67.02, 46.683760372643576, 0.5300412], [67.03, 46.370750947560865, 0.5455101], [67.04, 47.12909243654883, 0.56756544], [67.05, 47.03073372763053, 0.6308435], [67.06, 46.26964511822223, 0.68163675], [67.07, 46.360589038226045, 0.6046927], [67.08, 46.245123077330106, 0.6090207], [67.09, 46.25388693143975, 0.5467734], [67.1, 46.751743414506386, 0.28299192], [67.11, 46.27972749608729, 0.18350923], [67.12, 45.547581396998844, 0.3383137], [67.13, 44.179999901952094, 0.26528618], [67.14, 44.201892275815204, 0.3453988], [67.15, 44.180127445978314, 0.45785555], [67.16, 44.36172986283281, 0.26990217], [67.17, 44.861083727261544, 0.131427], [67.18, 45.807450555697756, 0.25624225], [67.19, 46.68573521045762, 0.29039833], [67.2, 46.00821941369708, 0.23137085], [67.21, 45.64830089078492, 0.34337696], [67.22, 45.2514451035659, 0.42220235], [67.23, 44.941305918432704, 0.51229846], [67.24, 45.23222488348178, 0.42837474], [67.25, 45.946726352173954, 0.33619583], [67.26, 46.642593752648565, 0.2870762], [67.27, 46.436327586995326, 0.4519107], [67.28, 46.072766703796475, 0.3425386], [67.29, 49.81081845529719, 0.28771293], [67.3, 58.27635106968668, 0.3209507], [67.31, 63.932084014454674, 0.23344824], [67.32, 71.829998228796, 0.17283152], [67.33, 80.16237789039359, 0.25188842], [67.34, 87.23868246504682, 0.3632696], [67.35, 97.12550045020026, 0.41778284], [67.36, 109.24984373341294, 0.43546438], [67.37, 118.65772704750044, 0.31143853], [67.38, 135.3287027914187, 0.2603827], [67.39, 147.80996851720246, 0.3706547], [67.4, 148.93370794874212, 0.25202197], [67.41, 148.84544889731484, 0.1057196], [67.42, 150.4237031669882, 0.2148003], [67.43, 149.60429401689632, 0.40751812], [67.44, 149.4949347759027, 0.29552606], [67.45, 148.53118505371972, 0.16550274], [67.46, 148.68285404717443, 0.16309354], [67.47, 148.1343591991228, 0.20022765], [67.48, 147.08156416233675, 0.20439568], [67.49, 146.7960582785048, 0.12543075], [67.5, 145.88777073875576, 0.12896006], [67.51, 144.65919460714062, 0.08514149], [67.52, 144.6893334981957, 0.043621283], [67.53, 145.29661574544633, 0.17289665], [67.54, 144.649605180465, 0.083049074], [67.55, 146.2577679608905, 0.12935466], [67.56, 146.58343129455258, 0.44042018], [67.57, 148.20144724959425, 0.4678537], [67.58, 146.05702459680205, 0.5822954], [67.59, 144.50392254356922, 0.17865622], [67.6, 143.51481456691656, 0.3894406], [67.61, 145.72222398869474, 0.24574609], [67.62, 149.30605122775705, 0.3128067], [67.63, 153.11442861787475, 0.30442694], [67.64, 156.4360662648915, 0.35635266], [67.65, 161.25794837309252, 0.4989629], [67.66, 162.39773884662142, 0.22388008], [67.67, 161.4162683429838, 0.12971598], [67.68, 160.08753214652958, 0.09157838], [67.69, 157.18834400928387, 0.1825922], [67.7, 158.2534188777298, 0.14378706], [67.71, 160.16254393048186, 0.21491592], [67.72, 161.53126672270972, 0.28335026], [67.73, 172.51968450093344, 0.07450134], [67.74, 172.9817739135869, 0.11546509], [67.75, 169.23732269091602, 0.48622975], [67.76, 169.50994926584673, 0.69345266], [67.77, 170.54752004237542, 0.6580022], [67.78, 173.95337462109072, 0.56831664], [67.79, 176.12792315776832, 0.7267461], [67.8, 176.04102278721825, 0.7658522], [67.81, 174.9613809919793, 0.7995236], [67.82, 173.48196811286402, 0.836703], [67.83, 172.7045245158397, 0.83938277], [67.84, 172.40583861892847, 0.8142057], [67.85, 172.5437403442641, 0.8090436], [67.86, 173.86619843302182, 0.7934135], [67.87, 174.7939574727519, 0.7772514], [67.88, 176.0031505859686, 0.75749516], [67.89, 176.16791585590195, 0.7414088], [67.9, 175.31440381692119, 0.7049512], [67.91, 170.72665413433808, 0.51896113], [67.92, 164.4848643553108, 0.5377764], [67.93, 157.5976208656841, 0.42097178], [67.94, 150.60672891406796, 0.48786667], [67.95, 145.1445099802277, 0.33849263], [67.96, 156.32364138073467, 0.32233888], [67.97, 172.11661302850916, 0.20811974], [67.98, 172.78999875680793, 0.35367197], [67.99, 172.99389734256272, 0.41701785], [68.0, 175.1827649669819, 0.48575988], [68.01, 175.425094483119, 0.48520806], [68.02, 175.71739264627934, 0.5568077], [68.03, 166.1332721850516, 0.26097882], [68.04, 146.63622255347715, 0.40446028], [68.05, 135.42984095694777, 0.5861067], [68.06, 135.29332043993188, 0.5433072], [68.07, 135.47694598347243, 0.50438315], [68.08, 132.46522144063695, 0.6505767], [68.09, 132.39492982445938, 0.7560966], [68.1, 133.17131967971824, 0.8671322], [68.11, 133.37257765825746, 0.8076364], [68.12, 134.3260362216613, 0.8391226], [68.13, 135.19700377762948, 0.80972844], [68.14, 136.06083822785206, 0.7708152], [68.15, 137.38190204626028, 0.7939654], [68.16, 138.56479728806207, 0.80876154], [68.17, 139.39403716971452, 0.83940053], [68.18, 139.72150957542422, 0.83020097], [68.19, 140.13056646721483, 0.7923481], [68.2, 140.51199012204157, 0.715695], [68.21, 140.0549398391414, 0.7402984], [68.22, 139.44939727634946, 0.8046378], [68.23, 137.8382437629409, 0.7558422], [68.24, 134.69440142389888, 0.6803494], [68.25, 132.7427913267261, 0.54070544], [68.26, 131.00800505027064, 0.42852858], [68.27, 128.9462372506793, 0.4386024], [68.28, 129.73714620333996, 0.61660045], [68.29, 129.09968565574243, 0.58958966], [68.3, 132.57396051588057, 0.41459885], [68.31, 139.8855371150448, 0.3927376], [68.32, 141.72873777548756, 0.7730166], [68.33, 143.35700109111065, 0.8709039], [68.34, 143.4130905126864, 0.8574877], [68.35, 141.67453192992787, 0.7418034], [68.36, 140.04255272486193, 0.71204996], [68.37, 137.38416112911105, 0.5495843], [68.38, 154.82345686884094, 0.24436952], [68.39, 176.1026651954321, 0.36362287], [68.4, 175.70788727158765, 0.6372336], [68.41, 174.839264917298, 0.7140378], [68.42, 175.17737425701628, 0.66777253], [68.43, 174.64888612363697, 0.60987616], [68.44, 175.8285580342756, 0.6587089], [68.45, 175.1031226845077, 0.3869054], [68.46, 173.50234469450697, 0.42346317], [68.47, 172.82659270673344, 0.12966327], [68.48, 172.55013931882962, 0.07385756], [68.49, 171.3939530698694, 0.11872675], [68.5, 167.57291020300343, 0.13277823], [68.51, 162.79532570830588, 0.08944784], [68.52, 160.07192032499475, 0.1289071], [68.53, 159.19110011654828, 0.09806357], [68.54, 141.36597384060923, 0.17679134], [68.55, 139.37079468681162, 0.15249117], [68.56, 139.0673022634513, 0.1624989], [68.57, 139.43775161772226, 0.22147076], [68.58, 138.78695916680874, 0.32125774], [68.59, 138.89321904746186, 0.37376928], [68.6, 137.48855624357336, 0.2297918], [68.61, 139.15315149594832, 0.2315293], [68.62, 150.65600075128512, 0.21909781], [68.63, 167.74840159822952, 0.22739282], [68.64, 169.54767505882828, 0.2588398], [68.65, 175.6319383884931, 0.20566666], [68.66, 177.51644890224503, 0.30508035], [68.67, 176.57112952400416, 0.28858608], [68.68, 174.41667221522323, 0.37521258], [68.69, 171.19458449010767, 0.36936206], [68.7, 172.36894336548653, 0.48391145], [68.71, 174.71869841230705, 0.49326116], [68.72, 175.89169535217238, 0.5628153], [68.73, 175.7780126711862, 0.46550858], [68.74, 173.6036635217717, 0.44682], [68.75, 176.84986386594605, 0.45911366], [68.76, 180.86455489874297, 0.57742447], [68.77, 181.0689809284493, 0.54879373], [68.78, 178.8371042217688, 0.5905834], [68.79, 176.8812376532769, 0.65602607], [68.8, 176.60813949038453, 0.69765484], [68.81, 176.91540964150678, 0.66568327], [68.82, 175.75252832960535, 0.5229697], [68.83, 175.01995875835988, 0.43542466], [68.84, 174.83077527893107, 0.36844906], [68.85, 175.8666484939817, 0.3294019], [68.86, 175.09243489125782, 0.3276159], [68.87, 175.17549898869945, 0.30653536], [68.88, 176.00848390216257, 0.3347191], [68.89, 175.55278817450616, 0.19810894], [68.9, 174.85481619848906, 0.17395106], [68.91, 173.66636882321953, 0.19501169], [68.92, 174.0940095830987, 0.21767603], [68.93, 174.3701585653631, 0.43914956], [68.94, 174.89271754178407, 0.21484143], [68.95, 175.18823608665724, 0.36484107], [68.96, 176.8245797588428, 0.34925655], [68.97, 177.76441246966047, 0.27014595], [68.98, 159.3354119568922, 0.3125793], [68.99, 138.29053563387714, 0.38048893], [69.0, 137.9741564522581, 0.6788966], [69.01, 138.98673337954355, 0.6469808], [69.02, 138.56087734238704, 0.48967937], [69.03, 138.7522193941988, 0.55565345], [69.04, 138.7368077840762, 0.4816885], [69.05, 139.00466832623763, 0.24253397], [69.06, 136.2342845947722, 0.17453457], [69.07, 136.04203938099977, 0.33509687], [69.08, 135.99478336602124, 0.58238643], [69.09, 135.85139361227237, 0.58863205], [69.1, 129.47652993429338, 0.67457783], [69.11, 122.62752711901197, 0.5395857], [69.12, 119.03953751575992, 0.34387952], [69.13, 117.86507792111357, 0.2774087], [69.14, 116.88052604881418, 0.17822166], [69.15, 114.69752511996725, 0.13586046], [69.16, 114.54855542949511, 0.19908533], [69.17, 114.44955115316519, 0.34158254], [69.18, 115.54891937900081, 0.33563507], [69.19, 113.91189787211528, 0.3429225], [69.2, 114.11677841905656, 0.29059717], [69.21, 111.71958395226973, 0.22456437], [69.22, 109.14777805448975, 0.1330822], [69.23, 102.46826331925541, 0.14224795], [69.24, 87.52789327130537, 0.15315057], [69.25, 83.0843376477047, 0.17807554], [69.26, 71.5263913531353, 0.099378906], [69.27, 67.05227359300534, 0.10522139], [69.28, 59.21223184248893, 0.34908357], [69.29, 52.07904330036784, 0.27952093], [69.3, 46.93655127465646, 0.20778458], [69.31, 43.02760926284547, 0.34004024], [69.32, 43.765976313706375, 0.31478134], [69.33, 46.58979971882806, 0.39469865], [69.34, 47.76694439874539, 0.5588254], [69.35, 49.044508534239206, 0.6371494], [69.36, 51.806487007627524, 0.36871856], [69.37, 49.317721183341035, 0.13736689], [69.38, 45.55243413275642, 0.10718394], [69.39, 41.284909003714404, 0.10352172], [69.4, 42.517121835113, 0.26303694], [69.41, 43.40251754631346, 0.1310107], [69.42, 44.170369996231614, 0.23566665], [69.43, 44.162692359862774, 0.6922574], [69.44, 44.71761421961083, 0.52959275], [69.45, 45.21805665834185, 0.56995803], [69.46, 45.4794980232103, 0.6025654], [69.47, 45.66916979673047, 0.642873], [69.48, 45.7773472429211, 0.63798136], [69.49, 46.090078062530495, 0.5979945], [69.5, 46.33759753927403, 0.656505], [69.51, 46.361386359250275, 0.6936856], [69.52, 46.28585315720464, 0.5988174], [69.53, 46.35443124797728, 0.60037214], [69.54, 46.312451530686644, 0.6372745], [69.55, 46.27035278847303, 0.61122864], [69.56, 46.38960173064056, 0.6441245], [69.57, 46.46976357977568, 0.51158696], [69.58, 46.61343997318752, 0.47734323], [69.59, 46.186216758268046, 0.26614016], [69.6, 46.2602411957457, 0.5067194], [69.61, 46.372813150779336, 0.30459642], [69.62, 46.62902984704229, 0.38981095], [69.63, 46.29081273240316, 0.45108035], [69.64, 46.203161918675946, 0.58185], [69.65, 45.72189206591614, 0.48090214], [69.66, 45.657087956376316, 0.3130929], [69.67, 45.62957220501153, 0.394067], [69.68, 45.32815086309767, 0.35860017], [69.69, 45.52477942690128, 0.33173606], [69.7, 45.31494068492055, 0.30204335], [69.71, 45.83857660535025, 0.41085348], [69.72, 44.16903546780279, 0.11373159], [69.73, 44.54036232137536, 0.21864748], [69.74, 45.23674120628819, 0.3167237], [69.75, 46.26017652075728, 0.34231606], [69.76, 46.63261512777683, 0.34447187], [69.77, 45.703602357782145, 0.2777142], [69.78, 44.48968434149758, 0.40579262], [69.79, 44.4652963670021, 0.39553544], [69.8, 44.559639772444406, 0.2734895], [69.81, 44.64187714286144, 0.25267747], [69.82, 46.51454492650078, 0.21153912], [69.83, 46.96266781372378, 0.21592566], [69.84, 47.42580866031393, 0.5921363], [69.85, 46.85921189096946, 0.5835945], [69.86, 46.73514814125667, 0.76878905], [69.87, 46.29098396655028, 0.7182537], [69.88, 46.30884869196434, 0.75790536], [69.89, 46.471131620649885, 0.7782968], [69.9, 46.911755550338356, 0.7871062], [69.91, 47.478958543705645, 0.7861523], [69.92, 46.924554986363425, 0.77456754], [69.93, 46.49629898163396, 0.6677532], [69.94, 45.953125930060175, 0.6428364], [69.95, 46.4868763030854, 0.6257646], [69.96, 46.56249272348948, 0.6769982], [69.97, 46.70506952657493, 0.68374014], [69.98, 46.53692876955343, 0.49791288], [69.99, 46.8930393088113, 0.688623], [70.0, 47.02119442881305, 0.54970014], [70.01, 46.36861714373302, 0.49713677], [70.02, 45.746507744184264, 0.459042], [70.03, 45.64513589464558, 0.42585614], [70.04, 45.65655194931679, 0.55554646], [70.05, 45.363481949219526, 0.526893], [70.06, 45.299113121142625, 0.54971546], [70.07, 45.591563117271264, 0.6308937], [70.08, 45.85574653783355, 0.6280236], [70.09, 45.87952215865829, 0.47638038], [70.1, 46.60272779561923, 0.34678078], [70.11, 47.426186088749496, 0.32485244], [70.12, 46.97640500806369, 0.28987643], [70.13, 44.80510013645493, 0.30290473], [70.14, 44.89927677344455, 0.33110264], [70.15, 44.96696757961628, 0.21886429], [70.16, 45.50465292930355, 0.28388345], [70.17, 45.80523454086982, 0.24629334], [70.18, 45.95686535680678, 0.22662553], [70.19, 45.94300147989606, 0.328411], [70.2, 45.9042975662199, 0.41534477], [70.21, 45.88722315755766, 0.246334], [70.22, 46.22436687902838, 0.3918939], [70.23, 45.90325859742095, 0.2903741], [70.24, 45.86686949730134, 0.386822], [70.25, 46.718650894231814, 0.4435025], [70.26, 46.666865446066765, 0.32245126], [70.27, 47.41754198825501, 0.25101122], [70.28, 48.6262797641609, 0.2802948], [70.29, 47.73073942576503, 0.33865622], [70.3, 46.9136688303145, 0.33467653], [70.31, 46.85542345290002, 0.38291353], [70.32, 46.31515345193982, 0.3445151], [70.33, 46.11023659354058, 0.22539195], [70.34, 46.680251091981305, 0.30954018], [70.35, 46.959208772871875, 0.15069638], [70.36, 45.81471421542681, 0.35318467], [70.37, 45.609660927602135, 0.3087172], [70.38, 46.114000314281725, 0.1902318], [70.39, 46.93397172188809, 0.348525], [70.4, 47.65888447015069, 0.17765237], [70.41, 47.926613978726934, 0.1395749], [70.42, 47.970307128032495, 0.1972044], [70.43, 47.291599661563, 0.16775154], [70.44, 46.71267456423095, 0.18162379], [70.45, 46.51973450719432, 0.204964], [70.46, 47.1455213868039, 0.15781328], [70.47, 47.00969302977059, 0.22536592], [70.48, 46.45649047047942, 0.22975503], [70.49, 46.27271029435792, 0.20475107], [70.5, 46.3022685518419, 0.32456076], [70.51, 46.728683467951846, 0.52953845], [70.52, 47.07357764854968, 0.21553923], [70.53, 47.17951456032815, 0.3689286], [70.54, 46.9895710260932, 0.2812208], [70.55, 47.00577582674505, 0.2610973], [70.56, 46.55540975817451, 0.32425123], [70.57, 46.99075056856475, 0.5235661], [70.58, 46.93491822725707, 0.5137721], [70.59, 46.62231431485668, 0.5837925], [70.6, 46.85470867409498, 0.5625831], [70.61, 46.66286110297473, 0.6283002], [70.62, 46.345107359027516, 0.3155761], [70.63, 46.18017055476416, 0.3052501], [70.64, 45.93997803315398, 0.2077752], [70.65, 46.450957535299764, 0.2060993], [70.66, 46.593675780019915, 0.28291205], [70.67, 46.661227492509795, 0.23153734], [70.68, 46.597146480434716, 0.27784902], [70.69, 46.54891943540722, 0.22593519], [70.7, 46.37831611868603, 0.45777157], [70.71, 46.25369042250543, 0.38670024], [70.72, 46.02707541239478, 0.54300743], [70.73, 45.85406946494239, 0.38535878], [70.74, 46.047769376978, 0.4119634], [70.75, 45.971324887738106, 0.32793927], [70.76, 46.10383367532932, 0.37427062], [70.77, 45.87550070132997, 0.4021825], [70.78, 45.99990408380432, 0.4059528], [70.79, 46.36468999703004, 0.42410484], [70.8, 45.992653483269486, 0.3601347], [70.81, 46.344144565715155, 0.2911089], [70.82, 45.86847876577255, 0.28803134], [70.83, 45.67541146602808, 0.10483797], [70.84, 46.90069931554972, 0.08119135], [70.85, 47.70082189615447, 0.103680596], [70.86, 48.001378307521954, 0.1729129], [70.87, 47.771404837480596, 0.100853585], [70.88, 47.79711926470262, 0.16039132], [70.89, 48.0464404124006, 0.21886], [70.9, 47.37268069983833, 0.51245683], [70.91, 45.76847338706174, 0.4501789], [70.92, 45.48798625141767, 0.5103609], [70.93, 45.21433791113449, 0.60707694], [70.94, 46.31171636994913, 0.19594713], [70.95, 46.52837357816101, 0.34404948], [70.96, 46.15422153646553, 0.38193497], [70.97, 45.45825420316837, 0.28484136], [70.98, 46.017686523377066, 0.2400184], [70.99, 46.341813971344806, 0.33440328], [71.0, 46.52690082804735, 0.6863847], [71.01, 46.352696599017584, 0.71583366], [71.02, 46.321884618796446, 0.76854265], [71.03, 46.22612731158317, 0.6809348], [71.04, 46.260307922783284, 0.6865619], [71.05, 46.61638218086904, 0.7478393], [71.06, 46.489539453225134, 0.7002319], [71.07, 46.551655142414035, 0.76383036], [71.08, 46.526795877424654, 0.6530738], [71.09, 46.92802624787814, 0.5059208], [71.1, 47.72165219346385, 0.28281572], [71.11, 47.18905026475298, 0.19023444], [71.12, 47.06321159337498, 0.22722083], [71.13, 47.41559697486562, 0.2583156], [71.14, 47.42835543796603, 0.36441132], [71.15, 47.502398395408534, 0.15431818], [71.16, 47.30720589447693, 0.10585707], [71.17, 46.82439907050007, 0.08952427], [71.18, 47.31267816322656, 0.17332429], [71.19, 45.7480263690936, 0.2008823], [71.2, 44.456058195331885, 0.33767366], [71.21, 44.028741952467925, 0.29832187], [71.22, 44.04163823789092, 0.29042858], [71.23, 43.681092372174476, 0.21575926], [71.24, 43.33931628115514, 0.14956997], [71.25, 42.65574953862239, 0.0754603], [71.26, 41.60001179411314, 0.16054346], [71.27, 40.505255661634294, 0.11226421], [71.28, 40.35744285445414, 0.27067983], [71.29, 39.27375185254593, 0.18140827], [71.3, 38.27598475218354, 0.24961568], [71.31, 37.90293791815864, 0.30975664], [71.32, 37.91875543521976, 0.312382], [71.33, 37.38432264911121, 0.29918697], [71.34, 35.32992844036896, 0.21814688], [71.35, 32.16483870263949, 0.23178802], [71.36, 32.06134981600578, 0.15814905], [71.37, 31.99618775867471, 0.14478615], [71.38, 32.02786481965455, 0.129553], [71.39, 32.10311295085064, 0.16782486], [71.4, 32.05667120959578, 0.28668827], [71.41, 32.67563326088085, 0.26172608], [71.42, 36.68738899635508, 0.30138698], [71.43, 38.66710408459143, 0.43651798], [71.44, 38.78272218499931, 0.5414559], [71.45, 38.661711709128454, 0.44983658], [71.46, 38.09575593640033, 0.44959494], [71.47, 37.937553939761834, 0.22280143], [71.48, 38.21454170556678, 0.5319888], [71.49, 38.683079476037825, 0.6661819], [71.5, 38.599178337342394, 0.64126956], [71.51, 39.04650909088395, 0.7385184], [71.52, 38.97788753663322, 0.6375831], [71.53, 38.78890944179289, 0.60898554], [71.54, 38.276652056042984, 0.51278216], [71.55, 38.01750198964106, 0.45372173], [71.56, 38.02697603390384, 0.5643762], [71.57, 38.17849776490236, 0.65009516], [71.58, 38.24643451891597, 0.6508678], [71.59, 38.38816131734085, 0.7462387], [71.6, 38.364126659089756, 0.7469836], [71.61, 38.43955219370114, 0.7166588], [71.62, 38.89530143498766, 0.7263416], [71.63, 38.614602114826255, 0.77831954], [71.64, 38.423609537111496, 0.66431755], [71.65, 38.55417738409738, 0.7678592], [71.66, 38.372955332406676, 0.7072425], [71.67, 38.449677222865546, 0.7001332], [71.68, 38.48054300132646, 0.7601584], [71.69, 38.26062776670763, 0.7758137], [71.7, 38.14484968879282, 0.78109205], [71.71, 38.572169674212695, 0.8112495], [71.72, 38.502225518993576, 0.7960082], [71.73, 38.434938214169186, 0.806561], [71.74, 38.432701296195894, 0.7721947], [71.75, 38.551544762082855, 0.7370409], [71.76, 38.42516701766165, 0.5938207], [71.77, 38.50943630864144, 0.5420263], [71.78, 38.74013802929242, 0.50465345], [71.79, 38.73661535541353, 0.6062401], [71.8, 38.61185694693856, 0.66780716], [71.81, 38.45400676687938, 0.6025344], [71.82, 38.37805512895593, 0.7080329], [71.83, 38.13112105294464, 0.58271617], [71.84, 38.135796251861656, 0.6509736], [71.85, 38.415888435518674, 0.51590693], [71.86, 38.15317903927573, 0.62629324], [71.87, 38.21041042939001, 0.6535443], [71.88, 38.58032271899357, 0.5810976], [71.89, 38.66966547600066, 0.67482805], [71.9, 38.35156365106719, 0.7121409], [71.91, 38.13660826991787, 0.6981975], [71.92, 38.3117345046677, 0.6862479], [71.93, 38.17952606499886, 0.7591396], [71.94, 38.32523010375024, 0.6844231], [71.95, 38.33508128993553, 0.68321675], [71.96, 38.179018999491376, 0.6538587], [71.97, 37.83830054474712, 0.6150531], [71.98, 38.704325163856, 0.53618556], [71.99, 38.43470195993157, 0.44951865], [72.0, 37.79949474494498, 0.37073743], [72.01, 38.12659820392092, 0.30450416], [72.02, 38.848526799789646, 0.31915084], [72.03, 39.529149217024354, 0.3909953], [72.04, 38.919258737879254, 0.47520953], [72.05, 38.33681187418364, 0.60025585], [72.06, 38.07469519041253, 0.62062556], [72.07, 38.15569026539874, 0.658571], [72.08, 38.595441190104296, 0.6991109], [72.09, 38.568420821597684, 0.72808814], [72.1, 38.60873921861897, 0.71842337], [72.11, 38.84300155146195, 0.6597326], [72.12, 38.84969190090835, 0.6619887], [72.13, 38.60220917645407, 0.6110042], [72.14, 38.31537528870725, 0.63349867], [72.15, 38.40205949661292, 0.62602645], [72.16, 38.22535966987375, 0.5541888], [72.17, 38.15118885233159, 0.32685125], [72.18, 38.518115428483014, 0.16175184], [72.19, 38.5046175675386, 0.2500282], [72.2, 39.43602991862085, 0.32576287], [72.21, 40.86305116729544, 0.2760059], [72.22, 41.16813865574069, 0.22314559], [72.23, 41.472382686551384, 0.21514761], [72.24, 41.162287119076176, 0.22156529], [72.25, 40.63448318182452, 0.15083846], [72.26, 41.69466959015868, 0.1911336], [72.27, 43.007715358327076, 0.276723], [72.28, 43.47783215564802, 0.29050097], [72.29, 43.31131511176011, 0.37263072], [72.3, 44.97096198574187, 0.095046476], [72.31, 45.82201150743175, 0.11074325], [72.32, 46.382145128638506, 0.26781905], [72.33, 47.09728059303607, 0.48643827], [72.34, 47.67441190081129, 0.43787476], [72.35, 44.52619935744704, 0.1859214], [72.36, 43.520484569862475, 0.14723091], [72.37, 43.7839736785138, 0.19871892], [72.38, 43.51354612107368, 0.113526076], [72.39, 43.943093276974075, 0.15495259], [72.4, 43.4105125975895, 0.35823986], [72.41, 43.32187952974551, 0.56386524], [72.42, 43.58793856734921, 0.61551666], [72.43, 44.04436172141889, 0.7008044], [72.44, 43.86721020489141, 0.62653834], [72.45, 44.0611265868167, 0.51649475], [72.46, 43.711546371568595, 0.6152369], [72.47, 43.53146853491964, 0.4023983], [72.48, 43.124757232754135, 0.30939898], [72.49, 43.04433406248214, 0.18701021], [72.5, 43.052532696050186, 0.0899398], [72.51, 42.62845058090928, 0.0910367], [72.52, 42.56147134460859, 0.15939495], [72.53, 42.779113470297844, 0.24069637], [72.54, 43.20073951312431, 0.13826266], [72.55, 43.521374283729855, 0.116370514], [72.56, 44.254968595761774, 0.16325654], [72.57, 44.222636478925295, 0.26995453], [72.58, 44.249062870266215, 0.22090547], [72.59, 43.938181633652206, 0.278348], [72.6, 43.80013955816516, 0.074870005], [72.61, 43.76896951710498, 0.26927015], [72.62, 43.48127730474871, 0.24287665], [72.63, 43.62612183720741, 0.5246348], [72.64, 43.758519210466886, 0.32417586], [72.65, 43.480823577850735, 0.58785903], [72.66, 43.34655751440685, 0.60762495], [72.67, 43.328196843277325, 0.65889984], [72.68, 43.629511571795305, 0.61660534], [72.69, 43.34572373895667, 0.53867793], [72.7, 43.62073745506815, 0.5351986], [72.71, 43.61443984928797, 0.61975443], [72.72, 43.371098475819785, 0.63737077], [72.73, 43.774416730633604, 0.604815], [72.74, 43.68587681389905, 0.5745028], [72.75, 43.78588995067237, 0.3540659], [72.76, 44.40531942725577, 0.2343237], [72.77, 44.21601485502193, 0.1773219], [72.78, 44.10712224536962, 0.2529533], [72.79, 44.617466970257276, 0.22313711], [72.8, 43.66394843703512, 0.11438675], [72.81, 43.50298190512889, 0.27796736], [72.82, 43.714202932483026, 0.44942743], [72.83, 43.59656138165809, 0.46030957], [72.84, 43.661147448878225, 0.62004995], [72.85, 43.58355353529284, 0.6711649], [72.86, 43.5860798013604, 0.762589], [72.87, 43.29489048526146, 0.7147039], [72.88, 43.2970045388665, 0.71840143], [72.89, 43.594956802869646, 0.7429009], [72.9, 43.38039326937121, 0.70771587], [72.91, 43.601455238890175, 0.7024472], [72.92, 43.411903201096194, 0.50120294], [72.93, 43.50203110790758, 0.39059213], [72.94, 43.789860249757524, 0.20916434], [72.95, 44.24584274501313, 0.2618496], [72.96, 44.437289241216156, 0.2784668], [72.97, 44.13777624517758, 0.16041283], [72.98, 44.4574323515068, 0.23626362], [72.99, 44.4035100199592, 0.22221114], [73.0, 44.20206106385882, 0.21621338], [73.01, 44.808356684564295, 0.10019133], [73.02, 43.933128170237325, 0.36951825], [73.03, 43.67960107142007, 0.59550136], [73.04, 43.492393132865, 0.5988889], [73.05, 43.82078448981944, 0.6931943], [73.06, 43.91797848771067, 0.7148706], [73.07, 43.93218606583902, 0.736432], [73.08, 43.79875867143972, 0.7236513], [73.09, 43.9194393783104, 0.73631436], [73.1, 43.73789163314548, 0.7459021], [73.11, 43.72070189639296, 0.77738], [73.12, 43.7329193075259, 0.7866223], [73.13, 43.812058202046025, 0.7592382], [73.14, 44.328785889807065, 0.41493043], [73.15, 46.45146472435711, 0.21332057], [73.16, 47.82009993161981, 0.13775687], [73.17, 47.408024187809346, 0.06671439], [73.18, 47.77169723905124, 0.15439309], [73.19, 48.23542238807061, 0.14075962], [73.2, 48.54112034197193, 0.10136997], [73.21, 47.608769673281344, 0.1877671], [73.22, 47.59639536849528, 0.23265249], [73.23, 47.45824198410314, 0.30341908], [73.24, 47.17066696111602, 0.38633633], [73.25, 47.24529940870863, 0.28200126], [73.26, 47.59948262068114, 0.28354678], [73.27, 47.92706349041785, 0.11586759], [73.28, 48.76711371869861, 0.2030005], [73.29, 49.16491598572847, 0.37770784], [73.3, 49.48803220886668, 0.424119], [73.31, 48.78874141568776, 0.65644073], [73.32, 48.09494395518513, 0.5657835], [73.33, 46.86233064401644, 0.6844297], [73.34, 46.314495059594165, 0.6247452], [73.35, 46.93381455977295, 0.5189313], [73.36, 45.9105089074413, 0.47776866], [73.37, 45.17750081478597, 0.35461956], [73.38, 44.603294423073876, 0.27291605], [73.39, 44.54092730046927, 0.20394972], [73.4, 45.22385656467609, 0.20672871], [73.41, 45.33390646361667, 0.30008358], [73.42, 46.034029191068704, 0.42596558], [73.43, 45.99167756365296, 0.46596843], [73.44, 45.67901864314531, 0.49136946], [73.45, 45.077368401488414, 0.40841967], [73.46, 45.56956998813899, 0.32798243], [73.47, 45.8097991521401, 0.24390219], [73.48, 45.92452762120886, 0.36511075], [73.49, 45.57573790549675, 0.38813058], [73.5, 45.785019317001925, 0.5610285], [73.51, 46.376848355009734, 0.46966174], [73.52, 46.640959621438384, 0.557159], [73.53, 46.1805122931525, 0.53593624], [73.54, 45.65465461853738, 0.6138673], [73.55, 46.13805727162722, 0.55500466], [73.56, 45.75115225574416, 0.52482045], [73.57, 45.67921124308258, 0.57791054], [73.58, 45.63587822809731, 0.5425703], [73.59, 46.33362971503576, 0.7183407], [73.6, 45.706008297191104, 0.51863027], [73.61, 45.69710419968238, 0.64705426], [73.62, 45.24244146434252, 0.5501329], [73.63, 46.01432759493587, 0.49694613], [73.64, 45.925986417842495, 0.5647896], [73.65, 45.66131922214034, 0.59574926], [73.66, 45.390988465868595, 0.58964866], [73.67, 46.17506652539714, 0.6116996], [73.68, 46.85686952291875, 0.65226936], [73.69, 46.34040080289401, 0.7249539], [73.7, 45.52396247465027, 0.65223294], [73.71, 45.635391613339884, 0.58665437], [73.72, 46.10557280594566, 0.36833224], [73.73, 46.0606534248396, 0.5067741], [73.74, 46.02792508010809, 0.41510707], [73.75, 45.67868746937337, 0.5001272], [73.76, 46.304809846852976, 0.4674903], [73.77, 45.87240546712391, 0.5395115], [73.78, 45.30526859978444, 0.37795225], [73.79, 44.76750918742831, 0.5329649], [73.8, 46.391552847569656, 0.47561723], [73.81, 46.905037243368206, 0.661252], [73.82, 46.36698665573975, 0.7365433], [73.83, 45.846797876710504, 0.7289344], [73.84, 46.150528570127335, 0.70375377], [73.85, 47.10903404156595, 0.6912239], [73.86, 46.54381024839185, 0.6926506], [73.87, 45.92280614203689, 0.63495386], [73.88, 44.93802816238848, 0.53524816], [73.89, 46.55291045724606, 0.36736995], [73.9, 46.93540214801313, 0.3258926], [73.91, 46.25324069912303, 0.4075982], [73.92, 45.65878245540244, 0.42208228], [73.93, 46.44052357015369, 0.5316555], [73.94, 46.235429371961764, 0.66284436], [73.95, 45.73088937278878, 0.6735269], [73.96, 46.15793401650619, 0.73636776], [73.97, 46.28617130132736, 0.6841712], [73.98, 46.4425408832794, 0.65166706], [73.99, 45.79659057204526, 0.64613116], [74.0, 46.159253949867285, 0.6625557], [74.01, 45.67845758410041, 0.5690238], [74.02, 46.23964082833709, 0.5312943], [74.03, 45.207091010044856, 0.49305025], [74.04, 45.65633143139679, 0.55139154], [74.05, 45.60371358383467, 0.4745689], [74.06, 45.83677273298782, 0.4921549], [74.07, 45.015164748257064, 0.4327884], [74.08, 43.67270221933832, 0.5679681], [74.09, 41.903051668575266, 0.19880214], [74.1, 42.4682406174241, 0.10640351], [74.11, 44.75252198867359, 0.07404432], [74.12, 45.74132623476916, 0.06299058], [74.13, 47.94892213330179, 0.13091992], [74.14, 51.21304368822294, 0.18488692], [74.15, 52.41692074265636, 0.07097464], [74.16, 53.45831544947401, 0.10574694], [74.17, 53.589684172888, 0.18938293], [74.18, 53.98735045195537, 0.23008148], [74.19, 54.72743771203856, 0.16510242], [74.2, 55.09886996405328, 0.17737593], [74.21, 55.34957735722074, 0.10128898], [74.22, 54.98776071598844, 0.12997827], [74.23, 58.68692369277579, 0.10290536], [74.24, 66.18462493380702, 0.12091146], [74.25, 71.278495022775, 0.26847005], [74.26, 78.24941020235288, 0.18725044], [74.27, 83.98950752519978, 0.13952483], [74.28, 90.81393588953767, 0.1959286], [74.29, 97.45957882249806, 0.3718966], [74.3, 108.16475422013595, 0.38986984], [74.31, 117.43553314271611, 0.27491274], [74.32, 124.69144926813445, 0.23698959], [74.33, 135.81984116035875, 0.23629162], [74.34, 149.60872325846705, 0.23284273], [74.35, 159.89411967117488, 0.30058503], [74.36, 161.23632612735696, 0.2580862], [74.37, 160.5808267731156, 0.3143055], [74.38, 156.39215010430956, 0.14467144], [74.39, 151.33668716056644, 0.31061924], [74.4, 151.25650351426637, 0.21917962], [74.41, 152.59225756542062, 0.26817867], [74.42, 153.70008163666003, 0.3984559], [74.43, 155.3164690553233, 0.4777572], [74.44, 155.7013731561328, 0.43337858], [74.45, 158.27776448786724, 0.39696953], [74.46, 161.52958587034274, 0.43245703], [74.47, 161.86914637713858, 0.43576962], [74.48, 161.81933716987692, 0.5463397], [74.49, 160.91424780067558, 0.49833703], [74.5, 159.52689694666117, 0.24947423], [74.51, 152.87940024510334, 0.42845157], [74.52, 152.7111757188407, 0.54841465], [74.53, 150.5823396589912, 0.50798243], [74.54, 150.77577012375892, 0.27144957], [74.55, 149.60881014855, 0.34774908], [74.56, 150.36467248120925, 0.44046324], [74.57, 149.11624753296016, 0.38208628], [74.58, 150.9992766755084, 0.21737517], [74.59, 150.28581024940084, 0.21685854], [74.6, 155.62780258333837, 0.10754643], [74.61, 159.05152905115813, 0.31525224], [74.62, 159.77823044589263, 0.52121663], [74.63, 159.8843692280978, 0.38628763], [74.64, 156.2271123731698, 0.22782874], [74.65, 156.481023720677, 0.16554259], [74.66, 158.2527259410882, 0.23464926], [74.67, 160.13614686958465, 0.43801656], [74.68, 160.36342480675205, 0.5612445], [74.69, 161.44218482155486, 0.4811233], [74.7, 160.94045302071464, 0.37729147], [74.71, 163.83708223114917, 0.21651693], [74.72, 173.63794305604554, 0.09849368], [74.73, 179.63496678413904, 0.22719131], [74.74, 182.19054408249798, 0.27861246], [74.75, 182.27602336121896, 0.16687621], [74.76, 164.67170989886074, 0.18996286], [74.77, 178.4219319679442, 0.13894415], [74.78, 165.94740927179862, 0.17783362], [74.79, 161.9475247936062, 0.14331491], [74.8, 159.9807989192222, 0.14041731], [74.81, 140.14658214809862, 0.1094738], [74.82, 123.84796701971793, 0.13230819], [74.83, 119.90965156775579, 0.18299021], [74.84, 118.15006373954986, 0.20083898], [74.85, 118.587328149509, 0.18524587], [74.86, 118.71492039721254, 0.46070626], [74.87, 118.27969162524455, 0.45272285], [74.88, 118.23292358614218, 0.37648514], [74.89, 117.59175911335008, 0.46524915], [74.9, 118.278824427803, 0.4155293], [74.91, 119.28457871295811, 0.36528558], [74.92, 118.90816822878578, 0.338906], [74.93, 118.40268888192689, 0.3134058], [74.94, 117.85940070928345, 0.29690704], [74.95, 118.06865465866524, 0.40579262], [74.96, 118.24797329017377, 0.37951627], [74.97, 118.21016531388445, 0.49202058], [74.98, 117.98983562210474, 0.30443844], [74.99, 118.24408212864732, 0.3120737], [75.0, 119.13161773688708, 0.3197726], [75.01, 120.35470401859526, 0.22434008], [75.02, 122.32007634400183, 0.12733851], [75.03, 126.7085553149194, 0.10254244], [75.04, 128.10912201049223, 0.07641269], [75.05, 126.6801251417222, 0.15985417], [75.06, 128.1135104490245, 0.15752594], [75.07, 130.0506754653595, 0.39972764], [75.08, 131.51520469537007, 0.52377135], [75.09, 135.83557225531104, 0.23179609], [75.1, 136.84571222461793, 0.26750207], [75.11, 137.89534547838971, 0.24511792], [75.12, 140.43981823752793, 0.2843555], [75.13, 139.69581637597648, 0.19068825], [75.14, 139.18094896702206, 0.26072314], [75.15, 137.68570634926238, 0.26663694], [75.16, 137.4883410773576, 0.3700165], [75.17, 138.0538557872781, 0.47294042], [75.18, 138.56165973933662, 0.5004282], [75.19, 138.9825827375508, 0.6166522], [75.2, 139.6024493779375, 0.5473855], [75.21, 140.1942789086613, 0.511136], [75.22, 140.65242585307107, 0.47603932], [75.23, 139.6830506510226, 0.42524588], [75.24, 138.91377997483926, 0.33901393], [75.25, 138.97422381098008, 0.35504588], [75.26, 138.233477061519, 0.6267185], [75.27, 138.83030748487013, 0.6592327], [75.28, 138.73109075779092, 0.62013406], [75.29, 138.27431962851512, 0.57273585], [75.3, 137.5307879342859, 0.441478], [75.31, 137.60453392210462, 0.4198629], [75.32, 137.7656515252003, 0.5629874], [75.33, 138.2040807406987, 0.64492244], [75.34, 138.4571974633804, 0.7563715], [75.35, 138.74132786733333, 0.80893886], [75.36, 138.81384589056282, 0.7431471], [75.37, 139.0594943923503, 0.5489492], [75.38, 138.70246146117407, 0.5179478], [75.39, 138.14773756040222, 0.62631625], [75.4, 138.05795655784627, 0.55983114], [75.41, 137.37136901588624, 0.5009807], [75.42, 136.85932098010366, 0.48588404], [75.43, 136.18551039322978, 0.48926118], [75.44, 135.68278231565301, 0.549542], [75.45, 135.53460121548892, 0.2891871], [75.46, 135.41066463953933, 0.3507234], [75.47, 135.26710734567877, 0.46933702], [75.48, 133.3208365225607, 0.6999081], [75.49, 131.479734888954, 0.7217272], [75.5, 132.52127179923374, 0.5686888], [75.51, 142.1380837284561, 0.52539253], [75.52, 154.2577864592394, 0.52428055], [75.53, 156.59027374246148, 0.3566734], [75.54, 158.38492017500346, 0.54583365], [75.55, 161.0616369289782, 0.55794907], [75.56, 161.91794144259978, 0.63510525], [75.57, 160.80344118757537, 0.5205166], [75.58, 160.2469909799383, 0.44687483], [75.59, 158.30487546610345, 0.3249029], [75.6, 158.56253058081631, 0.4515573], [75.61, 158.34279394961447, 0.65710646], [75.62, 158.42997088999726, 0.60762024], [75.63, 158.57283849782982, 0.5930341], [75.64, 159.54520566673904, 0.49590546], [75.65, 160.52400329859094, 0.3688917], [75.66, 163.08009887868542, 0.41557977], [75.67, 163.76422203190754, 0.3416769], [75.68, 166.66957641829674, 0.31317547], [75.69, 172.26404724692338, 0.5183384], [75.7, 174.95377413098112, 0.42572674], [75.71, 176.22095028102507, 0.42328238], [75.72, 176.74317046811228, 0.39814764], [75.73, 175.93265960823953, 0.59600234], [75.74, 175.27462356237353, 0.77507144], [75.75, 175.0906397816708, 0.79407436], [75.76, 174.67430015247436, 0.81587183], [75.77, 174.2337774041073, 0.8347481], [75.78, 173.78745334749365, 0.8372782], [75.79, 173.45079979069712, 0.8262803], [75.8, 173.59530667114572, 0.76846796], [75.81, 173.83436402409185, 0.59387964], [75.82, 172.40142729589667, 0.34394947], [75.83, 173.87080758211297, 0.3361892], [75.84, 175.91994540074813, 0.27387533], [75.85, 179.46357913714866, 0.16457307], [75.86, 182.21931919185394, 0.30837825], [75.87, 180.81753824080823, 0.1544408], [75.88, 175.6474066007009, 0.11928291], [75.89, 173.08814294067923, 0.13427761], [75.9, 175.11957568785868, 0.1821589], [75.91, 177.994595425351, 0.28601617], [75.92, 176.88401373687918, 0.26849395], [75.93, 177.03678233363874, 0.16501257], [75.94, 175.1531897944115, 0.16428581], [75.95, 175.51382603112665, 0.08122673], [75.96, 172.60306938307173, 0.1467251], [75.97, 162.96543209997247, 0.21647859], [75.98, 163.84707228425586, 0.17634642], [75.99, 145.1067235843292, 0.18957756], [76.0, 143.64744101714047, 0.32342196], [76.01, 140.39981023807843, 0.2021663], [76.02, 137.84656300021348, 0.1888266], [76.03, 138.1842941549864, 0.2719191], [76.04, 139.64454623322294, 0.5910153], [76.05, 141.06257838706819, 0.5025816], [76.06, 139.89000185746858, 0.5899586], [76.07, 137.69133641346946, 0.65589476], [76.08, 134.84343999186095, 0.59127647], [76.09, 133.34508962204757, 0.74761486], [76.1, 133.05943254679966, 0.7299471], [76.11, 134.70793067338985, 0.6789403], [76.12, 137.73109032518047, 0.64439934], [76.13, 139.4136732474816, 0.68144286], [76.14, 142.4514990145416, 0.7119169], [76.15, 144.72592276595987, 0.7787934], [76.16, 146.67659507806653, 0.81808907], [76.17, 147.63550328715473, 0.8459985], [76.18, 148.01112824510858, 0.80758566], [76.19, 146.74752616858598, 0.7574304], [76.2, 144.2623092429743, 0.81746036], [76.21, 141.8347008979694, 0.78471965], [76.22, 139.44757797393981, 0.80827475], [76.23, 137.64858409519024, 0.8093989], [76.24, 136.64134277626653, 0.78722733], [76.25, 136.7354747712502, 0.7862017], [76.26, 137.5129221539977, 0.8073242], [76.27, 138.37378326987022, 0.7472287], [76.28, 138.76044079930034, 0.83249], [76.29, 139.06490293197467, 0.841343], [76.3, 139.31687892007366, 0.87458587], [76.31, 138.97504945570824, 0.86727446], [76.32, 138.45570016353895, 0.8176201], [76.33, 137.55370084128754, 0.8221029], [76.34, 136.95055593629226, 0.7893372], [76.35, 136.65932563505297, 0.7857526], [76.36, 137.11276033707009, 0.82848966], [76.37, 136.95798700938698, 0.8417637], [76.38, 136.54108246437605, 0.78232294], [76.39, 134.91033529245385, 0.7715729], [76.4, 132.9516292398077, 0.8177507], [76.41, 130.8938226948216, 0.8254638], [76.42, 128.5996812652976, 0.73379123], [76.43, 125.38068526279298, 0.7612028], [76.44, 124.43965589161809, 0.7630643], [76.45, 126.4881199814636, 0.55369437], [76.46, 130.99189235213606, 0.3563957], [76.47, 135.72486679584583, 0.40021628], [76.48, 138.67755524502158, 0.6078884], [76.49, 139.64760862531114, 0.63532704], [76.5, 139.59279032869705, 0.5284839], [76.51, 138.30763692639863, 0.53910464], [76.52, 137.71869538978086, 0.51374507], [76.53, 136.8570048978066, 0.5438592], [76.54, 134.9068449328732, 0.303653], [76.55, 133.77919193395, 0.21924557], [76.56, 132.73257615002854, 0.20653182], [76.57, 133.01944297907562, 0.37272164], [76.58, 135.30789853125418, 0.3727405], [76.59, 136.39740646906642, 0.4728516], [76.6, 138.43524559089187, 0.44399452], [76.61, 138.31120170131132, 0.33492824], [76.62, 138.11293467403297, 0.28617877], [76.63, 138.60737537535934, 0.35556677], [76.64, 137.35179631313616, 0.3911682], [76.65, 136.0586440686742, 0.37133595], [76.66, 137.0805864640352, 0.14088628], [76.67, 150.99263549273095, 0.13698477], [76.68, 173.47859409865467, 0.11012778], [76.69, 172.05691952071368, 0.38947567], [76.7, 175.76573072795134, 0.6289978], [76.71, 174.58198796306124, 0.54963285], [76.72, 172.45084135271856, 0.56118417], [76.73, 173.402623892902, 0.34198615], [76.74, 176.4777023232013, 0.31383386], [76.75, 176.57778731498428, 0.46779302], [76.76, 176.3895143482991, 0.3985537], [76.77, 175.90769123969838, 0.5430799], [76.78, 175.69909018379383, 0.32289475], [76.79, 175.60475851037376, 0.5399174], [76.8, 175.67795024907727, 0.44898483], [76.81, 175.6114150109944, 0.5091371], [76.82, 174.84800761965192, 0.46599406], [76.83, 173.2681776680834, 0.37719864], [76.84, 171.71589070970813, 0.60076565], [76.85, 170.6212040228097, 0.62360257], [76.86, 168.70871012572675, 0.60887194], [76.87, 167.34256307012146, 0.59754544], [76.88, 170.7639024340839, 0.4160736], [76.89, 176.83020494717354, 0.47765195], [76.9, 177.1347868244624, 0.46601444], [76.91, 174.55964585216867, 0.28030142], [76.92, 161.00234525318913, 0.08472742], [76.93, 144.01630950574759, 0.16986462], [76.94, 143.64991247008055, 0.26015273], [76.95, 141.90844303338466, 0.3410816], [76.96, 135.49214698765837, 0.33504486], [76.97, 128.38150187478072, 0.32084304], [76.98, 123.8013269842432, 0.36599493], [76.99, 120.14693078260012, 0.44772866], [77.0, 115.89058379571314, 0.3004897], [77.01, 109.30710239459863, 0.41585892], [77.02, 105.60091979150037, 0.26193583], [77.03, 103.38851223605089, 0.12382568], [77.04, 102.29474921550973, 0.15149088], [77.05, 102.18038517778447, 0.19398604], [77.06, 103.43655900652482, 0.36895767], [77.07, 104.15514352177253, 0.63304025], [77.08, 104.50950493327329, 0.8058715], [77.09, 104.93526917901812, 0.8150816], [77.1, 105.0470288051823, 0.79319054], [77.11, 105.47356588093243, 0.7961526], [77.12, 105.80129947694908, 0.8118052], [77.13, 105.1844327702161, 0.7916552], [77.14, 104.10876355980957, 0.7270161], [77.15, 103.16868637531604, 0.48761684], [77.16, 103.40550354927379, 0.4493576], [77.17, 104.47569231667575, 0.27042797], [77.18, 104.63510411373736, 0.36364368], [77.19, 104.09559295366617, 0.5539983], [77.2, 104.48768125550814, 0.6059301], [77.21, 105.07693127991737, 0.54413414], [77.22, 105.37501529319863, 0.31708112], [77.23, 105.24607062339008, 0.19621766], [77.24, 105.21149786017713, 0.50211346], [77.25, 105.83288354455222, 0.47453898], [77.26, 106.32705932431364, 0.5541594], [77.27, 106.11284025228287, 0.581953], [77.28, 105.5377709471695, 0.6369063], [77.29, 104.88736078586271, 0.5649662], [77.3, 104.5247828974569, 0.62902826], [77.31, 104.49817577469922, 0.44969797], [77.32, 114.14763102828107, 0.62046236], [77.33, 124.17384133820974, 0.73556435], [77.34, 139.51831559870408, 0.6678301], [77.35, 147.46327256425639, 0.6125695], [77.36, 163.90459248227583, 0.38430652], [77.37, 175.95920130199414, 0.21833132], [77.38, 179.63195208256883, 0.24169996], [77.39, 182.49832191673957, 0.4070299], [77.4, 185.50299574408064, 0.31419474], [77.41, 163.9095994527739, 0.44464618], [77.42, 146.30180519184847, 0.23303567], [77.43, 146.28965277170954, 0.41277027], [77.44, 153.42031054940924, 0.41326314], [77.45, 152.80527401117556, 0.41680017], [77.46, 155.5387316131341, 0.2862957], [77.47, 157.45486857433306, 0.321833], [77.48, 157.64148651730932, 0.3649213], [77.49, 155.76218026918372, 0.26491982], [77.5, 155.34127881334567, 0.32773855], [77.51, 155.45693288606233, 0.4029797], [77.52, 156.7395735795348, 0.5075977], [77.53, 159.54754724103594, 0.5663342], [77.54, 160.35013056935895, 0.6314404], [77.55, 162.0562969975412, 0.7281257], [77.56, 163.33976201366215, 0.77271014], [77.57, 164.225269150808, 0.7642608], [77.58, 165.0180945681058, 0.81092703], [77.59, 165.2437551551941, 0.80350435], [77.6, 164.9721418694026, 0.7737682], [77.61, 162.83914040580325, 0.7193204], [77.62, 157.82322482465577, 0.5729828], [77.63, 155.76874183812185, 0.72494125], [77.64, 155.9176314500771, 0.7875609], [77.65, 156.432954319418, 0.7810724], [77.66, 156.96527561275556, 0.7935282], [77.67, 156.54359573606956, 0.826924], [77.68, 156.32462677399002, 0.82833064], [77.69, 156.03132392160916, 0.8261136], [77.7, 155.54853420279807, 0.80392146], [77.71, 154.4138562827483, 0.7704047], [77.72, 153.86559087400326, 0.7543822], [77.73, 153.44259859035898, 0.73114103], [77.74, 153.69310868438123, 0.72179776], [77.75, 155.20440544578432, 0.77861875], [77.76, 155.75605959512058, 0.8389288], [77.77, 156.22435918914738, 0.79779524], [77.78, 156.21107551369147, 0.66506565], [77.79, 153.6904034900655, 0.62141687], [77.8, 149.55545797625106, 0.70193154], [77.81, 146.54766065824032, 0.64731175], [77.82, 145.20141082940313, 0.5737154], [77.83, 145.19383665769683, 0.3357182], [77.84, 140.5327781511612, 0.30988705], [77.85, 140.54025223732137, 0.37812907], [77.86, 139.72561223626587, 0.5955457], [77.87, 140.62131416771027, 0.48820662], [77.88, 140.57211478440615, 0.457229], [77.89, 140.02079102592324, 0.6236579], [77.9, 141.20741488093242, 0.7417477], [77.91, 141.78301507807572, 0.7671921], [77.92, 141.14395100220182, 0.7531346], [77.93, 139.939275442262, 0.75357145], [77.94, 138.4976040852423, 0.72814924], [77.95, 136.24502171560846, 0.7123784], [77.96, 134.26024470462536, 0.7524689], [77.97, 133.85699752611376, 0.7874221], [77.98, 134.2846173949656, 0.7755068], [77.99, 135.50225362072803, 0.7405907], [78.0, 137.97690177210004, 0.7903942], [78.01, 139.40366557547983, 0.7532639], [78.02, 141.19245942254574, 0.7191586], [78.03, 142.73493877077144, 0.8016563], [78.04, 144.94506449451197, 0.8482374], [78.05, 146.74423713847494, 0.8630776], [78.06, 147.45528504775768, 0.88302535], [78.07, 146.91996029915435, 0.8394139], [78.08, 143.9987687310995, 0.84436846], [78.09, 141.84582633262812, 0.7887703], [78.1, 139.0053196058339, 0.79947406], [78.11, 136.8571685782906, 0.6995893], [78.12, 135.21985123405702, 0.71120685], [78.13, 134.116856628205, 0.7518947], [78.14, 133.89682528525728, 0.77159595], [78.15, 134.66682433190638, 0.6673676], [78.16, 136.46534172465965, 0.6485417], [78.17, 138.63739467458748, 0.7258154], [78.18, 139.63165327557192, 0.7950036], [78.19, 140.00314114772146, 0.8056621], [78.2, 139.78968812889644, 0.84204996], [78.21, 139.37499090894823, 0.85113704], [78.22, 138.33921192747346, 0.8447701], [78.23, 136.6156595020631, 0.801155], [78.24, 134.62235600414076, 0.80850697], [78.25, 133.08168746670327, 0.80226165], [78.26, 132.00017514329983, 0.6072755], [78.27, 119.80673512233739, 0.26091242], [78.28, 116.61908664715526, 0.5619939], [78.29, 117.36862583264096, 0.6216355], [78.3, 119.17097609274684, 0.57177836], [78.31, 125.28737025371804, 0.3239908], [78.32, 127.76692204938817, 0.5418281], [78.33, 130.92529093567148, 0.5644541], [78.34, 131.03894706102156, 0.65285337], [78.35, 132.43792722666382, 0.6383987], [78.36, 134.0254131823331, 0.7104138], [78.37, 134.59447822658748, 0.75419503], [78.38, 136.0446344422946, 0.6652301], [78.39, 137.1323884037015, 0.56533283], [78.4, 138.15340462459778, 0.4006503], [78.41, 138.58706798519938, 0.4504746], [78.42, 138.15804160113095, 0.32423574], [78.43, 137.55241114790988, 0.3720324], [78.44, 137.47270454207762, 0.62149596], [78.45, 137.63867676029318, 0.64037937], [78.46, 137.18074934813106, 0.6536655], [78.47, 136.8711866801613, 0.75897455], [78.48, 136.89587551298504, 0.7859871], [78.49, 136.7613359927799, 0.80704373], [78.5, 136.334007616713, 0.8019475], [78.51, 136.21976579442705, 0.81845057], [78.52, 136.2439274181748, 0.8370693], [78.53, 137.14384751716463, 0.77352524], [78.54, 136.03037176410714, 0.6279722], [78.55, 137.13681468018237, 0.27970698], [78.56, 125.48482781898602, 0.33449113], [78.57, 116.728678428823, 0.5180598], [78.58, 116.90996949120654, 0.5889295], [78.59, 117.16618114206324, 0.73504275], [78.6, 117.32495112195407, 0.7797245], [78.61, 117.40362456921673, 0.6866197], [78.62, 116.87929994939228, 0.63377994], [78.63, 126.24307182754609, 0.39618737], [78.64, 143.14507824302632, 0.5190108], [78.65, 159.727642939115, 0.31014082], [78.66, 170.17533724309806, 0.24739617], [78.67, 194.95615339530914, 0.3195913], [78.68, 208.84315482630214, 0.3333711], [78.69, 203.7410495773709, 0.43905622], [78.7, 201.46647036320263, 0.24537964], [78.71, 203.4022428812741, 0.26231015], [78.72, 202.0807142154871, 0.1872425], [78.73, 197.42574215858957, 0.25696003], [78.74, 193.59686310676835, 0.3739337], [78.75, 187.72607194478752, 0.48181975], [78.76, 180.3698601750081, 0.30224743], [78.77, 181.40008266876106, 0.3044875], [78.78, 181.51529530840648, 0.16548717], [78.79, 161.7695894397263, 0.09210254], [78.8, 144.156630916386, 0.122197054], [78.81, 143.56169752994123, 0.36184335], [78.82, 143.37072849459608, 0.18280628], [78.83, 143.62486004111165, 0.20827524], [78.84, 144.33007899919528, 0.2739792], [78.85, 142.06352491397834, 0.1544538], [78.86, 141.4223617526341, 0.14849874], [78.87, 138.53319545299186, 0.3953166], [78.88, 137.8458704844282, 0.6572311], [78.89, 137.25992262847927, 0.5617414], [78.9, 137.38228821577903, 0.6239632], [78.91, 137.31813677927886, 0.83874667], [78.92, 136.88538561787138, 0.8073904], [78.93, 136.20927329742895, 0.7438338], [78.94, 135.56819048718307, 0.607543], [78.95, 134.8281457938779, 0.62003565], [78.96, 134.01489451566573, 0.77266985], [78.97, 133.4656488051917, 0.7746892], [78.98, 132.4454492880899, 0.77446675], [78.99, 132.28547670018895, 0.7366573], [79.0, 133.24280521157507, 0.6449188], [79.01, 135.08714278503393, 0.53710306], [79.02, 137.14366039989557, 0.6646984], [79.03, 138.767085133852, 0.6547131], [79.04, 139.05782746356164, 0.6360736], [79.05, 139.25427996567518, 0.7398049], [79.06, 139.38841598725512, 0.71775347], [79.07, 138.38912589006935, 0.53571624], [79.08, 128.93032097249264, 0.20961769], [79.09, 115.31673706245971, 0.48869824], [79.1, 116.14310706397342, 0.6997127], [79.11, 116.98350477090682, 0.80062413], [79.12, 118.40432055687211, 0.83839524], [79.13, 118.86216115577732, 0.7593451], [79.14, 119.46000409742986, 0.7034416], [79.15, 118.65977494112005, 0.67299247], [79.16, 116.82963727382948, 0.5994143], [79.17, 114.29346954144889, 0.65212905], [79.18, 114.43548398143294, 0.7903523], [79.19, 114.13004376859269, 0.6713238], [79.2, 113.26483915218856, 0.55433863], [79.21, 113.36527397691063, 0.51845855], [79.22, 113.37292200920531, 0.45217937], [79.23, 113.1011513710528, 0.40771794], [79.24, 113.38918058438749, 0.22211698], [79.25, 127.53334758734384, 0.15457782], [79.26, 130.72450504010018, 0.18210387], [79.27, 132.4253996157881, 0.33929193], [79.28, 133.75319244264622, 0.5622703], [79.29, 134.77186211448736, 0.6002696], [79.3, 135.5680623745004, 0.735588], [79.31, 135.1004207609026, 0.7220144], [79.32, 135.19426885215015, 0.7110944], [79.33, 135.3645147869475, 0.5530347], [79.34, 136.48537771566106, 0.3809864], [79.35, 137.5141660279783, 0.3965566], [79.36, 138.6564311916923, 0.50277185], [79.37, 138.6225595534196, 0.31324214], [79.38, 137.86369690341303, 0.32928818], [79.39, 137.65943342231947, 0.3504287], [79.4, 137.22466930539622, 0.42580938], [79.41, 136.9697945315748, 0.63654894], [79.42, 136.2926176057536, 0.7151232], [79.43, 136.19933017393225, 0.8154687], [79.44, 136.259281446396, 0.822917], [79.45, 136.72659067756027, 0.6786977], [79.46, 137.51733689227348, 0.66886556], [79.47, 138.29001005750249, 0.8272137], [79.48, 138.46553013593973, 0.8634368], [79.49, 138.37975510763334, 0.84955126], [79.5, 139.4707637364156, 0.84924155], [79.51, 139.34702142683082, 0.8410004], [79.52, 139.45440321621587, 0.77905583], [79.53, 139.76082014783753, 0.72718436], [79.54, 138.69013505903405, 0.6624997], [79.55, 138.89405971669868, 0.4528088], [79.56, 138.21245568174052, 0.46461654], [79.57, 138.16402031847468, 0.41580886], [79.58, 137.39622842133653, 0.33853942], [79.59, 137.4664621615821, 0.41433853], [79.6, 137.63051573343347, 0.3733645], [79.61, 137.80841143733383, 0.5825965], [79.62, 137.83528111434566, 0.6815076], [79.63, 138.6203938880647, 0.6735701], [79.64, 138.14939872744145, 0.595626], [79.65, 136.44609392370194, 0.18643178], [79.66, 134.15454003500025, 0.19956908], [79.67, 132.85551061541807, 0.5709791], [79.68, 133.97090985279075, 0.60353017], [79.69, 133.20779259156865, 0.7172964], [79.7, 133.2531591846691, 0.5075342], [79.71, 131.62631216544855, 0.15413383], [79.72, 131.72414574391271, 0.17141856], [79.73, 130.33472543604836, 0.10417676], [79.74, 144.11248225600357, 0.10631353], [79.75, 141.49165676354835, 0.30705968], [79.76, 140.61149721556214, 0.46026975], [79.77, 140.52220030576268, 0.5542107], [79.78, 140.8730813438492, 0.4912734], [79.79, 140.59389640042406, 0.40342513], [79.8, 140.3160556784294, 0.38435167], [79.81, 138.93706417643023, 0.26344067], [79.82, 137.72086943798712, 0.27446553], [79.83, 138.19477858453178, 0.29110065], [79.84, 138.8037629816144, 0.32519045], [79.85, 138.7184297847026, 0.43164065], [79.86, 137.42953431951787, 0.5694705], [79.87, 136.88576346996908, 0.59457326], [79.88, 137.03249088789386, 0.38395226], [79.89, 136.87323534729504, 0.32842618], [79.9, 137.14996947967012, 0.32639807], [79.91, 137.0172392570786, 0.46100366], [79.92, 137.1718315050646, 0.5676687], [79.93, 137.5413215193335, 0.6859858], [79.94, 137.86188325701224, 0.70296246], [79.95, 137.950409115678, 0.73196524], [79.96, 138.75878142476412, 0.70022786], [79.97, 147.13811492579367, 0.5577728], [79.98, 173.365028850717, 0.43018496], [79.99, 181.22880545363958, 0.48590088], [80.0, 181.57047213183873, 0.5284058], [80.01, 183.44487947317026, 0.54788816], [80.02, 186.3939146930184, 0.5937361], [80.03, 187.29525795861912, 0.58881], [80.04, 185.6764325058711, 0.7017489], [80.05, 182.79398828855236, 0.72051984], [80.06, 180.09436145288052, 0.79356223], [80.07, 179.51452429272865, 0.8136732], [80.08, 179.67995377501353, 0.8306684], [80.09, 180.26751490556845, 0.8169998], [80.1, 181.62012580449027, 0.84991676], [80.11, 184.1635332071502, 0.8284278], [80.12, 185.89381209715853, 0.86817336], [80.13, 186.3380518894269, 0.856967], [80.14, 185.58855937294715, 0.87808406], [80.15, 183.80411582679784, 0.84282196], [80.16, 181.95841827498163, 0.8345848], [80.17, 179.15518188139546, 0.69029534], [80.18, 172.02706250945695, 0.49777243], [80.19, 165.30262577347258, 0.45985103], [80.2, 157.77833575110793, 0.651845], [80.21, 154.22987495107213, 0.72984475], [80.22, 154.19778428671273, 0.6282016], [80.23, 154.57032562132528, 0.6100019], [80.24, 156.89347176861148, 0.5668188], [80.25, 158.81302349286722, 0.45361948], [80.26, 162.70572928603514, 0.31807768], [80.27, 179.80459363896364, 0.23154424], [80.28, 202.91984457355778, 0.3094306], [80.29, 201.3356556247556, 0.2894125], [80.3, 198.49324915916608, 0.18183827], [80.31, 177.4950861409584, 0.30684], [80.32, 176.04382986084448, 0.38520288], [80.33, 176.71026597598015, 0.4022125], [80.34, 176.65151634847277, 0.36791036], [80.35, 176.01720658237423, 0.50692034], [80.36, 174.38118803710339, 0.36065957], [80.37, 172.84792772264834, 0.3897557], [80.38, 172.54397891279234, 0.1971026], [80.39, 177.21951493678918, 0.17283826], [80.4, 184.693271196835, 0.32228857], [80.41, 204.51090732057446, 0.5564684], [80.42, 206.1636701369917, 0.25976348], [80.43, 202.96972464175408, 0.5157665], [80.44, 200.8976910873467, 0.7082928], [80.45, 201.1268736356194, 0.74654806], [80.46, 202.08627817036643, 0.70415914], [80.47, 203.36028557431646, 0.41975766], [80.48, 207.02523013205962, 0.38628045], [80.49, 196.7457053476026, 0.29741985], [80.5, 208.4175386026472, 0.3151102], [80.51, 184.24643529967472, 0.3106957], [80.52, 181.97939682887915, 0.6424623], [80.53, 181.7321330219319, 0.67952466], [80.54, 184.1589226785608, 0.7408972], [80.55, 184.22731008086276, 0.8185694], [80.56, 184.0719825303268, 0.81601036], [80.57, 185.1589762791475, 0.8118449], [80.58, 185.6978539914567, 0.7958641], [80.59, 184.64908591599323, 0.76070935], [80.6, 183.07277425505515, 0.80884004], [80.61, 181.21811789238518, 0.85741776], [80.62, 180.01084904829253, 0.8268824], [80.63, 177.53341832387153, 0.7233021], [80.64, 175.73870613010138, 0.58302116], [80.65, 174.74068509798542, 0.5146694], [80.66, 172.3700353476861, 0.29135278], [80.67, 176.44454649367577, 0.07809031], [80.68, 182.92539869280077, 0.19529596], [80.69, 192.44191490836673, 0.18051367], [80.7, 203.12225121897893, 0.3697181], [80.71, 210.80437784823036, 0.37099695], [80.72, 214.56832106800903, 0.34199095], [80.73, 215.91671669218474, 0.56779593], [80.74, 216.72279084706912, 0.48662058], [80.75, 215.50038141125037, 0.3797487], [80.76, 205.65699029396114, 0.402294], [80.77, 182.2725114732621, 0.23360305], [80.78, 164.83290628315527, 0.17522503], [80.79, 154.39084573127445, 0.23548563], [80.8, 156.38590265978655, 0.24586356], [80.81, 157.60470990728072, 0.23199412], [80.82, 161.13618018648492, 0.32956168], [80.83, 163.05989273755276, 0.35330924], [80.84, 164.89225647139665, 0.21010049], [80.85, 169.3170789356327, 0.20549707], [80.86, 171.3167317097645, 0.23598352], [80.87, 173.99516282665357, 0.24674457], [80.88, 175.45638337862925, 0.50803745], [80.89, 175.5695083039613, 0.68599325], [80.9, 175.12534011702178, 0.74568075], [80.91, 174.29305904831597, 0.6977548], [80.92, 174.2696611490007, 0.7350025], [80.93, 173.91130983538656, 0.74886584], [80.94, 173.01922219574487, 0.7399371], [80.95, 173.60071256100736, 0.71349555], [80.96, 174.05527741579928, 0.69804037], [80.97, 175.22981903602172, 0.69991016], [80.98, 175.40847996462915, 0.7267047], [80.99, 175.00683054955448, 0.7400454], [81.0, 175.52409261508126, 0.76122564], [81.01, 175.83120895538815, 0.75849587], [81.02, 175.4210454828189, 0.72971445], [81.03, 175.2770711521461, 0.67649925], [81.04, 175.2600238854352, 0.6676014], [81.05, 175.197372452392, 0.6050508], [81.06, 173.81987070168262, 0.5491059], [81.07, 174.8028088932743, 0.43493003], [81.08, 174.52773278401597, 0.47614625], [81.09, 174.73145679894853, 0.539253], [81.1, 175.63119520496042, 0.5431672], [81.11, 175.99603688672434, 0.5627238], [81.12, 175.4025843968049, 0.6810301], [81.13, 176.16703271752806, 0.6711582], [81.14, 175.36407302515343, 0.5409225], [81.15, 174.2833555913623, 0.34931806], [81.16, 175.11161840919038, 0.5959505], [81.17, 173.63614527383987, 0.5689054], [81.18, 172.9439484769787, 0.5025117], [81.19, 173.42703931637305, 0.54003835], [81.2, 172.25414906838583, 0.616183], [81.21, 170.8429730514682, 0.59235996], [81.22, 169.32361602786247, 0.42714363], [81.23, 165.42206607842633, 0.2570824], [81.24, 161.93678397775136, 0.28680664], [81.25, 160.35484650018148, 0.26890907], [81.26, 162.01869866871397, 0.3217088], [81.27, 167.01452756898254, 0.39074942], [81.28, 173.877348589382, 0.49131668], [81.29, 185.37674050855284, 0.53204286], [81.3, 196.9641824342632, 0.68859106], [81.31, 204.4821455549861, 0.6745672], [81.32, 206.66265141334566, 0.54905117], [81.33, 207.23720594323697, 0.6716278], [81.34, 207.1667893599502, 0.7745093], [81.35, 207.6520619477972, 0.8362818], [81.36, 207.74859333914986, 0.86560446], [81.37, 208.15327260918235, 0.84922814], [81.38, 208.33650809412734, 0.86004823], [81.39, 208.26089422984768, 0.79903966], [81.4, 207.4613374063328, 0.76599914], [81.41, 206.5254467282705, 0.5804364], [81.42, 205.3658343406392, 0.6034585], [81.43, 203.79596663155758, 0.62217504], [81.44, 198.5317657041929, 0.5359078], [81.45, 190.3489148634482, 0.62629455], [81.46, 187.4582225542483, 0.78053623], [81.47, 187.33248747401728, 0.72259617], [81.48, 186.5773018559322, 0.7445395], [81.49, 186.17633402913447, 0.7415136], [81.5, 185.01293326630233, 0.67478245], [81.51, 183.8206950126529, 0.43580452], [81.52, 184.9595091024719, 0.39762694], [81.53, 185.62287788954282, 0.69385755], [81.54, 185.58076906543715, 0.7748365], [81.55, 186.51145541158544, 0.8267589], [81.56, 185.13077408577757, 0.47385725], [81.57, 189.28085017515414, 0.1047801], [81.58, 190.01218884135363, 0.21542294], [81.59, 188.94013444690304, 0.050032604], [81.6, 188.68583120268286, 0.093902044], [81.61, 200.08968551987982, 0.11729973], [81.62, 216.65385997009705, 0.1666393], [81.63, 213.46121192049696, 0.38470644], [81.64, 212.94320714319645, 0.57764184], [81.65, 212.22678546548562, 0.70560694], [81.66, 211.12959717158702, 0.7165216], [81.67, 208.42328087937847, 0.7095152], [81.68, 207.56829331271564, 0.7344992], [81.69, 206.64104977746138, 0.70650405], [81.7, 205.08143959987777, 0.5899709], [81.71, 204.33061490290862, 0.41857922], [81.72, 205.74650061223798, 0.7481244], [81.73, 207.15718087414754, 0.81379926], [81.74, 207.65238689316632, 0.7199774], [81.75, 209.19479067585223, 0.5980665], [81.76, 212.73493103614027, 0.24397855], [81.77, 213.91644800069923, 0.45573303], [81.78, 211.83694740235867, 0.5067333], [81.79, 208.26140401817133, 0.5285007], [81.8, 203.3323072682819, 0.6207134], [81.81, 198.22092560116567, 0.51256883], [81.82, 190.16898431889837, 0.5380232], [81.83, 186.24753090626425, 0.72524923], [81.84, 184.38837195300468, 0.6850139], [81.85, 182.2364124689952, 0.6154361], [81.86, 177.80444925277905, 0.6545323], [81.87, 176.60960463861886, 0.65205973], [81.88, 176.54016033733498, 0.6616634], [81.89, 176.01379390840617, 0.6384089], [81.9, 175.84445142385272, 0.56616133], [81.91, 176.3804254653667, 0.48122168], [81.92, 177.1214052155091, 0.5020153], [81.93, 177.9253079681808, 0.5429477], [81.94, 179.37004233514003, 0.45690313], [81.95, 179.08052356470407, 0.40443665], [81.96, 176.0692773759726, 0.20877928], [81.97, 174.7691602784303, 0.24980582], [81.98, 170.5888571411935, 0.4377569], [81.99, 170.67138579926606, 0.5112911], [82.0, 171.42670923924842, 0.5563422], [82.01, 173.19683467094436, 0.5896675], [82.02, 173.69185945356793, 0.637638], [82.03, 175.77115770688005, 0.57629687], [82.04, 176.46946718256953, 0.5893779], [82.05, 175.31502800814036, 0.5639148], [82.06, 175.05106956362278, 0.33332154], [82.07, 173.6046583587233, 0.21762271], [82.08, 171.42814910821488, 0.13092698], [82.09, 174.05750960458056, 0.11765015], [82.1, 180.00459055431105, 0.30838177], [82.11, 190.6724314667826, 0.273859], [82.12, 203.1058582608682, 0.47243255], [82.13, 209.0432694947582, 0.5266088], [82.14, 208.69864694198046, 0.41230506], [82.15, 206.7090654527337, 0.558684], [82.16, 205.20117117595944, 0.4271857], [82.17, 203.13812670568907, 0.33752397], [82.18, 200.68946084693633, 0.29752097], [82.19, 200.89995138370205, 0.38372335], [82.2, 201.49526477163556, 0.24116169], [82.21, 197.55776375335867, 0.21583796], [82.22, 190.31959877982706, 0.43250626], [82.23, 182.17084104006574, 0.6024206], [82.24, 177.4533398329637, 0.61387926], [82.25, 174.6744271737451, 0.46942413], [82.26, 171.00938839095465, 0.1319272], [82.27, 167.14146266717967, 0.23802458], [82.28, 165.2125199220221, 0.35203975], [82.29, 161.65847611939455, 0.5311814], [82.3, 161.87815880770154, 0.3303159], [82.31, 165.39266532248644, 0.12173066], [82.32, 182.88892303488905, 0.22140032], [82.33, 208.72850892535774, 0.13248718], [82.34, 232.3259209562944, 0.40201998], [82.35, 233.04685832689316, 0.62876827], [82.36, 234.2622004816802, 0.7494368], [82.37, 233.32276335591106, 0.8125793], [82.38, 233.93303668301186, 0.8404963], [82.39, 234.5207944716945, 0.8163913], [82.4, 235.68236969414912, 0.81449574], [82.41, 234.59141376059216, 0.7528957], [82.42, 234.23060037130213, 0.644778], [82.43, 234.39547095020717, 0.32953992], [82.44, 228.89121414226827, 0.22429089], [82.45, 223.8675231170095, 0.24444611], [82.46, 215.74386674333095, 0.32270122], [82.47, 206.10220242049226, 0.23967578], [82.48, 194.90935850992486, 0.24022242], [82.49, 189.31537245209762, 0.39678255], [82.5, 178.2208912813885, 0.3013393], [82.51, 174.23145980170904, 0.15817708], [82.52, 185.20610902996776, 0.13761654], [82.53, 192.09841205281674, 0.11738351], [82.54, 203.18336752318217, 0.08063804], [82.55, 215.1232476057736, 0.15710083], [82.56, 225.4872279580073, 0.19402574], [82.57, 231.4052509780215, 0.21853417], [82.58, 244.2585766058048, 0.10642289], [82.59, 249.97879120026568, 0.096513316], [82.6, 256.7550253292799, 0.13680327], [82.61, 279.2383303386124, 0.0674897], [82.62, 278.3753299997374, 0.1203513], [82.63, 280.3771068918918, 0.1643888], [82.64, 279.61434082157615, 0.50509405], [82.65, 279.12878420000914, 0.28745943], [82.66, 278.6060611565659, 0.24849726], [82.67, 277.28610486373054, 0.10640675], [82.68, 280.734946863243, 0.45380884], [82.69, 280.0627608870332, 0.50648177], [82.7, 277.39560058968397, 0.29536146], [82.71, 278.1547084901899, 0.13547036], [82.72, 276.17402017763504, 0.29242843], [82.73, 272.3627493886296, 0.19031663], [82.74, 252.5485890368972, 0.29053453], [82.75, 231.52664320845216, 0.23354498], [82.76, 210.90370692925345, 0.09607718], [82.77, 195.07124446601472, 0.11553934], [82.78, 181.13893823254298, 0.09146887], [82.79, 164.29527912517872, 0.0797712], [82.8, 161.07332315808685, 0.30249497], [82.81, 163.57238356566734, 0.23907498], [82.82, 178.28633203924784, 0.19676764], [82.83, 180.69455964059637, 0.48780617], [82.84, 182.45240193565155, 0.5748208], [82.85, 184.31264277750296, 0.7379608], [82.86, 184.62604514376324, 0.6741103], [82.87, 184.69431223143675, 0.58329177], [82.88, 183.77157589969087, 0.7116219], [82.89, 184.0552303785252, 0.67633003], [82.9, 183.89232138623865, 0.71543], [82.91, 183.4530117656483, 0.7536075], [82.92, 181.9097063566804, 0.67034817], [82.93, 178.44424560519246, 0.32522005], [82.94, 171.71720126258907, 0.34264648], [82.95, 169.74777022329786, 0.45847937], [82.96, 171.40949071036476, 0.38297203], [82.97, 173.3904430351683, 0.19394387], [82.98, 168.3479674001686, 0.28629187], [82.99, 162.6655629711527, 0.5791607], [83.0, 155.31555484375374, 0.6743957], [83.01, 148.17159697858838, 0.3915753], [83.02, 144.2593196744571, 0.2313661], [83.03, 145.62855698112884, 0.38254738], [83.04, 145.15685033659, 0.6585434], [83.05, 144.7692526459923, 0.6704727], [83.06, 144.61918117365232, 0.58706313], [83.07, 144.42620974349964, 0.51081663], [83.08, 158.51474891039743, 0.4293214], [83.09, 177.08777956545177, 0.7123337], [83.1, 194.41219350478633, 0.6939148], [83.11, 211.37820197931353, 0.55234826], [83.12, 209.2968296752868, 0.61685526], [83.13, 206.04138767662747, 0.42287073], [83.14, 202.82126320480612, 0.28450853], [83.15, 200.55189672317508, 0.19946383], [83.16, 199.2146219176101, 0.23210593], [83.17, 198.29662130393007, 0.25102484], [83.18, 196.203948747798, 0.45792833], [83.19, 195.09949316614262, 0.25781867], [83.2, 191.18792298143617, 0.4694716], [83.21, 185.0895262046831, 0.32272932], [83.22, 179.33498166612765, 0.18132764], [83.23, 179.16675577120054, 0.40976414], [83.24, 179.31146067931022, 0.35097343], [83.25, 180.99056300818393, 0.31678873], [83.26, 181.90090669625698, 0.27230868], [83.27, 182.51007239398245, 0.28574646], [83.28, 183.3673429527167, 0.45534733], [83.29, 183.31859085687108, 0.52958125], [83.3, 181.87800493301535, 0.56017363], [83.31, 181.27009692713762, 0.4970726], [83.32, 171.40466200887286, 0.20584854], [83.33, 161.98872519394754, 0.32013348], [83.34, 157.37244693197243, 0.31489733], [83.35, 157.46888668980017, 0.17215621], [83.36, 179.55259069813474, 0.049384493], [83.37, 183.12395440583515, 0.098723665], [83.38, 186.11351519611497, 0.14341238], [83.39, 190.5467660159462, 0.27369678], [83.4, 194.2613056270186, 0.13805756], [83.41, 199.59596479502233, 0.13735066], [83.42, 208.59439091772063, 0.12656198], [83.43, 211.16693902883028, 0.1278919], [83.44, 200.54778717721138, 0.09939545], [83.45, 185.60082435601964, 0.061527614], [83.46, 177.8379027592085, 0.17920679], [83.47, 172.8751932768177, 0.09667514], [83.48, 160.9601521622818, 0.1260721], [83.49, 143.88620257104293, 0.07605538], [83.5, 145.61576268218016, 0.16426486], [83.51, 143.40129527845787, 0.3841981], [83.52, 141.43084895306578, 0.14453277], [83.53, 135.9369000043866, 0.14806622], [83.54, 136.68090775149935, 0.35251638], [83.55, 137.64919504223104, 0.52915466], [83.56, 138.04636127646174, 0.5782122], [83.57, 139.0031951108013, 0.6129765], [83.58, 139.09232078121158, 0.39224643], [83.59, 140.71237727012868, 0.13745038], [83.6, 139.53602274692108, 0.15277417], [83.61, 137.74186160994472, 0.31519452], [83.62, 137.692610568823, 0.35067862], [83.63, 136.71858658162483, 0.30579054], [83.64, 137.7878168227693, 0.30504686], [83.65, 137.78379745489354, 0.22368596], [83.66, 137.55042916361208, 0.24016035], [83.67, 135.79497795350588, 0.19033983], [83.68, 133.203577789646, 0.10668123], [83.69, 131.06465302034945, 0.0854973], [83.7, 128.8995308398191, 0.129442], [83.71, 130.89039067403218, 0.22302306], [83.72, 132.11548860341765, 0.29865927], [83.73, 132.53639602084323, 0.38642907], [83.74, 131.70560770809405, 0.32322475], [83.75, 130.1052246206778, 0.24153048], [83.76, 128.6995054420323, 0.34056368], [83.77, 129.32135712478038, 0.4238284], [83.78, 128.71985877679933, 0.3870667], [83.79, 128.1770941822086, 0.3361659], [83.8, 128.15358289726458, 0.37058342], [83.81, 129.20306053729695, 0.21957152], [83.82, 130.06035698895826, 0.31818452], [83.83, 128.63830296832649, 0.21840893], [83.84, 137.22689620100297, 0.3303793], [83.85, 155.8671238691215, 0.21611397], [83.86, 171.96747540898167, 0.36500803], [83.87, 185.0768179464208, 0.3815423], [83.88, 182.67078160801273, 0.37670824], [83.89, 183.05483326715319, 0.4902366], [83.9, 207.67060356170805, 0.52589446], [83.91, 237.48099377381192, 0.2842081], [83.92, 256.59480326020014, 0.45731238], [83.93, 253.1101629403557, 0.68731606], [83.94, 253.01275229776164, 0.81223714], [83.95, 252.19545956819962, 0.78363997], [83.96, 249.2913607142399, 0.72224724], [83.97, 245.54223353869583, 0.753061], [83.98, 242.7130177333077, 0.774381], [83.99, 241.31292099589078, 0.7290183], [84.0, 238.9175031606983, 0.6098425], [84.01, 237.7026672314754, 0.39719105], [84.02, 236.89192601133243, 0.2663098], [84.03, 236.58075298599712, 0.40038735], [84.04, 236.01687500974157, 0.3835229], [84.05, 235.61182134970764, 0.30247068], [84.06, 234.68412458608626, 0.29700106], [84.07, 234.671572774775, 0.4387645], [84.08, 232.92440110067446, 0.59053713], [84.09, 230.21856639245857, 0.45940492], [84.1, 227.92689806661548, 0.52089226], [84.11, 226.19145082727354, 0.48543248], [84.12, 204.31844289210238, 0.2758433], [84.13, 185.95470230504617, 0.7205482], [84.14, 183.5625606270891, 0.8002675], [84.15, 182.2048405677576, 0.81307256], [84.16, 180.25946400735916, 0.7851872], [84.17, 177.79505302501164, 0.7717954], [84.18, 177.36768414187534, 0.7042329], [84.19, 177.22940883236586, 0.5724189], [84.2, 178.76611079006568, 0.5793906], [84.21, 180.4843362664616, 0.4839581], [84.22, 183.99999939492176, 0.3404401], [84.23, 188.6931011869086, 0.48249647], [84.24, 190.01350081919074, 0.660294], [84.25, 191.2861800245182, 0.6863298], [84.26, 192.60940901719368, 0.8004401], [84.27, 189.75691108579508, 0.6990146], [84.28, 185.10144991859576, 0.5823763], [84.29, 178.0772603333241, 0.59133], [84.3, 173.43727579987836, 0.49920017], [84.31, 167.5507089570807, 0.48960468], [84.32, 162.9330202342868, 0.48520428], [84.33, 157.29709672311557, 0.41445896], [84.34, 150.31626826436985, 0.33669904], [84.35, 141.14660126041096, 0.5111895], [84.36, 139.06803758338285, 0.5983102], [84.37, 138.36412106946844, 0.57914144], [84.38, 155.841631856994, 0.36252907], [84.39, 179.72958028068095, 0.1492932], [84.4, 179.46889104961727, 0.25187415], [84.41, 178.66689225761655, 0.11565863], [84.42, 179.64197040070098, 0.10339702], [84.43, 177.78608830614655, 0.09100592], [84.44, 174.0359699581718, 0.08366556], [84.45, 168.2131029477652, 0.38530552], [84.46, 167.94377605649538, 0.18217254], [84.47, 164.22512379303583, 0.14071353], [84.48, 158.13313565053897, 0.16488107], [84.49, 149.33056959176392, 0.08695654], [84.5, 145.34905520038075, 0.102234796], [84.51, 141.80568235548924, 0.20348129], [84.52, 140.31061179517965, 0.27959287], [84.53, 139.02904364804806, 0.34290993], [84.54, 138.22227899727687, 0.22961323], [84.55, 136.6095675566412, 0.19647029], [84.56, 133.90556555237194, 0.24526234], [84.57, 127.8169012480534, 0.24260145], [84.58, 119.15731618976048, 0.21749738], [84.59, 118.40763173077673, 0.27601552], [84.6, 118.25585386999855, 0.2049488], [84.61, 120.06702768531271, 0.2593639], [84.62, 125.9564730894757, 0.16539945], [84.63, 135.73483593778872, 0.23058699], [84.64, 139.00513978075455, 0.26225728], [84.65, 143.0231360002838, 0.22301996], [84.66, 149.72014989590122, 0.15786657], [84.67, 152.60922020801496, 0.19639416], [84.68, 153.8789348989568, 0.3545858], [84.69, 153.5654063122395, 0.34848946], [84.7, 154.30281458834483, 0.384938], [84.71, 154.27166333545767, 0.23069812], [84.72, 154.92547442445093, 0.4238262], [84.73, 154.05559101162996, 0.19633198], [84.74, 154.2709093029702, 0.3126633], [84.75, 152.39694801369194, 0.23063973], [84.76, 153.4232506961056, 0.21036649], [84.77, 171.6800716132625, 0.19158724], [84.78, 190.33233470909065, 0.1330976], [84.79, 208.41134563989698, 0.19128634], [84.8, 207.50080500738062, 0.13788033], [84.81, 208.8893552517198, 0.2888874], [84.82, 208.74269549255771, 0.25492486], [84.83, 208.55038322454737, 0.3572984], [84.84, 208.75190066254928, 0.3759268], [84.85, 209.48100379648636, 0.31116477], [84.86, 210.49200559037604, 0.37325692], [84.87, 209.04856555741492, 0.23741041], [84.88, 189.5384930042037, 0.2660234], [84.89, 171.16863607751839, 0.24131826], [84.9, 154.04602545318977, 0.29435095], [84.91, 133.74267099773252, 0.35127375], [84.92, 117.5988070657904, 0.31230557], [84.93, 104.6235155768162, 0.38476175], [84.94, 104.83006011896438, 0.49737766], [84.95, 105.02289060730735, 0.27191466], [84.96, 104.3826369188248, 0.46631673], [84.97, 104.05542609029135, 0.41210142], [84.98, 104.19335527792259, 0.44138232], [84.99, 103.97148934422145, 0.21952699], [85.0, 103.76705313152578, 0.36726335], [85.01, 103.99612070990769, 0.23433495], [85.02, 104.43033710570833, 0.40217948], [85.03, 104.93931626970732, 0.18389454], [85.04, 105.19143510286713, 0.23563825], [85.05, 104.0776712920612, 0.14527565], [85.06, 103.7083292746423, 0.079966426], [85.07, 104.5073292612689, 0.09245378], [85.08, 92.97546925490586, 0.32769498], [85.09, 86.23493961179832, 0.22274822], [85.1, 77.33294804369825, 0.40324828], [85.11, 69.74703008100795, 0.39057902], [85.12, 61.97251207324021, 0.3338483], [85.13, 55.67540119118404, 0.542144], [85.14, 49.472857894791915, 0.2935565], [85.15, 45.33212397644774, 0.2225482], [85.16, 45.724493734639, 0.3650516], [85.17, 46.470843866457, 0.45042866], [85.18, 46.38231428671696, 0.73448414], [85.19, 46.188499626634226, 0.7251272], [85.2, 46.28244355704727, 0.7836845], [85.21, 46.52578937186067, 0.78227884], [85.22, 46.57978874894167, 0.8099196], [85.23, 46.74034208346651, 0.7611684], [85.24, 46.36911101790366, 0.8134334], [85.25, 46.41422097319956, 0.79415756], [85.26, 46.32836319041491, 0.79916054], [85.27, 46.66021390913205, 0.7814771], [85.28, 46.69582987461672, 0.7394937], [85.29, 46.722154293687375, 0.74906725], [85.3, 46.43875868325013, 0.7508887], [85.31, 46.278771648071206, 0.7690606], [85.32, 46.1913733642779, 0.68613183], [85.33, 51.689365020324026, 0.29006502], [85.34, 58.39489020072041, 0.20693748], [85.35, 63.95515963602264, 0.22429106], [85.36, 72.39319804785559, 0.14847328], [85.37, 79.38017694664963, 0.16790466], [85.38, 91.49525764118044, 0.19818132], [85.39, 101.12095109602473, 0.15195803], [85.4, 114.87458078838898, 0.111799374], [85.41, 130.4491374229926, 0.32195133], [85.42, 146.20172919260818, 0.58648443], [85.43, 157.4151755225532, 0.74783975], [85.44, 156.62915640739675, 0.82858825], [85.45, 155.7601260284456, 0.8441084], [85.46, 155.17803869999656, 0.73585016], [85.47, 154.26420443089887, 0.7188035], [85.48, 154.0850853940597, 0.70769006], [85.49, 155.43649751601865, 0.6994974], [85.5, 156.33483472323636, 0.6735479], [85.51, 158.02231408671298, 0.5981123], [85.52, 160.90803556946167, 0.6349043], [85.53, 163.44379341531894, 0.756852], [85.54, 165.43200669257274, 0.79149884], [85.55, 167.2661575195653, 0.73809445], [85.56, 170.05047156968547, 0.6808731], [85.57, 172.05564541254336, 0.57329917], [85.58, 173.68069974919894, 0.71372765], [85.59, 174.97784664545352, 0.8107907], [85.6, 175.37055771827022, 0.823954], [85.61, 175.85789259162988, 0.7961555], [85.62, 177.5079833025676, 0.7863778], [85.63, 178.2244699908485, 0.7803575], [85.64, 177.86821003737347, 0.7816178], [85.65, 176.4576773699083, 0.7788718], [85.66, 175.57417792977168, 0.78973347], [85.67, 175.01754190439416, 0.7941365], [85.68, 174.51515656764823, 0.763586], [85.69, 174.01973250601077, 0.7783979], [85.7, 174.4630639142693, 0.7858432], [85.71, 174.84156254171393, 0.80644304], [85.72, 175.25644598997894, 0.78787297], [85.73, 175.45116237345607, 0.77732915], [85.74, 173.54848701203707, 0.68907183], [85.75, 170.9058345483378, 0.59146756], [85.76, 166.01810300405327, 0.6114801], [85.77, 161.47576263040196, 0.3968863], [85.78, 158.03894144821945, 0.40384138], [85.79, 156.08894039315487, 0.3602726], [85.8, 149.701279917537, 0.16891707], [85.81, 149.3290757044408, 0.13119389], [85.82, 143.89640854610212, 0.06654182], [85.83, 147.55233136628, 0.12813206], [85.84, 158.4812761355662, 0.19594873], [85.85, 163.8184732335635, 0.19417062], [85.86, 169.41903989797288, 0.4237438], [85.87, 173.54367743908514, 0.6448065], [85.88, 177.46328938043476, 0.7740661], [85.89, 192.95809669004345, 0.7244783], [85.9, 201.53724941270235, 0.7694392], [85.91, 206.29678189873988, 0.63705814], [85.92, 209.0926931034417, 0.39794287], [85.93, 209.53334590193896, 0.41327563], [85.94, 209.09366865623736, 0.5037503], [85.95, 207.07851468288078, 0.4105162], [85.96, 194.8302516711084, 0.17729561], [85.97, 180.62995224270142, 0.30970687], [85.98, 180.84546348605602, 0.40112337], [85.99, 177.84111965778155, 0.34236622], [86.0, 176.45696368661746, 0.3017686], [86.01, 175.63133399817394, 0.31927618], [86.02, 176.17993192058157, 0.28199118], [86.03, 177.0439591320857, 0.15174684], [86.04, 177.74387236784278, 0.2503036], [86.05, 178.7881041572423, 0.1915549], [86.06, 176.38227994539915, 0.18413328], [86.07, 176.13820844056917, 0.08968293], [86.08, 175.78778037187956, 0.12576841], [86.09, 174.5034864391644, 0.09194006], [86.1, 173.7001615709379, 0.15642402], [86.11, 174.37635015154225, 0.094442345], [86.12, 174.75265472527633, 0.44746295], [86.13, 172.57774622266754, 0.11519643], [86.14, 168.8719576771662, 0.13691927], [86.15, 169.2377388582616, 0.15002553], [86.16, 172.7610819461732, 0.15004505], [86.17, 178.55457734360758, 0.15547663], [86.18, 181.8563616268442, 0.21917108], [86.19, 182.56597904887366, 0.33335817], [86.2, 183.9239237933536, 0.5020528], [86.21, 185.88494410044706, 0.4672305], [86.22, 186.67145847916262, 0.6679348], [86.23, 187.5907594973073, 0.6472959], [86.24, 189.299228100752, 0.66241986], [86.25, 189.7001296643847, 0.7985973], [86.26, 186.99637146489118, 0.58335435], [86.27, 189.05707532216627, 0.342328], [86.28, 187.94971272235767, 0.130746], [86.29, 187.4159720814617, 0.17368826], [86.3, 185.60404400830345, 0.19381148], [86.31, 185.1037364642038, 0.2776922], [86.32, 184.71063458265644, 0.34183216], [86.33, 185.83364009010586, 0.40011716], [86.34, 185.5850274553875, 0.5750016], [86.35, 185.48214779336007, 0.49796543], [86.36, 185.83042565875206, 0.44768488], [86.37, 186.45568946470863, 0.4341326], [86.38, 187.46389113706155, 0.36004367], [86.39, 191.69111827997818, 0.41328317], [86.4, 196.1626281461264, 0.2562226], [86.41, 200.86414792815333, 0.29181808], [86.42, 205.284046738137, 0.1878107], [86.43, 207.13429521263546, 0.148065], [86.44, 210.3992302389716, 0.24219254], [86.45, 211.55922433053058, 0.261463], [86.46, 211.40643758914874, 0.24240813], [86.47, 210.48574023628936, 0.19739227], [86.48, 210.24176559814885, 0.19579454], [86.49, 210.85293894873305, 0.3444691], [86.5, 211.7902079757118, 0.2908598], [86.51, 211.11049884402672, 0.33500817], [86.52, 209.7555398050622, 0.20406096], [86.53, 209.62745375735838, 0.31952688], [86.54, 210.3238950274491, 0.35032925], [86.55, 198.98252091104123, 0.13881679], [86.56, 188.49708048900317, 0.3086382], [86.57, 187.7677811406898, 0.2950203], [86.58, 185.62204847732943, 0.46416846], [86.59, 184.3127099687781, 0.49932095], [86.6, 184.41766549560143, 0.45150253], [86.61, 184.93889322545039, 0.41800842], [86.62, 184.95660790646485, 0.4270311], [86.63, 185.6248463520616, 0.46670997], [86.64, 185.39807650755893, 0.5344094], [86.65, 185.38921651584687, 0.47704032], [86.66, 185.67488673664516, 0.49738696], [86.67, 185.8358109704813, 0.549065], [86.68, 185.08022697543393, 0.4795253], [86.69, 185.68395622075548, 0.5521215], [86.7, 184.72637001616792, 0.5242373], [86.71, 185.64304979878102, 0.53242767], [86.72, 185.8667448255846, 0.6160509], [86.73, 185.27633627325008, 0.60286826], [86.74, 184.4298727039395, 0.31144774], [86.75, 183.65596863600996, 0.18145876], [86.76, 186.01303445160602, 0.4004904], [86.77, 189.03396696877167, 0.5348206], [86.78, 190.400294227144, 0.23128548], [86.79, 212.36901209659695, 0.34184214], [86.8, 214.07434523389344, 0.6045099], [86.81, 215.0587183757939, 0.6833073], [86.82, 213.55261222108038, 0.47157666], [86.83, 208.83389326209112, 0.33900526], [86.84, 207.87877556065328, 0.39866433], [86.85, 205.57608267599304, 0.23067617], [86.86, 207.1265757087818, 0.21386288], [86.87, 209.54781957608043, 0.11741599], [86.88, 217.59566771305646, 0.3240126], [86.89, 220.6645875911202, 0.39476067], [86.9, 226.43779483324278, 0.34446275], [86.91, 231.3643220835571, 0.47113645], [86.92, 230.3211773426861, 0.4636343], [86.93, 228.42221629203055, 0.51977247], [86.94, 221.35296617647145, 0.46801046], [86.95, 218.53265345956757, 0.20626733], [86.96, 215.16406686341244, 0.102734335], [86.97, 213.92558725236677, 0.2398455], [86.98, 213.3668167977274, 0.117882505], [86.99, 213.64852072750142, 0.17239243], [87.0, 214.0140005800385, 0.10385831], [87.01, 214.44212094269812, 0.15174596], [87.02, 215.52575164389467, 0.08314997], [87.03, 214.9609600209431, 0.117998], [87.04, 214.73495776903675, 0.11051585], [87.05, 212.95457845806598, 0.15535815], [87.06, 210.2644434905957, 0.25508803], [87.07, 199.71205087288473, 0.33939502], [87.08, 195.97277396129005, 0.55918425], [87.09, 191.55872344379338, 0.26552], [87.1, 187.5873285426249, 0.24336736], [87.11, 186.0776998147944, 0.41667804], [87.12, 189.63833423862872, 0.5677666], [87.13, 192.582422458966, 0.6762841], [87.14, 194.9930228803347, 0.6840101], [87.15, 199.12539036857837, 0.6939493], [87.16, 205.60198208434434, 0.22903031], [87.17, 210.93038082291167, 0.35114476], [87.18, 211.13866610885708, 0.25785512], [87.19, 208.0591499707806, 0.33212894], [87.2, 209.66936396995698, 0.19727585], [87.21, 209.73243422526542, 0.28917846], [87.22, 211.92071187231247, 0.124306455], [87.23, 213.80500156666116, 0.15377378], [87.24, 216.08994286791375, 0.15580258], [87.25, 215.3122744356186, 0.333453], [87.26, 215.23646681668592, 0.3107142], [87.27, 215.16601471438435, 0.33245987], [87.28, 214.88559085409176, 0.3753372], [87.29, 214.16858605530905, 0.6506207], [87.3, 215.44118584235164, 0.5010583], [87.31, 216.40764862355832, 0.37609214], [87.32, 229.55319258156425, 0.16420686], [87.33, 234.9270147910505, 0.33502227], [87.34, 234.12376770352745, 0.19997425], [87.35, 233.76777911817504, 0.17066705], [87.36, 237.7766987758972, 0.21864599], [87.37, 232.9248235120957, 0.13133809], [87.38, 225.57227111418763, 0.2668555], [87.39, 225.18074205321938, 0.32290968], [87.4, 227.7735732268067, 0.4360945], [87.41, 230.84881901379848, 0.5272882], [87.42, 230.56491233946784, 0.6125478], [87.43, 231.50930517289905, 0.4532606], [87.44, 235.6976946396137, 0.5024781], [87.45, 237.99961898199453, 0.5312125], [87.46, 262.3245382466941, 0.53157145], [87.47, 304.16795454350046, 0.3376648], [87.48, 338.35706114563914, 0.39671654], [87.49, 390.3227843254765, 0.3831758], [87.5, 427.40881543300696, 0.27996618], [87.51, 465.64043833535425, 0.39728478], [87.52, 464.271257776526, 0.48830482], [87.53, 464.83695972026675, 0.563253], [87.54, 459.211444364737, 0.3589582], [87.55, 459.0155651260093, 0.3847006], [87.56, 460.31447722908786, 0.49729055], [87.57, 464.00515547889825, 0.47347134], [87.58, 461.9074859343083, 0.4778785], [87.59, 463.6008208050677, 0.3485641], [87.6, 465.70630810004536, 0.38253486], [87.61, 466.6726462999921, 0.2240314], [87.62, 462.8419062645636, 0.1540412], [87.63, 435.9867372917705, 0.19922793], [87.64, 412.4144154138903, 0.12117289], [87.65, 359.0252561677548, 0.29174823], [87.66, 328.11997662776014, 0.44266543], [87.67, 305.2757138227587, 0.39669377], [87.68, 265.5353202977933, 0.22474636], [87.69, 251.7165341241003, 0.40406814], [87.7, 249.29480645145196, 0.42926684], [87.71, 249.12626225520006, 0.5739647], [87.72, 247.4163333879331, 0.5808946], [87.73, 244.3983424934098, 0.5509809], [87.74, 239.2381991704246, 0.39724112], [87.75, 226.72913022734332, 0.33036572], [87.76, 226.0997056229297, 0.20536071], [87.77, 230.3550351960396, 0.19879507], [87.78, 234.6912034180976, 0.3468539], [87.79, 236.82975597964764, 0.41959155], [87.8, 237.56252182689096, 0.4205259], [87.81, 238.5092117054978, 0.4976162], [87.82, 231.0616954663811, 0.20705144], [87.83, 222.15381811979907, 0.18861702], [87.84, 210.62198661027332, 0.43096095], [87.85, 205.71384594072978, 0.4515877], [87.86, 193.45175924173105, 0.35833165], [87.87, 181.90493724302013, 0.10407319], [87.88, 167.8763117219216, 0.28137475], [87.89, 155.56963256454412, 0.3640084], [87.9, 148.6588545529653, 0.4938489], [87.91, 139.9967939497459, 0.09156541], [87.92, 126.24540347988241, 0.30140126], [87.93, 118.65058255052716, 0.37492913], [87.94, 107.13798955872115, 0.4107607], [87.95, 104.67769559793199, 0.40299687], [87.96, 104.52837578853894, 0.53600425], [87.97, 104.39960891395859, 0.5789202], [87.98, 103.99025780955868, 0.5724715], [87.99, 103.76342617672427, 0.48342958], [88.0, 103.537661923802, 0.5521068], [88.01, 103.34081765300573, 0.5414318], [88.02, 103.26183433643193, 0.586817], [88.03, 102.97694416931363, 0.56156415], [88.04, 103.98134370981553, 0.46752355], [88.05, 105.04487212301107, 0.3954737], [88.06, 105.58673597792365, 0.31756982], [88.07, 112.19580652694367, 0.34192652], [88.08, 123.77782579669065, 0.32332292], [88.09, 143.1051695033991, 0.48071322], [88.1, 152.15329782616297, 0.36690655], [88.11, 159.4783110405475, 0.32521126], [88.12, 178.12794907872754, 0.39997688], [88.13, 197.93897518771612, 0.48176405], [88.14, 209.2841227990824, 0.27978164], [88.15, 205.26451686891045, 0.087805316], [88.16, 214.841538002606, 0.12557997], [88.17, 228.64464663562913, 0.12560934], [88.18, 238.07633331042706, 0.15597743], [88.19, 251.14166935124632, 0.14805238], [88.2, 263.15758427202826, 0.08273444], [88.21, 275.4679581842012, 0.1076022], [88.22, 280.875870905866, 0.18426247], [88.23, 283.47869818636065, 0.23321478], [88.24, 283.553533401464, 0.25589913], [88.25, 281.4702802570845, 0.20995998], [88.26, 281.94106030237504, 0.18189275], [88.27, 284.24569258721203, 0.33176225], [88.28, 289.1164086947308, 0.2397961], [88.29, 293.4100393179208, 0.2377705], [88.3, 299.70269379502344, 0.23716395], [88.31, 290.9796064593475, 0.2819106], [88.32, 260.9355879223367, 0.27422836], [88.33, 243.4320149719652, 0.14816618], [88.34, 232.85587542588866, 0.16842286], [88.35, 233.40537165264362, 0.25876948], [88.36, 234.03533950142705, 0.25335285], [88.37, 234.39744025423877, 0.2984675], [88.38, 260.02642508569755, 0.17818893], [88.39, 280.0176433336325, 0.34381285], [88.4, 279.2315288121207, 0.41265842], [88.41, 280.83360244348034, 0.55192107], [88.42, 281.549214945602, 0.59096897], [88.43, 281.70468891454425, 0.36913684], [88.44, 282.3981628345156, 0.48810035], [88.45, 283.9763465140414, 0.30568212], [88.46, 283.2121821713044, 0.3093739], [88.47, 283.1535803362168, 0.2979775], [88.48, 281.22939109674473, 0.2756271], [88.49, 278.953065671093, 0.3145346], [88.5, 277.2351764837458, 0.3524983], [88.51, 275.1192507404715, 0.5440707], [88.52, 276.1184560886785, 0.57001036], [88.53, 276.45920328306977, 0.6568748], [88.54, 277.64362826751375, 0.615968], [88.55, 277.6960187754879, 0.6400359], [88.56, 278.669532241406, 0.7124267], [88.57, 279.2132671376064, 0.64877385], [88.58, 280.0210118576404, 0.657834], [88.59, 281.10512736212564, 0.62708384], [88.6, 279.78251163635036, 0.67745364], [88.61, 280.6373280766615, 0.724824], [88.62, 280.8015657075766, 0.7099022], [88.63, 280.866038837332, 0.74799114], [88.64, 280.72077876348254, 0.7247161], [88.65, 279.2679619025096, 0.7125051], [88.66, 279.9970280544455, 0.7241366], [88.67, 278.13285423799255, 0.7443936], [88.68, 277.8938290492439, 0.67134637], [88.69, 275.4315240700097, 0.66061604], [88.7, 274.5416725953702, 0.7175048], [88.71, 274.9907542141947, 0.6836659], [88.72, 275.02994759131013, 0.7097838], [88.73, 275.9078636646568, 0.65873724], [88.74, 276.7235925293045, 0.643727], [88.75, 277.43565964462005, 0.6453029], [88.76, 276.2604249390791, 0.52177787], [88.77, 274.4614766652013, 0.63470614], [88.78, 277.78860009517604, 0.49935192], [88.79, 278.20980084494516, 0.55904156], [88.8, 280.8135827467455, 0.632713], [88.81, 282.19919925378815, 0.4433418], [88.82, 281.04246338265216, 0.43597645], [88.83, 281.9456905068497, 0.32631868], [88.84, 280.03444354299387, 0.34856677], [88.85, 279.97684194856174, 0.4197404], [88.86, 278.2878837670477, 0.43817556], [88.87, 277.8787874148225, 0.68039507], [88.88, 278.6317285157909, 0.5419718], [88.89, 278.1470467039335, 0.6305189], [88.9, 278.2760596292643, 0.56497127], [88.91, 278.73182496058644, 0.6183932], [88.92, 280.02356781981604, 0.7057854], [88.93, 281.6677925078403, 0.6804543], [88.94, 282.7374443513343, 0.69940186], [88.95, 283.4091868105724, 0.62279904], [88.96, 282.00832192981, 0.72371274], [88.97, 282.3487796312482, 0.5187064], [88.98, 281.14773342161345, 0.44928056], [88.99, 277.8764405210081, 0.29887122], [89.0, 277.73106437468135, 0.2534472], [89.01, 274.8002113152243, 0.19114788], [89.02, 274.10701100640046, 0.17858043], [89.03, 269.5218114532439, 0.35747418], [89.04, 268.87692516607467, 0.5260339], [89.05, 262.6900977556591, 0.4042052], [89.06, 261.82627032787036, 0.5633111], [89.07, 262.7994665371268, 0.45634654], [89.08, 265.9442548321727, 0.45052865], [89.09, 268.7973786842215, 0.22446483], [89.1, 264.9488618755787, 0.122392766], [89.11, 263.3988528959775, 0.09766173], [89.12, 282.66348123448427, 0.18661325], [89.13, 280.7051794622467, 0.13407695], [89.14, 286.08120443645896, 0.28955677], [89.15, 290.6342501609689, 0.3843345], [89.16, 296.00327451881066, 0.2770288], [89.17, 301.1484537044303, 0.11726531], [89.18, 304.14640035973537, 0.097734384], [89.19, 306.09526011623217, 0.09469998], [89.2, 308.4266872904039, 0.124514125], [89.21, 308.0733391832691, 0.14724392], [89.22, 309.3348218061578, 0.11401355], [89.23, 308.0930883039555, 0.13209553], [89.24, 303.09763322420457, 0.17163135], [89.25, 292.17107033576525, 0.27495244], [89.26, 282.07534438792754, 0.33175066], [89.27, 272.1456830310401, 0.36511883], [89.28, 266.28478268449226, 0.48438358], [89.29, 262.4178801922526, 0.5043544], [89.3, 256.7263907093368, 0.38937327], [89.31, 251.6322427577606, 0.24215406], [89.32, 242.9645467360383, 0.21981366], [89.33, 233.8370107954984, 0.22660233], [89.34, 229.7923117365425, 0.2944763], [89.35, 224.98662937642078, 0.17528349], [89.36, 221.16913441625132, 0.1739232], [89.37, 220.91763537526396, 0.27963477], [89.38, 220.7612323154837, 0.25819844], [89.39, 219.37771009381567, 0.1780486], [89.4, 223.80489381853442, 0.10890059], [89.41, 237.22112510294951, 0.16176793], [89.42, 248.58404230800238, 0.13023809], [89.43, 256.837061990512, 0.119914316], [89.44, 268.0791760375977, 0.17034134], [89.45, 282.48779905050435, 0.19309075], [89.46, 295.8331392147214, 0.2670286], [89.47, 305.61005218298806, 0.25436231], [89.48, 309.5610837417642, 0.1280293], [89.49, 309.0302355507478, 0.17645076], [89.5, 309.8894505235468, 0.098280415], [89.51, 308.92837472204224, 0.15360464], [89.52, 310.34900716464426, 0.13028443], [89.53, 305.98513942577523, 0.16460966], [89.54, 304.4617106012215, 0.319434], [89.55, 298.71556739856106, 0.19372685], [89.56, 293.1156197596611, 0.14851823], [89.57, 282.7002141339519, 0.074245036], [89.58, 274.07921507600344, 0.14682901], [89.59, 271.32308266128217, 0.3469059], [89.6, 271.22396382454946, 0.33964372], [89.61, 272.12292399341277, 0.5430241], [89.62, 271.8475270774537, 0.4401033], [89.63, 273.53938483513184, 0.26734245], [89.64, 277.9590931343224, 0.15251008], [89.65, 277.70689684904437, 0.16018291], [89.66, 278.35075702524443, 0.19538967], [89.67, 277.79275743652, 0.31294096], [89.68, 274.85269649106664, 0.42824596], [89.69, 274.8330848986706, 0.57930624], [89.7, 274.283765816073, 0.65874696], [89.71, 275.94929142323014, 0.64360785], [89.72, 277.4276024292699, 0.6809902], [89.73, 278.32908625020093, 0.6133874], [89.74, 278.6772939910796, 0.59410954], [89.75, 277.55904060956556, 0.5874128], [89.76, 278.53440260661915, 0.23517288], [89.77, 271.73855932730913, 0.09828306], [89.78, 253.41767495311842, 0.041023776], [89.79, 250.80535305132213, 0.11251028], [89.8, 242.5091116691986, 0.29403853], [89.81, 236.53000389795037, 0.31472823], [89.82, 234.62190513635477, 0.24425977], [89.83, 232.5917850118631, 0.35921025], [89.84, 232.54792773438894, 0.41416138], [89.85, 234.69626967300445, 0.54564655], [89.86, 235.01141962479508, 0.6585239], [89.87, 236.0516534659514, 0.64469373], [89.88, 236.30845439775814, 0.5934682], [89.89, 236.5439416969767, 0.59718066], [89.9, 236.97078497902186, 0.63772], [89.91, 237.0796033135719, 0.6013373], [89.92, 236.3868194432235, 0.4703478], [89.93, 236.1648831085705, 0.61530846], [89.94, 237.1539522795064, 0.6270913], [89.95, 236.18412449146706, 0.64298135], [89.96, 236.45039323134793, 0.58547354], [89.97, 236.6690256824282, 0.60083956], [89.98, 236.33039292015252, 0.66046005], [89.99, 236.43243995520402, 0.6529048], [90.0, 236.65424952247716, 0.6846492], [90.01, 237.60317146310348, 0.65926087], [90.02, 242.98703656273008, 0.17257887], [90.03, 244.38547184955408, 0.11854806], [90.04, 244.2059876814401, 0.16826051], [90.05, 241.50960863732706, 0.16829209], [90.06, 239.23152457239144, 0.2891926], [90.07, 240.39541177673323, 0.18593423], [90.08, 243.8100350035329, 0.12416138], [90.09, 258.4208967807584, 0.113857016], [90.1, 278.4427617064821, 0.146795], [90.11, 278.201764594074, 0.07728752], [90.12, 275.21806421843394, 0.16288063], [90.13, 276.99122134024634, 0.12206354], [90.14, 275.0796948445242, 0.15546285], [90.15, 275.10808614719645, 0.23989327], [90.16, 276.7220130540328, 0.089016065], [90.17, 276.2777596266935, 0.05167037], [90.18, 277.87607081632626, 0.21659449], [90.19, 277.2085732551426, 0.18568568], [90.2, 275.68911391257234, 0.31937858], [90.21, 277.9759417188352, 0.10155385], [90.22, 278.7177672109397, 0.331416], [90.23, 279.70551635606523, 0.2259709], [90.24, 280.90440143696384, 0.46154058], [90.25, 279.9932833616138, 0.36225167], [90.26, 280.47355693654987, 0.07827486], [90.27, 280.02721487007153, 0.13832852], [90.28, 281.1695357862443, 0.20896198], [90.29, 281.1972511099408, 0.12532279], [90.3, 275.4148967654145, 0.34101123], [90.31, 274.37288047659865, 0.5382025], [90.32, 274.5454460114415, 0.76738304], [90.33, 276.11614295450346, 0.7844064], [90.34, 276.7137296799305, 0.80554426], [90.35, 278.1544299731094, 0.7844369], [90.36, 278.68077496270286, 0.7702717], [90.37, 278.4932955823358, 0.80676633], [90.38, 277.80993701123776, 0.62457496], [90.39, 277.08072064529665, 0.5082092], [90.4, 275.97785124058146, 0.45581698], [90.41, 275.3302013052922, 0.50890845], [90.42, 275.3133181854497, 0.40346205], [90.43, 274.22512704459444, 0.5621923], [90.44, 272.4649052675988, 0.75899774], [90.45, 271.2106809410916, 0.8241086], [90.46, 270.67047573814386, 0.80661744], [90.47, 269.4942282117919, 0.76145923], [90.48, 269.05951761069264, 0.65730196], [90.49, 264.69668155391764, 0.2075176], [90.5, 242.02370084007862, 0.105525725], [90.51, 217.88995306867716, 0.2764869], [90.52, 189.17335687490268, 0.30509368], [90.53, 171.70798816030046, 0.3937026], [90.54, 152.77263623864056, 0.3418472], [90.55, 135.2378143912841, 0.31716117], [90.56, 136.79263058466978, 0.4241065], [90.57, 136.56208085179927, 0.48076922], [90.58, 137.07631867471363, 0.5581031], [90.59, 137.8652924484247, 0.6190622], [90.6, 138.4832040507197, 0.75637627], [90.61, 139.1106615049762, 0.74443436], [90.62, 139.50891211679956, 0.65888095], [90.63, 140.12456227957466, 0.5041779], [90.64, 139.97647977100127, 0.5709119], [90.65, 139.16679329719247, 0.69350785], [90.66, 138.55244755245985, 0.7115003], [90.67, 153.45976752932432, 0.6191429], [90.68, 175.94900982259648, 0.47378814], [90.69, 193.2300054360002, 0.40430903], [90.7, 222.87148637094907, 0.51620907], [90.71, 250.4247691008864, 0.580097], [90.72, 271.25204167712207, 0.5689484], [90.73, 271.53669294290194, 0.6237592], [90.74, 272.2206522709128, 0.5835384], [90.75, 272.6621705140399, 0.49588498], [90.76, 259.9573139942479, 0.40599793], [90.77, 234.85444911614948, 0.34718117], [90.78, 233.28300467085202, 0.57600766], [90.79, 232.34002937936185, 0.6874476], [90.8, 233.23469458428988, 0.7336771], [90.81, 232.9089725185416, 0.7491229], [90.82, 233.99229513579556, 0.7393773], [90.83, 232.80061630233848, 0.73787534], [90.84, 233.24825968394904, 0.7426608], [90.85, 233.0178954380113, 0.73188776], [90.86, 232.84154090123081, 0.72935987], [90.87, 233.2658399636751, 0.7461674], [90.88, 233.36664163719064, 0.7529558], [90.89, 233.97400020255517, 0.671819], [90.9, 233.29316068132016, 0.60275084], [90.91, 232.53622539559214, 0.6295786], [90.92, 232.94871202395908, 0.619047], [90.93, 231.18880873316553, 0.6645378], [90.94, 229.7470717004595, 0.6302432], [90.95, 230.61451542270075, 0.33111104], [90.96, 231.7921743872898, 0.23782073], [90.97, 239.4020741670172, 0.08571109], [90.98, 231.19836694463385, 0.08435641], [90.99, 222.84299658502235, 0.21601562], [91.0, 208.3165875478136, 0.29384127], [91.01, 201.36988913405236, 0.16680992], [91.02, 186.6931021091833, 0.13024633], [91.03, 177.21617946802294, 0.09093946], [91.04, 173.0266416953162, 0.09656004], [91.05, 154.74650511744406, 0.12927061], [91.06, 139.38244145219502, 0.29630274], [91.07, 140.38585176595103, 0.3462594], [91.08, 140.46091615921483, 0.4270923], [91.09, 140.08109208612782, 0.34217986], [91.1, 138.31124746138104, 0.11721039], [91.11, 140.71338726110451, 0.106038384], [91.12, 141.93147039643534, 0.0847498], [91.13, 144.492820701217, 0.11672296], [91.14, 148.23607899301192, 0.11857858], [91.15, 149.16153734413356, 0.28428644], [91.16, 152.08834064940388, 0.08031494], [91.17, 150.81577236102214, 0.22743994], [91.18, 149.15107456407173, 0.5210543], [91.19, 149.98394111004072, 0.22098073], [91.2, 150.48631167805084, 0.096813485], [91.21, 152.10862794387873, 0.2155302], [91.22, 152.37486744660407, 0.21714784], [91.23, 153.76471259475403, 0.32323873], [91.24, 154.80130225951913, 0.58016145], [91.25, 155.34805813930174, 0.47635832], [91.26, 157.46081081692932, 0.4664388], [91.27, 158.41808701899348, 0.39985177], [91.28, 158.82890318654276, 0.314282], [91.29, 158.71519562545114, 0.35674873], [91.3, 158.4121793374155, 0.50477964], [91.31, 157.76069491902942, 0.6551726], [91.32, 157.182162629368, 0.68869144], [91.33, 156.40676327677446, 0.70182866], [91.34, 155.6901098009243, 0.7681506], [91.35, 154.18238385883626, 0.7484459], [91.36, 153.47645762188452, 0.6951704], [91.37, 152.152427202405, 0.7170262], [91.38, 150.69430217382714, 0.7981887], [91.39, 149.50643252207956, 0.8228573], [91.4, 147.63465352994706, 0.7841935], [91.41, 144.64921859604007, 0.6310152], [91.42, 142.4244889617125, 0.7488891], [91.43, 141.93823585663148, 0.64549184], [91.44, 141.22998704493565, 0.33963993], [91.45, 153.88488081415449, 0.39909017], [91.46, 157.4930253941693, 0.53267586], [91.47, 159.67671438837635, 0.41190597], [91.48, 169.01896598507452, 0.23002842], [91.49, 173.70948312238457, 0.2994419], [91.5, 174.64226225343438, 0.26766306], [91.51, 181.03966638491218, 0.23034087], [91.52, 201.25970737930913, 0.3380835], [91.53, 207.39116116727763, 0.2874604], [91.54, 204.9954996984332, 0.22343956], [91.55, 205.71965242004973, 0.3599784], [91.56, 201.8979677803853, 0.27391705], [91.57, 184.76944879252005, 0.17295898], [91.58, 178.3131625861074, 0.348442], [91.59, 179.55258737917674, 0.4115624], [91.6, 182.68790958900868, 0.242267], [91.61, 184.09213358292646, 0.335784], [91.62, 186.57266568391276, 0.267799], [91.63, 187.98419521372608, 0.40290913], [91.64, 186.80821217472695, 0.5112176], [91.65, 185.86413838157182, 0.55053276], [91.66, 184.20506320104835, 0.5847887], [91.67, 182.75241333324811, 0.65834], [91.68, 179.9354022801628, 0.7148409], [91.69, 178.81165782641972, 0.76555413], [91.7, 177.85801362335118, 0.7987528], [91.71, 177.34118469631224, 0.76812524], [91.72, 177.40878741516246, 0.69558626], [91.73, 176.0951958903279, 0.53063774], [91.74, 175.85044195476956, 0.3299973], [91.75, 176.25137034088968, 0.49380863], [91.76, 178.33417859324817, 0.29815763], [91.77, 177.45188966940344, 0.47478497], [91.78, 176.79624744810994, 0.44747534], [91.79, 176.2438456416458, 0.3652771], [91.8, 175.01727353963088, 0.28758824], [91.81, 175.08177889293606, 0.36120117], [91.82, 174.2194379530919, 0.21484385], [91.83, 171.31529513064953, 0.30372453], [91.84, 167.03862641455606, 0.39356735], [91.85, 163.2224194117614, 0.40481696], [91.86, 159.10553389965804, 0.28068936], [91.87, 156.39376644254475, 0.34744334], [91.88, 150.9626349527266, 0.118805006], [91.89, 147.2587346895239, 0.17673168], [91.9, 143.2419561498561, 0.09844789], [91.91, 140.9826487239382, 0.16848946], [91.92, 137.68091797745313, 0.12873544], [91.93, 137.06382551104542, 0.11648954], [91.94, 138.81866307703459, 0.17917113], [91.95, 156.53297853323016, 0.15015872], [91.96, 175.71671926945743, 0.15433306], [91.97, 178.48111120614223, 0.23312391], [91.98, 175.89630506401025, 0.19624355], [91.99, 173.3855097163032, 0.21378563], [92.0, 169.5641745355306, 0.20757751], [92.01, 161.6649905116751, 0.084321655], [92.02, 157.81175255113786, 0.056464452], [92.03, 154.46391790063439, 0.08530917], [92.04, 150.24824885225897, 0.11220581], [92.05, 148.22046413529216, 0.13762966], [92.06, 145.0478208742501, 0.1365008], [92.07, 145.66092596554296, 0.13830897], [92.08, 144.89706500125754, 0.21981221], [92.09, 144.33938094763406, 0.53769696], [92.1, 141.33711885880933, 0.3259773], [92.11, 139.03585375034723, 0.24303319], [92.12, 138.4127183949961, 0.18373096], [92.13, 136.87123814585397, 0.23270161], [92.14, 136.7722075233473, 0.2946563], [92.15, 137.7040432328327, 0.32667637], [92.16, 138.28815508600377, 0.2818803], [92.17, 137.8111851746056, 0.3446197], [92.18, 138.46345966307388, 0.23146373], [92.19, 139.5415307808432, 0.17576407], [92.2, 141.17751940294997, 0.13648877], [92.21, 140.8205387535409, 0.17924325], [92.22, 142.33284356321863, 0.37283644], [92.23, 142.1667404226589, 0.31359324], [92.24, 142.49168260087936, 0.5708777], [92.25, 142.34641576704706, 0.5089454], [92.26, 142.2544290971779, 0.40713963], [92.27, 143.26805864892327, 0.39474517], [92.28, 144.97866534833935, 0.2502234], [92.29, 144.17672190457208, 0.19765516], [92.3, 145.32608327405055, 0.19968516], [92.31, 142.05090628509532, 0.09687404], [92.32, 143.2606843966545, 0.2656065], [92.33, 145.85646558540554, 0.21782939], [92.34, 148.24802325945925, 0.3800085], [92.35, 151.9132950192888, 0.3093598], [92.36, 158.13312650207064, 0.20448516], [92.37, 168.2336386093199, 0.23421572], [92.38, 173.17917380665196, 0.3313057], [92.39, 175.90924499776213, 0.5035112], [92.4, 177.51115513475625, 0.33699763], [92.41, 178.1735209317297, 0.32406864], [92.42, 178.5738178738129, 0.36121932], [92.43, 177.28883766837325, 0.2007083], [92.44, 156.32421737209705, 0.4546654], [92.45, 136.98418325581622, 0.23064522], [92.46, 137.2094123107692, 0.20949633], [92.47, 137.52527912290552, 0.28034267], [92.48, 137.95029767029106, 0.29148698], [92.49, 138.5912228401329, 0.49144173], [92.5, 139.58027929198028, 0.50885653], [92.51, 140.4462413688909, 0.57059115], [92.52, 141.2492848937079, 0.6730952], [92.53, 142.43263329703873, 0.7321276], [92.54, 145.23457157934754, 0.7578428], [92.55, 146.99077584927616, 0.6756389], [92.56, 151.50555238537405, 0.70303243], [92.57, 151.0841310029345, 0.6482298], [92.58, 149.9805902043213, 0.5977736], [92.59, 151.06611648889663, 0.45732984], [92.6, 149.7807201113274, 0.34512225], [92.61, 151.01848803453174, 0.2800985], [92.62, 152.55063338991647, 0.1595907], [92.63, 153.40257333292382, 0.26557672], [92.64, 156.2366097897285, 0.4011955], [92.65, 156.88072604676566, 0.4723519], [92.66, 155.576419830184, 0.41660216], [92.67, 153.73761338787938, 0.3118015], [92.68, 153.16042139115245, 0.24931026], [92.69, 153.99381924928886, 0.36131015], [92.7, 153.9648196698599, 0.20647198], [92.71, 153.9129522628156, 0.27329817], [92.72, 154.6251587798358, 0.23632063], [92.73, 155.7789320182656, 0.20585527], [92.74, 157.94248815945286, 0.2154977], [92.75, 158.28799861241487, 0.3170416], [92.76, 158.2333865388457, 0.29347262], [92.77, 157.67847160829325, 0.43403882], [92.78, 155.95996187598078, 0.20363599], [92.79, 172.92241602529228, 0.24232852], [92.8, 172.26090715834607, 0.3692857], [92.81, 173.53564415536755, 0.31455263], [92.82, 173.2528215847288, 0.3425393], [92.83, 174.0774740059786, 0.21588139], [92.84, 176.07504465878452, 0.41436875], [92.85, 179.40413099905484, 0.18133909], [92.86, 181.90566514178857, 0.30056635], [92.87, 179.98748790587356, 0.34213576], [92.88, 177.38686461152736, 0.38801605], [92.89, 176.79529945517518, 0.21356505], [92.9, 175.389274434867, 0.22034843], [92.91, 157.03746949241497, 0.44747657], [92.92, 139.39608568162612, 0.5131695], [92.93, 139.31001123990194, 0.48482326], [92.94, 138.08923805671168, 0.55055016], [92.95, 138.01483150869365, 0.5505223], [92.96, 138.30109459768033, 0.46557888], [92.97, 138.35096281941813, 0.4106306], [92.98, 138.61776095033323, 0.5083359], [92.99, 138.98499030248604, 0.4015799], [93.0, 138.31582349228205, 0.329631], [93.01, 138.52964853375724, 0.3182084], [93.02, 138.2314763992479, 0.3490561], [93.03, 138.0178171440865, 0.34235024], [93.04, 138.39007221273218, 0.50914514], [93.05, 137.9128996211496, 0.52449], [93.06, 137.71522357184895, 0.53701705], [93.07, 138.32691212572018, 0.5422523], [93.08, 137.80155825411305, 0.6707243], [93.09, 137.6518338759198, 0.5781133], [93.1, 137.8870508787585, 0.53386474], [93.11, 138.13568108126253, 0.3990076], [93.12, 138.83271623764787, 0.6095322], [93.13, 139.00876558697706, 0.4982044], [93.14, 138.77586273576907, 0.52474743], [93.15, 154.98697181312247, 0.4707737], [93.16, 175.88861878409236, 0.37037173], [93.17, 175.98310346901684, 0.4302875], [93.18, 177.05105260387182, 0.51470953], [93.19, 177.2764946218387, 0.47545695], [93.2, 176.83201793322084, 0.5291868], [93.21, 176.7345921929805, 0.6176432], [93.22, 177.00788084332282, 0.6392577], [93.23, 176.50903883423095, 0.61068064], [93.24, 176.1280100281671, 0.5761718], [93.25, 175.5693293267027, 0.4698891], [93.26, 154.54527107127456, 0.35297868], [93.27, 139.5247037662677, 0.45752245], [93.28, 140.229636102203, 0.586564], [93.29, 140.57090390813636, 0.43251693], [93.3, 139.7152086563254, 0.6102107], [93.31, 140.98718287158283, 0.5064823], [93.32, 140.08522572929297, 0.6647519], [93.33, 139.31148657626076, 0.6329855], [93.34, 139.40333092394093, 0.37250316], [93.35, 137.33231309744772, 0.5152729], [93.36, 137.2329270612008, 0.33598012], [93.37, 137.14013657347562, 0.41892204], [93.38, 136.91230235894187, 0.23305397], [93.39, 137.27757242720716, 0.2265086], [93.4, 136.62333649641317, 0.2611444], [93.41, 135.54993853185715, 0.11875497], [93.42, 136.93480108544722, 0.16362585], [93.43, 136.72278800409586, 0.25852033], [93.44, 137.0118254411919, 0.44277665], [93.45, 137.9407873871787, 0.634234], [93.46, 139.03582617926563, 0.64913636], [93.47, 155.9767754698631, 0.32814267], [93.48, 177.43300236549254, 0.35859105], [93.49, 173.1680478499656, 0.36667252], [93.5, 175.85297206986812, 0.35550374], [93.51, 158.6879554354477, 0.40046614], [93.52, 143.8810657070827, 0.37608764], [93.53, 142.9723585738314, 0.42942283], [93.54, 142.56208335483248, 0.5867011], [93.55, 142.3483961426886, 0.60090756], [93.56, 141.18398743275856, 0.53954315], [93.57, 141.60742445195973, 0.17471065], [93.58, 157.214116705045, 0.22087152], [93.59, 176.6994771118528, 0.5005126], [93.6, 195.05500806956087, 0.5867808], [93.61, 223.68070431673257, 0.4977313], [93.62, 237.9269382431126, 0.32831666], [93.63, 234.60345535667517, 0.2540794], [93.64, 231.73835712630455, 0.26407963], [93.65, 231.12634596680095, 0.54022336], [93.66, 230.6924299587804, 0.69848365], [93.67, 232.1526433637162, 0.79213816], [93.68, 232.21371990144277, 0.8168239], [93.69, 233.06732883542634, 0.86993], [93.7, 233.47346565693303, 0.8834055], [93.71, 233.332829514645, 0.8569188], [93.72, 233.77812532298447, 0.88029134], [93.73, 233.43442997554638, 0.87972564], [93.74, 233.18929826340636, 0.85396147], [93.75, 233.1689788944829, 0.8604677], [93.76, 233.21049044595196, 0.77450323], [93.77, 234.12466924969308, 0.46522605], [93.78, 237.68428345318523, 0.24268888], [93.79, 237.15782307060337, 0.22494188], [93.8, 235.31363851289765, 0.1707682], [93.81, 235.89551797099637, 0.42989722], [93.82, 238.48260872316618, 0.4117116], [93.83, 239.44153777948853, 0.2916102], [93.84, 241.95809252065447, 0.15520436], [93.85, 241.50290988719541, 0.11122821], [93.86, 238.53453990199156, 0.06491206], [93.87, 235.63439121886873, 0.07671196], [93.88, 234.09959230345876, 0.10792468], [93.89, 233.3394619654731, 0.26400465], [93.9, 234.5978428112059, 0.08896882], [93.91, 233.98286616723874, 0.14853346], [93.92, 232.06139477293104, 0.063820206], [93.93, 243.38568433463416, 0.061808318], [93.94, 262.8191682109518, 0.05908794], [93.95, 275.63910436308004, 0.118876435], [93.96, 272.372437903422, 0.11607347], [93.97, 267.8576376624687, 0.1023012], [93.98, 260.9732537802656, 0.11652686], [93.99, 250.2384663214611, 0.24664138], [94.0, 242.9392982130563, 0.090249315], [94.01, 239.151911401512, 0.23417915], [94.02, 234.81425048100377, 0.42096204], [94.03, 234.02201416787335, 0.47484264], [94.04, 232.93028027374763, 0.46848756], [94.05, 232.76923347968395, 0.649512], [94.06, 232.67952128155954, 0.6413093], [94.07, 232.56236187293825, 0.7020556], [94.08, 232.5800208598741, 0.72088134], [94.09, 232.00654286827015, 0.6562301], [94.1, 232.36244267039777, 0.70045567], [94.11, 232.75347464135695, 0.7017607], [94.12, 232.2381812843757, 0.667251], [94.13, 233.16970759893024, 0.7145308], [94.14, 233.31938217241233, 0.7126599], [94.15, 233.00994690039647, 0.76272434], [94.16, 232.0851630212596, 0.75952864], [94.17, 230.78272973421264, 0.80675215], [94.18, 230.5842390732979, 0.834496], [94.19, 230.03046793122599, 0.81027824], [94.2, 229.7227905720334, 0.79412776], [94.21, 230.51028635467762, 0.7352029], [94.22, 233.32542411391353, 0.65488106], [94.23, 235.0769413110939, 0.6492396], [94.24, 234.1041908443542, 0.6521213], [94.25, 232.6590405166435, 0.7199189], [94.26, 233.01005248301337, 0.7273968], [94.27, 234.13416754846807, 0.6788858], [94.28, 234.08150920194112, 0.5635177], [94.29, 233.3287184633878, 0.44845688], [94.3, 233.5328606724412, 0.39864743], [94.31, 231.93775264760177, 0.26851204], [94.32, 232.13813930349247, 0.22142047], [94.33, 235.1218969567677, 0.23495345], [94.34, 259.2220547185467, 0.26487467], [94.35, 277.7004559325091, 0.6129357], [94.36, 276.3542504234919, 0.7558674], [94.37, 276.68027799653584, 0.7514956], [94.38, 275.3745014715401, 0.76595885], [94.39, 276.0912211916543, 0.65049744], [94.4, 277.7165292573681, 0.49619296], [94.41, 278.1968311590882, 0.26825872], [94.42, 252.43749157499485, 0.21378335], [94.43, 231.4834869416451, 0.3521765], [94.44, 231.93319470907983, 0.27543327], [94.45, 232.02821474480902, 0.35625502], [94.46, 231.48335618728464, 0.37188366], [94.47, 215.14975673871976, 0.50391793], [94.48, 187.34474841698898, 0.50135225], [94.49, 172.56111706376646, 0.5362977], [94.5, 151.12984226132997, 0.5377683], [94.51, 138.8803159202537, 0.44630507], [94.52, 140.67290282829538, 0.46375957], [94.53, 140.49098111369528, 0.36306378], [94.54, 141.0169874356664, 0.45204768], [94.55, 140.03948218639601, 0.29129994], [94.56, 139.29509174638468, 0.32811645], [94.57, 138.6638009446762, 0.36317396], [94.58, 136.79407726726512, 0.29697356], [94.59, 135.48196812158508, 0.24966294], [94.6, 137.38823726189327, 0.2779075], [94.61, 137.65490293185, 0.38889316], [94.62, 136.86979305415232, 0.25173378], [94.63, 136.5460645403955, 0.21772975], [94.64, 136.48589835561313, 0.23852023], [94.65, 136.33849644891268, 0.3102765], [94.66, 134.4830644769781, 0.44316], [94.67, 132.80191576633501, 0.5257896], [94.68, 131.47822868549616, 0.52087015], [94.69, 129.59049147752114, 0.29173285], [94.7, 127.72922484568328, 0.28519452], [94.71, 124.93786301038972, 0.31614265], [94.72, 121.71149143764625, 0.13531601], [94.73, 119.79735462478949, 0.12094993], [94.74, 117.65938905715466, 0.32780975], [94.75, 117.38867289358748, 0.302749], [94.76, 118.60756876128475, 0.10228332], [94.77, 131.95975009905567, 0.48145112], [94.78, 138.43999442135998, 0.5722743], [94.79, 138.9347701018946, 0.3256998], [94.8, 140.05233611201734, 0.22694114], [94.81, 139.8307058165891, 0.16002086], [94.82, 139.66445782222186, 0.18019475], [94.83, 138.0827219974999, 0.36676863], [94.84, 137.86748480512003, 0.27125412], [94.85, 136.93404751518858, 0.08016893], [94.86, 138.8354274932557, 0.32611778], [94.87, 138.57495828405624, 0.2602555], [94.88, 137.6049017569469, 0.35948363], [94.89, 136.95297288007322, 0.43371108], [94.9, 136.08411612309885, 0.50510883], [94.91, 136.09649439352106, 0.53403556], [94.92, 135.38301309444796, 0.47245955], [94.93, 135.33014132510698, 0.49053735], [94.94, 135.49071526663766, 0.42667544], [94.95, 137.1079317944608, 0.28988796], [94.96, 149.96005085926978, 0.21433312], [94.97, 173.83147104080652, 0.38120237], [94.98, 183.84444356363957, 0.3707359], [94.99, 218.08345642221877, 0.2245598], [95.0, 233.0707022213486, 0.4723965], [95.01, 232.81062835919826, 0.5277368], [95.02, 232.42635819615728, 0.5029968], [95.03, 233.5311106438379, 0.4371587], [95.04, 233.02897158697363, 0.3073136], [95.05, 231.62290243491768, 0.31849775], [95.06, 231.24481324509875, 0.20229848], [95.07, 230.90010862355598, 0.38443556], [95.08, 231.4339710243504, 0.33804724], [95.09, 231.70724037087507, 0.23797633], [95.1, 231.68856597079298, 0.32713372], [95.11, 233.37720304354247, 0.2490356], [95.12, 233.93139665404263, 0.29502416], [95.13, 235.36557284348498, 0.43286672], [95.14, 234.45317534904973, 0.38733718], [95.15, 233.48241694570743, 0.25191608], [95.16, 232.62521069976674, 0.14946793], [95.17, 233.25419795336003, 0.35738403], [95.18, 229.95387911337565, 0.2741186], [95.19, 230.11904323848984, 0.32632637], [95.2, 230.75960158052024, 0.39992952], [95.21, 232.45751282835542, 0.61236185], [95.22, 234.664917649465, 0.7166826], [95.23, 236.08204940151438, 0.61022604], [95.24, 228.9338024871482, 0.2565004], [95.25, 216.51011434706538, 0.44985834], [95.26, 213.1971101425852, 0.39148942], [95.27, 210.7628875093077, 0.5269913], [95.28, 208.29938286739156, 0.5865695], [95.29, 206.20371900910712, 0.61196876], [95.3, 205.5498212267234, 0.58841294], [95.31, 205.04572788792686, 0.48509085], [95.32, 206.0750721971096, 0.6680917], [95.33, 207.4940305915731, 0.66482615], [95.34, 208.66034479824404, 0.5416194], [95.35, 210.32922935148744, 0.41024774], [95.36, 211.68095789401434, 0.41855863], [95.37, 216.88781924893422, 0.35867706], [95.38, 216.93983276855857, 0.31971097], [95.39, 214.93857385211086, 0.38083184], [95.4, 211.9569104483605, 0.5303757], [95.41, 209.73672099527715, 0.5228014], [95.42, 207.53238369017748, 0.5417104], [95.43, 205.34824240499916, 0.6864868], [95.44, 205.20902809269884, 0.68946344], [95.45, 205.45998605144317, 0.5778802], [95.46, 205.51442059269925, 0.5270896], [95.47, 206.67288608519908, 0.6877925], [95.48, 208.65094985819064, 0.7381921], [95.49, 210.68427827716988, 0.65955406], [95.5, 212.26905218697044, 0.5428], [95.51, 240.93233896810858, 0.3345794], [95.52, 271.79014465667484, 0.38875216], [95.53, 308.90245231901423, 0.34651893], [95.54, 308.0060054058436, 0.5499961], [95.55, 308.798671424519, 0.58463216], [95.56, 309.96496626677106, 0.5566382], [95.57, 309.3154996709985, 0.6445494], [95.58, 309.9405249937461, 0.56382126], [95.59, 312.065287269469, 0.6926568], [95.6, 312.8232363295837, 0.7828937], [95.61, 313.6413689524229, 0.78393507], [95.62, 313.5612920102477, 0.75704443], [95.63, 313.0100751621509, 0.6274444], [95.64, 306.49005553523085, 0.16300707], [95.65, 288.16804265086836, 0.19414482], [95.66, 276.91209495532627, 0.23858266], [95.67, 261.78383299900855, 0.38047978], [95.68, 245.60496139474594, 0.29387066], [95.69, 235.33330295785717, 0.2244832], [95.7, 227.02241438359508, 0.59133667], [95.71, 211.71644077407163, 0.6257975], [95.72, 209.6345835180766, 0.68607605], [95.73, 202.068587965591, 0.6265159], [95.74, 186.47893379089373, 0.40286118], [95.75, 177.20766764176278, 0.35420132], [95.76, 168.52569874147193, 0.2521621], [95.77, 162.25473666849126, 0.15081142], [95.78, 152.15380444209174, 0.12702538], [95.79, 144.64792839122114, 0.16734722], [95.8, 142.6817912816576, 0.26002347], [95.81, 142.52197051061432, 0.28416067], [95.82, 141.11709186375768, 0.2159996], [95.83, 140.71726854317237, 0.3620245], [95.84, 141.08354505480037, 0.22151136], [95.85, 141.7570284438494, 0.282095], [95.86, 139.59263354419724, 0.20183125], [95.87, 140.6128259733875, 0.4170377], [95.88, 142.31824213018012, 0.44569886], [95.89, 142.26895196387284, 0.38654903], [95.9, 143.44896214310867, 0.24923784], [95.91, 143.037944413892, 0.20033608], [95.92, 143.51023536607067, 0.28043616], [95.93, 142.4560714709719, 0.37442952], [95.94, 141.61390565214364, 0.36145693], [95.95, 139.28303930831814, 0.25351366], [95.96, 139.68742524831046, 0.2663516], [95.97, 139.5493549359229, 0.37217152], [95.98, 139.07644734920387, 0.37959814], [95.99, 137.40228687510316, 0.40360165], [96.0, 137.3131259364684, 0.40076843], [96.01, 139.25856945274202, 0.4208941], [96.02, 140.23621380169726, 0.42037517], [96.03, 139.8162016511856, 0.49345013], [96.04, 139.05728811540519, 0.5021681], [96.05, 139.43128899614732, 0.54900575], [96.06, 139.35440830433893, 0.5378847], [96.07, 138.9215754012847, 0.5420733], [96.08, 138.0803488657369, 0.42654917], [96.09, 142.05649613469905, 0.603181], [96.1, 157.92787064410163, 0.38101655], [96.11, 171.16678272492567, 0.4147339], [96.12, 179.66642274432735, 0.5555088], [96.13, 198.28480949623253, 0.5719332], [96.14, 206.99297464573078, 0.5299588], [96.15, 224.23632505419408, 0.29077256], [96.16, 238.30826835472766, 0.2715756], [96.17, 237.59579930906955, 0.23593293], [96.18, 237.84494025714682, 0.23200244], [96.19, 235.8376105063616, 0.36168835], [96.2, 224.0719610734522, 0.28429893], [96.21, 208.0079090782064, 0.38147485], [96.22, 208.8222002627606, 0.55212086], [96.23, 209.18884501908624, 0.58966815], [96.24, 208.1123082083804, 0.59717536], [96.25, 208.64958965326593, 0.5862749], [96.26, 207.9508658669604, 0.59982455], [96.27, 206.44208601323382, 0.47617], [96.28, 206.34738828555777, 0.4266284], [96.29, 229.67208350116775, 0.32200986], [96.3, 259.33834546070625, 0.5376015], [96.31, 260.1113089072624, 0.675507], [96.32, 261.73857910625486, 0.7307552], [96.33, 261.312262217431, 0.77845293], [96.34, 261.1237984146222, 0.7718727], [96.35, 261.50277145534903, 0.80407125], [96.36, 261.2496241457149, 0.7582512], [96.37, 261.36802037658464, 0.7994421], [96.38, 261.9741970952359, 0.8058606], [96.39, 260.8738330078269, 0.6627872], [96.4, 260.0635753777899, 0.6412368], [96.41, 259.38973240629133, 0.617313], [96.42, 258.71109629933903, 0.6027526], [96.43, 257.1226583577903, 0.56669205], [96.44, 252.8556182203316, 0.5065328], [96.45, 249.90377799204572, 0.3105773], [96.46, 224.02044549825706, 0.25997895], [96.47, 201.99454460213798, 0.5814431], [96.48, 175.21485972510706, 0.71487534], [96.49, 175.86337961687505, 0.70110935], [96.5, 176.7198707481051, 0.6926888], [96.51, 176.6579277614502, 0.6699876], [96.52, 175.83569122677665, 0.6251316], [96.53, 175.5496792866964, 0.69623685], [96.54, 175.45169671181412, 0.71170694], [96.55, 175.8082590973881, 0.7463779], [96.56, 176.19414376243955, 0.70706964], [96.57, 175.4123475566108, 0.57234395], [96.58, 169.14505727058275, 0.3144944], [96.59, 165.7281126568941, 0.2631057], [96.6, 186.39940529294313, 0.53244656], [96.61, 210.33775713792863, 0.5834991], [96.62, 231.5565019022753, 0.46815336], [96.63, 230.76072063504324, 0.3915908], [96.64, 228.22063836092812, 0.22222573], [96.65, 228.05526407775835, 0.311243], [96.66, 226.20174907050338, 0.21130924], [96.67, 226.56219074331244, 0.334615], [96.68, 222.01858497194485, 0.18365103], [96.69, 219.4023062152005, 0.19350417], [96.7, 216.57362598142302, 0.10545931], [96.71, 234.19231586770422, 0.19572228], [96.72, 239.1646135535272, 0.1281944], [96.73, 246.06770038887908, 0.1299419], [96.74, 250.01732663137787, 0.19586506], [96.75, 251.24353622002496, 0.24793138], [96.76, 254.10752439899767, 0.24886431], [96.77, 254.70495832091726, 0.35102087], [96.78, 256.5977428470451, 0.32639816], [96.79, 285.2874394438441, 0.2851657], [96.8, 324.00105769061327, 0.48764157], [96.81, 378.593818902611, 0.52848613], [96.82, 418.4019971123056, 0.30685374], [96.83, 470.7466851760617, 0.114460446], [96.84, 467.79430535060334, 0.32152662], [96.85, 464.2305336525723, 0.40354022], [96.86, 464.29917673185537, 0.5242321], [96.87, 463.9827750550409, 0.48137823], [96.88, 464.25404393810334, 0.4805231], [96.89, 465.168275286532, 0.4380956], [96.9, 463.57490849805885, 0.40226173], [96.91, 463.27319982501126, 0.3726736], [96.92, 463.59149246062566, 0.40685567], [96.93, 463.1701590372502, 0.44444528], [96.94, 465.97997590618286, 0.4154257], [96.95, 467.6294939517566, 0.50050503], [96.96, 467.6126428661655, 0.4896831], [96.97, 467.78373192984657, 0.42781937], [96.98, 469.7016887534123, 0.617398], [96.99, 468.25662612469205, 0.64165], [97.0, 467.55723503092753, 0.7200007], [97.01, 460.3354504014742, 0.6351351], [97.02, 458.538255255648, 0.74593574], [97.03, 454.2916277272932, 0.7395198], [97.04, 452.61411548455504, 0.62027955], [97.05, 446.5749168195614, 0.4425105], [97.06, 446.1672395062575, 0.286913], [97.07, 447.1342063015185, 0.12738863], [97.08, 447.8739082383425, 0.0930346], [97.09, 446.4740740292104, 0.06856222], [97.1, 444.3392296147447, 0.08513941], [97.11, 439.2872261400847, 0.21289755], [97.12, 432.81638192054606, 0.2664983], [97.13, 428.1650894045031, 0.28965765], [97.14, 422.4941959428616, 0.34800464], [97.15, 417.26524256481554, 0.34215668], [97.16, 415.0997009776522, 0.4375323], [97.17, 414.48383378585055, 0.5485427], [97.18, 413.06021835619566, 0.54482234], [97.19, 417.10974292420383, 0.57896185], [97.2, 416.434952080592, 0.44779027], [97.21, 420.28770056258594, 0.2884364], [97.22, 422.27349263948213, 0.2698862], [97.23, 424.6887896996824, 0.3581974], [97.24, 427.31710492895957, 0.29492337], [97.25, 427.0960800286057, 0.2640979], [97.26, 425.88688037845003, 0.22726436], [97.27, 420.6246212282638, 0.1486254], [97.28, 411.48691705855873, 0.10066571], [97.29, 359.5419568595049, 0.22514625], [97.3, 333.28195717704267, 0.13706583], [97.31, 287.65165343889345, 0.25129333], [97.32, 262.12164852680127, 0.19881473], [97.33, 233.85108182765794, 0.2094071], [97.34, 231.99360649991365, 0.68826056], [97.35, 231.84618051923195, 0.68532383], [97.36, 230.92705676061937, 0.75822407], [97.37, 231.94631013404472, 0.788846], [97.38, 233.0092570266006, 0.80466336], [97.39, 234.02260187291662, 0.8210405], [97.4, 235.00766417891185, 0.7897661], [97.41, 235.5028588286407, 0.71262944], [97.42, 235.5514207219687, 0.45755053], [97.43, 235.40770368473642, 0.14951831], [97.44, 235.0565507168463, 0.418667], [97.45, 235.2350641947393, 0.5977686], [97.46, 232.35684124387683, 0.6891032], [97.47, 235.03183417776188, 0.6410682], [97.48, 231.49271793030735, 0.65941954], [97.49, 233.63535571246302, 0.7112748], [97.5, 233.9218239137262, 0.79682857], [97.51, 233.48672083160557, 0.7211077], [97.52, 234.74474173435124, 0.38487914], [97.53, 234.60622077298436, 0.08078175], [97.54, 233.74647138661464, 0.15243904], [97.55, 234.7984591142358, 0.13975362], [97.56, 234.71678712673722, 0.3060182], [97.57, 234.90276999774667, 0.16631973], [97.58, 235.2151848354882, 0.13460562], [97.59, 235.11171297895342, 0.089288875], [97.6, 234.78067638807673, 0.12827742], [97.61, 235.13953234890462, 0.10757908], [97.62, 231.4775123492093, 0.13837063], [97.63, 256.1527586103859, 0.14197211], [97.64, 279.9463681068485, 0.17853837], [97.65, 280.0851802685665, 0.29885668], [97.66, 278.9481226729341, 0.26941812], [97.67, 277.03668295059447, 0.13983303], [97.68, 276.23168113756884, 0.17973152], [97.69, 279.3072033010713, 0.18655956], [97.7, 277.9122149670275, 0.30673888], [97.71, 277.7256613347242, 0.13263439], [97.72, 277.1003283396051, 0.1394758], [97.73, 272.02449145067965, 0.24586867], [97.74, 257.41119663590155, 0.2751359], [97.75, 246.92994931280538, 0.13987349], [97.76, 242.29733344931148, 0.07597184], [97.77, 235.30010822695363, 0.17072022], [97.78, 234.51624947099663, 0.48498464], [97.79, 233.445875238121, 0.60752124], [97.8, 232.2737510987655, 0.7123709], [97.81, 231.75149689766425, 0.6512276], [97.82, 233.113715445711, 0.6895069], [97.83, 231.52678961921526, 0.625537], [97.84, 232.00362034642814, 0.6849201], [97.85, 231.61587705100266, 0.63145447], [97.86, 231.33599442931282, 0.52935904], [97.87, 231.46150686174343, 0.38101628], [97.88, 232.80404953586256, 0.38823518], [97.89, 231.0276663667582, 0.51488185], [97.9, 231.88170342000484, 0.66891414], [97.91, 231.60705801770547, 0.6651687], [97.92, 232.8616676266608, 0.7760038], [97.93, 232.8260917590436, 0.69134355], [97.94, 232.91267769863313, 0.7512916], [97.95, 231.55885596015344, 0.7510205], [97.96, 232.12092689866594, 0.5906149], [97.97, 231.99707468557511, 0.53544384], [97.98, 231.8948324131533, 0.36044896], [97.99, 210.91732921594325, 0.103271514], [98.0, 190.7990640614494, 0.2650118], [98.01, 173.3248006775341, 0.2583364], [98.02, 156.6001838004847, 0.097245164], [98.03, 143.7058880235232, 0.13789956], [98.04, 142.63230039274015, 0.14281161], [98.05, 142.70115587773304, 0.2022152], [98.06, 141.39626434829322, 0.07172652], [98.07, 140.5773751000363, 0.255456], [98.08, 139.97641525664775, 0.30393174], [98.09, 139.92657402905368, 0.37987012], [98.1, 139.33366162538255, 0.5026333], [98.11, 139.43281142836906, 0.3457077], [98.12, 140.97551074599642, 0.2420001], [98.13, 144.14149766799127, 0.29563913], [98.14, 145.20489215398217, 0.29634422], [98.15, 148.5289304133713, 0.26394475], [98.16, 151.23045350147487, 0.43657985], [98.17, 152.9397404028592, 0.5058004], [98.18, 154.17369439461106, 0.5059585], [98.19, 154.68128680318048, 0.42441046], [98.2, 154.48042774191032, 0.61008006], [98.21, 154.70298725377563, 0.56480443], [98.22, 154.33090154063154, 0.49261823], [98.23, 154.48188971501372, 0.4976332], [98.24, 154.67674525941013, 0.53748], [98.25, 155.56476524971532, 0.6619949], [98.26, 155.43562304324865, 0.5971016], [98.27, 155.19354287153254, 0.51402795], [98.28, 155.6752299115526, 0.39451858], [98.29, 174.39803229393112, 0.16141133], [98.3, 191.05977012376854, 0.25372356], [98.31, 212.81521203456924, 0.28592804], [98.32, 232.3268750945057, 0.20061831], [98.33, 231.6628981556221, 0.6440424], [98.34, 231.93030320660154, 0.71413124], [98.35, 233.44021975892875, 0.76671636], [98.36, 234.38683918276706, 0.7870174], [98.37, 234.44423448630712, 0.8257468], [98.38, 234.24342575297425, 0.75403714], [98.39, 233.9730279784444, 0.76186967], [98.4, 233.48171215443676, 0.71986306], [98.41, 232.7091113241732, 0.66805583], [98.42, 233.0996617347745, 0.64782685], [98.43, 231.4001123247182, 0.4198], [98.44, 230.78122349321805, 0.27993095], [98.45, 228.45411317468918, 0.28554788], [98.46, 230.87396467298447, 0.085957274], [98.47, 211.21656906565445, 0.08170897], [98.48, 190.9762464828033, 0.06761259], [98.49, 173.54547123787182, 0.50590336], [98.5, 158.0288590664248, 0.45505327], [98.51, 145.42357519154297, 0.20168309], [98.52, 139.6088463400752, 0.3972056], [98.53, 128.84471080861445, 0.43219268], [98.54, 118.09065872409859, 0.5489782], [98.55, 109.99876539229894, 0.2848826], [98.56, 100.46773159443799, 0.1482542], [98.57, 91.52826391121741, 0.27544487], [98.58, 86.92146504177161, 0.49989575], [98.59, 78.69278843829039, 0.4658972], [98.6, 72.74830770617436, 0.36753583], [98.61, 66.47606131529939, 0.13035305], [98.62, 61.18501024225714, 0.43489137], [98.63, 56.06921166770299, 0.6229671], [98.64, 52.43085791413403, 0.49257573], [98.65, 46.28381094618642, 0.19852555], [98.66, 44.16220210258502, 0.23221849], [98.67, 43.73212746837369, 0.69164604], [98.68, 44.000378210125994, 0.77424127], [98.69, 43.97056494411259, 0.725757], [98.7, 43.9654329299027, 0.6394216], [98.71, 43.96251430877327, 0.16347314], [98.72, 43.95526952849739, 0.07518996], [98.73, 44.302805384920426, 0.07213381], [98.74, 43.579604317846176, 0.07668127], [98.75, 43.483874066639565, 0.076284215], [98.76, 43.43302948603792, 0.06420685], [98.77, 43.370780366014195, 0.11645638], [98.78, 43.528484060028454, 0.12950766], [98.79, 43.58840323472635, 0.15147468], [98.8, 43.53070029873094, 0.10695283], [98.81, 43.27129681715418, 0.26015538], [98.82, 43.37118866576381, 0.35624892], [98.83, 43.519771883269684, 0.55947304], [98.84, 43.680515152726585, 0.7386242], [98.85, 43.72633495653682, 0.67035633], [98.86, 43.8550280189238, 0.73062724], [98.87, 43.75873680720724, 0.6983464], [98.88, 43.734212491361674, 0.76005626], [98.89, 43.917834267262734, 0.79000145], [98.9, 43.56836493846557, 0.6949574], [98.91, 43.35306128167328, 0.6784393], [98.92, 43.027262499034265, 0.33492908], [98.93, 41.403132509202756, 0.15359947], [98.94, 35.95727512336324, 0.51148677], [98.95, 33.5872987737978, 0.66199434], [98.96, 32.185036613492855, 0.7430963], [98.97, 32.10515921326669, 0.76076674], [98.98, 32.17676877970182, 0.5621692], [98.99, 32.31076038240146, 0.3662978], [99.0, 32.393357688188786, 0.34301752], [99.01, 32.39735892816162, 0.36763182], [99.02, 32.4524070304012, 0.2537987], [99.03, 32.50282767042033, 0.21046159], [99.04, 32.51114407810195, 0.32224974], [99.05, 32.48755118910194, 0.28842047], [99.06, 32.43610826219229, 0.32250485], [99.07, 32.470950528395136, 0.30413374], [99.08, 32.61187372959949, 0.24624854], [99.09, 32.55815690633709, 0.1419691], [99.1, 32.45068632730619, 0.18844765], [99.11, 32.32029283203249, 0.4190375], [99.12, 32.382384248023854, 0.41360214], [99.13, 32.56484605916311, 0.21399635], [99.14, 32.541216218615595, 0.17810497], [99.15, 32.5743375941044, 0.5078444], [99.16, 32.47348387456624, 0.63115025], [99.17, 32.41822195824364, 0.546581], [99.18, 32.50037083993152, 0.6921407], [99.19, 32.588860391706, 0.67145103], [99.2, 32.608707854106996, 0.7483346], [99.21, 32.70334106877451, 0.67943877], [99.22, 32.590014333477214, 0.5300208], [99.23, 32.560363484011795, 0.4264509], [99.24, 32.54907568592077, 0.39595595], [99.25, 32.68675854139028, 0.42761347], [99.26, 32.708725781375584, 0.32990152], [99.27, 33.045492645366664, 0.5303888], [99.28, 34.73039582177946, 0.2566319], [99.29, 35.044966244881195, 0.25206748], [99.3, 37.03293239556882, 0.18980813], [99.31, 41.427922850097936, 0.30890447], [99.32, 44.09758039728368, 0.31273183], [99.33, 46.938651339528484, 0.5971741], [99.34, 47.94043290860717, 0.67633015], [99.35, 48.982619883303364, 0.6674369], [99.36, 51.36847765874303, 0.43084532], [99.37, 51.695904525804906, 0.08524614], [99.38, 47.31309118904822, 0.084989004], [99.39, 41.68752448759943, 0.1505784], [99.4, 42.83506836235656, 0.14545806], [99.41, 44.0978462424954, 0.21403553], [99.42, 44.85156216059597, 0.14634995], [99.43, 44.0127909157051, 0.12105936], [99.44, 44.62055156647313, 0.08980789], [99.45, 44.40882968190881, 0.16760536], [99.46, 44.1456087752172, 0.3647022], [99.47, 44.63153415573358, 0.53579336], [99.48, 45.580558652370584, 0.66791683], [99.49, 46.17066854353969, 0.6266876], [99.5, 46.68981839920245, 0.42707023], [99.51, 47.02110537645133, 0.37587938], [99.52, 48.12388552864594, 0.26783523], [99.53, 48.29369091379743, 0.19151092], [99.54, 48.37352253046657, 0.17248917], [99.55, 47.95223223675486, 0.32446098], [99.56, 47.55006005734502, 0.62929577], [99.57, 47.68957748557628, 0.42680582], [99.58, 47.32337015342984, 0.46536955], [99.59, 47.56035928954917, 0.2828494], [99.6, 47.279970492058055, 0.38466826], [99.61, 45.3369513601116, 0.3573903], [99.62, 44.27987416924981, 0.30584818], [99.63, 44.51712024272092, 0.2833553], [99.64, 44.2670768964884, 0.18243197], [99.65, 44.61578166558382, 0.18836889], [99.66, 45.05156241826708, 0.33300674], [99.67, 45.44928360184364, 0.41321102], [99.68, 45.370006966426686, 0.32194525], [99.69, 45.38927321736044, 0.2161659], [99.7, 45.618031835812765, 0.29945457], [99.71, 46.153856854311286, 0.42247254], [99.72, 45.805785735449945, 0.29827312], [99.73, 45.260685742366896, 0.43687236], [99.74, 45.01437385430643, 0.43201333], [99.75, 46.45768243187241, 0.4237443], [99.76, 46.66096206041001, 0.2540085], [99.77, 45.267234251008574, 0.3175462], [99.78, 44.44006069110378, 0.26651067], [99.79, 45.05966495542849, 0.2869293], [99.8, 45.94792231215, 0.5368419], [99.81, 46.30255698021681, 0.6150999], [99.82, 46.42006073755758, 0.5396054], [99.83, 46.39540396568372, 0.4663028], [99.84, 46.76512566278763, 0.2451659], [99.85, 46.270042257317854, 0.09872858], [99.86, 44.972899431330255, 0.26393092], [99.87, 44.84918714196779, 0.39520037], [99.88, 45.54219933232612, 0.19772956], [99.89, 45.64294355672311, 0.09140321], [99.9, 44.46277037443579, 0.1472312], [99.91, 44.688842778384874, 0.19371742], [99.92, 45.011642921410555, 0.20328884], [99.93, 45.76199443463719, 0.18704745], [99.94, 46.16146115752458, 0.28931427], [99.95, 45.153610517449955, 0.30541503], [99.96, 43.817205969141575, 0.42099577], [99.97, 43.69187924558781, 0.44182828], [99.98, 43.889964097348894, 0.3180785], [99.99, 44.034558417174665, 0.35176247], [100.0, 43.59693700234291, 0.35079885], [100.01, 43.99611024676641, 0.50528693], [100.02, 44.46714635035117, 0.56180507], [100.03, 44.20791657931573, 0.6644868], [100.04, 43.816636470838866, 0.6690897], [100.05, 43.84274352645747, 0.58561695], [100.06, 44.289197977206825, 0.4440935], [100.07, 44.78805869359103, 0.18403588], [100.08, 45.12887091670875, 0.54703534], [100.09, 44.98609943116862, 0.6398271], [100.1, 45.827327530250564, 0.6283788], [100.11, 46.24830847114157, 0.7207778], [100.12, 45.89750288935922, 0.6224177], [100.13, 45.07772108926556, 0.58525306], [100.14, 44.57558304784374, 0.4175864], [100.15, 45.01532104662557, 0.30305225], [100.16, 45.75840309269114, 0.4776945], [100.17, 45.93153783435489, 0.56787467], [100.18, 45.08362067282451, 0.63034236], [100.19, 45.02564676251342, 0.6176783], [100.2, 44.93941638406603, 0.6407812], [100.21, 45.47387159271764, 0.60962886], [100.22, 46.19003832264848, 0.70044976], [100.23, 47.017171194076745, 0.6263166], [100.24, 46.975198370211324, 0.6765823], [100.25, 47.117425752429966, 0.6934797], [100.26, 46.353564382449065, 0.6443345], [100.27, 46.24826983935969, 0.71685594], [100.28, 45.47229314175813, 0.6634342], [100.29, 45.576699499297966, 0.6299338], [100.3, 50.12754514171027, 0.61120147], [100.31, 58.30527508386527, 0.63429946], [100.32, 64.73610925953764, 0.5782961], [100.33, 73.30153890821592, 0.20189793], [100.34, 81.67756419644209, 0.44014663], [100.35, 93.44581619745284, 0.33476722], [100.36, 104.01013304354343, 0.43288592], [100.37, 115.4041795033267, 0.4272527], [100.38, 129.6967984874166, 0.33385038], [100.39, 140.4465391591524, 0.45214796], [100.4, 161.52382694290398, 0.24988136], [100.41, 174.91290658403227, 0.3319892], [100.42, 175.1518225595226, 0.551684], [100.43, 176.73239856138966, 0.64212215], [100.44, 177.63382983746772, 0.67014855], [100.45, 178.82752100233762, 0.6485755], [100.46, 181.8433460392299, 0.59070987], [100.47, 181.68666173451274, 0.5234564], [100.48, 181.76874055720936, 0.54047984], [100.49, 181.7798167016789, 0.5573834], [100.5, 183.31046554929432, 0.43727803], [100.51, 179.3923396240008, 0.29381505], [100.52, 193.4348334369473, 0.32916313], [100.53, 202.09642517602367, 0.2131939], [100.54, 204.8131475698074, 0.21555606], [100.55, 207.3326763412241, 0.15320058], [100.56, 210.44869439773743, 0.17914508], [100.57, 211.99696599783283, 0.48282182], [100.58, 209.01566575690129, 0.63604397], [100.59, 207.57105982535228, 0.7206415], [100.6, 205.49731347215837, 0.6855278], [100.61, 205.0661483652329, 0.5836682], [100.62, 205.69720181934417, 0.36245388], [100.63, 206.2419593177275, 0.34811682], [100.64, 197.72868298205356, 0.47462294], [100.65, 189.19828265178307, 0.46087182], [100.66, 183.77169950397456, 0.3224428], [100.67, 179.18532524019824, 0.18027417], [100.68, 174.77077349209722, 0.1647806], [100.69, 171.99083489340433, 0.2161042], [100.7, 161.1934263481444, 0.21492828], [100.71, 142.15597127003042, 0.15357241], [100.72, 134.28406957884707, 0.28291237], [100.73, 135.80357448879136, 0.3710044], [100.74, 138.18693865149524, 0.3818597], [100.75, 138.6865001105004, 0.53799325], [100.76, 138.25157474310447, 0.39595404], [100.77, 139.7734171302177, 0.17933756], [100.78, 139.31248078687406, 0.12077974], [100.79, 154.9549009725411, 0.16062589], [100.8, 169.76650574145344, 0.26171172], [100.81, 168.07979774548858, 0.2499303], [100.82, 161.64355103841513, 0.12875757], [100.83, 156.89633642715887, 0.14877208], [100.84, 158.14429074993453, 0.41040975], [100.85, 159.03664085535394, 0.6086879], [100.86, 159.8154384875471, 0.65792227], [100.87, 160.6234599040182, 0.671251], [100.88, 160.1171946599025, 0.693867], [100.89, 159.12061083568335, 0.63855416], [100.9, 156.61011265791308, 0.31729746], [100.91, 155.17235204780948, 0.28782788], [100.92, 154.4504712296664, 0.114493005], [100.93, 151.75589207125282, 0.13740127], [100.94, 147.27067762887, 0.16301878], [100.95, 145.58043463791057, 0.27767304], [100.96, 151.7996649759636, 0.26599446], [100.97, 161.12693127995732, 0.24852835], [100.98, 167.31251336597538, 0.29030544], [100.99, 173.09802015919132, 0.31570598], [101.0, 175.69272737977275, 0.30465072], [101.01, 177.62179565511462, 0.23034176], [101.02, 177.2223999265378, 0.24432075], [101.03, 170.3254333678837, 0.300265], [101.04, 151.27133350473161, 0.29524052], [101.05, 140.9932319471447, 0.13782774], [101.06, 142.0801158519677, 0.21764381], [101.07, 126.12983374034059, 0.22492741], [101.08, 115.8140849179115, 0.17412437], [101.09, 106.2472899770728, 0.08492487], [101.1, 93.55823684297279, 0.2737445], [101.11, 83.71667962100219, 0.3997065], [101.12, 76.15669052489373, 0.27719325], [101.13, 69.5195048824941, 0.46348608], [101.14, 60.91059323932073, 0.64280504], [101.15, 55.202800910155744, 0.5890801], [101.16, 47.615779299955136, 0.5614121], [101.17, 42.69035078954375, 0.27674577], [101.18, 38.44028570591589, 0.31652975], [101.19, 38.61101478882978, 0.4696917], [101.2, 38.63058459935505, 0.7467296], [101.21, 38.739398290974, 0.77426004], [101.22, 38.68026902612606, 0.81470865], [101.23, 38.85926628877585, 0.8033102], [101.24, 38.54786307884729, 0.81148905], [101.25, 38.64735978092064, 0.81406057], [101.26, 38.58834015999024, 0.79539514], [101.27, 37.79093525324795, 0.49253708], [101.28, 36.953180180812424, 0.546489], [101.29, 36.933202559636705, 0.4452088], [101.3, 33.765962799513446, 0.15919895], [101.31, 32.16595329267808, 0.10865668], [101.32, 32.13751729318989, 0.25677353], [101.33, 32.14254566376986, 0.21268795], [101.34, 31.980527727700725, 0.41117415], [101.35, 31.91237622561294, 0.44758052], [101.36, 31.889967268606988, 0.42059904], [101.37, 31.85341880766497, 0.51499975], [101.38, 31.861737091042755, 0.3048083], [101.39, 31.915950012721726, 0.37669936], [101.4, 35.26005754118557, 0.19046278], [101.41, 37.293528756025964, 0.12906396], [101.42, 40.62623462378464, 0.1194106], [101.43, 45.52255208240271, 0.06468659], [101.44, 48.02946902027721, 0.16050395], [101.45, 47.5983809818739, 0.22755645], [101.46, 47.65637817776565, 0.40477777], [101.47, 46.92741130259713, 0.41123486], [101.48, 47.056422419152014, 0.41397658], [101.49, 46.582986024505345, 0.39001223], [101.5, 46.42661247807105, 0.39219368], [101.51, 46.239023243568546, 0.35782745], [101.52, 46.29072191233515, 0.43271995], [101.53, 45.911023242889726, 0.35597935], [101.54, 46.11416958805919, 0.3144683], [101.55, 45.92310829724252, 0.36711615], [101.56, 46.30084594939597, 0.29099053], [101.57, 46.2696457984335, 0.5173409], [101.58, 46.24916761952697, 0.39111003], [101.59, 46.33204206794954, 0.54333824], [101.6, 46.25455741065796, 0.40139586], [101.61, 46.17233589126917, 0.47346777], [101.62, 46.219634950137774, 0.4933617], [101.63, 46.71626677318437, 0.5447574], [101.64, 46.588353578853145, 0.56478024], [101.65, 47.077255279701504, 0.55190444], [101.66, 47.30848988174719, 0.45822734], [101.67, 46.86706829786772, 0.5331157], [101.68, 46.63518419460644, 0.495667], [101.69, 46.58398461062414, 0.55734664], [101.7, 46.53004544982453, 0.5587884], [101.71, 46.37900539209929, 0.60531366], [101.72, 46.50497551872333, 0.5843468], [101.73, 46.259931151061494, 0.65837544], [101.74, 46.48891138813777, 0.5643862], [101.75, 46.3491751889649, 0.5167759], [101.76, 46.6485728072832, 0.5082891], [101.77, 47.339652184970376, 0.38145214], [101.78, 47.82891235755126, 0.3437613], [101.79, 48.097426022259135, 0.12431988], [101.8, 47.75402991534193, 0.14170705], [101.81, 48.16134981357102, 0.1834947], [101.82, 48.277235931294086, 0.23818238], [101.83, 48.76984980895804, 0.12358137], [101.84, 48.34024322554461, 0.10019471], [101.85, 48.41893154622334, 0.09496968], [101.86, 48.38823609667698, 0.09099353], [101.87, 48.49436653315437, 0.28388885], [101.88, 48.39101728381226, 0.12809093], [101.89, 48.203316855447866, 0.12262927], [101.9, 47.5082023873702, 0.101767175], [101.91, 47.4130019469512, 0.2618549], [101.92, 47.37319906199269, 0.17660207], [101.93, 47.30640519832663, 0.49172488], [101.94, 47.59155378479551, 0.398321], [101.95, 47.187696543641124, 0.42024687], [101.96, 46.91023206715053, 0.31135163], [101.97, 47.32107868901991, 0.18080156], [101.98, 46.68508762816106, 0.45771158], [101.99, 46.66535715503008, 0.4529223], [102.0, 46.66730682110638, 0.54593945], [102.01, 46.368270994137, 0.5478734], [102.02, 46.5830685721143, 0.59474635], [102.03, 46.62450973880567, 0.5597978], [102.04, 46.89944469288962, 0.659786], [102.05, 46.527851445994486, 0.49991772], [102.06, 46.66532915574439, 0.6629463], [102.07, 46.58547574559596, 0.6335044], [102.08, 46.61407068489239, 0.7461992], [102.09, 46.48734287286058, 0.77114064], [102.1, 46.582374378381, 0.77722365], [102.11, 46.6618096324908, 0.7811196], [102.12, 46.549943864384, 0.8079806], [102.13, 46.65646462075369, 0.80725926], [102.14, 46.537531212660696, 0.82634324], [102.15, 46.765876346772316, 0.7596723], [102.16, 46.37536755711138, 0.6546933], [102.17, 44.99441780712062, 0.58322394], [102.18, 44.5878118964313, 0.47186095], [102.19, 48.93371991260228, 0.29726887], [102.2, 50.16279610063314, 0.21905352], [102.21, 51.024834639109784, 0.18464576], [102.22, 51.22484384507943, 0.17230327], [102.23, 52.020637074177785, 0.28345507], [102.24, 52.46916340308662, 0.4095148], [102.25, 52.448462528884356, 0.65282804], [102.26, 52.81646574451446, 0.6130406], [102.27, 52.47453178445628, 0.38376635], [102.28, 52.74671067013193, 0.35803536], [102.29, 52.849387041640064, 0.5957752], [102.3, 52.66835344332658, 0.7305462], [102.31, 52.296176996129574, 0.7300126], [102.32, 51.91764947010399, 0.77859473], [102.33, 51.64946052279531, 0.71432656], [102.34, 51.888306669233856, 0.78788954], [102.35, 52.14697620233694, 0.7599237], [102.36, 52.76843441077615, 0.6928103], [102.37, 52.517264555076835, 0.49036354], [102.38, 52.612084724704104, 0.4207875], [102.39, 52.409814428407216, 0.5015844], [102.4, 52.066974141526046, 0.6992738], [102.41, 51.8219352683716, 0.6567192], [102.42, 51.85182201739483, 0.7271235], [102.43, 51.8474093344074, 0.643696], [102.44, 51.820065769206494, 0.57921606], [102.45, 52.80571621779244, 0.26736417], [102.46, 52.84257902983296, 0.54710376], [102.47, 53.59934258444006, 0.39307806], [102.48, 52.543062630628484, 0.34829038], [102.49, 52.13140217077466, 0.12361377], [102.5, 54.76341512024777, 0.046746477], [102.51, 58.28914445979035, 0.16619259], [102.52, 64.00535322109226, 0.20100538], [102.53, 67.59189421814264, 0.07930958], [102.54, 70.78712654949447, 0.10225076], [102.55, 77.57666397731792, 0.14098106], [102.56, 82.07656082866924, 0.34322777], [102.57, 85.18305652410304, 0.38488987], [102.58, 88.72300001255242, 0.17025965], [102.59, 97.05060746238559, 0.08203147], [102.6, 104.51662500914763, 0.06297091], [102.61, 107.76788280982274, 0.16407152], [102.62, 106.8623029782251, 0.27723143], [102.63, 106.60629508829496, 0.20896953], [102.64, 106.60906026169279, 0.21973675], [102.65, 107.02531155853647, 0.2067623], [102.66, 110.22883533408861, 0.14148985], [102.67, 118.57167675034364, 0.27301547], [102.68, 124.44114225982567, 0.20867947], [102.69, 131.69449156173962, 0.29941374], [102.7, 142.27362811015394, 0.36201602], [102.71, 148.53646495618545, 0.28701097], [102.72, 152.47330740625708, 0.20524094], [102.73, 158.64193820389235, 0.11388456], [102.74, 169.42624660375066, 0.19664636], [102.75, 173.00690963381527, 0.37084475], [102.76, 174.5469851456063, 0.37496844], [102.77, 175.90677681030027, 0.37483904], [102.78, 174.70180294267755, 0.34984192], [102.79, 174.69296319272442, 0.3774777], [102.8, 192.07693611636117, 0.14799179], [102.81, 215.10646742162763, 0.18863814], [102.82, 243.21806608218694, 0.2229869], [102.83, 267.6300287243097, 0.122931905], [102.84, 294.9005669238999, 0.22186309], [102.85, 289.8329950706586, 0.1534828], [102.86, 280.1457831105445, 0.20698981], [102.87, 274.301748633527, 0.14273518], [102.88, 293.4701960805388, 0.25541377], [102.89, 328.99406801494047, 0.20348756], [102.9, 369.0600392111297, 0.2193554], [102.91, 388.2698828504498, 0.2695232], [102.92, 394.5428427891926, 0.4644296], [102.93, 396.78185161411227, 0.6993683], [102.94, 398.7644246935252, 0.79692227], [102.95, 398.87445761122865, 0.7176516], [102.96, 395.9848811850811, 0.59637463], [102.97, 390.3034558131453, 0.50139827], [102.98, 376.49052354905757, 0.3694804], [102.99, 376.0401761344041, 0.24039458], [103.0, 373.18134017039347, 0.1805178], [103.01, 374.50873101212403, 0.26693392], [103.02, 375.6706791383183, 0.32323316], [103.03, 378.77351049104266, 0.30112693], [103.04, 378.38036589520465, 0.33197263], [103.05, 382.0495225340971, 0.11412846], [103.06, 382.53691448880465, 0.12606567], [103.07, 379.31277133749086, 0.38941154], [103.08, 373.98111481911855, 0.38122964], [103.09, 372.6380242062672, 0.32832024], [103.1, 369.3705795998095, 0.23026589], [103.11, 365.87011021804045, 0.19406945], [103.12, 359.6040178529955, 0.19703], [103.13, 347.2139108289915, 0.31961972], [103.14, 340.1273549987984, 0.19280638], [103.15, 343.32645227415554, 0.266298], [103.16, 341.57755147980913, 0.16423896], [103.17, 334.01104697355004, 0.14714374], [103.18, 322.6227865991305, 0.29772386], [103.19, 320.48593260560824, 0.25220346], [103.2, 315.76661046875586, 0.43019432], [103.21, 315.01376498888396, 0.15534374], [103.22, 315.55257571191936, 0.20516345], [103.23, 316.66006987744777, 0.21016619], [103.24, 329.9429698565789, 0.15243132], [103.25, 346.99465600454806, 0.2726805], [103.26, 353.4729044803519, 0.47554624], [103.27, 384.10273647956814, 0.33117348], [103.28, 395.95193883289187, 0.13601772], [103.29, 404.9751662594223, 0.33718774], [103.3, 426.27848148590044, 0.18191513], [103.31, 436.7239618805741, 0.14340805], [103.32, 433.74870608910106, 0.06984222], [103.33, 471.3833553062709, 0.19306895], [103.34, 461.5359702979799, 0.11026908], [103.35, 439.0162158096414, 0.33621845], [103.36, 411.2574966422568, 0.3777831], [103.37, 397.6559412596027, 0.1760404], [103.38, 406.8530293616311, 0.22586218], [103.39, 407.6477332541393, 0.25823528], [103.4, 413.8350659312017, 0.4800998], [103.41, 416.0609895592114, 0.34748197], [103.42, 421.97115723357877, 0.28674203], [103.43, 426.9854841861977, 0.31340757], [103.44, 427.3268914157731, 0.38133767], [103.45, 424.4306807898365, 0.37709847], [103.46, 411.9008692943863, 0.33840692], [103.47, 411.2825278198401, 0.2027886], [103.48, 410.6852443699512, 0.31221065], [103.49, 411.96069088399616, 0.36838636], [103.5, 415.6464195117011, 0.46270427], [103.51, 415.5990859573007, 0.44408417], [103.52, 402.53281388273376, 0.40470603], [103.53, 369.82333729024515, 0.3733103], [103.54, 334.05909410708483, 0.405883], [103.55, 317.2923037788001, 0.287421], [103.56, 284.54996845966406, 0.44791424], [103.57, 278.6508963570519, 0.55175346], [103.58, 266.0073817662781, 0.5067866], [103.59, 235.46739282215398, 0.5420645], [103.6, 222.04233696326267, 0.6956633], [103.61, 205.7509065205362, 0.70936656], [103.62, 193.53939895589204, 0.6470061], [103.63, 175.3842362020137, 0.46944827], [103.64, 164.34817281922508, 0.5491631], [103.65, 146.1592812173027, 0.4860216], [103.66, 139.6340781568723, 0.6445468], [103.67, 139.55029932199915, 0.65266305], [103.68, 138.84495053973663, 0.6827215], [103.69, 138.9610806075545, 0.75862527], [103.7, 138.53213740911787, 0.8175831], [103.71, 138.075716080051, 0.79315436], [103.72, 137.85510824539574, 0.68154514], [103.73, 137.85318106823684, 0.609986], [103.74, 134.95244771083807, 0.5457028], [103.75, 120.90218433827147, 0.43801296], [103.76, 113.70540217174772, 0.17324895], [103.77, 111.50606465955617, 0.20653595], [103.78, 105.8615604889855, 0.39167273], [103.79, 94.67283746836793, 0.39093438], [103.8, 92.48852835275451, 0.42075637], [103.81, 88.8441305021793, 0.22110248], [103.82, 80.62683670387, 0.23041072], [103.83, 74.31008895197164, 0.29717013], [103.84, 69.9945845383645, 0.36052248], [103.85, 67.12373293281252, 0.29197833], [103.86, 58.91783038358375, 0.13654947], [103.87, 57.286754367126164, 0.2690777], [103.88, 57.23791744784022, 0.2698306], [103.89, 57.221523657380345, 0.46835345], [103.9, 57.502584492390085, 0.50444174], [103.91, 57.234803237156335, 0.45007318], [103.92, 56.863272885759656, 0.48496345], [103.93, 57.517039178037486, 0.5671231], [103.94, 57.24880054831093, 0.47997352], [103.95, 57.73302920192214, 0.37119144], [103.96, 57.37030509602416, 0.48779377], [103.97, 57.135551776270674, 0.43767765], [103.98, 56.852935204995504, 0.5788154], [103.99, 56.29923796656322, 0.47501183], [104.0, 58.051230111952215, 0.27940482], [104.01, 58.24917908406619, 0.2615967], [104.02, 58.618894053463706, 0.33373654], [104.03, 57.96553009490065, 0.61188734], [104.04, 58.32954049430428, 0.68122965], [104.05, 58.4758504265901, 0.6187806], [104.06, 57.73291119735879, 0.56216747], [104.07, 58.1026144662981, 0.64214975], [104.08, 57.73519234103859, 0.40192533], [104.09, 54.97599421767823, 0.17304863], [104.1, 51.529205938346266, 0.29755116], [104.11, 48.796175575894516, 0.1669921], [104.12, 43.632867583195676, 0.14529286], [104.13, 42.13618766478362, 0.25301802], [104.14, 42.59488802675743, 0.21259883], [104.15, 42.48391214383393, 0.19793516], [104.16, 42.47814291842114, 0.22896363], [104.17, 42.50407400627885, 0.14223377], [104.18, 43.074189468428926, 0.08045069], [104.19, 43.36923497536861, 0.20696169], [104.2, 43.7090131218169, 0.37675017], [104.21, 43.86742445154222, 0.4655357], [104.22, 43.94882665584091, 0.42732805], [104.23, 43.92216712279417, 0.6387963], [104.24, 44.12273241879429, 0.6151129], [104.25, 43.78052399854107, 0.64773786], [104.26, 43.730600406187335, 0.66692287], [104.27, 43.596923723663146, 0.50533015], [104.28, 43.742173649536404, 0.47517172], [104.29, 43.77701596024973, 0.27370164], [104.3, 43.64828101560099, 0.31456357], [104.31, 43.41682541837329, 0.26461658], [104.32, 43.34254323153921, 0.23282942], [104.33, 43.46799697495197, 0.1865127], [104.34, 43.29377646627321, 0.31441838], [104.35, 43.4233324478355, 0.3808019], [104.36, 43.24998627628382, 0.29654914], [104.37, 43.397471714802265, 0.27506796], [104.38, 43.39298783110782, 0.12929448], [104.39, 43.43656324040788, 0.1708726], [104.4, 43.65197199620802, 0.24953589], [104.41, 43.54934403022846, 0.2204007], [104.42, 43.06570246197676, 0.21285036], [104.43, 43.35972526543494, 0.23620597], [104.44, 43.79141743046227, 0.23823684], [104.45, 43.58065795834996, 0.2504935], [104.46, 43.814084476164126, 0.25582632], [104.47, 43.872932685270285, 0.29992715], [104.48, 43.9104802294812, 0.3275285], [104.49, 43.87863704724196, 0.3465079], [104.5, 43.812010520440275, 0.47521913], [104.51, 43.87202735694234, 0.62663627], [104.52, 43.78186701507218, 0.44154167], [104.53, 43.715533771984255, 0.3638171], [104.54, 43.510954374996714, 0.15191054], [104.55, 43.75061175901337, 0.23227619], [104.56, 44.234311630535444, 0.18525475], [104.57, 44.336069859027525, 0.31281668], [104.58, 43.864312185142296, 0.14419594], [104.59, 43.675669409967306, 0.45961413], [104.6, 43.72711015192923, 0.44108856], [104.61, 43.73891827111023, 0.38333872], [104.62, 43.89134613648676, 0.46774575], [104.63, 43.797847605256955, 0.39113095], [104.64, 43.65114170527379, 0.5412144], [104.65, 43.70328462263308, 0.5819542], [104.66, 43.48345880351977, 0.65080446], [104.67, 43.608608129204505, 0.7130938], [104.68, 43.57447071287035, 0.6060558], [104.69, 43.81704111171412, 0.5626423], [104.7, 43.765046004446916, 0.4714088], [104.71, 43.77580519467786, 0.54994005], [104.72, 44.03300379449509, 0.48692057], [104.73, 43.86320807950384, 0.57219094], [104.74, 43.782248452215875, 0.65824026], [104.75, 43.70615290752078, 0.6649269], [104.76, 43.71572883674464, 0.52772295], [104.77, 43.47292408290927, 0.528989], [104.78, 43.858878794156126, 0.1632051], [104.79, 44.81627737024226, 0.3254264], [104.8, 46.694013097633615, 0.23882836], [104.81, 47.432989105516306, 0.26431906], [104.82, 48.41967467044302, 0.27110946], [104.83, 49.159232423264925, 0.1489359], [104.84, 50.509757970795725, 0.2176541], [104.85, 52.646412517444794, 0.5108874], [104.86, 53.32202745722305, 0.5682127], [104.87, 54.566061031096524, 0.55111986], [104.88, 56.20373439978346, 0.4654041], [104.89, 57.15888596701213, 0.48474503], [104.9, 57.79541304693643, 0.54169875], [104.91, 58.017982068816146, 0.43696532], [104.92, 57.97947090958673, 0.25945517], [104.93, 58.88689743320558, 0.1483511], [104.94, 58.717137969295194, 0.14303158], [104.95, 58.62421319584608, 0.26163507], [104.96, 59.559862380427084, 0.10276452], [104.97, 59.52325293992086, 0.119473554], [104.98, 58.77768337935339, 0.16333471], [104.99, 59.3820986607692, 0.26960927], [105.0, 59.119794577975284, 0.43612427], [105.01, 59.72887449542647, 0.57115567], [105.02, 60.43522089147683, 0.3069732], [105.03, 62.57943352003181, 0.40639365], [105.04, 68.75056430896187, 0.15962762], [105.05, 72.030315095432, 0.15653583], [105.06, 75.46426295336988, 0.32230446], [105.07, 77.2363431934026, 0.3201697], [105.08, 84.1321820315946, 0.11992654], [105.09, 96.89044683934284, 0.30622265], [105.1, 105.37537093427292, 0.1065468], [105.11, 116.75473871201305, 0.47683963], [105.12, 126.39775190120987, 0.5763026], [105.13, 147.61750380048903, 0.51560444], [105.14, 157.5797228579247, 0.38788056], [105.15, 181.3643820827593, 0.2852889], [105.16, 193.67537021830984, 0.33086672], [105.17, 217.36537997070178, 0.28744823], [105.18, 240.1480629924848, 0.44768167], [105.19, 265.4633641241506, 0.40616834], [105.2, 286.2953224131799, 0.3026793], [105.21, 317.8882331285018, 0.3142162], [105.22, 342.76110567929277, 0.35706693], [105.23, 391.14894820181314, 0.18519741], [105.24, 418.75324080417124, 0.37810555], [105.25, 420.87822340178764, 0.39968723], [105.26, 421.9522338047545, 0.7237896], [105.27, 421.91351007813927, 0.7712169], [105.28, 420.7261357198619, 0.80154157], [105.29, 418.58787819421116, 0.82874846], [105.3, 417.5203883898523, 0.86509776], [105.31, 416.6266082575337, 0.8588851], [105.32, 417.32031043464525, 0.86912966], [105.33, 416.99416872029695, 0.87314713], [105.34, 417.65471083890196, 0.88100123], [105.35, 417.53087344291976, 0.8828127], [105.36, 417.3834923036611, 0.8891867], [105.37, 416.68837185265403, 0.89235336], [105.38, 416.46620395881484, 0.8890029], [105.39, 415.9765801237268, 0.8918745], [105.4, 415.7325916911174, 0.8843131], [105.41, 415.90459812971426, 0.8892723], [105.42, 415.68291690866533, 0.8842914], [105.43, 415.8254282988214, 0.89048785], [105.44, 415.5310554532815, 0.88862497], [105.45, 414.7537025722847, 0.86903316], [105.46, 413.6399313936034, 0.87799746], [105.47, 413.47863179597323, 0.89431983], [105.48, 413.57046311537795, 0.88458014], [105.49, 413.63836107790564, 0.88443667], [105.5, 413.6721381176583, 0.8898982], [105.51, 413.349622224904, 0.8886649], [105.52, 413.95369546610226, 0.88660264], [105.53, 415.19074306877053, 0.89155823], [105.54, 417.17088438414726, 0.89092964], [105.55, 419.5238956953301, 0.86957854], [105.56, 420.7621707511513, 0.8847272], [105.57, 422.28969479500665, 0.88635445], [105.58, 423.08742210557534, 0.8789243], [105.59, 422.67817245574395, 0.879774], [105.6, 421.6615500520271, 0.8831682], [105.61, 418.6242650217463, 0.86828995], [105.62, 416.0253217002612, 0.88030916], [105.63, 413.0953617312065, 0.8657703], [105.64, 411.65504288532696, 0.89034075], [105.65, 410.3425443611804, 0.89194304], [105.66, 410.33883974114144, 0.89211065], [105.67, 410.96693207331833, 0.8896334], [105.68, 413.22493261237577, 0.89525044], [105.69, 415.3748651704188, 0.88782245], [105.7, 416.9363527445756, 0.8894751], [105.71, 418.0228481392046, 0.8853906], [105.72, 418.1593381327689, 0.8842282], [105.73, 419.1944409536313, 0.87195945], [105.74, 421.1297368545465, 0.8805201], [105.75, 426.25205587455025, 0.8364235], [105.76, 431.09179059382984, 0.80555296], [105.77, 436.9224122382069, 0.8329117], [105.78, 438.73780272266225, 0.8823581], [105.79, 436.501661972692, 0.8289475], [105.8, 430.3483045661392, 0.8076221], [105.81, 423.3802722421084, 0.74944246], [105.82, 418.3891498796552, 0.6909243], [105.83, 413.96528898256804, 0.5021946], [105.84, 399.08381285251346, 0.51217026], [105.85, 384.7653540399151, 0.36081144], [105.86, 364.1260084267584, 0.34486935], [105.87, 322.7906976144829, 0.24771802], [105.88, 290.68428270025885, 0.438576], [105.89, 270.07549391536133, 0.18791468], [105.9, 243.3367381067854, 0.3503382], [105.91, 237.3593587550299, 0.34932053], [105.92, 228.83521258687136, 0.09945255], [105.93, 216.27961337558756, 0.2007717], [105.94, 224.06560113039143, 0.13484688], [105.95, 238.69523857533994, 0.10461646], [105.96, 250.07157131189967, 0.13178113], [105.97, 258.61216712789167, 0.2624999], [105.98, 271.4778470535796, 0.38304502], [105.99, 291.50505323445896, 0.46544147], [106.0, 303.94860725109857, 0.4735877], [106.01, 313.7608862457128, 0.35376126], [106.02, 317.1585651856411, 0.7492931], [106.03, 314.3108857042602, 0.66902214], [106.04, 309.04418621070806, 0.5635606], [106.05, 305.7669212552536, 0.40759993], [106.06, 308.46594382473575, 0.24540806], [106.07, 314.82791646774945, 0.3788167], [106.08, 320.63130379457493, 0.25200534], [106.09, 324.88154750668315, 0.26422358], [106.1, 329.48591355912475, 0.5045734], [106.11, 335.6491210570839, 0.55028534], [106.12, 342.02426371022045, 0.6139495], [106.13, 347.62819361156687, 0.78738666], [106.14, 347.66345597925755, 0.81219715], [106.15, 347.93378153389534, 0.8265899], [106.16, 345.9541150442602, 0.8296673], [106.17, 343.5788121233269, 0.80646604], [106.18, 338.01624861180363, 0.6950147], [106.19, 329.8624845323213, 0.7089739], [106.2, 323.2730188787474, 0.7449161], [106.21, 318.13070320779354, 0.8239216], [106.22, 316.17249211638045, 0.8823436], [106.23, 314.32332176923995, 0.83936334], [106.24, 312.87054450754437, 0.8688968], [106.25, 311.5481546045788, 0.85497075], [106.26, 310.05607929204257, 0.8510227], [106.27, 309.8234867225131, 0.8640946], [106.28, 309.6079918710406, 0.87018925], [106.29, 309.37496620405807, 0.8670933], [106.3, 309.3374287632732, 0.8731966], [106.31, 309.2307972381898, 0.8798803], [106.32, 309.33243138869597, 0.87089384], [106.33, 309.6539100350379, 0.8593971], [106.34, 310.3768925449456, 0.84409523], [106.35, 310.7934872821971, 0.8523762], [106.36, 311.61073967714896, 0.8713176], [106.37, 312.12105845721476, 0.8771192], [106.38, 312.8028525062147, 0.8712338], [106.39, 313.3368238871839, 0.87805146], [106.4, 313.0535813120124, 0.87474746], [106.41, 312.1277132596326, 0.8765881], [106.42, 311.27951593896785, 0.87154347], [106.43, 309.95981042551597, 0.85285276], [106.44, 309.11747493602815, 0.86307776], [106.45, 308.57100250499013, 0.8672444], [106.46, 308.30167126984753, 0.8642494], [106.47, 308.5660115184016, 0.86181414], [106.48, 309.2423738109104, 0.8501244], [106.49, 310.1447128942574, 0.8370083], [106.5, 311.0505523068409, 0.8540726], [106.51, 311.8111005439545, 0.86643213], [106.52, 312.54602645870756, 0.8725341], [106.53, 312.95388097917265, 0.8572621], [106.54, 312.91286653067357, 0.8637164], [106.55, 312.5930826260352, 0.8750112], [106.56, 312.43735063764717, 0.8685691], [106.57, 312.60367161569013, 0.87947834], [106.58, 312.73736068936364, 0.8803477], [106.59, 312.6590816516714, 0.8764998], [106.6, 312.5378540213992, 0.8770257], [106.61, 312.67413209919437, 0.869155], [106.62, 312.64707127741804, 0.8719854], [106.63, 312.843866974004, 0.8781057], [106.64, 312.87039294605074, 0.87405163], [106.65, 312.64845850975587, 0.88239634], [106.66, 312.1773015306986, 0.8767912], [106.67, 310.9329165783344, 0.8541499], [106.68, 309.2179057900184, 0.86481446], [106.69, 308.960382023581, 0.8541967], [106.7, 308.9442212773144, 0.85813403], [106.71, 308.8803756522589, 0.84489685], [106.72, 308.7213502800759, 0.8396388], [106.73, 309.0697409706489, 0.8324847], [106.74, 306.93675959373286, 0.7239199], [106.75, 301.33805164386837, 0.56494266], [106.76, 294.101756981065, 0.44867656], [106.77, 295.4528531304398, 0.21336086], [106.78, 306.3214705489894, 0.42644796], [106.79, 309.710800960023, 0.590381], [106.8, 310.84225575321676, 0.5106745], [106.81, 311.22046914153276, 0.35450062], [106.82, 314.15771894091864, 0.4393724], [106.83, 319.2914610837186, 0.7055189], [106.84, 317.13382896912765, 0.7310808], [106.85, 318.4322941052043, 0.7312511], [106.86, 314.72149261660684, 0.4362209], [106.87, 318.8676719068367, 0.11720362], [106.88, 320.9904018427669, 0.09789872], [106.89, 321.23056536673016, 0.17868209], [106.9, 320.921525726333, 0.13674879], [106.91, 319.9942217017712, 0.28248456], [106.92, 316.36797394382086, 0.17984012], [106.93, 311.6487316369213, 0.14480786], [106.94, 313.7720673979592, 0.1895506], [106.95, 314.7601345681939, 0.441354], [106.96, 314.81846011156017, 0.7354626], [106.97, 308.2307690552077, 0.55976284], [106.98, 299.32104341164745, 0.58782035], [106.99, 296.7771029913936, 0.26991978], [107.0, 297.6990772872371, 0.3307874], [107.01, 301.37934146824, 0.34372804], [107.02, 307.4676293054736, 0.33690223], [107.03, 313.29075346837317, 0.27314246], [107.04, 317.84506342298437, 0.51286286], [107.05, 319.28166540885354, 0.68193775], [107.06, 319.8921425453326, 0.7448291], [107.07, 319.8205193021892, 0.7651047], [107.08, 318.8975658578645, 0.72417545], [107.09, 315.68753775111196, 0.6922561], [107.1, 311.4395936272815, 0.6816513], [107.11, 307.87781876986173, 0.7309603], [107.12, 304.8753796009428, 0.78937435], [107.13, 304.39295438948125, 0.82337695], [107.14, 304.9995682764039, 0.83925426], [107.15, 307.83664027134483, 0.78191876], [107.16, 311.98682127993584, 0.7899323], [107.17, 316.6101838281402, 0.8357234], [107.18, 317.77177505882, 0.807113], [107.19, 320.27709005103134, 0.8238334], [107.2, 321.38256970656164, 0.84958005], [107.21, 321.341324983213, 0.8480793], [107.22, 319.9231327758145, 0.8356087], [107.23, 316.26229490597655, 0.66340727], [107.24, 302.09086070627154, 0.45047596], [107.25, 287.7875046753368, 0.5047405], [107.26, 280.1921579520637, 0.3117912], [107.27, 265.47188752222934, 0.60548645], [107.28, 262.0189936990769, 0.4202805], [107.29, 287.78041112235604, 0.21759427], [107.3, 308.19934648491574, 0.20800225], [107.31, 311.99968007639444, 0.47616047], [107.32, 315.007427345878, 0.46159786], [107.33, 315.2308356922762, 0.43915668], [107.34, 313.1973086943176, 0.5272681], [107.35, 315.97987632189535, 0.35463732], [107.36, 315.49095332833656, 0.49578503], [107.37, 314.3146345179615, 0.7165789], [107.38, 316.3766110688285, 0.8387977], [107.39, 317.9318196545228, 0.8552955], [107.4, 319.43612347256686, 0.83930624], [107.41, 320.18730552440104, 0.8400705], [107.42, 317.52050924945894, 0.8317979], [107.43, 314.66926140846203, 0.8550018], [107.44, 311.9938938261523, 0.8513337], [107.45, 310.355674228461, 0.8457891], [107.46, 309.91632224410984, 0.8623327], [107.47, 311.05141700069726, 0.8565455], [107.48, 312.770118806395, 0.85435003], [107.49, 314.98672878437145, 0.8474446], [107.5, 317.3683758276838, 0.80669403], [107.51, 322.7466536161799, 0.75718415], [107.52, 326.4674228774119, 0.5410032], [107.53, 332.6566821889784, 0.4505329], [107.54, 342.9384803686146, 0.5320538], [107.55, 348.61156496386803, 0.76539403], [107.56, 350.81050274764544, 0.8807143], [107.57, 351.1095366585633, 0.88264525], [107.58, 350.2653101587779, 0.8780548], [107.59, 349.79134270364614, 0.8644541], [107.6, 348.52141522964956, 0.8439618], [107.61, 348.81630135147014, 0.8394703], [107.62, 348.4557519426637, 0.8167323], [107.63, 348.93895965788784, 0.8394256], [107.64, 349.92112964827925, 0.8521023], [107.65, 350.4126705390965, 0.8678139], [107.66, 350.806159388024, 0.8720553], [107.67, 351.04744088083714, 0.8727046], [107.68, 350.8606664361149, 0.8730721], [107.69, 350.4949772085593, 0.8806026], [107.7, 349.5003009667787, 0.87238014], [107.71, 348.1565881746008, 0.7902289], [107.72, 343.1252759671959, 0.616186], [107.73, 327.4224480241544, 0.39800546], [107.74, 309.9554079067993, 0.4026944], [107.75, 296.77774264179914, 0.7255702], [107.76, 291.42093950538805, 0.80052626], [107.77, 285.38294672002746, 0.7901716], [107.78, 281.64654916081946, 0.86033446], [107.79, 281.78534718172034, 0.85895205], [107.8, 284.51392707058733, 0.72182316], [107.81, 291.92233316883454, 0.49069503], [107.82, 309.8616108290651, 0.46394563], [107.83, 312.2879509753762, 0.6419306], [107.84, 314.7278767473631, 0.49166977], [107.85, 326.40891743861016, 0.33565548], [107.86, 341.249783576091, 0.31767693], [107.87, 346.5141292666587, 0.44128934], [107.88, 344.69619369604675, 0.6763524], [107.89, 339.48598815633693, 0.6831208], [107.9, 333.1903222154001, 0.72365624], [107.91, 328.54419460458394, 0.7931094], [107.92, 324.96141253196197, 0.79712445], [107.93, 318.49679562107866, 0.7486501], [107.94, 312.6795347681151, 0.8572309], [107.95, 310.33608742493493, 0.85850483], [107.96, 309.58549474301884, 0.87473613], [107.97, 309.62183286291554, 0.87019366], [107.98, 310.010318549187, 0.84731215], [107.99, 310.4226483152948, 0.8269666], [108.0, 310.97462411062503, 0.8432602], [108.01, 311.7073378241118, 0.8531001], [108.02, 312.43690075868346, 0.8517534], [108.03, 311.9247382815726, 0.8566266], [108.04, 310.76569548298284, 0.8365449], [108.05, 307.5655556858763, 0.8023932], [108.06, 301.95184045786726, 0.77495414], [108.07, 293.60069976498085, 0.7903108], [108.08, 287.87472142531925, 0.8778849], [108.09, 284.69849422397664, 0.9001415], [108.1, 282.6582622080385, 0.90180844], [108.11, 281.4784864526008, 0.91548926], [108.12, 280.90814173838044, 0.90512854], [108.13, 280.2565266946826, 0.8966017], [108.14, 279.0591345244368, 0.89611274], [108.15, 277.1073905127955, 0.88717866], [108.16, 275.61127283505795, 0.87614155], [108.17, 273.29265676866436, 0.8348899], [108.18, 269.9570119668059, 0.86444175], [108.19, 268.6611241380047, 0.8827933], [108.2, 268.3112787618817, 0.86999094], [108.21, 270.8449113549742, 0.8311095], [108.22, 273.51110136494424, 0.7839377], [108.23, 275.9938804763807, 0.83857924], [108.24, 278.0556626662184, 0.8954398], [108.25, 278.4549160986585, 0.9144004], [108.26, 278.55226436948965, 0.9216723], [108.27, 279.0127010373681, 0.91717565], [108.28, 279.18362919284016, 0.9093076], [108.29, 278.86805373844777, 0.9091413], [108.3, 278.80145645778, 0.90699446], [108.31, 279.5070926578986, 0.8847504], [108.32, 281.4146938699378, 0.8881122], [108.33, 282.3856185985597, 0.86650336], [108.34, 281.1508399882306, 0.88415605], [108.35, 280.4215762862426, 0.89884555], [108.36, 280.40910450687784, 0.90215766], [108.37, 279.54938181596606, 0.8897717], [108.38, 278.6353244299368, 0.8931819], [108.39, 278.0504232977281, 0.88435376], [108.4, 277.03294965965773, 0.8586768], [108.41, 276.22930283504496, 0.85293627], [108.42, 275.82742016142237, 0.8518565], [108.43, 276.56745216236015, 0.8438135], [108.44, 277.77703743481277, 0.87008667], [108.45, 278.2476072355579, 0.88674766], [108.46, 278.14395716718093, 0.8830623], [108.47, 277.9818562513975, 0.88349026], [108.48, 277.321812375937, 0.8752557], [108.49, 275.7805480439081, 0.86813736], [108.5, 272.8233238908428, 0.82825726], [108.51, 267.8023890819257, 0.8204451], [108.52, 261.8601271442554, 0.7390348], [108.53, 251.938035181631, 0.578372], [108.54, 243.67565001604464, 0.6038322], [108.55, 238.03310811229318, 0.7786455], [108.56, 235.0269335585765, 0.86859035], [108.57, 233.1249687207419, 0.87642807], [108.58, 232.0907274379371, 0.86846733], [108.59, 231.78929063115956, 0.8820129], [108.6, 231.80721337291698, 0.8677888], [108.61, 232.30054582603302, 0.86709946], [108.62, 232.557529048335, 0.87499183], [108.63, 232.766155478729, 0.8663629], [108.64, 232.45584272925439, 0.8518159], [108.65, 231.3923297507232, 0.8294092], [108.66, 230.62409205847098, 0.762874], [108.67, 227.45151000211482, 0.70664304], [108.68, 225.6692284288982, 0.62271386], [108.69, 224.01542844422224, 0.39779186], [108.7, 210.53431992791923, 0.20656404], [108.71, 188.9382077237898, 0.4221579], [108.72, 178.36565692693188, 0.6030834], [108.73, 159.76083907734332, 0.58996195], [108.74, 148.8939076752825, 0.45827323], [108.75, 137.2784801880108, 0.1828005], [108.76, 126.58617591104574, 0.17780052], [108.77, 117.07898690207871, 0.25095478], [108.78, 107.67613518551288, 0.13326108], [108.79, 100.53748997776779, 0.2247864], [108.8, 92.71631359231712, 0.12927556], [108.81, 82.18173821057297, 0.5621411], [108.82, 77.90139256809775, 0.3329797], [108.83, 69.82127001187857, 0.27818233], [108.84, 64.32170810109534, 0.5158261], [108.85, 56.75741425524401, 0.15936892], [108.86, 55.82695160742829, 0.5033499], [108.87, 53.85510376880135, 0.5665023], [108.88, 52.58891521948016, 0.6549569], [108.89, 52.14129003829904, 0.7388504], [108.9, 52.31107637396967, 0.711869], [108.91, 53.02672646413991, 0.5532743], [108.92, 53.97574488297551, 0.44331023], [108.93, 54.21640381428432, 0.51443624], [108.94, 53.50825068906387, 0.48843646], [108.95, 52.366563240499254, 0.6643191], [108.96, 51.872461551976485, 0.69059086], [108.97, 51.95070697156887, 0.7290936], [108.98, 52.02261401647477, 0.69921094], [108.99, 51.659482357078986, 0.6641639], [109.0, 51.26921212478579, 0.53916156], [109.01, 50.6582065898806, 0.40949416], [109.02, 51.02462293719572, 0.4317272], [109.03, 56.71344940286048, 0.5067053], [109.04, 65.02828531866112, 0.43902466], [109.05, 74.60587775711053, 0.6612787], [109.06, 85.64101811147663, 0.6158944], [109.07, 95.87300713311811, 0.71611434], [109.08, 108.59349722304506, 0.56610465], [109.09, 124.09268956330074, 0.4401554], [109.1, 140.04680168898966, 0.2352961], [109.11, 151.34442316163918, 0.50215256], [109.12, 178.15225664520767, 0.61925757], [109.13, 187.59887509240593, 0.4461258], [109.14, 221.69889730117373, 0.17442954], [109.15, 248.22723319285842, 0.09742212], [109.16, 273.90549699669134, 0.48325056], [109.17, 275.4727892094611, 0.7078205], [109.18, 277.3181499249132, 0.78580976], [109.19, 278.9336970452481, 0.66241187], [109.2, 281.5174181987889, 0.5045161], [109.21, 278.15533801912903, 0.5896082], [109.22, 275.7155483974841, 0.5324123], [109.23, 274.49826564287196, 0.37160295], [109.24, 299.396783070316, 0.17208526], [109.25, 337.5074650929142, 0.2134307], [109.26, 330.3891285396977, 0.37855038], [109.27, 314.9530650142334, 0.44787797], [109.28, 315.4445267622016, 0.7382574], [109.29, 319.9869516085385, 0.5428807], [109.3, 330.81336855311355, 0.30255708], [109.31, 354.4410454215706, 0.5262575], [109.32, 358.52086993818324, 0.59653443], [109.33, 365.97382764556824, 0.67443764], [109.34, 370.63844221644615, 0.85661244], [109.35, 373.80078764527724, 0.8773529], [109.36, 375.4626253384556, 0.8758024], [109.37, 375.7158828689592, 0.88070184], [109.38, 376.1416987824573, 0.87244564], [109.39, 377.3202501504051, 0.8571593], [109.4, 380.66465664128214, 0.81353915], [109.41, 384.40382102349923, 0.68540764], [109.42, 392.6743482960445, 0.47037676], [109.43, 408.94210122746443, 0.71747893], [109.44, 413.4502354900027, 0.88354367], [109.45, 415.80023104718884, 0.89381415], [109.46, 416.0451069589704, 0.8836684], [109.47, 415.47931417246707, 0.883834], [109.48, 414.5184915640572, 0.88317156], [109.49, 414.0125459822585, 0.89384276], [109.5, 413.33132614714947, 0.902641], [109.51, 412.1980643318856, 0.91041], [109.52, 411.8056510590333, 0.9178108], [109.53, 411.8861150893136, 0.9148233], [109.54, 413.9343478531224, 0.89901054], [109.55, 416.3962612456237, 0.88724434], [109.56, 419.50864362953337, 0.86513984], [109.57, 423.3432411835721, 0.87111074], [109.58, 427.9890658034197, 0.8401424], [109.59, 433.43671735318003, 0.8015064], [109.6, 439.5002008156195, 0.8512652], [109.61, 445.6277913146007, 0.83996165], [109.62, 451.18134634945864, 0.8698361], [109.63, 450.96855802723496, 0.83513826], [109.64, 450.86970512562914, 0.7686195], [109.65, 445.9548381532122, 0.68163234], [109.66, 441.6638438833124, 0.5454853], [109.67, 389.2411430182934, 0.30221644], [109.68, 365.8314308894824, 0.39403072], [109.69, 352.25388562864174, 0.34579512], [109.7, 323.1961833485318, 0.20142442], [109.71, 288.6425449429139, 0.33027843], [109.72, 284.7732477999399, 0.5913717], [109.73, 283.407013366281, 0.3458938], [109.74, 298.20755979575495, 0.17092718], [109.75, 310.15771807127976, 0.32019645], [109.76, 318.7659589770075, 0.44445172], [109.77, 321.13337629337104, 0.71256447], [109.78, 320.23128973546386, 0.6691387], [109.79, 320.1538249241979, 0.51392454], [109.8, 315.67587997027715, 0.35776085], [109.81, 308.8624062389231, 0.384517], [109.82, 307.6930420283998, 0.26808125], [109.83, 307.95003197456407, 0.3734992], [109.84, 311.7435596236405, 0.37876502], [109.85, 317.7523321991275, 0.33931017], [109.86, 323.92090693515973, 0.21359941], [109.87, 330.09154138703536, 0.16886058], [109.88, 342.899076609977, 0.22199048], [109.89, 350.0242289915029, 0.53710365], [109.9, 350.2631701314282, 0.7940141], [109.91, 351.0341860165274, 0.86383396], [109.92, 350.6461659393523, 0.86954474], [109.93, 349.13595427166234, 0.85722595], [109.94, 348.3132709629171, 0.8325789], [109.95, 347.30383918413594, 0.8368995], [109.96, 347.374249794746, 0.83306825], [109.97, 347.6664966783895, 0.83729404], [109.98, 348.911035949863, 0.8713277], [109.99, 349.90543174472134, 0.8923995], [110.0, 350.5967431739997, 0.89353615], [110.01, 351.1539231777456, 0.88979065], [110.02, 351.2294640149133, 0.8838758], [110.03, 351.1456431941696, 0.8748646], [110.04, 350.33882834401544, 0.8728471], [110.05, 349.2672716025243, 0.82084537], [110.06, 346.83181688351965, 0.68807155], [110.07, 344.90891127345765, 0.5348229], [110.08, 341.61526621589866, 0.37866917], [110.09, 302.96610200258283, 0.07840252], [110.1, 296.5720985234267, 0.20895895], [110.11, 295.66483913750363, 0.14895624], [110.12, 297.57032402971083, 0.10410814], [110.13, 297.13452833550014, 0.27788144], [110.14, 296.2936509171525, 0.45261303], [110.15, 294.818027191958, 0.73015124], [110.16, 297.52060163001494, 0.14239551], [110.17, 299.9132133766129, 0.11668496], [110.18, 301.96748084953447, 0.19077468], [110.19, 299.4025677481834, 0.39005768], [110.2, 298.54515788845026, 0.5378859], [110.21, 301.00965807320716, 0.5890798], [110.22, 305.292349333013, 0.62534297], [110.23, 308.24437328249843, 0.65986323], [110.24, 309.6398419403676, 0.7196152], [110.25, 310.01759586788245, 0.7562953], [110.26, 309.52577087422435, 0.7851732], [110.27, 308.87864151033034, 0.8183549], [110.28, 308.12641383912097, 0.8252186], [110.29, 307.7358592390881, 0.820138], [110.3, 307.8497143707349, 0.8240113], [110.31, 308.61286832230326, 0.82844114], [110.32, 310.1277743468693, 0.82116944], [110.33, 311.4614861897135, 0.8296726], [110.34, 312.9148231495703, 0.8301725], [110.35, 314.01646156758994, 0.8158967], [110.36, 316.62157219853316, 0.76647615], [110.37, 320.43840871969195, 0.74296665], [110.38, 324.4320531821892, 0.5697184], [110.39, 328.1860694642073, 0.20822841], [110.4, 338.553792171855, 0.1864422], [110.41, 346.0295141808907, 0.4795331], [110.42, 345.6506660310986, 0.65184075], [110.43, 343.40619386096455, 0.74301744], [110.44, 339.34387020562303, 0.6435469], [110.45, 330.2409393392287, 0.64956105], [110.46, 323.4583306857205, 0.72433895], [110.47, 317.8535977068362, 0.79023975], [110.48, 315.1700769940384, 0.8701708], [110.49, 314.5885143159892, 0.868875], [110.5, 315.5904024936219, 0.89303094], [110.51, 317.3262616356865, 0.8928839], [110.52, 319.23517920602654, 0.8903141], [110.53, 319.952789159105, 0.87356347], [110.54, 320.43143591443777, 0.71350366], [110.55, 321.0307676096969, 0.51211566], [110.56, 307.1900852776493, 0.3070733], [110.57, 270.5293197030759, 0.33612362], [110.58, 263.11477189203845, 0.45973867], [110.59, 258.3065953459046, 0.30212018], [110.6, 290.9395950800995, 0.21248192], [110.61, 311.3002222921486, 0.3815413], [110.62, 312.311365519331, 0.5873464], [110.63, 311.1610496764755, 0.34787023], [110.64, 310.68374688002285, 0.2236647], [110.65, 309.1236044789074, 0.16378026], [110.66, 302.505557005361, 0.1434926], [110.67, 298.82700437694405, 0.102141395], [110.68, 300.3655981304007, 0.1351037], [110.69, 293.09198164169965, 0.26900637], [110.7, 285.2538502365746, 0.15557587], [110.71, 287.61712995654466, 0.42820305], [110.72, 295.50049953081964, 0.5780938], [110.73, 301.0284292368259, 0.558698], [110.74, 308.0998313751089, 0.44941992], [110.75, 311.2715491070582, 0.40987727], [110.76, 310.6299335372852, 0.32773435], [110.77, 309.9480281537615, 0.3596943], [110.78, 306.44810894993014, 0.6037862], [110.79, 307.5975542776339, 0.6298215], [110.8, 307.751218076742, 0.66676253], [110.81, 308.87143241484154, 0.6788001], [110.82, 309.8355095636508, 0.6664618], [110.83, 310.1297303208422, 0.69932264], [110.84, 312.01481172460893, 0.7352013], [110.85, 313.63147883873813, 0.72865397], [110.86, 314.7373957106347, 0.75071096], [110.87, 311.65457244687997, 0.6337975], [110.88, 308.7870142619961, 0.58861935], [110.89, 310.6206797591681, 0.73682684], [110.9, 314.28341650172763, 0.7629289], [110.91, 315.42120950881224, 0.8267773], [110.92, 316.6460041358562, 0.8532336], [110.93, 318.1258399766284, 0.8458583], [110.94, 318.50641528002535, 0.856944], [110.95, 317.7536496372641, 0.85852236], [110.96, 315.7084029020256, 0.84555334], [110.97, 311.8597510948118, 0.78321266], [110.98, 308.5505793514813, 0.8157345], [110.99, 306.63455509269033, 0.8379161], [111.0, 306.53477495206295, 0.85570604], [111.01, 304.7573472292097, 0.85696185], [111.02, 303.34201545582766, 0.8438543], [111.03, 304.4053940065553, 0.80753446], [111.04, 308.96402958413336, 0.79479265], [111.05, 312.70762469690595, 0.8709577], [111.06, 313.2712481152264, 0.87866163], [111.07, 310.77756753541746, 0.8489013], [111.08, 307.0695348423987, 0.8241571], [111.09, 301.7906802535307, 0.8405122], [111.1, 295.72960861071954, 0.6894891], [111.11, 290.0617322838385, 0.59066844], [111.12, 283.6013365402585, 0.6158589], [111.13, 283.5346937881722, 0.3507484], [111.14, 284.2778000577679, 0.33901942], [111.15, 290.3884305285342, 0.6720853], [111.16, 292.67589760703953, 0.80142367], [111.17, 294.7315124389151, 0.77088], [111.18, 304.1819710436749, 0.5672643], [111.19, 314.01681922787594, 0.72341484], [111.2, 321.089519006621, 0.78405136], [111.21, 324.18194057683013, 0.8395837], [111.22, 323.5363737377206, 0.85993713], [111.23, 322.4031160865018, 0.8623306], [111.24, 320.6347810421002, 0.8697225], [111.25, 317.86319458739376, 0.8728899], [111.26, 315.28576501051054, 0.89439905], [111.27, 313.9537295532643, 0.8596443], [111.28, 315.1273629820439, 0.88093287], [111.29, 318.85581058994563, 0.87263423], [111.3, 323.74480319536275, 0.8162208], [111.31, 328.93095716471475, 0.71653324], [111.32, 336.28495988947566, 0.6181476], [111.33, 345.589241622563, 0.71955395], [111.34, 348.4866000680342, 0.8488643], [111.35, 349.4121008307998, 0.89043933], [111.36, 348.9287461171772, 0.8775285], [111.37, 348.2430608706536, 0.86777985], [111.38, 346.3859488619562, 0.85668224], [111.39, 346.3774186389458, 0.8589213], [111.4, 345.97104281601673, 0.8404084], [111.41, 346.11507547728854, 0.8488759], [111.42, 347.3633295557525, 0.8536447], [111.43, 348.01569399376854, 0.8459486], [111.44, 349.3081634489976, 0.85218495], [111.45, 349.6910389764298, 0.7807485], [111.46, 349.3612808410847, 0.5707699], [111.47, 372.27548314469107, 0.35540938], [111.48, 423.5449493027909, 0.23264953], [111.49, 456.91272178693214, 0.32290757], [111.5, 453.7545764615817, 0.55042875], [111.51, 452.9569663686851, 0.38982353], [111.52, 447.6886062510822, 0.15826416], [111.53, 450.119925090236, 0.08525321], [111.54, 456.52619562856637, 0.13881464], [111.55, 455.2772600575554, 0.2192331], [111.56, 449.8656436506816, 0.116262466], [111.57, 456.6340732185674, 0.19758034], [111.58, 446.881462417708, 0.10279215], [111.59, 423.9817232192296, 0.0735316], [111.6, 413.1629551542406, 0.12498584], [111.61, 402.2420451335466, 0.08467067], [111.62, 374.7083964341217, 0.10840339], [111.63, 364.1273147749737, 0.1526026], [111.64, 365.3259424158505, 0.12074289], [111.65, 359.9498092757076, 0.34626663], [111.66, 356.6513113361048, 0.16522974], [111.67, 342.1576319906839, 0.13435635], [111.68, 326.30437994020673, 0.4833825], [111.69, 317.0432410992097, 0.5625315], [111.7, 311.4478472071701, 0.4995591], [111.71, 308.1485788791373, 0.47211468], [111.72, 308.35086939349475, 0.5578626], [111.73, 308.5267074102828, 0.5308009], [111.74, 310.62330734937285, 0.4465397], [111.75, 313.59151475210024, 0.45148647], [111.76, 313.68615616893777, 0.33511022], [111.77, 313.9364226324916, 0.43229333], [111.78, 315.4795391751836, 0.44018304], [111.79, 320.5433131994007, 0.18004815], [111.8, 276.3375185696388, 0.17184423], [111.81, 247.70103465894408, 0.3531905], [111.82, 261.545419633434, 0.6084747], [111.83, 265.53695111190586, 0.68597734], [111.84, 269.5832257361325, 0.7315099], [111.85, 273.49527017811164, 0.77207005], [111.86, 276.9273880704303, 0.85304177], [111.87, 278.41479133069436, 0.8930762], [111.88, 278.62257871754616, 0.90073806], [111.89, 279.1802946225443, 0.900144], [111.9, 279.2635699048786, 0.8995718], [111.91, 279.55694714487186, 0.8948549], [111.92, 279.1159161447009, 0.8928553], [111.93, 277.5887118992227, 0.89372474], [111.94, 275.77106076856927, 0.87222683], [111.95, 273.1170624290545, 0.8498927], [111.96, 271.32401173179977, 0.8566233], [111.97, 271.0394400435559, 0.84959877], [111.98, 272.35616889618717, 0.8625091], [111.99, 274.71890155568883, 0.86648756], [112.0, 277.20690398172275, 0.8900919], [112.01, 278.1947828429214, 0.9129141], [112.02, 277.3448255553684, 0.89495635], [112.03, 275.85448812364285, 0.8601447], [112.04, 270.8132406086851, 0.77234805], [112.05, 263.6426876941604, 0.737542], [112.06, 258.952644295202, 0.7045661], [112.07, 260.8034448040818, 0.6065656], [112.08, 269.13848950385255, 0.5227203], [112.09, 276.16095704846623, 0.7758547], [112.1, 278.3723419108986, 0.9017538], [112.11, 278.46090430058604, 0.9057659], [112.12, 278.18730164380406, 0.89918905], [112.13, 278.1930947700072, 0.8935075], [112.14, 277.5326116739163, 0.8783491], [112.15, 277.60964289387584, 0.883528], [112.16, 277.57175722791965, 0.871925], [112.17, 277.57961113169057, 0.879193], [112.18, 277.28659239067696, 0.87113583], [112.19, 276.7059076407713, 0.84988195], [112.2, 276.9123841655463, 0.8529566], [112.21, 277.47400271086724, 0.8545859], [112.22, 279.31471225030657, 0.84549433], [112.23, 280.4559764933167, 0.85626775], [112.24, 281.69783948694555, 0.8802068], [112.25, 281.9767322904755, 0.864928], [112.26, 281.4929969221985, 0.85227627], [112.27, 280.2946861821808, 0.8199433], [112.28, 277.9532724627241, 0.6802274], [112.29, 274.7805992872662, 0.2920905], [112.3, 282.0171846993764, 0.18167341], [112.31, 286.80606254219174, 0.19740155], [112.32, 291.52662191462605, 0.32483438], [112.33, 305.2138363908746, 0.091259204], [112.34, 310.68307600352847, 0.5079174], [112.35, 310.34230670693483, 0.62384546], [112.36, 310.5573611744126, 0.64171624], [112.37, 310.79045232680267, 0.74729407], [112.38, 310.0095927650122, 0.7186375], [112.39, 307.9238356444835, 0.7524626], [112.4, 307.215364818885, 0.71418995], [112.41, 305.6832098255226, 0.68524957], [112.42, 305.838328197842, 0.59737116], [112.43, 305.78718297073397, 0.58400303], [112.44, 307.1143606404293, 0.5629814], [112.45, 308.7788908092431, 0.5569385], [112.46, 310.84633660720306, 0.5686163], [112.47, 315.1856476097941, 0.66360974], [112.48, 318.67876230139586, 0.77270967], [112.49, 320.71037165650455, 0.75235206], [112.5, 322.9627330797946, 0.71822107], [112.51, 324.9182045865643, 0.6604869], [112.52, 323.2202522457117, 0.30455565], [112.53, 325.60336243895483, 0.16044971], [112.54, 325.6516062835888, 0.14550811], [112.55, 334.8420732962812, 0.56415355], [112.56, 339.29855001205914, 0.74555606], [112.57, 338.0269968211357, 0.7048577], [112.58, 340.616420362448, 0.6442055], [112.59, 348.39862577792917, 0.64264977], [112.6, 349.3318583136895, 0.21281816], [112.61, 356.0372878922135, 0.45637757], [112.62, 367.310645593254, 0.32798454], [112.63, 372.6907696704883, 0.36307922], [112.64, 372.28462358716297, 0.20764078], [112.65, 364.9112706690044, 0.06310769], [112.66, 362.08906911398003, 0.09772041], [112.67, 363.5228580064229, 0.054765604], [112.68, 365.305057850639, 0.17314416], [112.69, 369.6612608263235, 0.47370273], [112.7, 369.0032579302629, 0.3741117], [112.71, 368.4599880199347, 0.33206525], [112.72, 371.36947809004903, 0.29673123], [112.73, 368.8003090115259, 0.31796652], [112.74, 367.91827273889135, 0.6337926], [112.75, 369.35413977683476, 0.45809045], [112.76, 367.4584364003669, 0.63887167], [112.77, 370.59194626988534, 0.55411685], [112.78, 369.13118957026944, 0.63461363], [112.79, 369.13407369788547, 0.52370995], [112.8, 370.92022018962666, 0.33522624], [112.81, 368.29912581384315, 0.4358301], [112.82, 370.2086152165529, 0.4791247], [112.83, 369.1444886896405, 0.4916951], [112.84, 367.5756157772988, 0.6516645], [112.85, 369.07744041035807, 0.45801228], [112.86, 367.3938302158938, 0.5907361], [112.87, 368.8105708212194, 0.5357586], [112.88, 370.2767881784212, 0.52922654], [112.89, 372.4480847784025, 0.77531946], [112.9, 376.4676418028739, 0.80777276], [112.91, 380.87498244050977, 0.78383434], [112.92, 388.10185449771467, 0.78404576], [112.93, 393.42440621509957, 0.79048604], [112.94, 399.8716784529778, 0.7683161], [112.95, 407.7248476526791, 0.8438397], [112.96, 412.60533382619303, 0.90522087], [112.97, 415.25853706439716, 0.89987546], [112.98, 416.3464949677859, 0.9013066], [112.99, 416.03649500862707, 0.89190936], [113.0, 415.856627118444, 0.89734167], [113.01, 416.1191815851363, 0.89449465], [113.02, 415.0845031903375, 0.88615805], [113.03, 413.43642209443385, 0.8925625], [113.04, 412.6354896354952, 0.8997675], [113.05, 412.2244376536671, 0.90899605], [113.06, 413.274516713592, 0.9079198], [113.07, 415.07042951690033, 0.89783067], [113.08, 416.63281914574014, 0.9013593], [113.09, 419.13894598242223, 0.88244814], [113.1, 421.5469529468611, 0.9032827], [113.11, 424.0935125555316, 0.87005], [113.12, 427.0939345880613, 0.8965108], [113.13, 429.10086811374765, 0.8881607], [113.14, 427.85631418059586, 0.8868132], [113.15, 423.6590298613715, 0.8511738], [113.16, 418.91095494379033, 0.8146846], [113.17, 413.73889553358003, 0.81542426], [113.18, 409.6902680460477, 0.85579664], [113.19, 406.9956863108911, 0.8954954], [113.2, 407.4822312409791, 0.8943954], [113.21, 410.12893611509816, 0.8947808], [113.22, 413.0329867230608, 0.90044475], [113.23, 416.74843410940866, 0.8873061], [113.24, 420.58000057285886, 0.8865461], [113.25, 425.3491289943037, 0.8732093], [113.26, 429.7127002644035, 0.8523555], [113.27, 434.496263550856, 0.83103955], [113.28, 437.5704102958539, 0.87383366], [113.29, 438.7568659136821, 0.910925], [113.3, 436.59758744469787, 0.86287004], [113.31, 432.9664915005457, 0.7969368], [113.32, 430.810646012554, 0.6132624], [113.33, 422.89080356032235, 0.4006814], [113.34, 407.0944701279112, 0.54801977], [113.35, 398.2500758787502, 0.3364402], [113.36, 425.1886868627015, 0.36743245], [113.37, 423.4503667211306, 0.33768627], [113.38, 426.37498890203864, 0.37220365], [113.39, 422.365747746204, 0.39700446], [113.4, 416.9051029573421, 0.3649959], [113.41, 405.4551929717914, 0.36848986], [113.42, 383.38734207928906, 0.18008655], [113.43, 375.2284566239052, 0.17398772], [113.44, 371.36924466094604, 0.0970057], [113.45, 374.17664468861716, 0.07727319], [113.46, 364.59398848457556, 0.17399104], [113.47, 350.0678331267705, 0.23123354], [113.48, 338.92229697984976, 0.2628608], [113.49, 334.77992102978544, 0.33349326], [113.5, 324.78097516202666, 0.41443083], [113.51, 316.4714090063, 0.19028962], [113.52, 314.71583604362, 0.57415426], [113.53, 313.14580388432324, 0.50157714], [113.54, 314.81862089265974, 0.514039], [113.55, 315.77645444408523, 0.50169545], [113.56, 318.37561730469577, 0.29988912], [113.57, 320.406556415295, 0.30171996], [113.58, 327.1028771516508, 0.46462065], [113.59, 337.53992342063617, 0.46270052], [113.6, 344.6360367015046, 0.49514127], [113.61, 347.17782841929113, 0.17309456], [113.62, 349.85436800878836, 0.591226], [113.63, 349.1797760680662, 0.76305526], [113.64, 348.0046631337052, 0.65335655], [113.65, 347.80536437624056, 0.47496852], [113.66, 344.00481275534514, 0.38842794], [113.67, 342.84069579990296, 0.31266347], [113.68, 339.16601209893435, 0.58898824], [113.69, 328.9835516013221, 0.2957293], [113.7, 320.9031292744806, 0.3330128], [113.71, 316.99317362755176, 0.21614324], [113.72, 315.58270915302586, 0.31399357], [113.73, 311.23670594169573, 0.48168406], [113.74, 312.237997820601, 0.50877476], [113.75, 308.8939213100355, 0.66310084], [113.76, 309.19040353619226, 0.6667754], [113.77, 308.50446805522273, 0.7076075], [113.78, 309.936338750017, 0.67970735], [113.79, 308.34599428535574, 0.5567004], [113.8, 309.11000254107523, 0.61642516], [113.81, 307.82856413578855, 0.4968908], [113.82, 304.2120736332471, 0.42201027], [113.83, 303.1980306122356, 0.56724113], [113.84, 302.6519231588842, 0.75097966], [113.85, 305.83475116391975, 0.75836784], [113.86, 307.16112495590943, 0.78958875], [113.87, 304.0604690959451, 0.6726878], [113.88, 308.029179693992, 0.7692071], [113.89, 302.125126942831, 0.7846199], [113.9, 303.1192858801267, 0.7904473], [113.91, 297.5301210224437, 0.80659515], [113.92, 296.20656718180004, 0.7046622], [113.93, 292.73514746308734, 0.5656176], [113.94, 288.9189140600339, 0.0903788], [113.95, 286.93971786536474, 0.029059656], [113.96, 281.47106332458304, 0.576543], [113.97, 286.5359208074037, 0.6742324], [113.98, 295.24028411833984, 0.480648], [113.99, 307.87021525782905, 0.6166293], [114.0, 310.8268094094365, 0.80176234], [114.01, 313.0513126243317, 0.88217753], [114.02, 313.5430640980135, 0.874763], [114.03, 312.85316511046807, 0.87938744], [114.04, 312.6482752118073, 0.88904417], [114.05, 311.8595997897485, 0.8743216], [114.06, 310.746034343237, 0.85599256], [114.07, 310.32621715603614, 0.8528754], [114.08, 310.2070365433858, 0.858186], [114.09, 310.2160255261133, 0.8540858], [114.1, 310.76095887982706, 0.86392426], [114.11, 311.4346434869933, 0.87053955], [114.12, 311.9664821625703, 0.8745127], [114.13, 312.8674142696991, 0.86966956], [114.14, 313.9855054590975, 0.84578115], [114.15, 313.84570729795365, 0.855021], [114.16, 313.85031567691016, 0.85000163], [114.17, 314.1520667112384, 0.8620879], [114.18, 313.440578723995, 0.86292154], [114.19, 312.07878509617336, 0.8608441], [114.2, 309.91767949257616, 0.8485079], [114.21, 308.25957717144854, 0.86290354], [114.22, 306.5402317996846, 0.83024377], [114.23, 306.38267490420344, 0.83367974], [114.24, 306.6525741187312, 0.8272864], [114.25, 308.51896262233697, 0.83484864], [114.26, 311.3040635123232, 0.82574624], [114.27, 312.3285494226968, 0.79246676], [114.28, 314.16949555920235, 0.72880954], [114.29, 313.6552419396119, 0.6236056], [114.3, 313.3687576020028, 0.52641106], [114.31, 312.1101497579334, 0.2809924], [114.32, 301.6946762822793, 0.067129195], [114.33, 304.43829200765583, 0.4340314], [114.34, 306.2927687473895, 0.6084143], [114.35, 310.3558043855827, 0.63262016], [114.36, 308.0215623449911, 0.312245], [114.37, 313.7629716360673, 0.13313352], [114.38, 316.87442647083196, 0.11046766], [114.39, 316.3117454203279, 0.20246911], [114.4, 317.29272295327667, 0.15484115], [114.41, 315.3914805342467, 0.29635867], [114.42, 314.58616490684614, 0.21681277], [114.43, 306.7098178126124, 0.17379037], [114.44, 304.29514430498864, 0.24637648], [114.45, 312.5477959872122, 0.25632158], [114.46, 317.9075425118213, 0.52805364], [114.47, 323.2053926738781, 0.5752176], [114.48, 333.4093517980738, 0.5233165], [114.49, 343.2060948455717, 0.50501776], [114.5, 343.90702885397525, 0.7011653], [114.51, 342.76928837881985, 0.5432618], [114.52, 342.25037325603876, 0.20102185], [114.53, 339.5869658252466, 0.09247959], [114.54, 347.7192104450196, 0.6250444], [114.55, 350.17169289967916, 0.71058327], [114.56, 360.3105472829517, 0.70917004], [114.57, 361.69406662600284, 0.39617482], [114.58, 365.6006242804624, 0.17814066], [114.59, 369.66877107301764, 0.10651115], [114.6, 369.8069638030919, 0.1677916], [114.61, 371.1191542111851, 0.30942813], [114.62, 370.834702043797, 0.3814487], [114.63, 370.68325138930396, 0.54759765], [114.64, 369.08233347130044, 0.6133947], [114.65, 367.8268580337027, 0.7345946], [114.66, 365.94801411563145, 0.6630371], [114.67, 363.3724068374421, 0.5674132], [114.68, 362.92405549791215, 0.5788149], [114.69, 362.4626265396854, 0.58793205], [114.7, 364.235148640281, 0.501747], [114.71, 365.5003807509563, 0.5264981], [114.72, 367.6062997668362, 0.54135525], [114.73, 368.8187347896598, 0.5589017], [114.74, 370.3997844414687, 0.5066324], [114.75, 370.09716779952987, 0.5037628], [114.76, 368.9902998904107, 0.25109252], [114.77, 366.78621824928007, 0.18200515], [114.78, 365.08436857966467, 0.4601627], [114.79, 357.66141338675413, 0.5553482], [114.8, 351.65791752700676, 0.6448882], [114.81, 344.32695806178845, 0.64201677], [114.82, 337.5450123755327, 0.713826], [114.83, 330.44377350993835, 0.7306607], [114.84, 324.47583401226956, 0.74665856], [114.85, 318.37563117433945, 0.6805991], [114.86, 313.4910723709817, 0.6609979], [114.87, 302.06130382473566, 0.4450353], [114.88, 296.98484782813983, 0.28186405], [114.89, 299.79344644808685, 0.48019964], [114.9, 314.29956173221365, 0.70850223], [114.91, 315.59653806445243, 0.8456828], [114.92, 316.7986982849908, 0.8596171], [114.93, 316.54127701151475, 0.8179072], [114.94, 313.9890006424367, 0.7673751], [114.95, 311.2978779476221, 0.79055715], [114.96, 310.9095946045521, 0.7803505], [114.97, 312.6819201539913, 0.77785254], [114.98, 315.22470025922337, 0.81140256], [114.99, 318.8296131877046, 0.8351296], [115.0, 322.8155447490034, 0.7857421], [115.01, 328.23587243891984, 0.71021396], [115.02, 336.48813436734207, 0.63227683], [115.03, 343.47397618303177, 0.702596], [115.04, 345.81075240047363, 0.8232553], [115.05, 346.5939904480061, 0.84820855], [115.06, 345.1955901942889, 0.8282884], [115.07, 342.44894172803185, 0.83211577], [115.08, 337.3047490692843, 0.6937375], [115.09, 328.4027409533411, 0.7295217], [115.1, 322.185082485743, 0.76843333], [115.11, 317.91121087221296, 0.78691936], [115.12, 313.86474132610994, 0.84800684], [115.13, 312.3117587001643, 0.85648865], [115.14, 311.2967085842808, 0.84320456], [115.15, 310.89574606976305, 0.82980084], [115.16, 311.20851819064177, 0.82907087], [115.17, 310.734375580247, 0.80912125], [115.18, 310.8007843496768, 0.82353723], [115.19, 311.16455054426575, 0.84613097], [115.2, 311.0227284034772, 0.8566121], [115.21, 310.7483899286247, 0.84560263], [115.22, 309.8750091733428, 0.8358175], [115.23, 308.5843718388082, 0.8139356], [115.24, 306.4375749413372, 0.75716853], [115.25, 301.8727039087698, 0.65842515], [115.26, 297.4080927304126, 0.5700716], [115.27, 280.3414242167862, 0.40319645], [115.28, 250.7208259978201, 0.24259819], [115.29, 240.24047528936276, 0.4506263], [115.3, 237.21086731149705, 0.7589365], [115.31, 247.60445716824518, 0.31964594], [115.32, 235.2436975648393, 0.09535373], [115.33, 216.46155828773342, 0.158062], [115.34, 195.69990639980279, 0.07972026], [115.35, 179.566885249488, 0.10031354], [115.36, 162.70650186543637, 0.071976505], [115.37, 157.62868704007812, 0.07748363], [115.38, 147.10873775347585, 0.39109564], [115.39, 126.5957052231002, 0.62712103], [115.4, 114.95081640625429, 0.6111534], [115.41, 104.54586548197983, 0.5415279], [115.42, 95.61242956113313, 0.39936724], [115.43, 81.80616022062964, 0.59691703], [115.44, 74.02644445290983, 0.4631222], [115.45, 64.23454916648673, 0.66551316], [115.46, 57.505435855879796, 0.66980374], [115.47, 52.24099604839231, 0.63616055], [115.48, 52.39557220459076, 0.65655947], [115.49, 52.33879416703154, 0.67479], [115.5, 52.359680866062035, 0.5919732], [115.51, 52.0690340686878, 0.6275609], [115.52, 52.08067773710064, 0.4638201], [115.53, 51.878346464578904, 0.33198896], [115.54, 51.69771201345963, 0.22688812], [115.55, 51.637694579472594, 0.21675146], [115.56, 51.927932444048686, 0.12802191], [115.57, 52.40442268863827, 0.14658414], [115.58, 53.11421846848716, 0.11224572], [115.59, 53.458754265690835, 0.30683246], [115.6, 53.977424204670406, 0.4117042], [115.61, 53.508081281364134, 0.42635003], [115.62, 53.730679055086206, 0.59692127], [115.63, 53.59665771785758, 0.49145067], [115.64, 53.42319038598732, 0.5157158], [115.65, 53.507635071029526, 0.34424254], [115.66, 53.55600487202218, 0.50537914], [115.67, 53.34024429025782, 0.5433806], [115.68, 53.35981014413841, 0.5885878], [115.69, 53.28047732374489, 0.38060904], [115.7, 53.290722767462064, 0.38691583], [115.71, 53.652431539244525, 0.30823], [115.72, 53.612314922508304, 0.40411836], [115.73, 53.86102312164419, 0.47912198], [115.74, 53.64690226144154, 0.43023318], [115.75, 53.12508230479227, 0.5236477], [115.76, 52.272471739535824, 0.6677287], [115.77, 52.02201154119958, 0.59639704], [115.78, 51.77882004145555, 0.49707437], [115.79, 51.446448824144625, 0.33223543], [115.8, 50.679009564456194, 0.32812384], [115.81, 51.30289296510908, 0.32312799], [115.82, 52.65187229160653, 0.2639727], [115.83, 54.57777110229398, 0.4222763], [115.84, 55.287957989502345, 0.40221795], [115.85, 55.6969188518883, 0.48297614], [115.86, 55.74202690370548, 0.4597205], [115.87, 55.758691235933746, 0.28374648], [115.88, 55.93494280913323, 0.23335983], [115.89, 55.72944014884142, 0.2030174], [115.9, 55.79155533077413, 0.29967186], [115.91, 55.883940825450736, 0.3829812], [115.92, 55.953866150663565, 0.3654912], [115.93, 55.92074009845347, 0.34123072], [115.94, 55.98532836369313, 0.29189378], [115.95, 55.96339017685192, 0.23149529], [115.96, 55.84168807929621, 0.20230363], [115.97, 55.68535267503571, 0.17998159], [115.98, 55.64147232959729, 0.25230312], [115.99, 55.59649084806399, 0.23430716], [116.0, 55.99986210157189, 0.19795868], [116.01, 57.05752228474802, 0.21164656], [116.02, 58.278046499334906, 0.09449778], [116.03, 58.518334490778166, 0.3902475], [116.04, 58.55350333312593, 0.42693496], [116.05, 57.98465147688883, 0.4458074], [116.06, 57.88826923885931, 0.3348517], [116.07, 57.57463718632947, 0.35659215], [116.08, 57.51060038253806, 0.4790863], [116.09, 57.9179067568408, 0.7391306], [116.1, 58.170335901030526, 0.8177545], [116.11, 58.12829338914504, 0.8180518], [116.12, 58.13665465881408, 0.82282436], [116.13, 58.080847001861926, 0.8580602], [116.14, 58.09034488647857, 0.82633144], [116.15, 58.29823511990989, 0.85869193], [116.16, 58.40692018706487, 0.8788308], [116.17, 58.520688768087794, 0.8732617], [116.18, 58.31644560483896, 0.8647406], [116.19, 58.53713413269523, 0.8772743], [116.2, 58.53145460933302, 0.88377017], [116.21, 58.45073757362343, 0.86935097], [116.22, 58.80094771981119, 0.8504928], [116.23, 58.36338731889923, 0.8391922], [116.24, 58.65082654366604, 0.8470043], [116.25, 58.54607965261738, 0.8645919], [116.26, 58.45732512213236, 0.8486365], [116.27, 58.87353006556164, 0.6449809], [116.28, 53.791386583941474, 0.25479853], [116.29, 47.11935983879328, 0.40925476], [116.3, 41.63011809924126, 0.35907367], [116.31, 38.409097378665955, 0.76534945], [116.32, 37.99448126257575, 0.6082041], [116.33, 36.384484062238315, 0.6596027], [116.34, 38.6845302908692, 0.68070567], [116.35, 44.18962906711818, 0.3430756], [116.36, 47.55628336510176, 0.5649669], [116.37, 48.268004985132755, 0.27107066], [116.38, 51.21551733316997, 0.118875064], [116.39, 52.711342756964896, 0.0781812], [116.4, 58.75078260052326, 0.13486372], [116.41, 59.121974243105626, 0.07573155], [116.42, 64.15540749090867, 0.13306637], [116.43, 72.899418950425, 0.24448738], [116.44, 81.64140786997638, 0.62354416], [116.45, 87.61329453331413, 0.60572803], [116.46, 99.87582628268672, 0.46328843], [116.47, 109.54157220821702, 0.5831643], [116.48, 120.22831749758227, 0.47627282], [116.49, 136.769213327588, 0.74828196], [116.5, 150.92855627344952, 0.5763193], [116.51, 166.78272725817055, 0.098349825], [116.52, 185.27051537388954, 0.32439816], [116.53, 205.4197311762524, 0.28950894], [116.54, 228.5657898281289, 0.25690863], [116.55, 252.32811456017043, 0.2299705], [116.56, 259.22378458717765, 0.52455944], [116.57, 265.9080188403012, 0.56922925], [116.58, 274.7523362249949, 0.71106714], [116.59, 278.75594454610996, 0.85557175], [116.6, 279.40536602607125, 0.8828498], [116.61, 278.79046542457036, 0.8913689], [116.62, 277.564803532562, 0.885823], [116.63, 275.7785999277909, 0.86600876], [116.64, 275.3790524642899, 0.8703751], [116.65, 274.6766315891025, 0.86974496], [116.66, 275.33567548461855, 0.8646075], [116.67, 276.94580720378985, 0.875864], [116.68, 279.0462943936523, 0.90246195], [116.69, 279.41631124987117, 0.9069887], [116.7, 278.48561545046795, 0.90291345], [116.71, 275.86136074520044, 0.854465], [116.72, 270.8029008758858, 0.8115776], [116.73, 265.7751212145612, 0.8638092], [116.74, 261.75508017788127, 0.8439931], [116.75, 261.71877260485354, 0.80676115], [116.76, 263.80958813702784, 0.7216808], [116.77, 266.3339072099494, 0.56461596], [116.78, 288.86231542901965, 0.3109655], [116.79, 312.36818793004016, 0.745204], [116.8, 313.2896500535426, 0.8492686], [116.81, 312.4921556497321, 0.8776702], [116.82, 310.23711001025595, 0.85111344], [116.83, 308.4903384978862, 0.87787855], [116.84, 307.8918198324134, 0.87809753], [116.85, 307.60256733100766, 0.8673008], [116.86, 308.19569427580336, 0.8524805], [116.87, 308.67342305848405, 0.84023416], [116.88, 310.4970375329593, 0.8018724], [116.89, 311.828305777649, 0.8246513], [116.9, 312.6622469713269, 0.8212836], [116.91, 312.65300525144966, 0.84286314], [116.92, 311.7318893941729, 0.8488664], [116.93, 309.82636162750805, 0.8211374], [116.94, 305.3300841358304, 0.79385424], [116.95, 300.36901592777633, 0.805182], [116.96, 296.4165240885952, 0.8541598], [116.97, 293.7289836364426, 0.9108811], [116.98, 290.88232581327213, 0.89081854], [116.99, 287.36159849450354, 0.86764646], [117.0, 284.436642888678, 0.8551073], [117.01, 281.6135333546367, 0.83116055], [117.02, 278.32761054924924, 0.80575943], [117.03, 276.7863017164158, 0.8018766], [117.04, 275.69090749149734, 0.8335238], [117.05, 274.80007696893796, 0.85563654], [117.06, 274.399890383848, 0.8575912], [117.07, 273.45374280593285, 0.8096415], [117.08, 270.72705812429945, 0.785258], [117.09, 266.8969688835425, 0.7301883], [117.1, 263.5697958020665, 0.6421168], [117.11, 264.91669797460577, 0.3250546], [117.12, 273.007155529989, 0.15218236], [117.13, 280.8664254638598, 0.14202933], [117.14, 309.2940464153775, 0.13845305], [117.15, 301.8904517931372, 0.14808151], [117.16, 290.6777685987311, 0.22107807], [117.17, 282.95956821649116, 0.11759895], [117.18, 277.84080355397384, 0.27635258], [117.19, 272.1749846350515, 0.11325106], [117.2, 262.3127284467926, 0.08293692], [117.21, 268.3800752319426, 0.17715383], [117.22, 284.33691724159644, 0.14376451], [117.23, 287.8157095162961, 0.052086078], [117.24, 292.4696593395427, 0.54049385], [117.25, 295.82174022247295, 0.5517356], [117.26, 302.0938711480551, 0.2833451], [117.27, 313.31526382329844, 0.22391742], [117.28, 315.54991356177146, 0.4674423], [117.29, 318.00516931547617, 0.47885442], [117.3, 318.07416306865065, 0.4426158], [117.31, 317.3800374416891, 0.25356424], [117.32, 312.80280699629327, 0.19190493], [117.33, 313.48229577390146, 0.22983389], [117.34, 309.6894025292011, 0.1805618], [117.35, 309.1717411844315, 0.22714835], [117.36, 308.3106799463878, 0.10941794], [117.37, 307.9817677175513, 0.4958981], [117.38, 308.5582290601975, 0.5391122], [117.39, 309.98402894595876, 0.65298235], [117.4, 310.6315075750914, 0.5649918], [117.41, 308.80436243844116, 0.46340764], [117.42, 307.805526991913, 0.36990878], [117.43, 304.5706300508154, 0.67520726], [117.44, 306.86249115412716, 0.7163806], [117.45, 305.8565509668313, 0.6945229], [117.46, 304.1240424498619, 0.69603574], [117.47, 307.4020078830408, 0.77661294], [117.48, 304.4069854171139, 0.7469517], [117.49, 307.7566915678259, 0.7138003], [117.5, 304.9407917318506, 0.74213386], [117.51, 309.00861635624904, 0.7135078], [117.52, 308.5634653628224, 0.7581571], [117.53, 304.15397317776103, 0.6722582], [117.54, 309.22395889392754, 0.80433124], [117.55, 303.8008983455744, 0.7067031], [117.56, 307.96857135854214, 0.8129794], [117.57, 307.0749872167142, 0.83642244], [117.58, 308.53997440870864, 0.7844964], [117.59, 306.9756271206425, 0.82653296], [117.6, 309.42268273208055, 0.785049], [117.61, 307.1317079318012, 0.8202262], [117.62, 304.133424352429, 0.76894706], [117.63, 308.2823786059328, 0.82604784], [117.64, 302.6744639376343, 0.8127825], [117.65, 303.930043328178, 0.7610747], [117.66, 297.8044083444826, 0.81817585], [117.67, 295.7325902750691, 0.62801516], [117.68, 290.6374004180528, 0.124560684], [117.69, 288.5560820109523, 0.6480135], [117.7, 293.6347416924933, 0.76427245], [117.71, 298.34297954954684, 0.73947036], [117.72, 304.6321890800447, 0.7670356], [117.73, 308.9577004681051, 0.8228904], [117.74, 312.1319438380536, 0.83984375], [117.75, 313.6822705488087, 0.84022075], [117.76, 311.97321834920666, 0.83862704], [117.77, 309.0915194193086, 0.8459111], [117.78, 308.1440127829702, 0.8396991], [117.79, 308.1501055981169, 0.829568], [117.8, 308.9487719950489, 0.81346256], [117.81, 311.8033862357782, 0.8164738], [117.82, 315.7427141950809, 0.840501], [117.83, 319.2215487031552, 0.8424521], [117.84, 320.84637018157963, 0.85329163], [117.85, 321.2601672887366, 0.85748535], [117.86, 320.5648012446726, 0.86993194], [117.87, 318.6814319145613, 0.85917014], [117.88, 316.1887207869248, 0.8759086], [117.89, 313.7861770219775, 0.8372606], [117.9, 310.8719201234123, 0.8307811], [117.91, 308.0578572184866, 0.83133715], [117.92, 305.6960616100438, 0.8402855], [117.93, 305.5188342880084, 0.84425837], [117.94, 306.6954694329217, 0.8244582], [117.95, 308.85982552303807, 0.8480744], [117.96, 310.34137508772193, 0.8407437], [117.97, 311.46514884898784, 0.84925723], [117.98, 311.8880858333804, 0.85009193], [117.99, 309.8619226133635, 0.8298124], [118.0, 308.57031037316585, 0.8483947], [118.01, 308.25899378194885, 0.84694415], [118.02, 308.95480861477324, 0.8528613], [118.03, 311.5986155249328, 0.82910496], [118.04, 313.2205732142287, 0.863751], [118.05, 313.28583770729665, 0.87061054], [118.06, 313.3882193841267, 0.88756686], [118.07, 312.6151957905566, 0.8973639], [118.08, 312.1602606168359, 0.8844581], [118.09, 312.898512157808, 0.87788224], [118.1, 314.2869001576816, 0.8624894], [118.11, 315.60608843907164, 0.8833318], [118.12, 315.53595044570903, 0.89050883], [118.13, 314.11967716901177, 0.84938455], [118.14, 314.1919320327714, 0.6812778], [118.15, 312.36227855700054, 0.4088227], [118.16, 313.0435044106694, 0.25828245], [118.17, 315.01989424586804, 0.12040328], [118.18, 313.60974963054343, 0.13818987], [118.19, 316.0365316700533, 0.14482135], [118.2, 316.88180801095956, 0.5033902], [118.21, 316.60537439943755, 0.464495], [118.22, 316.81741893364665, 0.5027604], [118.23, 317.99796997618864, 0.46907088], [118.24, 319.53695924816554, 0.6221624], [118.25, 325.868726556937, 0.49323368], [118.26, 330.25092048168744, 0.13618894], [118.27, 340.72352849469956, 0.26142555], [118.28, 351.475662022724, 0.23022984], [118.29, 367.9579777435797, 0.5426581], [118.3, 388.31564338926194, 0.50907356], [118.31, 406.9229251098524, 0.55461615], [118.32, 428.91146541655974, 0.12920402], [118.33, 441.7778221552265, 0.11794224], [118.34, 449.1833624065967, 0.08734521], [118.35, 453.6647991497674, 0.16866443], [118.36, 464.66457789000333, 0.29634136], [118.37, 495.2797598067272, 0.21275015], [118.38, 528.0864457371296, 0.28404108], [118.39, 539.3973767717441, 0.22752222], [118.4, 547.9344856361032, 0.26914963], [118.41, 552.1730415068633, 0.49238458], [118.42, 553.5562972751158, 0.61253244], [118.43, 554.7098210992197, 0.68101394], [118.44, 556.0518015603673, 0.6988586], [118.45, 555.1937622247525, 0.7494664], [118.46, 554.9829479002848, 0.60520184], [118.47, 554.4212742468627, 0.7878744], [118.48, 557.0112563880202, 0.5503063], [118.49, 556.5386290613015, 0.7629673], [118.5, 556.4899754390502, 0.62127423], [118.51, 557.6220419926678, 0.61593777], [118.52, 555.3279387589114, 0.59788287], [118.53, 556.6293568243124, 0.6092598], [118.54, 556.2765966787838, 0.69612294], [118.55, 557.4190331696341, 0.58662474], [118.56, 557.7541742201503, 0.5714397], [118.57, 558.5788708761607, 0.47530112], [118.58, 558.8031271732618, 0.46461058], [118.59, 559.9416726700344, 0.53706825], [118.6, 558.335135201177, 0.31978464], [118.61, 560.6749329745107, 0.51536244], [118.62, 560.9844866790025, 0.28441557], [118.63, 559.2000293067654, 0.32580942], [118.64, 557.0821694595413, 0.45873857], [118.65, 555.5973526722281, 0.42380697], [118.66, 555.3372650474939, 0.42845622], [118.67, 555.4971700783717, 0.3715107], [118.68, 555.3013397046515, 0.28406686], [118.69, 556.1636272521906, 0.2259799], [118.7, 556.8426311552564, 0.22244152], [118.71, 557.0881689072278, 0.2571024], [118.72, 558.618898572266, 0.23907866], [118.73, 557.7595377532489, 0.2783555], [118.74, 532.6751255077547, 0.28211594], [118.75, 472.28874698293174, 0.22163264], [118.76, 450.85612375387757, 0.36736846], [118.77, 433.73095202443335, 0.372804], [118.78, 392.9554069813418, 0.53698444], [118.79, 368.60624577547424, 0.5847534], [118.8, 339.6048077366351, 0.6880396], [118.81, 318.15956660249407, 0.74349207], [118.82, 299.28324502340195, 0.7953115], [118.83, 281.24801298707274, 0.7441174], [118.84, 251.99443894565877, 0.59943503], [118.85, 237.71918402358654, 0.43636873], [118.86, 216.53764855016613, 0.12314324], [118.87, 202.7865706627209, 0.08326109], [118.88, 200.8756760432542, 0.17775261], [118.89, 201.36206374671755, 0.27984414], [118.9, 204.80738724020438, 0.43216363], [118.91, 210.74623389654369, 0.12586774], [118.92, 214.16508480440996, 0.21421456], [118.93, 216.2915205197659, 0.10645544], [118.94, 215.0424052463806, 0.121001296], [118.95, 215.38365178720838, 0.108568], [118.96, 216.99993519055096, 0.41577145], [118.97, 216.39296303554872, 0.2251327], [118.98, 214.11871782339662, 0.108907536], [118.99, 212.7006502350303, 0.21015789], [119.0, 212.8359391978975, 0.12292676], [119.01, 212.3813365925555, 0.12755463], [119.02, 208.75327875449454, 0.10181446], [119.03, 206.55114235153516, 0.27446085], [119.04, 208.90907059632738, 0.11835366], [119.05, 211.3742055375676, 0.12927027], [119.06, 213.6601846400683, 0.13919014], [119.07, 211.53359621712852, 0.17128037], [119.08, 210.98175892888622, 0.26582426], [119.09, 208.59453654899923, 0.56331074], [119.1, 209.28097358668228, 0.5427947], [119.11, 210.94675632205173, 0.31231853], [119.12, 211.23208627684573, 0.1996145], [119.13, 209.48503462167372, 0.42474824], [119.14, 208.17223529164858, 0.50610614], [119.15, 208.53590130994135, 0.46076965], [119.16, 208.02638321104752, 0.4936962], [119.17, 208.2515729026338, 0.37558648], [119.18, 207.63307008347033, 0.28040752], [119.19, 208.0470651314695, 0.21233247], [119.2, 209.9366225589024, 0.3697553], [119.21, 211.2686305366541, 0.29711187], [119.22, 212.32692323968223, 0.31911263], [119.23, 212.2270126881649, 0.22478674], [119.24, 212.78356501771637, 0.2061801], [119.25, 212.35656511658226, 0.18885837], [119.26, 211.30616191675682, 0.19182515], [119.27, 210.63844958169886, 0.13924588], [119.28, 210.1737104134577, 0.16609414], [119.29, 238.75954847047507, 0.18207319], [119.3, 258.9090692629288, 0.39036053], [119.31, 300.6620448956903, 0.5665044], [119.32, 324.41809133638736, 0.60965574], [119.33, 371.9625743645073, 0.45565242], [119.34, 423.53838142937184, 0.118672706], [119.35, 450.925887367475, 0.26815814], [119.36, 458.1508543814996, 0.4268189], [119.37, 459.8324435989143, 0.5757283], [119.38, 463.2255269916395, 0.71681046], [119.39, 463.49187543751134, 0.658047], [119.4, 465.60596544581017, 0.773913], [119.41, 463.526602025084, 0.7157515], [119.42, 463.71256322933857, 0.7780802], [119.43, 463.1595911266325, 0.7168686], [119.44, 465.0959430576575, 0.6461089], [119.45, 462.586393661582, 0.58531535], [119.46, 463.8766983593491, 0.630188], [119.47, 462.0430119370425, 0.4110753], [119.48, 462.1621556924093, 0.3652007], [119.49, 459.1638523211699, 0.108073354], [119.5, 466.3851417884968, 0.20398009], [119.51, 467.5152077240961, 0.37953937], [119.52, 472.79232014034744, 0.33547032], [119.53, 478.263399986848, 0.46822912], [119.54, 481.403454228387, 0.52949125], [119.55, 487.31021993161096, 0.48212504], [119.56, 492.2488760198328, 0.5542278], [119.57, 495.7882658093489, 0.28428534], [119.58, 502.45958269149514, 0.1285899], [119.59, 506.75028186138195, 0.24579825], [119.6, 515.0530231949981, 0.396796], [119.61, 528.5560217368937, 0.4729458], [119.62, 539.2493846204644, 0.3319208], [119.63, 551.9829723417708, 0.18377075], [119.64, 556.660629303874, 0.20529665], [119.65, 559.8400468310192, 0.20537221], [119.66, 560.7337559780318, 0.22623374], [119.67, 557.073095609111, 0.32771617], [119.68, 553.378917075612, 0.37038198], [119.69, 557.2027745677296, 0.3398139], [119.7, 491.3036114885209, 0.24372526], [119.71, 451.222276240143, 0.25072876], [119.72, 389.4103085948149, 0.14799362], [119.73, 338.07733668892325, 0.23038204], [119.74, 298.7056169770831, 0.16994284], [119.75, 269.53006542598195, 0.31121776], [119.76, 264.5439974676661, 0.35911554], [119.77, 265.5456905070865, 0.5247724], [119.78, 266.3407139435679, 0.4085502], [119.79, 274.8812721315709, 0.25766468], [119.8, 279.2952724481412, 0.096878834], [119.81, 285.3135422388096, 0.08431952], [119.82, 303.77155892277085, 0.0878034], [119.83, 310.72635753549014, 0.14408103], [119.84, 313.0885209886512, 0.20388731], [119.85, 313.202999273613, 0.19125657], [119.86, 310.7018287716777, 0.44042018], [119.87, 308.08116830220604, 0.4292829], [119.88, 305.83881992602034, 0.55243015], [119.89, 304.86568676605975, 0.54704803], [119.9, 306.7727717730146, 0.45630246], [119.91, 307.7933159582062, 0.47152227], [119.92, 308.4320205143251, 0.3575092], [119.93, 295.9723236884592, 0.15334356], [119.94, 276.0102104237402, 0.15942846], [119.95, 247.29188907550878, 0.4300497], [119.96, 233.46527437589162, 0.72986495], [119.97, 221.92413189444298, 0.7203104], [119.98, 204.991070572881, 0.7604893], [119.99, 186.60459732039342, 0.6475617], [120.0, 172.90255606564023, 0.7732143], [120.01, 167.3177864172989, 0.69708925], [120.02, 150.45198962661524, 0.32783303], [120.03, 143.28228756123468, 0.2200133], [120.04, 139.5312555961785, 0.216597], [120.05, 151.14663668380194, 0.19026697], [120.06, 153.70895101397096, 0.21085547], [120.07, 153.83152791273645, 0.27800322], [120.08, 153.48528360366976, 0.23482741], [120.09, 153.8876343676751, 0.34623757], [120.1, 154.05834571303143, 0.31171963], [120.11, 154.03683245648114, 0.2825922], [120.12, 154.5478998493542, 0.3627534], [120.13, 155.33319517380085, 0.60706866], [120.14, 156.21563341345504, 0.6055955], [120.15, 155.38430318969847, 0.5011622], [120.16, 153.5921625534041, 0.44452482], [120.17, 153.79282401891786, 0.29799265], [120.18, 153.21274050778104, 0.17000277], [120.19, 157.3458922289529, 0.19623397], [120.2, 159.1654019720506, 0.30435535], [120.21, 159.84721516814858, 0.18212608], [120.22, 161.36937847543206, 0.1981552], [120.23, 169.5644612782476, 0.26321658], [120.24, 172.72310193886003, 0.32950717], [120.25, 173.2137021126218, 0.31791675], [120.26, 173.69345542447132, 0.5751152], [120.27, 175.04938308985558, 0.5323108], [120.28, 175.94863039111314, 0.50375766], [120.29, 177.19893204199968, 0.40904093], [120.3, 178.07558665299607, 0.4509053], [120.31, 177.28036887499167, 0.51336074], [120.32, 176.8565561843027, 0.43343157], [120.33, 176.28155896284073, 0.50281286], [120.34, 176.8860093603771, 0.5845493], [120.35, 177.4956494704304, 0.58669513], [120.36, 177.44960208172526, 0.603351], [120.37, 176.16182367673645, 0.55659235], [120.38, 175.39521435480285, 0.45240748], [120.39, 175.94947475074892, 0.27656868], [120.4, 179.322556024068, 0.22915596], [120.41, 192.7675269336441, 0.37247545], [120.42, 220.0386316146935, 0.5833009], [120.43, 232.26857639861197, 0.69343036], [120.44, 231.3474712825181, 0.70341796], [120.45, 231.21651312293187, 0.7528972], [120.46, 231.77078746465793, 0.5588849], [120.47, 233.1567442838862, 0.62522626], [120.48, 232.25935054113864, 0.61816263], [120.49, 233.0519647369022, 0.6074182], [120.5, 231.6456549584655, 0.63031256], [120.51, 231.4394174915136, 0.75347483], [120.52, 232.0076566073067, 0.7316782], [120.53, 232.6912650289182, 0.6663473], [120.54, 230.77965079675053, 0.5406707], [120.55, 215.2394960863896, 0.20979486], [120.56, 186.97223924691028, 0.5670903], [120.57, 170.44090479433868, 0.81615037], [120.58, 151.3077906642016, 0.8357405], [120.59, 138.41620446259947, 0.8557127], [120.6, 138.73699281569228, 0.8575929], [120.61, 138.838822938081, 0.8608105], [120.62, 139.0214208945019, 0.839708], [120.63, 138.95932971331777, 0.85320175], [120.64, 139.26173156041796, 0.87093717], [120.65, 139.09863088869028, 0.87235415], [120.66, 138.8809560773749, 0.8895918], [120.67, 138.73688924593472, 0.9043949], [120.68, 138.39638138310718, 0.8580944], [120.69, 138.05852376347633, 0.8378384], [120.7, 137.962924639788, 0.80299073], [120.71, 138.55276930675413, 0.7626916], [120.72, 139.11198969276518, 0.75025797], [120.73, 139.74262313358372, 0.65840447], [120.74, 139.95688478457714, 0.643787], [120.75, 139.03267189912066, 0.71902496], [120.76, 138.6644006342416, 0.5998466], [120.77, 138.78639776333765, 0.5411568], [120.78, 138.88303381134787, 0.5162745], [120.79, 139.91142001183982, 0.6131828], [120.8, 140.9846814982495, 0.7007213], [120.81, 140.71115074602577, 0.63844925], [120.82, 139.0953166926122, 0.59894913], [120.83, 137.95968468323917, 0.547701], [120.84, 137.48697381593328, 0.62568593], [120.85, 136.6846588878855, 0.5678822], [120.86, 136.9286244933857, 0.40399474], [120.87, 137.34820952265108, 0.37921497], [120.88, 137.7036710639921, 0.5322417], [120.89, 138.55134038448168, 0.67485267], [120.9, 138.98307204366887, 0.6243671], [120.91, 139.0211722026678, 0.5709431], [120.92, 138.59479442806696, 0.46329385], [120.93, 138.22966204026545, 0.27018133], [120.94, 137.03559592968006, 0.2879543], [120.95, 136.4744521431691, 0.46597326], [120.96, 136.9672275507977, 0.28240246], [120.97, 138.95259975385363, 0.277446], [120.98, 139.32683407997595, 0.27223238], [120.99, 139.9325803073936, 0.15604256], [121.0, 139.387894224948, 0.19322205], [121.01, 137.60519279199772, 0.16236101], [121.02, 137.27265520112894, 0.103228495], [121.03, 140.29668920199381, 0.08974989], [121.04, 143.5051585952079, 0.14956234], [121.05, 152.7737357372707, 0.0799446], [121.06, 165.6815325585683, 0.08564354], [121.07, 165.0661717675985, 0.12891941], [121.08, 165.55189301931958, 0.20685194], [121.09, 165.5227210485728, 0.21626979], [121.1, 165.99724425365622, 0.071004756], [121.11, 169.73778516829464, 0.14472269], [121.12, 171.10026452372537, 0.1734881], [121.13, 172.71384403517823, 0.45193928], [121.14, 174.85561940753712, 0.30616978], [121.15, 177.68658692334728, 0.14736971], [121.16, 179.02222749133287, 0.19509557], [121.17, 178.59508344999347, 0.33893985], [121.18, 177.93065505874432, 0.63681227], [121.19, 176.82361122591232, 0.27539462], [121.2, 175.89683259104737, 0.11905139], [121.21, 176.28195910038028, 0.3365014], [121.22, 177.08372303122218, 0.44753125], [121.23, 177.2993531695668, 0.5214684], [121.24, 177.01712177860512, 0.5979448], [121.25, 178.45672694374235, 0.67979026], [121.26, 178.35701903946597, 0.75217247], [121.27, 178.72056179866905, 0.7589204], [121.28, 179.6625237648659, 0.61997825], [121.29, 179.96477811743955, 0.47289625], [121.3, 183.48993110081972, 0.51101863], [121.31, 199.27861204966848, 0.28198385], [121.32, 213.32396209811182, 0.17286366], [121.33, 229.71862346289598, 0.20383559], [121.34, 233.6639361136538, 0.2993188], [121.35, 233.92503112957, 0.39689988], [121.36, 233.70913847399112, 0.5423736], [121.37, 233.27164138402475, 0.5508023], [121.38, 232.32063592583816, 0.4071876], [121.39, 231.71885343021654, 0.3481734], [121.4, 233.36562617334525, 0.2464291], [121.41, 235.65004012922572, 0.2767419], [121.42, 247.1800558765024, 0.43166247], [121.43, 261.6220633784751, 0.3494068], [121.44, 273.8914630625317, 0.3297377], [121.45, 279.06568832010464, 0.37170646], [121.46, 278.0287731376864, 0.5757813], [121.47, 279.6063941891816, 0.6388906], [121.48, 278.8973383041753, 0.6013359], [121.49, 279.2650399723765, 0.6955153], [121.5, 279.2313306173136, 0.4387745], [121.51, 277.7264517771896, 0.5086749], [121.52, 274.3041100728701, 0.62355304], [121.53, 271.83766876638106, 0.7152088], [121.54, 269.4788428622397, 0.72207904], [121.55, 271.20664160736055, 0.60148364], [121.56, 272.3405461383681, 0.5128702], [121.57, 273.63763838058213, 0.5489316], [121.58, 277.0863989406365, 0.7505367], [121.59, 277.4977518779681, 0.83038735], [121.6, 277.62883174501735, 0.8140454], [121.61, 277.96509915055947, 0.7988038], [121.62, 276.9726842020383, 0.6911724], [121.63, 275.70049976122436, 0.5507202], [121.64, 270.76947881069907, 0.49625802], [121.65, 262.5085862573173, 0.628959], [121.66, 252.45125010187692, 0.61314136], [121.67, 247.26851831481497, 0.70435464], [121.68, 241.71353199306054, 0.5926421], [121.69, 236.91428838160363, 0.7714581], [121.7, 234.75803794100696, 0.8602692], [121.71, 233.0407359251906, 0.84550345], [121.72, 232.47632426151472, 0.826356], [121.73, 232.32803671055265, 0.81169975], [121.74, 231.70910977901028, 0.71919143], [121.75, 232.4204401595498, 0.6682545], [121.76, 233.27352954155717, 0.5707787], [121.77, 231.02161305349867, 0.18154415], [121.78, 219.89797531369567, 0.29382896], [121.79, 209.7651129052231, 0.44475383], [121.8, 204.82333916763676, 0.5422263], [121.81, 196.39072491093512, 0.1607245], [121.82, 186.14078877431507, 0.2577164], [121.83, 184.70089107533892, 0.55362445], [121.84, 181.85261793659146, 0.5776466], [121.85, 170.31952700606908, 0.69873726], [121.86, 164.78450439733683, 0.18913408], [121.87, 158.47165487621837, 0.22791682], [121.88, 151.99586414424533, 0.18531924], [121.89, 145.96446167023018, 0.17401479], [121.9, 140.3823910150449, 0.20131084], [121.91, 137.57570637613472, 0.17662454], [121.92, 134.36923347522202, 0.18747714], [121.93, 128.92947370965788, 0.07444562], [121.94, 139.2903270537644, 0.080105], [121.95, 154.65282943881132, 0.20667234], [121.96, 174.41756197708256, 0.21611114], [121.97, 175.41134388964892, 0.26143232], [121.98, 155.79887466879097, 0.26037925], [121.99, 139.44552076750193, 0.4607095], [122.0, 139.27714375602116, 0.3005937], [122.01, 137.66842971841217, 0.16291401], [122.02, 140.60774553036592, 0.09856577], [122.03, 143.1953999752023, 0.06968955], [122.04, 143.60532625307735, 0.14227201], [122.05, 143.56680347068442, 0.27897805], [122.06, 143.49891535389608, 0.6605518], [122.07, 142.4609413262563, 0.610139], [122.08, 143.05179670736845, 0.6775735], [122.09, 142.27442684030026, 0.23124199], [122.1, 140.98982191432376, 0.2830458], [122.11, 137.62304385240472, 0.39187065], [122.12, 137.35423220552494, 0.598037], [122.13, 137.08951329272, 0.5066605], [122.14, 137.45636422442863, 0.5168691], [122.15, 137.83529921778685, 0.6478162], [122.16, 136.66494125534567, 0.65920615], [122.17, 136.3578430220772, 0.6950185], [122.18, 135.98634617508696, 0.6877231], [122.19, 136.26576612049047, 0.550763], [122.2, 137.62385842574298, 0.68327314], [122.21, 137.9383556771418, 0.5760822], [122.22, 139.26246689221605, 0.61834013], [122.23, 139.6521163387948, 0.40289223], [122.24, 139.1728833527279, 0.34662798], [122.25, 126.69550742776246, 0.27429578], [122.26, 110.03471320001873, 0.22500019], [122.27, 96.77875250583497, 0.48985758], [122.28, 89.67039877290267, 0.56217486], [122.29, 78.12898536948902, 0.4861621], [122.3, 68.32572440123441, 0.38924286], [122.31, 60.21788526154673, 0.4104527], [122.32, 51.32304459633509, 0.470995], [122.33, 46.39762448166964, 0.43337548], [122.34, 45.595708188917364, 0.52157265], [122.35, 45.749416206213965, 0.47879562], [122.36, 46.4135477649753, 0.5077137], [122.37, 45.474857994674956, 0.6081995], [122.38, 45.66906814577946, 0.5229398], [122.39, 45.20962881905871, 0.4282995], [122.4, 44.96534163536579, 0.57854813], [122.41, 44.889763174451375, 0.5469826], [122.42, 45.025353420347, 0.4371925], [122.43, 45.05092164341985, 0.43853447], [122.44, 45.47813773325228, 0.38626537], [122.45, 45.83744848834283, 0.4831176], [122.46, 45.80069202012489, 0.6149793], [122.47, 45.700365005813346, 0.4490311], [122.48, 45.623774637344646, 0.5333549], [122.49, 45.55231962810433, 0.52550507], [122.5, 45.510265967655705, 0.44098666], [122.51, 45.723598597382306, 0.5017992], [122.52, 46.07481706308789, 0.43711433], [122.53, 46.13594237232316, 0.46969682], [122.54, 45.94447391592659, 0.46439758], [122.55, 45.96908106218869, 0.55617183], [122.56, 45.966976126426154, 0.6729787], [122.57, 46.08966105441257, 0.72801083], [122.58, 46.01879292486987, 0.698526], [122.59, 45.731765181259604, 0.71429485], [122.6, 45.41811305796991, 0.48869035], [122.61, 44.8645017896278, 0.11471503], [122.62, 48.30929055509987, 0.41904545], [122.63, 53.39918170142913, 0.6185356], [122.64, 58.29176022605722, 0.49701333], [122.65, 65.88309681756773, 0.22077915], [122.66, 70.19496771332936, 0.2778384], [122.67, 79.80360792109485, 0.21867071], [122.68, 87.10460157571745, 0.33292633], [122.69, 94.74126693706737, 0.15757623], [122.7, 103.39289085485703, 0.25035152], [122.71, 104.1375697112912, 0.24219891], [122.72, 103.68780680705895, 0.33971256], [122.73, 103.68990901413811, 0.4888694], [122.74, 103.93071114958131, 0.4359423], [122.75, 104.48770573406685, 0.4636007], [122.76, 104.06052144067537, 0.41996422], [122.77, 103.31870158591931, 0.4042073], [122.78, 103.42508194962173, 0.20316336], [122.79, 102.07161869610744, 0.44305754], [122.8, 102.34368011633745, 0.43631142], [122.81, 102.99090453289564, 0.6519425], [122.82, 102.83936347300346, 0.5024002], [122.83, 103.09054187844777, 0.15600674], [122.84, 90.35565251105531, 0.4830507], [122.85, 83.31165287810967, 0.34452078], [122.86, 71.94602163585972, 0.24867168], [122.87, 65.14508767794231, 0.2093694], [122.88, 55.897862676348105, 0.5018727], [122.89, 51.4100195605947, 0.37653536], [122.9, 51.683015528932295, 0.49368325], [122.91, 52.59370897927678, 0.4244553], [122.92, 52.84200060922384, 0.27301824], [122.93, 53.65505213647249, 0.14157428], [122.94, 52.15772531415139, 0.13489488], [122.95, 52.15067726094649, 0.13987954], [122.96, 53.39113596836618, 0.07278195], [122.97, 53.44455963730782, 0.13603766], [122.98, 53.31373070967455, 0.10210515], [122.99, 52.37515016641023, 0.1630483], [123.0, 51.75609258241764, 0.078842804], [123.01, 53.16454388921905, 0.13437432], [123.02, 54.01380697827379, 0.34244353], [123.03, 53.103421173045646, 0.22449279], [123.04, 52.385580081111556, 0.3257193], [123.05, 51.4267471221665, 0.33758333], [123.06, 52.3986478275893, 0.34484428], [123.07, 54.95620829174448, 0.09904952], [123.08, 56.099335597707764, 0.1884291], [123.09, 56.51452408556772, 0.47715944], [123.1, 56.38409595357902, 0.5880442], [123.11, 55.725133006966786, 0.5344673], [123.12, 55.02945159787725, 0.518306], [123.13, 53.943473953869265, 0.49769485], [123.14, 53.77579577136874, 0.53441954], [123.15, 52.54115066690754, 0.31313366], [123.16, 51.567797309923236, 0.2372292], [123.17, 50.24057806928795, 0.16599087], [123.18, 50.046959724939455, 0.13160697], [123.19, 49.08212084791082, 0.12330402], [123.2, 48.86451332366428, 0.10597634], [123.21, 54.15518819555564, 0.14887722], [123.22, 54.148516790266285, 0.3836382], [123.23, 53.29178370204025, 0.44870627], [123.24, 52.010574756208534, 0.2655257], [123.25, 51.445408238508044, 0.16459572], [123.26, 52.561812148368396, 0.23809637], [123.27, 54.54079599713711, 0.3312868], [123.28, 53.73570906547691, 0.2622539], [123.29, 52.93001561627331, 0.17781171], [123.3, 51.451024547244614, 0.20068808], [123.31, 53.303595678047756, 0.15409301], [123.32, 54.156964919634106, 0.22116876], [123.33, 54.93879294704362, 0.27237293], [123.34, 55.025226396055345, 0.11142519], [123.35, 55.67875494445309, 0.17419095], [123.36, 55.59254806131588, 0.37043598], [123.37, 55.46425166752886, 0.43510398], [123.38, 55.44833651893316, 0.31323543], [123.39, 55.68106860101338, 0.12445426], [123.4, 56.41734371514681, 0.07927438], [123.41, 56.426156929097324, 0.08066786], [123.42, 55.54350874018924, 0.045461614], [123.43, 55.01365022557458, 0.07446174], [123.44, 54.793772775432, 0.05535342], [123.45, 55.389273441730026, 0.081138186], [123.46, 55.56492919387488, 0.08826273], [123.47, 54.70211720095144, 0.12227011], [123.48, 54.62652957144861, 0.0827918], [123.49, 53.11710511430245, 0.06991455], [123.5, 52.371445515568155, 0.118761554], [123.51, 51.21194252426427, 0.16026479], [123.52, 53.25894062865125, 0.09720889], [123.53, 54.27043476065903, 0.16024213], [123.54, 56.16371201787363, 0.09295427], [123.55, 56.94490620287405, 0.08790212], [123.56, 56.813355549314494, 0.17616652], [123.57, 57.69657407453355, 0.16659674], [123.58, 58.721119722423566, 0.16299766], [123.59, 58.553904150644236, 0.12283712], [123.6, 58.48344226657096, 0.18200375], [123.61, 58.240088099298816, 0.20903026], [123.62, 58.26188048005881, 0.3368937], [123.63, 58.019326131718515, 0.16397844], [123.64, 57.96030956308335, 0.21788158], [123.65, 58.30833678468194, 0.21549162], [123.66, 58.23920656005906, 0.26526228], [123.67, 58.447530127641, 0.34401768], [123.68, 58.4192798870873, 0.3225463], [123.69, 58.52368814717559, 0.22952436], [123.7, 58.19033603767731, 0.30223528], [123.71, 58.24461296577881, 0.20039], [123.72, 58.415108294063096, 0.26833418], [123.73, 58.006411889334515, 0.243122], [123.74, 58.31993307098158, 0.36286685], [123.75, 58.445984414823364, 0.46913683], [123.76, 58.40271818476734, 0.5399849], [123.77, 63.996124615466684, 0.1276045], [123.78, 71.99068968411981, 0.09634024], [123.79, 79.66593457725031, 0.08735227], [123.8, 89.44872072061109, 0.18803416], [123.81, 98.16301643249577, 0.6651388], [123.82, 111.62051490391744, 0.5594669], [123.83, 119.02340745202558, 0.5840978], [123.84, 134.03795501545122, 0.35139823], [123.85, 146.48763129435974, 0.06916409], [123.86, 149.99555414356922, 0.14204562], [123.87, 152.65825096974308, 0.2547629], [123.88, 154.57927461305172, 0.29443407], [123.89, 155.07528643686715, 0.41769803], [123.9, 154.91177079024595, 0.2930554], [123.91, 150.8944430818787, 0.2717562], [123.92, 150.41847984282202, 0.2285481], [123.93, 152.8132424766607, 0.11952724], [123.94, 156.21531225460996, 0.20531902], [123.95, 159.45849322105917, 0.27259392], [123.96, 162.17156005486765, 0.18474182], [123.97, 163.88214060507192, 0.20726511], [123.98, 169.0531328994498, 0.059369586], [123.99, 174.62092059637882, 0.04618373], [124.0, 175.279515088911, 0.0748985], [124.01, 174.03502822944, 0.17080635], [124.02, 174.727263635692, 0.2697061], [124.03, 173.62503795041462, 0.16073011], [124.04, 173.5776378853339, 0.22998661], [124.05, 173.21020809620248, 0.21471655], [124.06, 172.9174407136533, 0.21315444], [124.07, 174.7111071148658, 0.26237482], [124.08, 175.6372804901785, 0.32619214], [124.09, 186.12697274523936, 0.38750315], [124.1, 217.64527282874377, 0.23883897], [124.11, 232.8205991215118, 0.30557188], [124.12, 233.85345798796163, 0.5388288], [124.13, 234.2370041889421, 0.7690428], [124.14, 233.5184191598953, 0.835709], [124.15, 233.9186578149518, 0.8796453], [124.16, 233.28893005150317, 0.8645546], [124.17, 233.45844967457646, 0.8690419], [124.18, 233.5388358938059, 0.8782588], [124.19, 233.4984351322002, 0.8760197], [124.2, 233.75251669052375, 0.86925286], [124.21, 233.66756092785073, 0.88811123], [124.22, 232.99569022809112, 0.85673386], [124.23, 232.94593036167225, 0.84484506], [124.24, 233.39120974768608, 0.8662137], [124.25, 218.6346754563936, 0.7452154], [124.26, 189.28318153168348, 0.47604755], [124.27, 172.32849295038227, 0.33985072], [124.28, 150.5767260563834, 0.398212], [124.29, 135.62716778567003, 0.29653805], [124.3, 133.75046577841547, 0.29519388], [124.31, 134.13804170496294, 0.6146515], [124.32, 133.84507232404263, 0.7460309], [124.33, 133.55411634222256, 0.72761285], [124.34, 132.37943153024023, 0.71889377], [124.35, 132.69736984225477, 0.7494517], [124.36, 133.3039399254138, 0.79558], [124.37, 134.25422146962745, 0.72579545], [124.38, 135.55010302068843, 0.77176106], [124.39, 136.6440189244462, 0.7818786], [124.4, 138.01810590505048, 0.8256759], [124.41, 139.164154667566, 0.84623724], [124.42, 139.30651587000716, 0.8527082], [124.43, 138.76421493684953, 0.86870766], [124.44, 138.13113628839463, 0.8345808], [124.45, 136.7382815098706, 0.7267445], [124.46, 135.51234761401315, 0.5664703], [124.47, 133.74647429314584, 0.60045886], [124.48, 131.9764715911316, 0.49444517], [124.49, 131.1359961767692, 0.22519203], [124.5, 136.62391676527076, 0.15316032], [124.51, 140.49365601904267, 0.5131925], [124.52, 140.19347152612673, 0.62433076], [124.53, 140.56863933318843, 0.7228076], [124.54, 141.1598785102779, 0.660373], [124.55, 142.51461485738682, 0.5609986], [124.56, 141.3266029042363, 0.48684463], [124.57, 136.95291949203917, 0.32911384], [124.58, 125.28646129912902, 0.5524855], [124.59, 117.14065329064267, 0.6321698], [124.6, 115.6048590437477, 0.7393851], [124.61, 108.02872039291593, 0.8036527], [124.62, 98.11958564402546, 0.8116677], [124.63, 93.9645816221894, 0.826508], [124.64, 90.9369795470842, 0.81839633], [124.65, 81.44246589281651, 0.8347854], [124.66, 78.18789027552674, 0.8305162], [124.67, 76.65224423722005, 0.8231508], [124.68, 68.36796841752809, 0.8167302], [124.69, 64.74175862690936, 0.79346544], [124.7, 58.34198564311406, 0.6474048], [124.71, 57.50087959451427, 0.43780673], [124.72, 51.41355393521974, 0.26388708], [124.73, 47.37466246460524, 0.24225552], [124.74, 45.158989860258856, 0.085608944], [124.75, 44.31411398511977, 0.070616], [124.76, 43.828802755654486, 0.35628685], [124.77, 43.595725166144064, 0.32712212], [124.78, 43.828719530254304, 0.4340226], [124.79, 43.38783182668817, 0.38678405], [124.8, 43.33431309496162, 0.15678723], [124.81, 43.835593389195736, 0.16069247], [124.82, 44.25300952178215, 0.113049395], [124.83, 43.92902244235144, 0.1896428], [124.84, 43.673366290763454, 0.22601265], [124.85, 43.28240845350354, 0.17229761], [124.86, 43.73460625315932, 0.37711227], [124.87, 43.630755874551824, 0.20520899], [124.88, 44.84563594123743, 0.19790395], [124.89, 43.940527498515905, 0.22770661], [124.9, 43.28021174715809, 0.19584295], [124.91, 43.46257360124639, 0.17730975], [124.92, 43.61305296578135, 0.15569569], [124.93, 43.9454039241336, 0.13218607], [124.94, 44.00256014839323, 0.17254691], [124.95, 43.83828484260316, 0.611467], [124.96, 44.298271189230064, 0.43394777], [124.97, 44.07990997196754, 0.3052542], [124.98, 44.769829580640376, 0.34298566], [124.99, 44.52014089330068, 0.4079848], [125.0, 44.10091842544675, 0.6729356], [125.01, 43.68123208721954, 0.4195895], [125.02, 43.47612973866952, 0.43238837], [125.03, 43.644226363696916, 0.34791896], [125.04, 43.066142800985375, 0.5055485], [125.05, 42.387800300566795, 0.42830127], [125.06, 43.32261108937588, 0.47163677], [125.07, 43.884913623986705, 0.60563874], [125.08, 43.97273979979153, 0.57107687], [125.09, 43.69169010371992, 0.6883507], [125.1, 43.58525399622407, 0.60211176], [125.11, 43.63330223259459, 0.6487455], [125.12, 43.750659704111925, 0.56959176], [125.13, 43.833790647631076, 0.66727495], [125.14, 44.065651374693495, 0.75775987], [125.15, 43.70959061774586, 0.6785301], [125.16, 43.78855637987334, 0.78875566], [125.17, 43.84424126258292, 0.66650856], [125.18, 43.885333392063046, 0.3671486], [125.19, 45.73854870021536, 0.096588515], [125.2, 49.68498811578716, 0.07345123], [125.21, 54.25636811832045, 0.10456847], [125.22, 58.300558552341, 0.23134883], [125.23, 62.6615645842271, 0.3585224], [125.24, 68.16271755659727, 0.4677956], [125.25, 69.19262963415014, 0.58373684], [125.26, 77.14343604240449, 0.509061], [125.27, 81.1528347910565, 0.5124768], [125.28, 88.84962815450956, 0.5038637], [125.29, 93.7983433450181, 0.5985383], [125.3, 103.01541130376839, 0.5630598], [125.31, 105.79774948915967, 0.45945752], [125.32, 116.3103042496522, 0.33755472], [125.33, 120.58623433528791, 0.3519804], [125.34, 134.0927323657606, 0.28972626], [125.35, 137.77834650115867, 0.43636253], [125.36, 147.69492653781106, 0.3678455], [125.37, 162.74602415252264, 0.4848646], [125.38, 176.5142046774359, 0.44801268], [125.39, 195.3088245945513, 0.4026027], [125.4, 209.18948361968984, 0.41156894], [125.41, 207.81664461807097, 0.4696824], [125.42, 208.00993377983897, 0.47823516], [125.43, 208.26457602296298, 0.2528928], [125.44, 209.02091882485138, 0.45608103], [125.45, 210.90432466858636, 0.4184663], [125.46, 225.47761737006414, 0.2003874], [125.47, 233.55223980398438, 0.3922576], [125.48, 235.01374635989893, 0.67177665], [125.49, 237.80974350233595, 0.6124396], [125.5, 239.72370938913247, 0.6062091], [125.51, 240.61115228156442, 0.4105791], [125.52, 242.05286609684495, 0.3006363], [125.53, 237.5337499713318, 0.24014507], [125.54, 234.8495824073845, 0.33870593], [125.55, 233.72741307421455, 0.38406172], [125.56, 231.69488060727343, 0.48951685], [125.57, 230.83015905074174, 0.562874], [125.58, 230.6859185345208, 0.44207057], [125.59, 221.86374762272763, 0.29769748], [125.6, 209.5226053089413, 0.32325122], [125.61, 197.61734125390714, 0.1691428], [125.62, 179.6528442188761, 0.15002465], [125.63, 174.87847121059886, 0.25075278], [125.64, 165.6046690649204, 0.2944662], [125.65, 153.8513258308655, 0.22981524], [125.66, 145.33158453414035, 0.27966645], [125.67, 136.87817155386105, 0.17105351], [125.68, 136.00090909498843, 0.2107504], [125.69, 135.59948252577985, 0.08718687], [125.7, 137.85879233592152, 0.18883367], [125.71, 138.65159483136972, 0.12073022], [125.72, 139.7201604399566, 0.14957058], [125.73, 139.1783092324999, 0.15623295], [125.74, 139.76379414515554, 0.29853138], [125.75, 139.80493940938717, 0.31985044], [125.76, 138.83263725319748, 0.16409484], [125.77, 140.74988647489863, 0.098706014], [125.78, 141.6527150320251, 0.12867871], [125.79, 142.7429968990111, 0.42746118], [125.8, 141.26299262593406, 0.41827998], [125.81, 141.0737727222704, 0.57957685], [125.82, 138.75181116607496, 0.4033429], [125.83, 139.06977469156394, 0.49906945], [125.84, 137.52624945271737, 0.36375475], [125.85, 138.82661954106138, 0.39457512], [125.86, 138.50159551923667, 0.4336282], [125.87, 138.57352813138493, 0.54371655], [125.88, 137.84092718996578, 0.51068383], [125.89, 137.63613566944557, 0.40475374], [125.9, 139.31675089634265, 0.32566848], [125.91, 141.19114646140022, 0.5388136], [125.92, 141.21806418874021, 0.4491352], [125.93, 141.40982387190832, 0.49653327], [125.94, 139.97264735518945, 0.21272613], [125.95, 139.19032722226623, 0.4363623], [125.96, 139.59479744686422, 0.32805416], [125.97, 139.37455403065113, 0.2945054], [125.98, 138.51270610826577, 0.40309325], [125.99, 137.90495041463208, 0.47436106], [126.0, 136.6448120118174, 0.31395334], [126.01, 135.74219385938682, 0.3778422], [126.02, 136.52983268274818, 0.4852115], [126.03, 137.06531137401797, 0.73871875], [126.04, 137.06546157471396, 0.7434537], [126.05, 136.981843672154, 0.6632037], [126.06, 136.5437086450083, 0.57943475], [126.07, 136.57685967109524, 0.4494426], [126.08, 136.75323692610738, 0.30257842], [126.09, 137.02756385161527, 0.5216571], [126.1, 136.54353357444538, 0.27729374], [126.11, 135.83870910919342, 0.31969354], [126.12, 135.08229814104143, 0.30335945], [126.13, 135.59140310587574, 0.32392374], [126.14, 135.19232996999426, 0.26907763], [126.15, 135.2889678917817, 0.33142486], [126.16, 135.66600078064062, 0.5442858], [126.17, 136.64031830905984, 0.56330526], [126.18, 137.90602690299636, 0.42355174], [126.19, 139.4131587471815, 0.71106017], [126.2, 139.1951142904942, 0.7400307], [126.21, 138.94360390156456, 0.66073895], [126.22, 138.15056469649076, 0.6312233], [126.23, 137.8018601094621, 0.60960567], [126.24, 138.42002762906392, 0.58834535], [126.25, 138.754589311531, 0.58861214], [126.26, 137.77975004684316, 0.71096885], [126.27, 137.7837304178699, 0.7688163], [126.28, 137.30341612007712, 0.78815836], [126.29, 136.92588708675754, 0.7059688], [126.3, 137.219126964886, 0.72294], [126.31, 136.72303888304182, 0.70869917], [126.32, 136.9699565434903, 0.6703844], [126.33, 137.11163303092522, 0.6209533], [126.34, 136.87041294623165, 0.510479], [126.35, 136.96373605813153, 0.361414], [126.36, 136.867513406319, 0.49182352], [126.37, 130.2476739823379, 0.331468], [126.38, 117.50277862061881, 0.35077462], [126.39, 107.85522152191965, 0.33052334], [126.4, 95.35931052534211, 0.27983665], [126.41, 88.34729649329392, 0.65424615], [126.42, 88.05579611787763, 0.7409711], [126.43, 87.4163882058008, 0.811425], [126.44, 86.45720396567413, 0.75039816], [126.45, 85.88877086303894, 0.659168], [126.46, 86.41328464339325, 0.47407213], [126.47, 86.5847993070215, 0.5203403], [126.48, 84.1333880961898, 0.6264204], [126.49, 79.70066239542919, 0.7055131], [126.5, 76.55693612833416, 0.69159], [126.51, 71.78730284567511, 0.6978547], [126.52, 69.55839599869114, 0.7372582], [126.53, 68.6011500035107, 0.74338627], [126.54, 65.92798875836917, 0.7354516], [126.55, 61.95777378063541, 0.73964614], [126.56, 59.1553859081484, 0.72641397], [126.57, 58.379309001979095, 0.58931434], [126.58, 57.12864085039413, 0.3307035], [126.59, 53.58578182643451, 0.12996975], [126.6, 50.63825405757916, 0.05800576], [126.61, 48.69802821829688, 0.40067905], [126.62, 49.90826709824021, 0.50468594], [126.63, 50.67133002866791, 0.61610204], [126.64, 51.3029748446256, 0.7173014], [126.65, 51.8045700370785, 0.79354495], [126.66, 51.54034990818214, 0.6893451], [126.67, 51.60106551872876, 0.7602969], [126.68, 51.98938776845292, 0.75020593], [126.69, 52.06448625564875, 0.602146], [126.7, 52.349064752444065, 0.47870278], [126.71, 51.55900710340155, 0.3922703], [126.72, 51.62311847656181, 0.5187067], [126.73, 51.883348311683655, 0.5271069], [126.74, 52.20717895125762, 0.68372947], [126.75, 52.28996451121449, 0.60692126], [126.76, 52.21128599987104, 0.5438115], [126.77, 52.42164868981283, 0.41425067], [126.78, 52.85639029303535, 0.40013793], [126.79, 53.61636526511961, 0.44314605], [126.8, 53.27841534381374, 0.40834612], [126.81, 52.45022609093346, 0.6146618], [126.82, 51.840386219797296, 0.5232012], [126.83, 51.95295248826727, 0.66382074], [126.84, 52.25002893025001, 0.6313355], [126.85, 52.87639307948489, 0.5326268], [126.86, 52.839078349143094, 0.32430175], [126.87, 53.78721412343573, 0.21478094], [126.88, 54.582240603973446, 0.36245358], [126.89, 55.35782821724153, 0.4260414], [126.9, 56.30347130402789, 0.35322583], [126.91, 56.87926967640011, 0.334157], [126.92, 57.99076330138524, 0.34283522], [126.93, 57.43610673400292, 0.43206763], [126.94, 57.2939350766751, 0.55704457], [126.95, 57.21125036520762, 0.52290493], [126.96, 57.68095841401109, 0.47919965], [126.97, 57.26828882755302, 0.4791782], [126.98, 57.19426841954948, 0.14525326], [126.99, 56.33326691191001, 0.12068462], [127.0, 52.29689869347837, 0.1172624], [127.01, 50.16659045486173, 0.25173157], [127.02, 50.13926098333307, 0.15872899], [127.03, 51.908204651459606, 0.25827956], [127.04, 55.609246458215736, 0.20832703], [127.05, 51.70390449414319, 0.1755866], [127.06, 52.373621915998754, 0.20205374], [127.07, 51.18982584619421, 0.21418908], [127.08, 52.34144141212784, 0.3779968], [127.09, 54.32001785855333, 0.20162246], [127.1, 53.546665197083605, 0.15195367], [127.11, 53.371932910529665, 0.075958595], [127.12, 54.21217981881264, 0.15921633], [127.13, 54.84762139500147, 0.29052955], [127.14, 54.41454699511049, 0.34017903], [127.15, 53.536040404715884, 0.2596951], [127.16, 53.58331933840227, 0.36445063], [127.17, 53.202975792069644, 0.24373563], [127.18, 52.608753247843076, 0.2161856], [127.19, 52.86786363529672, 0.17292435], [127.2, 52.93438050034328, 0.2219672], [127.21, 53.50081267091409, 0.13012168], [127.22, 53.99609182641501, 0.13160747], [127.23, 54.59860976332087, 0.15005994], [127.24, 54.50687553746337, 0.1965926], [127.25, 54.82658917237244, 0.16722724], [127.26, 53.83631352421773, 0.216782], [127.27, 53.968807187295, 0.17619623], [127.28, 54.910389447520785, 0.17216797], [127.29, 60.90745588406519, 0.32583117], [127.3, 67.44535466795475, 0.18368691], [127.31, 73.2175276499055, 0.14416866], [127.32, 80.41154242888852, 0.14321622], [127.33, 91.09588598241872, 0.08458254], [127.34, 95.97958880465976, 0.24547185], [127.35, 108.5087070658865, 0.22668186], [127.36, 116.7741543037946, 0.38537365], [127.37, 116.88608790228743, 0.58769155], [127.38, 116.37933624063761, 0.5823519], [127.39, 116.71044245755164, 0.51473075], [127.4, 116.88838106597473, 0.5363819], [127.41, 117.15283459651155, 0.5944105], [127.42, 117.98509073282713, 0.2822433], [127.43, 118.46018655323371, 0.47946882], [127.44, 119.87847499810032, 0.54580754], [127.45, 122.34788800317153, 0.2802449], [127.46, 124.37841190543818, 0.648969], [127.47, 126.25814317445659, 0.7122331], [127.48, 128.14555181285428, 0.7769046], [127.49, 131.58221528224234, 0.7252893], [127.5, 132.6532173118167, 0.78141654], [127.51, 135.7924535718881, 0.6850098], [127.52, 139.33871193505016, 0.36939126], [127.53, 141.5026954984882, 0.22465251], [127.54, 140.3048591207285, 0.24143328], [127.55, 150.55284615084742, 0.11599211], [127.56, 152.53111400909054, 0.15706357], [127.57, 151.84073637710011, 0.2588534], [127.58, 152.68551753478545, 0.23177312], [127.59, 152.40270139534437, 0.31761694], [127.6, 152.63366882365483, 0.24464612], [127.61, 151.86256128551594, 0.319299], [127.62, 152.5882554443424, 0.33320865], [127.63, 152.7790879898655, 0.32803214], [127.64, 155.40224652553712, 0.44945958], [127.65, 157.6362092265797, 0.53317785], [127.66, 158.8881984742515, 0.49053505], [127.67, 156.44121715151505, 0.4610101], [127.68, 157.15663021837122, 0.4763064], [127.69, 158.3843907325134, 0.25118092], [127.7, 159.37810367573064, 0.1838948], [127.71, 159.87253160415582, 0.09255489], [127.72, 161.67606102656183, 0.17401895], [127.73, 165.7705219660248, 0.16084446], [127.74, 166.93057738458438, 0.120174475], [127.75, 170.96593324377093, 0.222116], [127.76, 174.90699842166944, 0.35138035], [127.77, 175.6687165914607, 0.44109154], [127.78, 176.7657079457025, 0.59097046], [127.79, 177.33671438051928, 0.72025055], [127.8, 176.58474612288694, 0.7187209], [127.81, 175.45107165808372, 0.78768116], [127.82, 175.1286853755623, 0.749014], [127.83, 174.24087785699325, 0.7095713], [127.84, 173.69465216578507, 0.71887773], [127.85, 173.7465596371306, 0.63439095], [127.86, 174.8145985911037, 0.42097047], [127.87, 176.77400237620816, 0.5941286], [127.88, 178.35245365598809, 0.59876215], [127.89, 179.388344624117, 0.5886573], [127.9, 191.8956040041289, 0.43709394], [127.91, 216.26341665038612, 0.30108002], [127.92, 232.13194143177452, 0.14301014], [127.93, 231.68364234137047, 0.2985037], [127.94, 232.5825210959889, 0.36785412], [127.95, 231.38502467895393, 0.3406269], [127.96, 233.25680355777104, 0.28702533], [127.97, 233.24420586145544, 0.38096994], [127.98, 233.54265857932592, 0.39694202], [127.99, 233.3509450135223, 0.5578282], [128.0, 232.85715280556147, 0.4902206], [128.01, 232.59019378246506, 0.6999583], [128.02, 232.82684376071632, 0.58756703], [128.03, 229.56217793049913, 0.3073641], [128.04, 206.98066029379956, 0.38733235], [128.05, 175.9391514855684, 0.4728734], [128.06, 157.15712743808095, 0.612624], [128.07, 138.80363074770776, 0.6621082], [128.08, 136.407596014465, 0.60059845], [128.09, 133.24329496771637, 0.70043933], [128.1, 132.8009733953417, 0.7104956], [128.11, 133.60334833049032, 0.63954794], [128.12, 134.71354596311534, 0.62180567], [128.13, 135.7783881743963, 0.67631066], [128.14, 138.60527565618622, 0.61507255], [128.15, 142.02009218681445, 0.61497635], [128.16, 144.9092758402908, 0.5773066], [128.17, 144.0470147096243, 0.6372499], [128.18, 144.3866545697851, 0.6537302], [128.19, 143.83714932206544, 0.78465104], [128.2, 144.02317929946062, 0.85357594], [128.21, 142.89704225669655, 0.8479894], [128.22, 140.74164523163444, 0.80071306], [128.23, 139.01697038133037, 0.78069335], [128.24, 134.5210320090147, 0.42362404], [128.25, 130.93767290687805, 0.47845885], [128.26, 128.32744142316548, 0.5223493], [128.27, 126.2668332558431, 0.49265143], [128.28, 127.74425107520355, 0.4022663], [128.29, 130.24309207588757, 0.2620804], [128.3, 138.32944657818337, 0.7305131], [128.31, 139.03981871470518, 0.8150955], [128.32, 141.62725987713554, 0.74757725], [128.33, 143.42271224119605, 0.839032], [128.34, 143.94454657492207, 0.88486356], [128.35, 143.37764351210402, 0.7985098], [128.36, 140.17949037888363, 0.71369445], [128.37, 138.28261614710362, 0.69176567], [128.38, 137.52860519975852, 0.5024512], [128.39, 135.20802427952123, 0.39195058], [128.4, 132.5416165092269, 0.42607316], [128.41, 126.19746925051797, 0.5170124], [128.42, 121.73780793283092, 0.62815464], [128.43, 117.52199817155355, 0.5343618], [128.44, 117.03088857012807, 0.53116494], [128.45, 119.76881512648032, 0.07123258], [128.46, 123.25790181801321, 0.10791127], [128.47, 125.68063180573503, 0.06961679], [128.48, 127.24952623031439, 0.18993962], [128.49, 128.6192748067244, 0.24871422], [128.5, 129.74726018956167, 0.08812645], [128.51, 130.99005527395175, 0.4818948], [128.52, 132.41532482670783, 0.5644651], [128.53, 132.22032527620973, 0.5792937], [128.54, 133.70521394070005, 0.5978976], [128.55, 136.20148881545273, 0.31377223], [128.56, 136.69125441563887, 0.2114942], [128.57, 136.9966409914491, 0.3782209], [128.58, 136.54479107996232, 0.3981561], [128.59, 137.2277488804376, 0.4374463], [128.6, 137.28429642939696, 0.39325002], [128.61, 139.1680074438549, 0.38845372], [128.62, 139.94039823525443, 0.2151293], [128.63, 143.62052081812064, 0.18459006], [128.64, 148.37715522053014, 0.17962638], [128.65, 151.36554928546164, 0.19416913], [128.66, 156.4551410857678, 0.13954227], [128.67, 162.34962672789646, 0.17384724], [128.68, 165.49391746125315, 0.18275204], [128.69, 170.31374857007148, 0.124278665], [128.7, 172.82272612218617, 0.35863814], [128.71, 175.34953866871774, 0.13923992], [128.72, 176.3830007408089, 0.17594877], [128.73, 178.53723504865872, 0.35090274], [128.74, 180.72209655515766, 0.40428358], [128.75, 181.228990673484, 0.32517207], [128.76, 181.26075398428455, 0.33207864], [128.77, 181.78927320508, 0.35615063], [128.78, 182.84860496828014, 0.35448465], [128.79, 196.54048991186104, 0.31240013], [128.8, 222.6366584652019, 0.5170982], [128.81, 246.4543261097651, 0.5023674], [128.82, 262.6456203625397, 0.66585803], [128.83, 261.0142863249021, 0.5511202], [128.84, 261.4019984161894, 0.7232836], [128.85, 262.0296518964463, 0.7446828], [128.86, 262.05428031354745, 0.7960197], [128.87, 262.34104687787413, 0.80080885], [128.88, 261.2542004459664, 0.7289367], [128.89, 260.2498687405772, 0.6952099], [128.9, 259.5822945457717, 0.6652889], [128.91, 259.3694189980675, 0.73292166], [128.92, 259.6858644483343, 0.7561139], [128.93, 260.2522054647902, 0.7475678], [128.94, 232.71131528449402, 0.7358016], [128.95, 205.26459663969078, 0.6152951], [128.96, 175.7901159386568, 0.4131845], [128.97, 155.3143319299597, 0.6828355], [128.98, 137.13621560864337, 0.80814934], [128.99, 137.87486587988437, 0.7293577], [129.0, 137.60355367593738, 0.5131936], [129.01, 139.12438197432112, 0.56698126], [129.02, 139.5381907489838, 0.41664022], [129.03, 139.64330362530714, 0.5257593], [129.04, 139.23442367562143, 0.46220502], [129.05, 138.501821040542, 0.55293375], [129.06, 137.92845746020123, 0.2839363], [129.07, 137.61543731749248, 0.5395593], [129.08, 137.9454594478901, 0.54691017], [129.09, 139.28914313544226, 0.6435692], [129.1, 140.5933934480889, 0.5901367], [129.11, 140.78126896255765, 0.65313476], [129.12, 143.2744397457946, 0.45824635], [129.13, 160.53136377195446, 0.32114798], [129.14, 183.70957883607687, 0.25453332], [129.15, 215.08464209607854, 0.41396955], [129.16, 233.17071826677446, 0.421832], [129.17, 269.3764179625743, 0.33050904], [129.18, 268.1279686313976, 0.49895477], [129.19, 265.50714558923767, 0.4323353], [129.2, 261.0253845748219, 0.2744843], [129.21, 264.9971171657959, 0.31281286], [129.22, 266.67908873387023, 0.28327572], [129.23, 264.81041724297114, 0.3306283], [129.24, 262.81454429364896, 0.2978188], [129.25, 260.9488210805119, 0.23083492], [129.26, 259.36663868506827, 0.14865331], [129.27, 259.16302284314827, 0.09735117], [129.28, 256.03068032442707, 0.107486874], [129.29, 255.59521107487575, 0.12660584], [129.3, 252.4065548323148, 0.4795355], [129.31, 244.04703164292783, 0.29726022], [129.32, 238.48364967172412, 0.20361844], [129.33, 233.289445947875, 0.30445197], [129.34, 224.93576443065055, 0.46935236], [129.35, 218.40425607522184, 0.52522147], [129.36, 212.6150655505101, 0.49615675], [129.37, 209.33604463896856, 0.09428464], [129.38, 207.0885927947254, 0.0811726], [129.39, 205.08919381452068, 0.14603129], [129.4, 199.35829227081086, 0.104503244], [129.41, 192.7952649149913, 0.18973331], [129.42, 185.24816097228612, 0.14657313], [129.43, 182.5271138109431, 0.103301995], [129.44, 179.7961602329714, 0.049933635], [129.45, 176.0300886257333, 0.11640137], [129.46, 174.21966074702345, 0.21803114], [129.47, 174.0625280919845, 0.24039854], [129.48, 157.6704495068841, 0.24297126], [129.49, 138.5776847627077, 0.243459], [129.5, 138.91990649612805, 0.1581091], [129.51, 139.299481536833, 0.1872374], [129.52, 143.2860127042696, 0.23970766], [129.53, 144.5672823500677, 0.1216329], [129.54, 144.68634596781783, 0.31081256], [129.55, 145.96280422655698, 0.42330867], [129.56, 144.54274673836602, 0.64829105], [129.57, 143.70478899772397, 0.53776485], [129.58, 142.9007432515898, 0.5204774], [129.59, 140.0967440028502, 0.17651013], [129.6, 138.8424750490061, 0.42213053], [129.61, 137.82102449700227, 0.43414202], [129.62, 138.66341979185162, 0.6054753], [129.63, 137.82069621745666, 0.5566327], [129.64, 137.19544035255313, 0.5511663], [129.65, 137.52633198909268, 0.6095292], [129.66, 137.4824205622498, 0.56633276], [129.67, 136.776324548939, 0.50293976], [129.68, 136.0208761674723, 0.4557554], [129.69, 134.58771358592082, 0.3484659], [129.7, 136.6488512822636, 0.18200387], [129.71, 135.43137582970706, 0.19203255], [129.72, 136.54315646164187, 0.14578626], [129.73, 135.11376512686863, 0.10706105], [129.74, 136.60388413928436, 0.15013105], [129.75, 136.77133723139232, 0.1850084], [129.76, 126.4919509291304, 0.22255972], [129.77, 109.50339713035333, 0.5804214], [129.78, 97.35702967815499, 0.41798955], [129.79, 88.54363760322201, 0.3344529], [129.8, 77.50009204993339, 0.47707972], [129.81, 67.81112233935775, 0.2654621], [129.82, 61.315467770295896, 0.21910992], [129.83, 52.15467873479881, 0.16278867], [129.84, 46.71711464531559, 0.2181869], [129.85, 46.29833384953686, 0.4199342], [129.86, 46.63386832036379, 0.5692435], [129.87, 45.686735792126996, 0.63275814], [129.88, 45.88271664827659, 0.55645084], [129.89, 45.344814172137404, 0.473503], [129.9, 45.611501992443536, 0.4885041], [129.91, 46.19757837621344, 0.58784753], [129.92, 46.16488272482785, 0.5540688], [129.93, 46.54572913492295, 0.35230014], [129.94, 46.09623023969079, 0.43912646], [129.95, 46.35010546283346, 0.4902481], [129.96, 46.54444417355194, 0.5193852], [129.97, 46.455641343036504, 0.6627801], [129.98, 45.902344812373485, 0.59776795], [129.99, 45.6658908493616, 0.52094096], [130.0, 45.47762222457956, 0.46215618], [130.01, 45.056550017208615, 0.17645349], [130.02, 44.84062843188407, 0.16492724], [130.03, 44.165928897813544, 0.2957662], [130.04, 44.51828483865065, 0.30953825], [130.05, 44.633929503084076, 0.2996319], [130.06, 44.83678816019203, 0.5324834], [130.07, 44.64925970617999, 0.5183292], [130.08, 44.82031490839429, 0.48638546], [130.09, 44.54595569274531, 0.44267198], [130.1, 42.567233562134234, 0.25044596], [130.11, 36.68184939302182, 0.43994772], [130.12, 34.80094913092532, 0.37727335], [130.13, 32.46637617604716, 0.52303433], [130.14, 32.47615013303626, 0.47792163], [130.15, 32.628327020519905, 0.46750557], [130.16, 32.71888474087094, 0.45828906], [130.17, 32.67666942042152, 0.28155228], [130.18, 32.64694414863269, 0.365769], [130.19, 32.689978099116495, 0.29518095], [130.2, 32.68459528928999, 0.44179857], [130.21, 32.718497024983265, 0.24647258], [130.22, 32.686208491881544, 0.30190417], [130.23, 32.73751016696475, 0.35370168], [130.24, 32.77155677940939, 0.43482423], [130.25, 32.82787348032152, 0.4332915], [130.26, 32.76851209917903, 0.4377208], [130.27, 32.74827342312189, 0.33077356], [130.28, 32.72008068581446, 0.2671628], [130.29, 32.536620281817314, 0.35812026], [130.3, 32.41894539839783, 0.19805591], [130.31, 32.47568174736164, 0.13853899], [130.32, 34.95456530567314, 0.24168241], [130.33, 36.336024049224044, 0.27908865], [130.34, 41.39921873841903, 0.19583574], [130.35, 43.09177790195229, 0.11545385], [130.36, 48.32013732213887, 0.09700289], [130.37, 51.10066749840521, 0.26736578], [130.38, 51.197664275413516, 0.51932913], [130.39, 51.49203456741098, 0.64286], [130.4, 51.82606320777474, 0.6554958], [130.41, 52.15965286443651, 0.6602896], [130.42, 52.23534332264422, 0.47098023], [130.43, 52.24427860628491, 0.21394344], [130.44, 51.5915161113132, 0.10188673], [130.45, 51.931247224839666, 0.17541866], [130.46, 52.43446760879252, 0.26289615], [130.47, 52.62968791763943, 0.18790081], [130.48, 52.480177478236754, 0.14238288], [130.49, 52.38514922726546, 0.12712038], [130.5, 53.36353006387802, 0.13189818], [130.51, 53.648357924071576, 0.15669143], [130.52, 53.733858630894495, 0.19638124], [130.53, 52.12438467142155, 0.12919417], [130.54, 51.67324026011442, 0.17683174], [130.55, 51.41879097548965, 0.12650721], [130.56, 51.45605269091759, 0.298635], [130.57, 52.148415049295984, 0.16422841], [130.58, 52.7749312698547, 0.2292878], [130.59, 51.42731111853556, 0.10956897], [130.6, 51.1333399136154, 0.11161377], [130.61, 52.53167663871825, 0.15834834], [130.62, 52.959905041572455, 0.2102086], [130.63, 50.6942535754495, 0.12282807], [130.64, 50.76409135802461, 0.12439252], [130.65, 51.49852988281503, 0.104639105], [130.66, 53.913492629489134, 0.18256624], [130.67, 53.22218166570241, 0.15753573], [130.68, 52.99227587674524, 0.116814464], [130.69, 52.99583500803409, 0.21946698], [130.7, 53.98996396155168, 0.3773752], [130.71, 54.32117394124436, 0.2795641], [130.72, 54.42991537759947, 0.19414915], [130.73, 54.97279326528367, 0.18034883], [130.74, 53.67711962919779, 0.2466518], [130.75, 54.578797952854565, 0.35101482], [130.76, 54.95467999880476, 0.22134343], [130.77, 55.89339944787359, 0.30397493], [130.78, 55.45685275878189, 0.32942414], [130.79, 56.08425358782625, 0.3621107], [130.8, 55.08123605111935, 0.22168173], [130.81, 55.31449610505388, 0.15942591], [130.82, 54.55365999282122, 0.2822909], [130.83, 54.38566177885324, 0.3389709], [130.84, 52.73611745461119, 0.19401644], [130.85, 51.98350912066337, 0.28642145], [130.86, 52.41578633267221, 0.2744688], [130.87, 52.651113191163105, 0.3099627], [130.88, 52.69413728600846, 0.3116533], [130.89, 52.77590019315327, 0.3747091], [130.9, 52.105240183792745, 0.19969606], [130.91, 53.28482746611455, 0.14655001], [130.92, 53.08937240994035, 0.3183365], [130.93, 53.435411979446855, 0.24790958], [130.94, 52.26967004714416, 0.18252492], [130.95, 52.08362636875719, 0.208225], [130.96, 52.09181012969212, 0.13598038], [130.97, 54.1258992394033, 0.21473496], [130.98, 53.96781294867574, 0.1527595], [130.99, 52.11052612602423, 0.20093176], [131.0, 49.499114633597394, 0.28255212], [131.01, 50.69352550675997, 0.32193998], [131.02, 51.439300817581994, 0.20351642], [131.03, 53.16302698427808, 0.078575306], [131.04, 56.697682067071355, 0.045770902], [131.05, 57.91089459431434, 0.11977809], [131.06, 59.358592048206816, 0.14491156], [131.07, 59.624131603407534, 0.12789783], [131.08, 58.741295459422915, 0.59275854], [131.09, 57.86332886264611, 0.7997616], [131.1, 57.98140079945986, 0.83404857], [131.11, 58.16431788683697, 0.8294103], [131.12, 58.60242153141678, 0.82747406], [131.13, 58.74182342323471, 0.86253154], [131.14, 58.4344815062214, 0.8505744], [131.15, 58.35314530998413, 0.85245055], [131.16, 58.3161600539555, 0.8677214], [131.17, 58.53928899549441, 0.86297387], [131.18, 58.436314782934666, 0.87243354], [131.19, 58.69311919139406, 0.85652864], [131.2, 58.527190194393825, 0.87349564], [131.21, 58.303429728154825, 0.8744317], [131.22, 58.673838864163514, 0.8602504], [131.23, 58.54995315332885, 0.8418607], [131.24, 58.75311009476904, 0.8232991], [131.25, 58.73300257055103, 0.8444534], [131.26, 58.547936370017986, 0.86508137], [131.27, 58.84923128869268, 0.53101635], [131.28, 59.064239880368696, 0.27130488], [131.29, 61.00077496346728, 0.26644385], [131.3, 61.552669559716136, 0.21001832], [131.31, 61.38066961290333, 0.685539], [131.32, 61.715367863231954, 0.5670338], [131.33, 61.80498095762853, 0.4877508], [131.34, 62.176832931309605, 0.20124018], [131.35, 62.48946118686482, 0.08427605], [131.36, 64.33532695045363, 0.17297582], [131.37, 72.85189976093788, 0.13503262], [131.38, 74.08327875255875, 0.4492568], [131.39, 81.73921464340276, 0.6681615], [131.4, 90.73088544768828, 0.6205637], [131.41, 92.88582015810573, 0.45264664], [131.42, 95.62714275045876, 0.06844039], [131.43, 105.59470077972671, 0.2724592], [131.44, 113.55336781408268, 0.3396527], [131.45, 118.47177372595834, 0.30801988], [131.46, 121.08623729545798, 0.3973281], [131.47, 132.08392176054528, 0.32387015], [131.48, 140.09660425945032, 0.5449502], [131.49, 149.05578304341398, 0.7340102], [131.5, 155.19392826176514, 0.5269929], [131.51, 164.9031098637664, 0.10734538], [131.52, 180.64600900392153, 0.13208988], [131.53, 185.39114716771633, 0.33373585], [131.54, 186.07911146216463, 0.35723197], [131.55, 185.63000411635105, 0.5322364], [131.56, 185.534127725613, 0.7294835], [131.57, 185.91867725611937, 0.7372353], [131.58, 186.1282579611931, 0.78080434], [131.59, 185.84266627329438, 0.78447163], [131.6, 185.62299902554673, 0.82559484], [131.61, 185.76022397760943, 0.8005835], [131.62, 185.84579981771378, 0.7931993], [131.63, 185.4714873672582, 0.7415267], [131.64, 185.43406776943306, 0.6176254], [131.65, 185.58661240441512, 0.6112481], [131.66, 185.71578590613467, 0.6508838], [131.67, 185.43681929739728, 0.71956354], [131.68, 185.79490248754166, 0.8240236], [131.69, 185.61315995274018, 0.86267096], [131.7, 185.70689768540552, 0.86607075], [131.71, 185.46513891516793, 0.85590166], [131.72, 185.36782165896489, 0.7349887], [131.73, 185.37543087308282, 0.6593177], [131.74, 185.0607150345187, 0.67836505], [131.75, 185.2457356486412, 0.60161555], [131.76, 180.8762025925249, 0.6746024], [131.77, 160.35697308029404, 0.6958356], [131.78, 148.77005908234304, 0.59666806], [131.79, 139.7823786960293, 0.7925767], [131.8, 127.47839117020554, 0.7785066], [131.81, 118.36152143212382, 0.7636043], [131.82, 110.11860958367132, 0.6922886], [131.83, 96.45869611162556, 0.5458845], [131.84, 92.47266490355125, 0.619351], [131.85, 92.6082892636267, 0.7396802], [131.86, 92.7064580201083, 0.7994683], [131.87, 92.9132928545105, 0.84077936], [131.88, 92.60895497782028, 0.8535471], [131.89, 92.42888741902061, 0.84319675], [131.9, 92.39637916982218, 0.83746576], [131.91, 92.58854648902548, 0.8538057], [131.92, 92.76276346887413, 0.847958], [131.93, 92.48262359796563, 0.80890596], [131.94, 92.33481795665163, 0.7422377], [131.95, 92.08332321283329, 0.62154555], [131.96, 92.2828207362369, 0.50558406], [131.97, 92.40058250038764, 0.50024205], [131.98, 92.35656226183389, 0.598019], [131.99, 92.34424598876754, 0.61900514], [132.0, 92.23808762000894, 0.68049634], [132.01, 92.44776887972237, 0.77277136], [132.02, 92.40514011525212, 0.84758496], [132.03, 92.23785690896892, 0.8263682], [132.04, 92.37764867601595, 0.83382154], [132.05, 92.5708291864367, 0.8437597], [132.06, 92.6025457983789, 0.8523675], [132.07, 92.58967239936261, 0.85372126], [132.08, 92.4520128833301, 0.8294951], [132.09, 92.32989650267209, 0.61084944], [132.1, 91.8753511334325, 0.6569163], [132.11, 85.59891325288118, 0.78794324], [132.12, 79.1017497862538, 0.81133384], [132.13, 73.7340955623719, 0.84592456], [132.14, 70.67880785009231, 0.7959793], [132.15, 66.09465572331865, 0.406416], [132.16, 62.55390783380069, 0.27486643], [132.17, 58.52853354139482, 0.32704028], [132.18, 53.687050544513326, 0.46292865], [132.19, 51.74160099965213, 0.64566475], [132.2, 51.528695915852296, 0.71126056], [132.21, 46.76188123333173, 0.6824144], [132.22, 42.81742530301361, 0.4624544], [132.23, 41.70387622194539, 0.37794837], [132.24, 39.539221575287044, 0.16444553], [132.25, 39.158490418135735, 0.37099203], [132.26, 38.32219243032216, 0.13753092], [132.27, 39.4050240954124, 0.10480402], [132.28, 41.57204411644961, 0.18310055], [132.29, 42.10265773477603, 0.2578505], [132.3, 42.73595069661469, 0.19257152], [132.31, 43.46198320366309, 0.18388362], [132.32, 44.91898150074039, 0.25702512], [132.33, 46.11041129135468, 0.43515444], [132.34, 46.47512249613678, 0.500246], [132.35, 44.127227985582785, 0.39950788], [132.36, 43.486011712992436, 0.47121438], [132.37, 43.54774014270076, 0.50196785], [132.38, 43.21107248808971, 0.28525805], [132.39, 43.31544335613046, 0.3396117], [132.4, 43.24041605600338, 0.6140778], [132.41, 43.429158238040195, 0.56420445], [132.42, 43.705772011919926, 0.7193335], [132.43, 43.92123134129554, 0.80976295], [132.44, 43.89587090523286, 0.7500184], [132.45, 44.23658640172786, 0.581909], [132.46, 43.927487491740045, 0.5805113], [132.47, 43.676947750888246, 0.57969576], [132.48, 43.37686819824037, 0.72551835], [132.49, 43.181550329988234, 0.6553596], [132.5, 43.34903450151586, 0.61142236], [132.51, 43.139743590957366, 0.51101846], [132.52, 43.11608004084494, 0.46543226], [132.53, 43.180545666503576, 0.45370033], [132.54, 43.22682205243779, 0.40101698], [132.55, 43.364925205020384, 0.4436365], [132.56, 42.91913654782449, 0.48713005], [132.57, 43.19439512508939, 0.63043964], [132.58, 43.35549343273441, 0.6597685], [132.59, 43.469475609917154, 0.72502875], [132.6, 43.62275222381697, 0.68004936], [132.61, 43.35099320735203, 0.7202866], [132.62, 47.564160970836255, 0.67209154], [132.63, 53.237984085266916, 0.6031581], [132.64, 61.473186092560155, 0.6324579], [132.65, 69.00654098639649, 0.54707444], [132.66, 78.0441356053397, 0.57895297], [132.67, 86.30257614806328, 0.4395472], [132.68, 94.18328792732518, 0.28028142], [132.69, 105.12124038701913, 0.26757565], [132.7, 116.64962690572777, 0.41253963], [132.71, 133.1458789326736, 0.5991334], [132.72, 152.26884711411634, 0.70998585], [132.73, 167.68784413501865, 0.83776355], [132.74, 193.7373913891534, 0.82723045], [132.75, 208.2801789236149, 0.8153582], [132.76, 208.07691461762047, 0.7238915], [132.77, 208.029759173527, 0.63705605], [132.78, 207.74901126458076, 0.6196303], [132.79, 207.7010104387861, 0.7124052], [132.8, 207.87526022042533, 0.7747571], [132.81, 207.8072907892817, 0.8483823], [132.82, 207.8895655878772, 0.84596366], [132.83, 207.97272304909455, 0.8706312], [132.84, 208.09154130213687, 0.83959794], [132.85, 208.04667795870017, 0.7934814], [132.86, 207.81283036615878, 0.80755514], [132.87, 207.94411581536417, 0.7706223], [132.88, 207.6271761925501, 0.72987705], [132.89, 207.66509521950712, 0.75871396], [132.9, 207.86491551867135, 0.77221113], [132.91, 207.86218150142034, 0.8230093], [132.92, 208.11870227668834, 0.8706698], [132.93, 207.92874927855144, 0.86935526], [132.94, 207.93730527185585, 0.88782465], [132.95, 207.72843511962697, 0.8682851], [132.96, 207.8294428830057, 0.85289806], [132.97, 207.91859013864735, 0.83180165], [132.98, 207.8985417395935, 0.8238694], [132.99, 207.8130511744662, 0.81619143], [133.0, 207.95939567172024, 0.83988947], [133.01, 207.75714969672575, 0.86043584], [133.02, 207.9598899172155, 0.8754643], [133.03, 208.13791056255414, 0.84679365], [133.04, 208.1445670056743, 0.8468699], [133.05, 208.0313470166651, 0.8427469], [133.06, 208.1144326394588, 0.83538556], [133.07, 208.47818076369572, 0.8320635], [133.08, 208.11838486662515, 0.80035114], [133.09, 208.01562102940028, 0.75876397], [133.1, 207.36480692752704, 0.60137326], [133.11, 206.99872136878872, 0.30438536], [133.12, 214.97874577733353, 0.42625713], [133.13, 241.85092293850286, 0.26158184], [133.14, 261.85785367667256, 0.18684967], [133.15, 280.0519798357892, 0.1605628], [133.16, 306.6902710903505, 0.090570375], [133.17, 336.2516227774657, 0.06712908], [133.18, 359.5510421081423, 0.09270356], [133.19, 396.18998639875804, 0.1420646], [133.2, 435.18440638492046, 0.07690195], [133.21, 466.47177806502276, 0.14257649], [133.22, 475.0758218668401, 0.14835422], [133.23, 474.1338796944569, 0.13547419], [133.24, 469.45546263780074, 0.2450323], [133.25, 475.1993289930005, 0.25358447], [133.26, 459.71517617849594, 0.13302101], [133.27, 449.69248016917396, 0.24152857], [133.28, 427.51911238509945, 0.3459384], [133.29, 383.54746420652964, 0.6523448], [133.3, 372.5260468772223, 0.5829988], [133.31, 345.1230350936174, 0.7486092], [133.32, 324.22340111989337, 0.66739964], [133.33, 311.969791742447, 0.7280088], [133.34, 290.0188217314054, 0.6105703], [133.35, 275.09480408214705, 0.6730529], [133.36, 253.5195336843192, 0.50548613], [133.37, 237.71054160879262, 0.40959477], [133.38, 231.1255624076381, 0.51970613], [133.39, 232.19829846846838, 0.5175144], [133.4, 233.4434882278404, 0.5525872], [133.41, 233.3190112069786, 0.69120634], [133.42, 232.29212625775457, 0.68705857], [133.43, 232.7187779871997, 0.8053586], [133.44, 231.87201890709431, 0.8017137], [133.45, 231.641177581856, 0.8005165], [133.46, 232.68516064941323, 0.81553054], [133.47, 231.75975270299773, 0.8165293], [133.48, 231.84200744144636, 0.78930104], [133.49, 232.4259342501261, 0.80065566], [133.5, 232.66165971133006, 0.8283458], [133.51, 233.0722140531173, 0.84004253], [133.52, 232.61683090867282, 0.796438], [133.53, 232.42601895648474, 0.8324813], [133.54, 232.89161693279846, 0.84928876], [133.55, 233.05218585801825, 0.8675871], [133.56, 231.73527398699048, 0.85385996], [133.57, 231.6302710644194, 0.8450957], [133.58, 232.7026562668843, 0.8616226], [133.59, 232.57378510648994, 0.8445232], [133.6, 232.3407761229544, 0.8124388], [133.61, 231.49539718671969, 0.81840205], [133.62, 232.61840514922736, 0.8290704], [133.63, 232.52159427128478, 0.8177741], [133.64, 233.24167616622074, 0.82849663], [133.65, 232.41903122630703, 0.80622405], [133.66, 232.35485562256446, 0.7840095], [133.67, 232.3493700743308, 0.7857718], [133.68, 232.5999984452995, 0.777734], [133.69, 231.92743790967455, 0.7701839], [133.7, 232.27579750556123, 0.7581769], [133.71, 233.62701091384332, 0.7861339], [133.72, 233.80554300681786, 0.7890297], [133.73, 233.0024182652018, 0.767651], [133.74, 231.95116330860526, 0.7279562], [133.75, 232.86110657984875, 0.77016884], [133.76, 233.55984535655392, 0.780975], [133.77, 232.32085576215493, 0.6854013], [133.78, 230.88433894415843, 0.59041315], [133.79, 232.60085037315253, 0.70946765], [133.8, 233.31077746768176, 0.60585606], [133.81, 231.43004500509065, 0.6837952], [133.82, 231.8944192110311, 0.6693453], [133.83, 233.30956259464372, 0.72140205], [133.84, 233.49129434520947, 0.6706004], [133.85, 232.99040530706324, 0.6502536], [133.86, 231.23311334812624, 0.5544078], [133.87, 232.40512781604477, 0.48038545], [133.88, 233.91176432244833, 0.37485778], [133.89, 233.98466357258684, 0.3670045], [133.9, 234.923398972868, 0.22603495], [133.91, 234.08372098753432, 0.26109132], [133.92, 219.93294451432382, 0.15874517], [133.93, 209.33491966827162, 0.20131482], [133.94, 210.26170281463976, 0.23239765], [133.95, 210.3427299211413, 0.17034888], [133.96, 209.29299904216919, 0.23101774], [133.97, 209.2165618777139, 0.4332107], [133.98, 210.88029299016557, 0.366435], [133.99, 211.87346460198341, 0.25205594], [134.0, 210.63123412343114, 0.34526232], [134.01, 209.1263432333979, 0.5358888], [134.02, 185.1171062150334, 0.43899652], [134.03, 166.42545619864933, 0.38291776], [134.04, 147.9036080947352, 0.5250397], [134.05, 129.77391280352748, 0.57375634], [134.06, 116.03045096651331, 0.49128422], [134.07, 104.90005448862883, 0.37403843], [134.08, 90.74929601136205, 0.3375734], [134.09, 84.06297784469365, 0.3323385], [134.1, 74.22647384826423, 0.20732419], [134.11, 64.9701847893138, 0.07226979], [134.12, 56.6925272148828, 0.13422279], [134.13, 52.07664756355928, 0.17172484], [134.14, 51.58471533583882, 0.42609447], [134.15, 52.14287482681356, 0.51177883], [134.16, 52.668419347473645, 0.6871144], [134.17, 52.67133606447998, 0.6046762], [134.18, 52.74014438681136, 0.49409968], [134.19, 52.11587492683315, 0.40141892], [134.2, 52.3480491725925, 0.47297445], [134.21, 53.14476016461734, 0.26697168], [134.22, 53.40081926600601, 0.42059386], [134.23, 53.284370596241565, 0.35628745], [134.24, 52.49426764246359, 0.21939954], [134.25, 53.40230320103753, 0.15963061], [134.26, 53.42170901845181, 0.37956482], [134.27, 54.176586581690984, 0.3489588], [134.28, 53.52599957390649, 0.15663417], [134.29, 54.359367603453606, 0.08926362], [134.3, 53.56610057963927, 0.16640872], [134.31, 54.70271036161006, 0.34005502], [134.32, 54.403150723795555, 0.25194463], [134.33, 54.54992282966383, 0.22045617], [134.34, 52.895766333026614, 0.061016407], [134.35, 54.31220008323771, 0.16080937], [134.36, 54.92293924483516, 0.24941173], [134.37, 54.94813359350832, 0.49639702], [134.38, 54.6876071512815, 0.18276747], [134.39, 59.418982833350995, 0.092458], [134.4, 69.26850769467032, 0.2700089], [134.41, 77.0946703433192, 0.29296893], [134.42, 87.84847169156619, 0.4699561], [134.43, 97.5443389512258, 0.5786938], [134.44, 111.8528963769536, 0.72703516], [134.45, 118.57821423896681, 0.6932418], [134.46, 139.2979142672828, 0.6196247], [134.47, 153.8240318874531, 0.53498], [134.48, 169.6297384316303, 0.43143997], [134.49, 185.63595893238912, 0.43474463], [134.5, 212.1569032607418, 0.4325006], [134.51, 231.98193014571325, 0.33528283], [134.52, 233.28009278518277, 0.23255648], [134.53, 232.17810777250781, 0.34099057], [134.54, 231.47454333053759, 0.37044683], [134.55, 226.80052627601512, 0.32820916], [134.56, 224.4417576449595, 0.23494472], [134.57, 220.99896949315692, 0.35343888], [134.58, 220.16638032785553, 0.18974286], [134.59, 216.58468523729326, 0.18923104], [134.6, 233.56400302865896, 0.16409175], [134.61, 246.1545353987829, 0.160956], [134.62, 253.48550428492447, 0.11574844], [134.63, 254.98014930812047, 0.10080624], [134.64, 275.469850872935, 0.37346196], [134.65, 278.1907754131564, 0.5677946], [134.66, 278.5884966590065, 0.5727343], [134.67, 276.88278281301814, 0.6152098], [134.68, 275.92772044696585, 0.71773595], [134.69, 274.6405493908907, 0.7209538], [134.7, 274.399860574454, 0.6893646], [134.71, 275.5402321532068, 0.4844387], [134.72, 274.61517344290644, 0.33845016], [134.73, 279.1121721962663, 0.24655324], [134.74, 281.5680759851923, 0.15594211], [134.75, 284.7576092124859, 0.19623704], [134.76, 284.9068404194714, 0.11924904], [134.77, 283.613665969822, 0.15823582], [134.78, 281.33115464821543, 0.11147738], [134.79, 283.9395745119506, 0.10299658], [134.8, 282.7702220755694, 0.09972871], [134.81, 280.62166022834, 0.108599424], [134.82, 282.78848328643613, 0.15481816], [134.83, 284.17563626893303, 0.3378255], [134.84, 284.0682729565312, 0.4666351], [134.85, 283.40270740658895, 0.47316113], [134.86, 283.9606457968644, 0.6418204], [134.87, 286.459287487623, 0.6172196], [134.88, 284.61113397556187, 0.5992456], [134.89, 286.2378968709716, 0.6538704], [134.9, 285.2996364040748, 0.67267096], [134.91, 285.8752428359383, 0.71962506], [134.92, 285.9835255064708, 0.6631309], [134.93, 284.2172590436303, 0.6529374], [134.94, 284.9905802143158, 0.6593903], [134.95, 283.9126203194916, 0.7307584], [134.96, 283.56399029567046, 0.7112541], [134.97, 282.5110007658694, 0.7014148], [134.98, 279.1554822627016, 0.7931342], [134.99, 277.2688410222873, 0.81442], [135.0, 273.73264578800547, 0.8160474], [135.01, 268.1114636552075, 0.80915856], [135.02, 256.48134195209616, 0.60805523], [135.03, 253.89872452462146, 0.22152008], [135.04, 253.57929448995336, 0.14951609], [135.05, 262.99261948863864, 0.4214802], [135.06, 266.7500420359701, 0.57992166], [135.07, 268.9834723473599, 0.75952303], [135.08, 272.22143125600957, 0.80113584], [135.09, 275.2530946653303, 0.8476274], [135.1, 277.05685192008747, 0.88310885], [135.11, 277.378699198947, 0.88479155], [135.12, 277.46665474529317, 0.8788002], [135.13, 277.41214624230736, 0.86718506], [135.14, 277.09123437507355, 0.86346495], [135.15, 277.70028835778214, 0.8739492], [135.16, 278.9161472044517, 0.88582474], [135.17, 279.73541251761196, 0.87104595], [135.18, 279.90674468131095, 0.8665623], [135.19, 279.45089749682006, 0.8828562], [135.2, 278.66710181480744, 0.89613765], [135.21, 278.05038790554784, 0.9007753], [135.22, 276.60529969362324, 0.864297], [135.23, 275.4086021975005, 0.8558402], [135.24, 273.10027810612206, 0.8275172], [135.25, 270.5728011602098, 0.8212853], [135.26, 269.06611744578066, 0.8107833], [135.27, 267.68882086900925, 0.76732713], [135.28, 267.980016507367, 0.70139223], [135.29, 270.9884991615711, 0.7904424], [135.3, 273.17364096595657, 0.76948535], [135.31, 277.4700835034935, 0.7781491], [135.32, 279.4542349755559, 0.8359984], [135.33, 278.9740803255992, 0.8690131], [135.34, 277.07043157681983, 0.85641575], [135.35, 275.43533981357973, 0.85062337], [135.36, 273.9533825120999, 0.84046596], [135.37, 273.7673055648123, 0.8425083], [135.38, 274.41180968901466, 0.8502151], [135.39, 275.4742205938627, 0.8713715], [135.4, 275.90218404875975, 0.88243276], [135.41, 276.4655106598274, 0.88323265], [135.42, 276.9766764917908, 0.9013193], [135.43, 276.9115104134084, 0.8664932], [135.44, 277.7526267843734, 0.8302309], [135.45, 278.55998339779075, 0.7662835], [135.46, 275.7835763373739, 0.7834423], [135.47, 272.6134918402088, 0.8214458], [135.48, 268.0430832649322, 0.84479517], [135.49, 263.72757014713864, 0.81918174], [135.5, 258.7535282306293, 0.68632406], [135.51, 253.0015095005014, 0.5565717], [135.52, 252.1342591987496, 0.6631538], [135.53, 258.025114973995, 0.47866863], [135.54, 270.1638988215813, 0.43813935], [135.55, 274.9614106055034, 0.75050807], [135.56, 276.94651716776144, 0.8414547], [135.57, 278.4367221978887, 0.8884895], [135.58, 278.977836378087, 0.8832448], [135.59, 277.5208123532842, 0.888181], [135.6, 275.647457364256, 0.873776], [135.61, 274.3139604802043, 0.87073827], [135.62, 274.3600710526178, 0.8539176], [135.63, 274.9153161627982, 0.83798605], [135.64, 276.20206167485077, 0.75425863], [135.65, 277.194288895315, 0.67482555], [135.66, 278.12973961357454, 0.66574705], [135.67, 279.4181176802779, 0.6697575], [135.68, 279.4298376198353, 0.7477435], [135.69, 278.94984368361287, 0.78032994], [135.7, 278.1359451657445, 0.7245743], [135.71, 276.70746779053684, 0.6810246], [135.72, 274.72945800125484, 0.53120613], [135.73, 270.9518911687468, 0.6645321], [135.74, 269.82961914722523, 0.6463079], [135.75, 270.9904366964238, 0.6502199], [135.76, 271.5361900054058, 0.58067685], [135.77, 271.21239961904973, 0.34695804], [135.78, 271.78534317788393, 0.14756973], [135.79, 271.4662451529491, 0.10977223], [135.8, 272.44852696797153, 0.15538684], [135.81, 272.1383272665242, 0.06999429], [135.82, 270.876146329819, 0.06599185], [135.83, 258.8634394733266, 0.06351877], [135.84, 221.58920046485935, 0.08784323], [135.85, 208.31163452771216, 0.31105715], [135.86, 208.71467160371606, 0.29641423], [135.87, 208.34576994460537, 0.12928075], [135.88, 208.27652246838855, 0.16979462], [135.89, 209.90625448106275, 0.07585597], [135.9, 216.5455530444695, 0.09786205], [135.91, 229.34682114235028, 0.20766892], [135.92, 244.2541013923256, 0.09074658], [135.93, 256.7044776101138, 0.111359596], [135.94, 262.0408513703672, 0.14948381], [135.95, 265.4421167750828, 0.17479979], [135.96, 266.8678638605488, 0.1454748], [135.97, 278.26923557321925, 0.20866211], [135.98, 276.2035974384873, 0.4632243], [135.99, 270.8819802706578, 0.6779204], [136.0, 271.0958891973284, 0.8364162], [136.01, 271.811519160067, 0.8647096], [136.02, 274.37044812215686, 0.8143921], [136.03, 276.66036993861655, 0.8139484], [136.04, 277.2304903804583, 0.8498624], [136.05, 277.1133603150211, 0.8350852], [136.06, 276.84806353083604, 0.84629864], [136.07, 276.6238485446965, 0.83749586], [136.08, 276.42766970686176, 0.8577123], [136.09, 276.0876528516103, 0.8542379], [136.1, 275.82553223185226, 0.83040816], [136.11, 276.19558623604286, 0.76006275], [136.12, 278.06566961282283, 0.6258019], [136.13, 279.18031185759946, 0.5252927], [136.14, 279.1902738885958, 0.5792934], [136.15, 278.92376792297154, 0.27345076], [136.16, 257.9127246026886, 0.42432407], [136.17, 232.57140144606234, 0.55007523], [136.18, 233.64431911003223, 0.69217753], [136.19, 233.53171289085012, 0.7067786], [136.2, 232.13395628323215, 0.63255155], [136.21, 232.92332542192017, 0.6325029], [136.22, 232.9945936003024, 0.6087474], [136.23, 234.25623647953836, 0.6583117], [136.24, 234.34478283093387, 0.7940344], [136.25, 234.25687877353778, 0.80611396], [136.26, 232.47825119680107, 0.7688291], [136.27, 232.95612530663217, 0.7945762], [136.28, 232.53881169082217, 0.75105894], [136.29, 232.60482247777094, 0.68832177], [136.3, 232.62719483641035, 0.47978085], [136.31, 207.05081924022045, 0.0851337], [136.32, 182.71145296876637, 0.11858607], [136.33, 183.05541173195843, 0.12348667], [136.34, 183.14335327094386, 0.2434656], [136.35, 183.06797208721798, 0.28451696], [136.36, 182.32739782843421, 0.24262698], [136.37, 182.60257918605103, 0.24217354], [136.38, 181.65042954259607, 0.19745007], [136.39, 182.20621097453974, 0.21763293], [136.4, 182.35479004117965, 0.20881382], [136.41, 181.859428240277, 0.25118494], [136.42, 181.69882525372253, 0.13614579], [136.43, 181.69684963046393, 0.16476001], [136.44, 181.4156353296878, 0.15436187], [136.45, 190.1670339298043, 0.39215338], [136.46, 195.38228951654708, 0.5643044], [136.47, 196.6866972289884, 0.5117092], [136.48, 201.8766933861082, 0.44596797], [136.49, 207.99142278376667, 0.5855064], [136.5, 210.4400403132163, 0.5672099], [136.51, 210.23260323015063, 0.6553211], [136.52, 208.36484367464158, 0.7321802], [136.53, 206.34066068074927, 0.80434847], [136.54, 205.39528404349014, 0.85465693], [136.55, 205.71138676974246, 0.8668202], [136.56, 206.58049825512268, 0.8438526], [136.57, 209.26494848799445, 0.77119714], [136.58, 211.7977280298369, 0.7650828], [136.59, 211.50012786420504, 0.77706295], [136.6, 209.19192251554483, 0.7887154], [136.61, 207.24208405382984, 0.8258536], [136.62, 205.32396069952966, 0.7899687], [136.63, 201.72798208776783, 0.6073869], [136.64, 189.00199811166885, 0.32130474], [136.65, 182.73168886835782, 0.53939867], [136.66, 175.52390826279952, 0.5220579], [136.67, 170.34102466374054, 0.6844042], [136.68, 167.6851073146061, 0.71750706], [136.69, 166.42037803934687, 0.7156106], [136.7, 165.12121542769958, 0.7100086], [136.71, 164.97045454542013, 0.67787087], [136.72, 167.50358798065704, 0.6670387], [136.73, 171.7466715818614, 0.6598458], [136.74, 176.4589026635553, 0.72291356], [136.75, 177.12333266282042, 0.7825587], [136.76, 177.09274676206863, 0.7651345], [136.77, 175.94767859561202, 0.74374264], [136.78, 174.50200023210613, 0.65878624], [136.79, 172.69117049551596, 0.67794895], [136.8, 171.90429713618013, 0.73431194], [136.81, 172.73081143633783, 0.73014694], [136.82, 172.90150729235228, 0.71792746], [136.83, 173.66944927634273, 0.6623413], [136.84, 175.38186618220632, 0.64750534], [136.85, 176.87420685374235, 0.65042967], [136.86, 179.06630163950274, 0.7200144], [136.87, 181.84196908745804, 0.66456115], [136.88, 182.7391041285026, 0.5729749], [136.89, 183.20324807482606, 0.5656924], [136.9, 182.3054954892226, 0.5151382], [136.91, 178.31191251849233, 0.5995204], [136.92, 176.9942636807471, 0.72090656], [136.93, 179.6367216273399, 0.7474479], [136.94, 181.3157750955337, 0.6916931], [136.95, 185.49203934035796, 0.6741686], [136.96, 190.7749212623812, 0.5210073], [136.97, 202.5381302115328, 0.38611498], [136.98, 206.7151301128137, 0.43344918], [136.99, 208.3448830079052, 0.5367048], [137.0, 209.03206503303255, 0.5533872], [137.01, 208.21767535977247, 0.49643692], [137.02, 206.71234245675493, 0.48011082], [137.03, 206.01950851006777, 0.3974662], [137.04, 206.0008369247997, 0.43138447], [137.05, 206.56748677914348, 0.43225053], [137.06, 206.86814181151445, 0.4976094], [137.07, 207.897398226149, 0.6870385], [137.08, 209.2450743221721, 0.62999755], [137.09, 209.30301169730205, 0.65158314], [137.1, 209.283387586141, 0.55837834], [137.11, 209.58900288307203, 0.59738475], [137.12, 210.04728055906395, 0.71750736], [137.13, 210.84362667719273, 0.6860989], [137.14, 210.9049042944934, 0.6721094], [137.15, 209.1015365606558, 0.45841545], [137.16, 206.00382143696623, 0.6237922], [137.17, 205.1794433581355, 0.76779246], [137.18, 204.44646398749117, 0.80188054], [137.19, 204.46862471417052, 0.8352515], [137.2, 205.10357749485354, 0.8317006], [137.21, 206.38919785967744, 0.821181], [137.22, 207.63249990800267, 0.796249], [137.23, 209.16845652795897, 0.71288043], [137.24, 209.97259086888772, 0.6275986], [137.25, 208.75882513232563, 0.5936761], [137.26, 207.9043668993779, 0.5904571], [137.27, 207.01976437527787, 0.69734734], [137.28, 206.6864851696318, 0.7671452], [137.29, 206.3129330876725, 0.80554634], [137.3, 205.05655110144, 0.7047627], [137.31, 202.61361191070904, 0.7038081], [137.32, 200.37401375557704, 0.78114164], [137.33, 195.86550577616623, 0.78464776], [137.34, 192.7370587509762, 0.82000405], [137.35, 190.7911178996122, 0.83740425], [137.36, 189.66229512863777, 0.8376002], [137.37, 190.93744674721975, 0.83198494], [137.38, 193.57923027732457, 0.7826469], [137.39, 197.91072598297094, 0.67912287], [137.4, 205.52889679456393, 0.7590332], [137.41, 207.88585127612617, 0.85208374], [137.42, 207.78470859680706, 0.8591756], [137.43, 207.02401727472937, 0.83074594], [137.44, 206.63069914977672, 0.8251779], [137.45, 206.5333053426162, 0.78753567], [137.46, 206.5193881475267, 0.61927414], [137.47, 207.20864174465572, 0.6010383], [137.48, 208.7353558687988, 0.5462244], [137.49, 210.21459566537234, 0.63859147], [137.5, 210.8031437775945, 0.73678005], [137.51, 210.00142431821268, 0.72727704], [137.52, 208.07494246431258, 0.7662862], [137.53, 206.78429557176884, 0.748045], [137.54, 205.54645527489714, 0.7522052], [137.55, 204.48727213044094, 0.70625967], [137.56, 202.95000530935198, 0.73059744], [137.57, 200.16020758307712, 0.6586271], [137.58, 197.95433654318236, 0.64475536], [137.59, 196.06759111640304, 0.60313493], [137.6, 194.7641873386166, 0.22934277], [137.61, 202.72925861539446, 0.26718536], [137.62, 205.99457414523732, 0.58947796], [137.63, 206.92732754017302, 0.41382337], [137.64, 206.12068291725635, 0.23388839], [137.65, 206.4808208335697, 0.25868776], [137.66, 205.86622871300037, 0.13014159], [137.67, 191.4044845095324, 0.30384344], [137.68, 181.47683236697137, 0.45996732], [137.69, 180.75626673287826, 0.47638485], [137.7, 179.62539243537836, 0.28690222], [137.71, 173.1903935053953, 0.304384], [137.72, 172.9422833562836, 0.3894965], [137.73, 173.1509952941175, 0.34472975], [137.74, 175.01988042333943, 0.39105552], [137.75, 176.26159856335764, 0.3419862], [137.76, 179.24746049005105, 0.4400801], [137.77, 182.44262772054978, 0.5677832], [137.78, 183.38334386843982, 0.46200624], [137.79, 185.06664411297916, 0.2728065], [137.8, 185.64429271032512, 0.31681255], [137.81, 186.67553144174894, 0.31971243], [137.82, 207.7375597335741, 0.31478614], [137.83, 208.20800394023826, 0.40141773], [137.84, 208.93412996352495, 0.3804169], [137.85, 200.053133354919, 0.26827177], [137.86, 182.57162516667123, 0.30809456], [137.87, 181.30407630750867, 0.6516395], [137.88, 182.2589403997589, 0.57307905], [137.89, 185.4566236443996, 0.4248197], [137.9, 200.22992656403767, 0.2778107], [137.91, 203.96633332866384, 0.6108571], [137.92, 206.18322584077592, 0.65574193], [137.93, 206.93405823622587, 0.7258966], [137.94, 207.2708892433781, 0.79351664], [137.95, 206.7210132356689, 0.8187305], [137.96, 205.8702792753071, 0.8241252], [137.97, 204.99709729044366, 0.84100544], [137.98, 205.5796726891681, 0.848916], [137.99, 207.32404383420356, 0.8239527], [138.0, 208.5168843495973, 0.7957708], [138.01, 209.24249309909897, 0.7526653], [138.02, 208.58755729296516, 0.75531286], [138.03, 209.48985213306406, 0.7457191], [138.04, 210.95733269437397, 0.7762464], [138.05, 211.22351383643675, 0.8432549], [138.06, 210.7936141499776, 0.8506626], [138.07, 210.12939547081206, 0.8289979], [138.08, 209.51904343698317, 0.8422138], [138.09, 208.52717058206096, 0.8786523], [138.1, 207.2570028531206, 0.8844757], [138.11, 205.97000366601407, 0.87692636], [138.12, 204.74747198739013, 0.8501742], [138.13, 204.7463024953347, 0.84259063], [138.14, 205.59996932095453, 0.8707606], [138.15, 207.00810825816478, 0.8466627], [138.16, 207.87220138300685, 0.84293544], [138.17, 208.8062065581788, 0.8108509], [138.18, 209.05488865916524, 0.80225754], [138.19, 208.24514462514432, 0.7615058], [138.2, 207.58997087648623, 0.83411074], [138.21, 207.65048309146306, 0.83154005], [138.22, 206.67233208187167, 0.8337774], [138.23, 205.8348458641822, 0.8490974], [138.24, 204.06821848709484, 0.8329906], [138.25, 202.30848479416323, 0.80388814], [138.26, 199.2127729029991, 0.7154241], [138.27, 195.98463654297365, 0.69294715], [138.28, 191.19081213373016, 0.732354], [138.29, 187.9452782768629, 0.7390718], [138.3, 183.73672086021708, 0.6589542], [138.31, 183.53139493130286, 0.50836504], [138.32, 189.22056822446083, 0.22897455], [138.33, 201.78912006982134, 0.29524556], [138.34, 205.2881721098045, 0.5177131], [138.35, 206.05173737256206, 0.24740832], [138.36, 196.53257667397045, 0.49068043], [138.37, 197.6783532779912, 0.7252362], [138.38, 199.41176887913727, 0.73425716], [138.39, 203.08768051694997, 0.75129575], [138.4, 206.25544020743843, 0.8185409], [138.41, 207.79940274716972, 0.8706819], [138.42, 207.95802158208602, 0.86953986], [138.43, 207.48320080081757, 0.8737863], [138.44, 207.5346687407764, 0.8775808], [138.45, 207.62171354742762, 0.8655004], [138.46, 207.3793859247445, 0.8876879], [138.47, 207.16319039190896, 0.85254896], [138.48, 206.04867702737977, 0.77039635], [138.49, 207.3454373797431, 0.58233684], [138.5, 208.25216714409734, 0.44926324], [138.51, 201.65651206104658, 0.20864747], [138.52, 194.4068607012266, 0.2966721], [138.53, 196.25731006412957, 0.22877532], [138.54, 201.80361521053817, 0.10462544], [138.55, 209.88731281599422, 0.12073808], [138.56, 217.7496688240608, 0.3726923], [138.57, 226.712126993555, 0.30072725], [138.58, 230.47635272908255, 0.33045402], [138.59, 230.64417039774298, 0.23980628], [138.6, 232.87262268925116, 0.4302832], [138.61, 237.4616940386299, 0.6492335], [138.62, 238.49250108410774, 0.74967426], [138.63, 237.8563396419341, 0.7997836], [138.64, 235.58245433965044, 0.7670721], [138.65, 233.26086779384303, 0.82496923], [138.66, 230.13416611962987, 0.80945265], [138.67, 227.15294388178765, 0.81894255], [138.68, 224.80342790080667, 0.76543], [138.69, 221.03909213458041, 0.69059575], [138.7, 218.60790086561104, 0.6278056], [138.71, 222.72328932994037, 0.38410452], [138.72, 231.65154183304762, 0.5976797], [138.73, 232.5803546488274, 0.7334043], [138.74, 232.5097429369798, 0.7608105], [138.75, 232.69237354876088, 0.81136215], [138.76, 232.45015624783971, 0.7773326], [138.77, 231.38408163323464, 0.6561558], [138.78, 229.60363819436307, 0.5535041], [138.79, 230.6844020469445, 0.15258056], [138.8, 234.3511571523543, 0.15791641], [138.81, 233.0300927482949, 0.09550638], [138.82, 231.31376722438293, 0.21293466], [138.83, 228.23098580915376, 0.17887007], [138.84, 228.10246243991907, 0.47219908], [138.85, 231.73418010537176, 0.41371325], [138.86, 235.187937514673, 0.20084772], [138.87, 260.16007600445033, 0.49063432], [138.88, 272.23442388120003, 0.64810455], [138.89, 274.78754740921784, 0.76494825], [138.9, 277.3313233526992, 0.82480234], [138.91, 278.4197951211814, 0.8369182], [138.92, 277.2659483739082, 0.76123136], [138.93, 275.7326030129894, 0.71584064], [138.94, 275.3904297040624, 0.52768034], [138.95, 275.7655493019719, 0.50881356], [138.96, 275.92175237533723, 0.6462245], [138.97, 275.1407359793253, 0.64828736], [138.98, 274.5439917039855, 0.63008523], [138.99, 273.88376744260603, 0.57521963], [139.0, 274.2664343814211, 0.45233816], [139.01, 276.53759876952404, 0.50535166], [139.02, 278.3368632107739, 0.510835], [139.03, 280.8431096196618, 0.7406381], [139.04, 282.0487742084681, 0.81597674], [139.05, 282.6686121152114, 0.80340534], [139.06, 283.68465383012085, 0.72855455], [139.07, 283.90518958982733, 0.5431181], [139.08, 284.46106563705996, 0.37102205], [139.09, 281.41200438972, 0.19482927], [139.1, 282.06691201751835, 0.5377518], [139.11, 281.5994983821754, 0.5558742], [139.12, 280.2300230129919, 0.6063484], [139.13, 280.10605855176345, 0.6086955], [139.14, 282.56280309465285, 0.6305737], [139.15, 284.5431308355596, 0.60620725], [139.16, 284.0305563635264, 0.59836173], [139.17, 281.93367162708506, 0.5715998], [139.18, 281.079337633218, 0.48790544], [139.19, 279.6354590600805, 0.35850406], [139.2, 273.29832472379155, 0.28566986], [139.21, 269.1892970814243, 0.4308578], [139.22, 267.22103095889213, 0.64582133], [139.23, 266.6247267645502, 0.5071489], [139.24, 269.41182173752657, 0.5502613], [139.25, 272.83197073006556, 0.599436], [139.26, 275.6511989670109, 0.6285813], [139.27, 277.91449452818773, 0.72219855], [139.28, 278.11746921811186, 0.76141983], [139.29, 277.7334227942348, 0.7217818], [139.3, 276.7920501964094, 0.65276563], [139.31, 275.6601116990553, 0.6827545], [139.32, 276.2762674154046, 0.7863806], [139.33, 276.49733086007825, 0.7902539], [139.34, 275.86187117795544, 0.6415474], [139.35, 275.3568646934299, 0.7849794], [139.36, 275.357601854064, 0.8550622], [139.37, 274.848243891477, 0.8589935], [139.38, 275.133456780218, 0.8750816], [139.39, 275.7403315590693, 0.8815506], [139.4, 277.2039455412261, 0.87053597], [139.41, 278.7996225048826, 0.8740456], [139.42, 279.2387038985699, 0.7731035], [139.43, 278.40134047024503, 0.7066386], [139.44, 276.91382314209864, 0.6971064], [139.45, 276.2598058562965, 0.75672823], [139.46, 276.61029924308207, 0.7426435], [139.47, 276.9968385151385, 0.76221234], [139.48, 277.4018945223611, 0.72727513], [139.49, 276.86081888322155, 0.5093242], [139.5, 276.67567882199796, 0.62401354], [139.51, 276.05046272208386, 0.614246], [139.52, 275.7880026748925, 0.54611033], [139.53, 276.39461641869764, 0.71288574], [139.54, 276.75529738623106, 0.7788373], [139.55, 277.86975180623034, 0.8070166], [139.56, 278.3891037748881, 0.8106907], [139.57, 278.7546920773699, 0.774465], [139.58, 278.9429537942271, 0.65002245], [139.59, 279.43016516693314, 0.63610864], [139.6, 278.1658958871517, 0.67585146], [139.61, 277.5711218356104, 0.75868064], [139.62, 278.63608137030377, 0.63105726], [139.63, 277.80264489744957, 0.5776147], [139.64, 275.95721571199977, 0.6324974], [139.65, 272.4460869863438, 0.7934649], [139.66, 267.6826477109286, 0.7741445], [139.67, 261.7557673863343, 0.77609754], [139.68, 260.15132615525255, 0.74530333], [139.69, 259.5645080486295, 0.746857], [139.7, 261.13885834464946, 0.7625861], [139.71, 263.14571312865684, 0.50629455], [139.72, 236.50458511846483, 0.68513936], [139.73, 218.46943330516592, 0.8090579], [139.74, 191.03831715863393, 0.6854602], [139.75, 170.40191052082633, 0.6527778], [139.76, 155.0131707534536, 0.7238002], [139.77, 138.61065607714932, 0.8824335], [139.78, 139.00276947065362, 0.9000554], [139.79, 138.9983067447782, 0.9102755], [139.8, 138.761576571457, 0.9055276], [139.81, 138.6134198442017, 0.8980533], [139.82, 138.3845925811122, 0.88778764], [139.83, 138.48954039110123, 0.8776023], [139.84, 138.2289606947352, 0.8801139], [139.85, 137.8362599707731, 0.88401425], [139.86, 137.52893951797552, 0.8541331], [139.87, 137.39983520483975, 0.857191], [139.88, 137.4394076933259, 0.837945], [139.89, 137.07387906835035, 0.7425734], [139.9, 137.7189682059161, 0.6892851], [139.91, 137.51866562806381, 0.688375], [139.92, 137.901789990206, 0.6980188], [139.93, 137.3333654040933, 0.7868708], [139.94, 136.88538786825842, 0.7812929], [139.95, 136.4325336294835, 0.7781116], [139.96, 135.968045212609, 0.7536007], [139.97, 135.55154029957384, 0.68397355], [139.98, 137.01160604579033, 0.7034491], [139.99, 138.63336058015753, 0.7532898], [140.0, 139.8784722942149, 0.7735945], [140.01, 139.35935488665797, 0.72305334], [140.02, 137.7524319814135, 0.69248205], [140.03, 136.80520322101663, 0.52115], [140.04, 136.49728665005222, 0.34778675], [140.05, 131.88882570107398, 0.35220188], [140.06, 134.59310922346384, 0.200748], [140.07, 134.6115448864661, 0.6437348], [140.08, 135.66042744325262, 0.61157453], [140.09, 135.58992630694584, 0.6803042], [140.1, 135.8284961486473, 0.66694], [140.11, 135.77960145782907, 0.374466], [140.12, 137.68444180540348, 0.43496633], [140.13, 136.26483901495914, 0.38373518], [140.14, 136.48178416380728, 0.33396825], [140.15, 147.1845784154482, 0.32752514], [140.16, 164.496148804986, 0.40908358], [140.17, 176.63428301511217, 0.28920633], [140.18, 177.93338637571372, 0.46805844], [140.19, 173.6341277843838, 0.5629537], [140.2, 170.01775590561584, 0.5866805], [140.21, 170.87161030159257, 0.48740718], [140.22, 171.30696695698046, 0.54386103], [140.23, 177.93357306009125, 0.29793108], [140.24, 194.19178669706542, 0.5228925], [140.25, 196.948678681636, 0.7053979], [140.26, 199.12849831894218, 0.725929], [140.27, 202.17105445537086, 0.6873411], [140.28, 204.2767813906494, 0.67111766], [140.29, 204.86429969473534, 0.63508517], [140.3, 203.5334938750421, 0.5709458], [140.31, 200.55833027400564, 0.69053113], [140.32, 198.4471635971147, 0.805795], [140.33, 198.1180767369112, 0.8027355], [140.34, 198.49760165251013, 0.7885543], [140.35, 200.8113133486042, 0.6741563], [140.36, 205.1284808732335, 0.69155794], [140.37, 208.5119190656553, 0.7620905], [140.38, 211.05793035237406, 0.77835274], [140.39, 211.9145525270386, 0.7567476], [140.4, 212.4685403655335, 0.72478116], [140.41, 212.80748117231678, 0.7361131], [140.42, 213.34429880067893, 0.721643], [140.43, 211.61710395707252, 0.66307354], [140.44, 209.4000747266891, 0.67747086], [140.45, 207.15268864852348, 0.7738273], [140.46, 205.42394956326734, 0.83700943], [140.47, 205.60098125228222, 0.8560082], [140.48, 206.03685389635075, 0.84856254], [140.49, 206.8940012875122, 0.82987887], [140.5, 208.927069608081, 0.8120159], [140.51, 211.00495933137057, 0.78891766], [140.52, 212.91078623550368, 0.804354], [140.53, 212.75485641994308, 0.8143712], [140.54, 210.7349884406991, 0.76136494], [140.55, 207.89302743942193, 0.776425], [140.56, 204.37917781909218, 0.78263086], [140.57, 200.84030145210085, 0.7628471], [140.58, 195.29334271883684, 0.7089454], [140.59, 188.94177584295403, 0.67586696], [140.6, 184.66598983923478, 0.7163992], [140.61, 178.45386344388623, 0.62668943], [140.62, 173.58586138481883, 0.64855367], [140.63, 170.0230824095508, 0.7292247], [140.64, 166.71954662286308, 0.6776874], [140.65, 165.57339807175222, 0.6847695], [140.66, 164.30308514739937, 0.4965328], [140.67, 165.1288334990216, 0.24783437], [140.68, 172.3274028615916, 0.15473905], [140.69, 184.35517838355523, 0.24410047], [140.7, 194.71323946371828, 0.2464502], [140.71, 211.22131532898803, 0.26342115], [140.72, 216.45934948845434, 0.21479556], [140.73, 210.38463535988546, 0.19864692], [140.74, 208.68218460558225, 0.5185319], [140.75, 208.74234097083178, 0.7813263], [140.76, 209.0522344404609, 0.81005466], [140.77, 207.94326138079586, 0.80979073], [140.78, 236.71499192546406, 0.7612954], [140.79, 266.8548065901608, 0.74333227], [140.8, 311.0380356115603, 0.7450314], [140.81, 343.94343773466426, 0.7185648], [140.82, 402.7124908046846, 0.4707663], [140.83, 436.44121292996704, 0.5191279], [140.84, 448.3931422276337, 0.7434111], [140.85, 459.50853992270316, 0.7550549], [140.86, 463.3610918797038, 0.8271471], [140.87, 463.5578639125473, 0.87985563], [140.88, 461.83961554676074, 0.88146], [140.89, 458.6742905843818, 0.86954534], [140.9, 452.33606115319907, 0.84185237], [140.91, 446.6571278889393, 0.7963692], [140.92, 438.04776994518414, 0.5388766], [140.93, 414.9730018997409, 0.675793], [140.94, 413.2028350744352, 0.72443265], [140.95, 413.4422589213173, 0.7341383], [140.96, 415.1432727841528, 0.7378416], [140.97, 417.8599321087454, 0.72191614], [140.98, 420.59127331367114, 0.6420861], [140.99, 421.7834155649803, 0.57698214], [141.0, 419.86834415061026, 0.64576346], [141.01, 418.71117091476253, 0.72576135], [141.02, 416.3138199202547, 0.7339268], [141.03, 414.6641396026738, 0.67982686], [141.04, 413.94334975616516, 0.6097371], [141.05, 414.12079412069306, 0.71897876], [141.06, 415.1584262394332, 0.74139196], [141.07, 415.83642017757194, 0.80214155], [141.08, 416.78729371197477, 0.8392054], [141.09, 416.90483667003116, 0.8554267], [141.1, 416.4900401972303, 0.8813349], [141.11, 416.43376355573946, 0.8731993], [141.12, 416.4999284595058, 0.88038373], [141.13, 415.984956362854, 0.87292314], [141.14, 416.0620539566398, 0.8515532], [141.15, 415.7272183823053, 0.8560415], [141.16, 415.9289329103547, 0.83867866], [141.17, 415.85268732949385, 0.82091504], [141.18, 415.4187122181354, 0.7938878], [141.19, 416.0870972084274, 0.69934064], [141.2, 416.36631859341975, 0.5929386], [141.21, 415.06871945139216, 0.4425777], [141.22, 405.5270009277248, 0.47727922], [141.23, 360.17554970689986, 0.5342158], [141.24, 335.9977657195566, 0.53706175], [141.25, 314.18159986651597, 0.49605492], [141.26, 277.40056954209047, 0.4636061], [141.27, 266.37279459144, 0.5145005], [141.28, 244.29831184012684, 0.52236325], [141.29, 214.09933346539904, 0.53408784], [141.3, 206.8839065941718, 0.5874265], [141.31, 207.14562456096488, 0.6674729], [141.32, 206.7427524417992, 0.6082603], [141.33, 207.1579245480184, 0.67606014], [141.34, 207.09755210914804, 0.7302398], [141.35, 206.52229571816753, 0.77625823], [141.36, 206.59260724393135, 0.8025218], [141.37, 205.98095878245806, 0.82036376], [141.38, 205.7907352733992, 0.8211338], [141.39, 205.73610579166984, 0.7773669], [141.4, 203.45865150484974, 0.53613573], [141.41, 200.03165298213005, 0.3361837], [141.42, 192.73262491485366, 0.18088552], [141.43, 185.11054616058712, 0.40570134], [141.44, 184.86217586936263, 0.7213607], [141.45, 182.0811998350859, 0.581474], [141.46, 181.38008306083117, 0.42763785], [141.47, 177.6242328333997, 0.401001], [141.48, 172.82783958356873, 0.57483906], [141.49, 169.11774695803885, 0.3599393], [141.5, 161.27108308414395, 0.4736815], [141.51, 152.9977691714712, 0.50448304], [141.52, 148.1734698326222, 0.6941334], [141.53, 141.11442266431692, 0.75754476], [141.54, 138.56401688479122, 0.6633564], [141.55, 135.92031638916143, 0.29210135], [141.56, 133.82280277342988, 0.2657121], [141.57, 127.63611625122783, 0.20823099], [141.58, 123.16601640273984, 0.3974706], [141.59, 122.44390597010329, 0.4444831], [141.6, 121.26327937076469, 0.57107174], [141.61, 121.54044220521979, 0.55003816], [141.62, 123.54818335935533, 0.49194035], [141.63, 124.71891464602344, 0.5259169], [141.64, 134.11350736763194, 0.5441714], [141.65, 152.0789266539266, 0.49918807], [141.66, 170.45396966148633, 0.47245532], [141.67, 188.81976011820885, 0.24396197], [141.68, 207.24533926322476, 0.32531014], [141.69, 207.1743092363186, 0.47388598], [141.7, 206.7180482692532, 0.54454184], [141.71, 205.27041391907096, 0.39500016], [141.72, 206.4312914340066, 0.32526627], [141.73, 208.73129351347416, 0.32768083], [141.74, 207.9609521477772, 0.26182985], [141.75, 209.30737673357015, 0.30341113], [141.76, 209.0929325995541, 0.3969645], [141.77, 214.3172578997636, 0.35245097], [141.78, 214.549691882435, 0.26423198], [141.79, 209.53084302166155, 0.10400247], [141.8, 192.56090921497926, 0.15298887], [141.81, 181.83958174429347, 0.24780571], [141.82, 178.67574835035398, 0.39228073], [141.83, 172.89457656052193, 0.2547228], [141.84, 157.4518404790179, 0.23404077], [141.85, 151.36032092449858, 0.2765106], [141.86, 152.6081579296157, 0.2460489], [141.87, 154.48632274840892, 0.44708484], [141.88, 159.544617514094, 0.4490522], [141.89, 164.1907708310873, 0.65265906], [141.9, 165.80524422748937, 0.6852297], [141.91, 169.11183907818952, 0.6244704], [141.92, 170.5627782092423, 0.70812243], [141.93, 171.73265591328652, 0.7362626], [141.94, 172.608113122798, 0.7230981], [141.95, 173.30029257970017, 0.75703], [141.96, 174.53691845836357, 0.747133], [141.97, 174.44643757153727, 0.69492066], [141.98, 171.97371057930843, 0.6736965], [141.99, 169.69777255953892, 0.6493721], [142.0, 167.52299573965564, 0.6313412], [142.01, 167.4347297649258, 0.38477358], [142.02, 165.335412688615, 0.15986012], [142.03, 168.40840974227163, 0.18458493], [142.04, 172.58977285938442, 0.4143677], [142.05, 173.9949576910354, 0.29308984], [142.06, 178.7868888470623, 0.3832552], [142.07, 185.22739923296297, 0.5256872], [142.08, 192.43701534874208, 0.35564926], [142.09, 192.7708586383764, 0.2873695], [142.1, 200.8494673058723, 0.42583627], [142.11, 204.32013447165366, 0.4695565], [142.12, 207.01535244254305, 0.6265828], [142.13, 208.31993575781954, 0.68670356], [142.14, 212.07294041913113, 0.50037503], [142.15, 215.9784707566733, 0.6332926], [142.16, 216.7327899781322, 0.6549617], [142.17, 213.3007268805443, 0.4741189], [142.18, 208.54087924880918, 0.5163458], [142.19, 207.11075040924584, 0.5710229], [142.2, 206.51533549031774, 0.64760095], [142.21, 206.15771781261554, 0.7361564], [142.22, 206.4841467526607, 0.46144435], [142.23, 207.669100862093, 0.5331568], [142.24, 210.01020602180222, 0.67812324], [142.25, 212.41925538283465, 0.4986331], [142.26, 213.77565440182082, 0.57225925], [142.27, 214.72213616259188, 0.5678135], [142.28, 217.9979356707882, 0.6682634], [142.29, 220.3913247322542, 0.53911346], [142.3, 235.4269519148417, 0.45951068], [142.31, 236.34686047472186, 0.74178356], [142.32, 237.10413991469602, 0.80322284], [142.33, 235.49788547685625, 0.8160885], [142.34, 233.2053996561731, 0.8457397], [142.35, 232.68451490694167, 0.8382101], [142.36, 232.73588767139532, 0.8336419], [142.37, 232.44445098910285, 0.76390976], [142.38, 232.03720483962684, 0.6461229], [142.39, 231.3942169521076, 0.7331989], [142.4, 231.53103761824758, 0.64545155], [142.41, 231.7779396503387, 0.6571693], [142.42, 231.89282859412214, 0.6533624], [142.43, 231.66399983572435, 0.44311082], [142.44, 232.03125537404898, 0.4050147], [142.45, 230.13990701142038, 0.3881749], [142.46, 227.35718439567418, 0.24837959], [142.47, 223.14121062340192, 0.6194284], [142.48, 219.86765049263937, 0.46648958], [142.49, 216.49052831617337, 0.23182225], [142.5, 215.85691709152508, 0.41491097], [142.51, 220.94330434592928, 0.60066015], [142.52, 219.38134121229143, 0.40066874], [142.53, 214.9495509130312, 0.22529732], [142.54, 213.63820362778165, 0.34345457], [142.55, 214.18591971915885, 0.25965065], [142.56, 205.96215878241168, 0.19933955], [142.57, 231.96711757001827, 0.18873096], [142.58, 262.2751363808102, 0.3232427], [142.59, 261.7796249082177, 0.5862727], [142.6, 265.91214205064585, 0.6984794], [142.61, 268.48558714195167, 0.747999], [142.62, 271.75312669224513, 0.76246816], [142.63, 276.65069800560525, 0.7976514], [142.64, 278.60321490232207, 0.875003], [142.65, 278.3166661345076, 0.87659085], [142.66, 276.40574998628085, 0.84157574], [142.67, 273.9290598350794, 0.8285051], [142.68, 272.6544868519006, 0.82581407], [142.69, 272.33048093825806, 0.78699666], [142.7, 274.2192878154061, 0.78117704], [142.71, 276.2540454200467, 0.61414343], [142.72, 278.79206439121793, 0.5331295], [142.73, 278.8200561602838, 0.5841728], [142.74, 276.6256469693373, 0.7016182], [142.75, 274.2412535076112, 0.66323066], [142.76, 271.4179095710427, 0.7103889], [142.77, 268.7213961006059, 0.5010368], [142.78, 265.9187676827775, 0.30777735], [142.79, 264.6047429236246, 0.1327164], [142.8, 239.3675421908114, 0.2396644], [142.81, 222.00921370819825, 0.1920133], [142.82, 200.687175455746, 0.11201571], [142.83, 185.07410295388564, 0.26102933], [142.84, 167.75701582238113, 0.5047979], [142.85, 154.6415492295968, 0.33232993], [142.86, 137.24410274390607, 0.32998332], [142.87, 138.03548725793308, 0.22539942], [142.88, 138.07296949265483, 0.2862175], [142.89, 137.7728979852553, 0.29086673], [142.9, 137.58677912625336, 0.29771748], [142.91, 137.69231527501424, 0.3471537], [142.92, 138.16185471896216, 0.4293461], [142.93, 138.5933349378305, 0.5594657], [142.94, 137.96009149939985, 0.6237396], [142.95, 138.0269731123265, 0.5635353], [142.96, 137.71201406773758, 0.6207784], [142.97, 137.78703980898229, 0.4046048], [142.98, 137.91674447701564, 0.65370756], [142.99, 138.5194003250091, 0.6641884], [143.0, 140.8376072043812, 0.5426105], [143.01, 141.7376694181518, 0.5896643], [143.02, 142.2731319003884, 0.6564111], [143.03, 142.2208084725787, 0.63616896], [143.04, 142.30656338726453, 0.61691177], [143.05, 142.33706496539727, 0.69292], [143.06, 142.226038389653, 0.734339], [143.07, 141.45055699367364, 0.7029559], [143.08, 139.37627457489026, 0.5919487], [143.09, 137.8194975109682, 0.6565743], [143.1, 136.6964528499496, 0.70595145], [143.11, 137.69739279247688, 0.61977094], [143.12, 139.06357564555543, 0.33605912], [143.13, 140.98585656086405, 0.32917565], [143.14, 143.64073194943813, 0.3696662], [143.15, 149.08949094873068, 0.37252992], [143.16, 152.44259635563142, 0.5290286], [143.17, 154.734602484465, 0.49875352], [143.18, 155.43221939938243, 0.6579315], [143.19, 155.6436971951842, 0.7582344], [143.2, 154.74199762409634, 0.76031387], [143.21, 154.25664329907218, 0.7422804], [143.22, 154.33995147584244, 0.7637653], [143.23, 154.59482163663364, 0.76968414], [143.24, 154.76947686800312, 0.73977023], [143.25, 154.20361121569724, 0.7271874], [143.26, 154.13884434626743, 0.65764844], [143.27, 155.46249447441576, 0.6178961], [143.28, 156.38737429250168, 0.4812381], [143.29, 157.60446256901676, 0.449668], [143.3, 142.9463646964873, 0.30856034], [143.31, 145.76713578589084, 0.28272244], [143.32, 148.89687082854388, 0.30829245], [143.33, 154.01199550031293, 0.33561945], [143.34, 153.38995692427548, 0.44840506], [143.35, 153.4309468121794, 0.2900308], [143.36, 159.0370898457694, 0.3746627], [143.37, 173.2030333876773, 0.4123905], [143.38, 184.93744644579508, 0.22600742], [143.39, 196.75316446270523, 0.16629086], [143.4, 205.33188402024587, 0.18416978], [143.41, 213.89790451569726, 0.15852045], [143.42, 224.7131958620085, 0.20535986], [143.43, 232.89169044363774, 0.16975905], [143.44, 248.0827540426576, 0.15084983], [143.45, 265.1416795938924, 0.14213692], [143.46, 274.6406834830404, 0.13522021], [143.47, 283.81512067082133, 0.29143664], [143.48, 287.1093499589066, 0.5108248], [143.49, 287.0022292946064, 0.68322474], [143.5, 287.5469216774914, 0.70977384], [143.51, 286.64681771137435, 0.6298782], [143.52, 287.5177610929034, 0.7415736], [143.53, 288.04268562997584, 0.8017375], [143.54, 286.46593185067184, 0.7710854], [143.55, 283.69673762471325, 0.7811698], [143.56, 281.49773311007567, 0.83080834], [143.57, 279.86982798025684, 0.82194406], [143.58, 278.65718428808634, 0.8357335], [143.59, 278.0886330511255, 0.785671], [143.6, 276.9733474258005, 0.6997628], [143.61, 277.2306228968997, 0.6664471], [143.62, 278.31599870512537, 0.59045196], [143.63, 278.8102002116895, 0.80206805], [143.64, 278.81736673412394, 0.82448554], [143.65, 277.29814122641267, 0.7123469], [143.66, 275.2178387881245, 0.4673282], [143.67, 275.5951690502706, 0.19911419], [143.68, 282.4447219943008, 0.15074812], [143.69, 280.4013613462803, 0.51659316], [143.7, 278.91465465509566, 0.67088145], [143.71, 277.3682135196137, 0.83456016], [143.72, 274.7717830621564, 0.844767], [143.73, 272.78321528373283, 0.8265569], [143.74, 270.4322076308454, 0.80047244], [143.75, 267.4095888031163, 0.77207595], [143.76, 263.15698793646334, 0.7230143], [143.77, 261.90984680535627, 0.59558594], [143.78, 262.61885755880417, 0.62389123], [143.79, 262.96378077651303, 0.51729614], [143.8, 262.8864745762306, 0.5318606], [143.81, 262.48635496582955, 0.59244955], [143.82, 259.7948139760197, 0.671126], [143.83, 251.62679786889976, 0.51277184], [143.84, 241.774995828262, 0.4149072], [143.85, 230.82344064387007, 0.22290926], [143.86, 221.22436142108742, 0.20003578], [143.87, 214.51836443551997, 0.14935657], [143.88, 206.4023469669344, 0.31401664], [143.89, 199.43428100268707, 0.29341108], [143.9, 188.00779504124708, 0.7451624], [143.91, 188.64791075950734, 0.70827276], [143.92, 194.97420544785564, 0.3450169], [143.93, 213.00095185354394, 0.36628208], [143.94, 229.34426917846096, 0.48497507], [143.95, 233.2928551353906, 0.47066638], [143.96, 234.39298157379685, 0.6872974], [143.97, 238.13319452741814, 0.7574075], [143.98, 241.23628208461542, 0.75112665], [143.99, 241.71132093462208, 0.7940133], [144.0, 240.81984802383718, 0.6234573], [144.01, 238.87069381949243, 0.50804573], [144.02, 236.28406424887277, 0.57391244], [144.03, 232.649954394076, 0.7104562], [144.04, 230.8474910758111, 0.7251971], [144.05, 231.2589654638393, 0.6737347], [144.06, 231.8325289001011, 0.66182536], [144.07, 230.9817520441153, 0.73853296], [144.08, 228.84592487147916, 0.7203676], [144.09, 226.22119420270846, 0.69578356], [144.1, 221.01208765908405, 0.680813], [144.11, 214.0908127320441, 0.67473245], [144.12, 207.06476032224114, 0.4027744], [144.13, 197.63593005697322, 0.18925907], [144.14, 194.42948546406657, 0.4467441], [144.15, 197.1827740339259, 0.5627053], [144.16, 206.65290049569717, 0.48746905], [144.17, 209.6690644844392, 0.6977602], [144.18, 212.2745692685584, 0.8119967], [144.19, 212.7550505713058, 0.8594423], [144.2, 212.017458873586, 0.78398633], [144.21, 210.6392295654157, 0.7002146], [144.22, 209.37435564643, 0.5293993], [144.23, 208.9287343474066, 0.3456676], [144.24, 212.15779928770962, 0.36892542], [144.25, 220.82658459361096, 0.31202385], [144.26, 223.7406322686516, 0.26392424], [144.27, 228.28424178031543, 0.341865], [144.28, 231.1840243730869, 0.43451032], [144.29, 231.55447606736448, 0.15139152], [144.3, 228.1215074807693, 0.15726864], [144.31, 208.84404956726087, 0.26378742], [144.32, 209.61557080747096, 0.19338363], [144.33, 211.9643239779378, 0.26026818], [144.34, 212.48132754330837, 0.11095994], [144.35, 214.1694997335564, 0.09426878], [144.36, 215.7301060912204, 0.059568588], [144.37, 215.58040932451277, 0.051863663], [144.38, 214.15923790727794, 0.050878383], [144.39, 215.88969781774526, 0.054614216], [144.4, 217.3707452374722, 0.040158577], [144.41, 218.0922915604077, 0.048791304], [144.42, 217.1914705498189, 0.12634617], [144.43, 218.07826079942657, 0.17267458], [144.44, 218.45559589683276, 0.35020655], [144.45, 214.02683655610787, 0.45444214], [144.46, 214.1857456611898, 0.5123571], [144.47, 214.0956324759906, 0.70273036], [144.48, 213.51806914191366, 0.79592603], [144.49, 212.91397385842544, 0.79923], [144.5, 213.57729305634217, 0.8096366], [144.51, 214.93084688325803, 0.80154526], [144.52, 215.9410410444807, 0.83574563], [144.53, 217.0464049105525, 0.8201036], [144.54, 218.40794022936882, 0.8268502], [144.55, 221.10253635838575, 0.77806926], [144.56, 225.106793048751, 0.68560755], [144.57, 230.09094698783716, 0.6859198], [144.58, 233.63226698791888, 0.8076962], [144.59, 234.7903418267225, 0.80939776], [144.6, 233.70929263703118, 0.5144143], [144.61, 226.01140200485713, 0.19975872], [144.62, 222.50296720280096, 0.6578071], [144.63, 220.1991021075368, 0.78269476], [144.64, 215.6051338555473, 0.738293], [144.65, 210.36834398710465, 0.6770924], [144.66, 208.34136832235586, 0.80766416], [144.67, 207.56668813154292, 0.8201139], [144.68, 207.3077086088021, 0.8247985], [144.69, 206.6011235327824, 0.8211373], [144.7, 206.0694505748538, 0.81698525], [144.71, 205.81230186252358, 0.8273663], [144.72, 206.22339393277304, 0.82365084], [144.73, 206.71258950517836, 0.8044018], [144.74, 206.86458725171525, 0.80090606], [144.75, 207.06790549968252, 0.83027714], [144.76, 207.55002736816454, 0.81608385], [144.77, 208.55983515127684, 0.8164305], [144.78, 209.52955125669052, 0.7737573], [144.79, 210.63371624885787, 0.7870865], [144.8, 210.3467808992125, 0.7972808], [144.81, 209.71052329326898, 0.7811283], [144.82, 208.9562156064768, 0.82047033], [144.83, 208.0641735921068, 0.8386476], [144.84, 208.1307950890907, 0.8475593], [144.85, 208.27282235583715, 0.84958297], [144.86, 208.12194554829776, 0.86837554], [144.87, 207.47916582763827, 0.8649195], [144.88, 206.85756346799806, 0.8457562], [144.89, 206.24254185433398, 0.85545534], [144.9, 205.47215238062208, 0.84134525], [144.91, 205.6809957408909, 0.842008], [144.92, 206.51856364970055, 0.8376489], [144.93, 206.5789948559312, 0.82882243], [144.94, 206.98982527921484, 0.7866696], [144.95, 206.9484638417506, 0.7518647], [144.96, 206.73300873118404, 0.7460803], [144.97, 206.33146940540706, 0.71892613], [144.98, 206.1216108635178, 0.64581645], [144.99, 205.95053709559556, 0.6535687], [145.0, 205.63250597741242, 0.7606907], [145.01, 205.54985107659715, 0.82637423], [145.02, 205.84496739093606, 0.8403751], [145.03, 205.8599301960587, 0.8444408], [145.04, 206.68861181933812, 0.8607381], [145.05, 207.2174212222386, 0.8580754], [145.06, 207.78475456833434, 0.87169605], [145.07, 208.42921694989369, 0.86806816], [145.08, 209.03533114260412, 0.83966106], [145.09, 209.01378178455164, 0.82050824], [145.1, 208.74148802710226, 0.7903055], [145.11, 207.64701951066158, 0.6858723], [145.12, 205.71208048529851, 0.5749311], [145.13, 204.16416040553432, 0.42047402], [145.14, 203.5928522074289, 0.18569104], [145.15, 207.0422870171224, 0.2321118], [145.16, 208.07819063119427, 0.2513389], [145.17, 208.93872862133694, 0.27468616], [145.18, 208.73085595545655, 0.387925], [145.19, 209.3586104225709, 0.34194747], [145.2, 206.26274957305273, 0.5833034], [145.21, 205.8949527779275, 0.7674363], [145.22, 206.38283862105635, 0.73408616], [145.23, 207.79898543449173, 0.6498714], [145.24, 206.11608549983742, 0.7214769], [145.25, 205.7466436175916, 0.6565613], [145.26, 206.2054998839895, 0.44847345], [145.27, 207.16683482119973, 0.4973186], [145.28, 207.75823663465582, 0.4224714], [145.29, 207.9372977194402, 0.36531213], [145.3, 206.8790456997951, 0.41130432], [145.31, 205.36946207301727, 0.5517037], [145.32, 204.10018090640926, 0.5200721], [145.33, 204.60437832601986, 0.69441533], [145.34, 204.9804809558448, 0.72445303], [145.35, 206.00205472890724, 0.58074147], [145.36, 205.5067023864517, 0.47809336], [145.37, 205.6853821669754, 0.4664078], [145.38, 206.78673662999202, 0.46307784], [145.39, 208.5700339599108, 0.4233981], [145.4, 210.89332672301524, 0.36705333], [145.41, 212.32696068458603, 0.33436182], [145.42, 208.4879215860529, 0.48440263], [145.43, 208.32896275311114, 0.49121678], [145.44, 212.07876901949356, 0.50476176], [145.45, 213.71523702480243, 0.5193538], [145.46, 216.2667897606873, 0.648396], [145.47, 218.37082542782352, 0.4422197], [145.48, 220.88172474118767, 0.7240883], [145.49, 224.09004201763466, 0.7496833], [145.5, 228.0593256144374, 0.7427871], [145.51, 230.00668072015486, 0.55096173], [145.52, 231.8755406926698, 0.44300213], [145.53, 232.59113745902465, 0.6902486], [145.54, 230.74043514140413, 0.62060213], [145.55, 226.5955268384276, 0.6822178], [145.56, 222.4504641611998, 0.721412], [145.57, 220.03377108837856, 0.5799677], [145.58, 214.46385859098686, 0.2716808], [145.59, 218.24754135125886, 0.10605271], [145.6, 199.661824195152, 0.19963984], [145.61, 185.61772632455344, 0.28451946], [145.62, 172.67088675044104, 0.41008803], [145.63, 157.5151901246609, 0.34111553], [145.64, 140.70692089402218, 0.35628292], [145.65, 132.15165714541877, 0.6515993], [145.66, 131.72079817635466, 0.80435765], [145.67, 131.92016311609282, 0.8384483], [145.68, 132.14208651891346, 0.79838085], [145.69, 132.31683095992307, 0.7969884], [145.7, 132.8654657147542, 0.8203956], [145.71, 131.6380198398758, 0.825452], [145.72, 131.16094859388363, 0.78436524], [145.73, 130.65723834985175, 0.70680386], [145.74, 129.24393801891856, 0.54716235], [145.75, 129.16702657618234, 0.34528235], [145.76, 138.11625020760778, 0.17927997], [145.77, 139.07428785343652, 0.30829084], [145.78, 138.92929425373248, 0.23174891], [145.79, 140.6619374794231, 0.17309481], [145.8, 139.82582537281525, 0.16064699], [145.81, 142.2053756709818, 0.1876543], [145.82, 155.47195655680252, 0.20875098], [145.83, 156.27329238449056, 0.5394664], [145.84, 156.49019796555802, 0.67569274], [145.85, 158.2231707812632, 0.76744986], [145.86, 159.48876770588498, 0.8193792], [145.87, 160.24608507028103, 0.80406713], [145.88, 160.36016387655448, 0.7681802], [145.89, 157.9155353609425, 0.7673116], [145.9, 156.2823688725059, 0.77115923], [145.91, 154.77840105950324, 0.77219725], [145.92, 154.4261903147615, 0.8275678], [145.93, 154.33140963279374, 0.8580689], [145.94, 154.45110565449434, 0.8667121], [145.95, 154.51673524594085, 0.86230195], [145.96, 154.58025102997792, 0.8279738], [145.97, 154.2439247022757, 0.7286636], [145.98, 150.83199396017412, 0.5588492], [145.99, 144.65409857641214, 0.7370326], [146.0, 140.11916440614962, 0.7071919], [146.01, 138.74775153668162, 0.7953185], [146.02, 139.43724579196765, 0.73799694], [146.03, 141.0945283814613, 0.48817432], [146.04, 143.37506050752472, 0.3855486], [146.05, 144.8946004489692, 0.39165345], [146.06, 143.31165096585184, 0.6831564], [146.07, 141.1876781622084, 0.7123575], [146.08, 140.84825929543302, 0.8150893], [146.09, 140.80964247194854, 0.8046502], [146.1, 140.45693013424167, 0.7780743], [146.11, 139.68272716353826, 0.6591658], [146.12, 138.26390460419285, 0.50405014], [146.13, 137.01876751532956, 0.36804345], [146.14, 136.56779521804998, 0.6381735], [146.15, 136.3042259934985, 0.70769453], [146.16, 137.00571156460109, 0.72006917], [146.17, 137.92116396023235, 0.8015691], [146.18, 138.82606777615368, 0.7514457], [146.19, 139.07009974416295, 0.74187344], [146.2, 139.69639111362295, 0.7313294], [146.21, 139.40613025857436, 0.63742095], [146.22, 137.36759070000508, 0.6195525], [146.23, 136.11488603249686, 0.5800849], [146.24, 134.5619591358946, 0.43289593], [146.25, 133.26050576901773, 0.1710872], [146.26, 142.1530333453556, 0.11854265], [146.27, 151.51604684605562, 0.16253053], [146.28, 138.98349665255964, 0.1862291], [146.29, 143.80067640779208, 0.2398422], [146.3, 142.42275387707107, 0.20274085], [146.31, 139.8390115019949, 0.36209357], [146.32, 140.9821043262416, 0.50218487], [146.33, 140.42391446933186, 0.5299767], [146.34, 137.67728814904336, 0.40531316], [146.35, 141.49365195722393, 0.46644726], [146.36, 150.1378928085291, 0.3199873], [146.37, 154.01406280210645, 0.5633446], [146.38, 154.50688136662598, 0.67535365], [146.39, 155.5452446254138, 0.52135366], [146.4, 156.03264707422088, 0.5568168], [146.41, 156.4333592252936, 0.5792026], [146.42, 156.55779065904267, 0.5871303], [146.43, 156.3581961552594, 0.674401], [146.44, 156.29424212615498, 0.7278392], [146.45, 155.82849454896382, 0.692041], [146.46, 155.54636726438306, 0.7208748], [146.47, 155.4283346413784, 0.6656267], [146.48, 155.2267608371697, 0.7242789], [146.49, 154.84161161980543, 0.6334005], [146.5, 154.6387955999673, 0.7299392], [146.51, 154.10111619068795, 0.68719316], [146.52, 153.03052219844497, 0.5447032], [146.53, 151.4985310051842, 0.30869123], [146.54, 149.00073283707187, 0.5729079], [146.55, 148.01014547225333, 0.7579438], [146.56, 147.26319540357852, 0.7201503], [146.57, 148.57222096801087, 0.6913928], [146.58, 148.7445571840914, 0.68369395], [146.59, 150.44515648068446, 0.5016093], [146.6, 150.50395723618644, 0.5441957], [146.61, 150.97815552938448, 0.3462229], [146.62, 149.72943167089562, 0.36118826], [146.63, 151.61225884723888, 0.5277844], [146.64, 152.5991413545152, 0.7023479], [146.65, 153.1411373174114, 0.63147616], [146.66, 153.91510758961596, 0.6766386], [146.67, 152.94729692902104, 0.47187945], [146.68, 152.60923731702758, 0.27083105], [146.69, 148.93651030471455, 0.17532642], [146.7, 144.51655295013296, 0.21081784], [146.71, 140.28432525339167, 0.22434516], [146.72, 126.94364227699381, 0.22972707], [146.73, 127.07705558951778, 0.56301165], [146.74, 124.60025762269437, 0.7297125], [146.75, 124.4200111443327, 0.7535051], [146.76, 127.68657316610872, 0.47137454], [146.77, 131.54905011051798, 0.35338122], [146.78, 138.9484897942216, 0.2051758], [146.79, 145.9728428641998, 0.41976494], [146.8, 150.04833369471126, 0.6038601], [146.81, 152.42990784358477, 0.56310356], [146.82, 153.8392637354517, 0.7307673], [146.83, 155.72894807219782, 0.7789518], [146.84, 156.3798363834004, 0.73852754], [146.85, 155.93217169904906, 0.5410412], [146.86, 155.32714933906516, 0.4308307], [146.87, 154.24899012704694, 0.5424637], [146.88, 154.55683486077416, 0.36199817], [146.89, 154.5364984169065, 0.55459744], [146.9, 155.03261295791992, 0.54460114], [146.91, 155.49449982342236, 0.73309356], [146.92, 156.03750226277987, 0.8101635], [146.93, 155.92661060561758, 0.83159477], [146.94, 156.01808863205042, 0.8144092], [146.95, 155.4201385079116, 0.83413935], [146.96, 155.074696258526, 0.77468544], [146.97, 154.206392593969, 0.57012147], [146.98, 151.40836475531327, 0.43986702], [146.99, 151.8487800190352, 0.27739277], [147.0, 156.6293114369945, 0.41824126], [147.01, 150.90429989580832, 0.45330983], [147.02, 144.22283464649325, 0.5264902], [147.03, 143.36526388862765, 0.5125198], [147.04, 143.8727468598363, 0.4291581], [147.05, 147.14815252217056, 0.1936289], [147.06, 150.86524579391866, 0.19725507], [147.07, 152.30775520628004, 0.1963175], [147.08, 153.88381400410128, 0.20161149], [147.09, 139.24028376762925, 0.18636888], [147.1, 139.1553157176649, 0.28513244], [147.11, 139.00040224096523, 0.24076512], [147.12, 141.1426167301333, 0.28273493], [147.13, 144.2319687402045, 0.35256726], [147.14, 145.14097024675132, 0.35972708], [147.15, 143.04495937357544, 0.22871971], [147.16, 157.6378736602094, 0.42932758], [147.17, 157.45760537447936, 0.46616378], [147.18, 155.82378716514685, 0.5030037], [147.19, 152.03989230714842, 0.17854974], [147.2, 148.4933057229372, 0.19412392], [147.21, 147.36996218427026, 0.36553428], [147.22, 148.52533924362157, 0.5986026], [147.23, 149.27390606703074, 0.71423227], [147.24, 150.24244264602828, 0.77436715], [147.25, 150.87892947832162, 0.8196436], [147.26, 151.44911459866967, 0.80695754], [147.27, 152.55502920143988, 0.78019553], [147.28, 154.2225387516213, 0.8082961], [147.29, 155.28799742781342, 0.82956403], [147.3, 155.9435447442131, 0.84173065], [147.31, 155.84923724516278, 0.84732884], [147.32, 155.22575981866015, 0.78983706], [147.33, 154.85318545623875, 0.75069606], [147.34, 153.75184449989757, 0.75525534], [147.35, 152.96623646727338, 0.75972855], [147.36, 151.30457438704974, 0.7859151], [147.37, 149.66956719121055, 0.7293753], [147.38, 147.77192472507085, 0.6939712], [147.39, 145.47802061013684, 0.697515], [147.4, 142.58082145392618, 0.6192536], [147.41, 137.83888076460508, 0.6694043], [147.42, 137.08792553058734, 0.4728404], [147.43, 139.82674877180344, 0.41337442], [147.44, 143.39206621317115, 0.45703113], [147.45, 142.85913323476973, 0.4466382], [147.46, 140.87624330035374, 0.48636708], [147.47, 139.76013990169616, 0.485989], [147.48, 139.7487638406377, 0.5035832], [147.49, 139.39753536558956, 0.6755687], [147.5, 138.00468679566356, 0.75764006], [147.51, 136.97215167173, 0.79770845], [147.52, 136.91788585602387, 0.8198668], [147.53, 137.74382381752767, 0.84913445], [147.54, 138.43001746224581, 0.828382], [147.55, 138.7938778053943, 0.75351393], [147.56, 139.8874115435305, 0.628366], [147.57, 140.81520331259023, 0.6753942], [147.58, 140.38457905182815, 0.73526555], [147.59, 139.33578089775023, 0.8457362], [147.6, 137.73450723518735, 0.8530654], [147.61, 135.6712455852997, 0.8018522], [147.62, 135.14336274579998, 0.8135956], [147.63, 134.82828664167968, 0.83045053], [147.64, 135.01935852152906, 0.8366185], [147.65, 134.5980090762665, 0.84557194], [147.66, 133.710426574038, 0.77970016], [147.67, 132.15398243256632, 0.5348989], [147.68, 131.40523996930432, 0.49125358], [147.69, 139.62220648571054, 0.3299003], [147.7, 149.58405323908394, 0.46613714], [147.71, 154.78687034111312, 0.52389956], [147.72, 156.02462033798736, 0.73170173], [147.73, 157.24794750649886, 0.7734659], [147.74, 158.5137105947811, 0.75125855], [147.75, 158.37292869279028, 0.7720667], [147.76, 156.86930445715316, 0.7436045], [147.77, 155.06448151841693, 0.7375815], [147.78, 153.20224490562848, 0.77182496], [147.79, 152.56044944623955, 0.8053769], [147.8, 152.4054648923129, 0.8073124], [147.81, 152.40920309145193, 0.8360597], [147.82, 152.9053411588138, 0.8361858], [147.83, 153.82966155304604, 0.84570056], [147.84, 154.11345629698363, 0.8518306], [147.85, 153.43426357343552, 0.80389696], [147.86, 151.4189135009433, 0.72780794], [147.87, 148.1222393562523, 0.65609956], [147.88, 145.35166119526502, 0.6821838], [147.89, 141.05318503909874, 0.54400134], [147.9, 139.19017873375378, 0.7614138], [147.91, 137.50957329030086, 0.77078795], [147.92, 137.29897689957647, 0.81126857], [147.93, 137.0148870152989, 0.8311991], [147.94, 136.4901792425288, 0.8055283], [147.95, 137.13576752104447, 0.83753663], [147.96, 138.00845131380663, 0.859976], [147.97, 138.90577146371464, 0.8966191], [147.98, 139.44195594593614, 0.88853365], [147.99, 139.73344659641253, 0.8641535], [148.0, 139.79417207103728, 0.83677197], [148.01, 139.2875157336825, 0.8464071], [148.02, 139.193153033243, 0.8437941], [148.03, 138.91040371072302, 0.7996629], [148.04, 138.33526572138905, 0.7509739], [148.05, 138.6335461521671, 0.79290664], [148.06, 138.54475786978514, 0.8090077], [148.07, 138.94357865228878, 0.79274285], [148.08, 137.9905015310248, 0.7562222], [148.09, 136.93849233840487, 0.72804475], [148.1, 136.41269646581, 0.7594164], [148.11, 135.57920194639914, 0.8050656], [148.12, 134.23022948618072, 0.7918587], [148.13, 133.14501541537422, 0.7975738], [148.14, 133.20751078409427, 0.756618], [148.15, 133.98718482084166, 0.80127025], [148.16, 134.83182879442504, 0.7894664], [148.17, 135.329993209557, 0.6948257], [148.18, 137.34369004333973, 0.37304935], [148.19, 154.41767596926059, 0.4201202], [148.2, 154.82931457322928, 0.58208233], [148.21, 156.69311962583117, 0.6874629], [148.22, 158.20882180626708, 0.7340789], [148.23, 158.44147444934518, 0.53256506], [148.24, 157.19996368372105, 0.47802177], [148.25, 155.02415637024737, 0.63445044], [148.26, 154.99995760732224, 0.6151975], [148.27, 155.74270086139245, 0.601019], [148.28, 157.69200786721032, 0.6796109], [148.29, 160.43137150293714, 0.6602782], [148.3, 163.13612468925584, 0.74609345], [148.31, 165.102798984299, 0.75867885], [148.32, 167.8374093236169, 0.77155364], [148.33, 169.65559889764873, 0.7804125], [148.34, 171.0526675351275, 0.71283084], [148.35, 171.35901030353213, 0.72121465], [148.36, 168.80742753981343, 0.6924212], [148.37, 165.557399453129, 0.66496867], [148.38, 162.88753303229595, 0.51280785], [148.39, 162.32300328827807, 0.42558983], [148.4, 144.63474328420406, 0.31154168], [148.41, 143.38328165455258, 0.6357519], [148.42, 140.88695048227925, 0.74264413], [148.43, 139.09681057229736, 0.7585506], [148.44, 138.5620587120976, 0.69596606], [148.45, 137.84932665970612, 0.7202885], [148.46, 137.91216943076793, 0.827278], [148.47, 138.1576667606516, 0.82173014], [148.48, 138.30595182934022, 0.8262395], [148.49, 138.21593722471644, 0.7360678], [148.5, 137.99253100892327, 0.787651], [148.51, 138.12417018375783, 0.7243693], [148.52, 137.73679367618095, 0.61219174], [148.53, 137.4851317820463, 0.79814804], [148.54, 137.2185561642224, 0.82932717], [148.55, 137.30792405043366, 0.84485507], [148.56, 137.56754203470712, 0.85913074], [148.57, 138.20049588753162, 0.8641501], [148.58, 138.762687744787, 0.8482321], [148.59, 139.27062148976077, 0.73181254], [148.6, 139.6288108470044, 0.83481085], [148.61, 139.66402753379577, 0.8615346], [148.62, 139.44116050338403, 0.8807249], [148.63, 138.60549170183396, 0.84916294], [148.64, 138.21823924112152, 0.79661363], [148.65, 137.9005789943152, 0.7654406], [148.66, 137.88468502844506, 0.5924399], [148.67, 137.9114019737953, 0.68215257], [148.68, 138.36657814921304, 0.6772128], [148.69, 138.549678991367, 0.6363637], [148.7, 138.19514326724794, 0.74260277], [148.71, 138.35451904309068, 0.80374175], [148.72, 137.98356064095503, 0.82748055], [148.73, 137.7485484752092, 0.85454005], [148.74, 137.90854090961358, 0.8559853], [148.75, 137.11095736783275, 0.85242677], [148.76, 137.17927314246285, 0.85147005], [148.77, 137.47846690176877, 0.83980954], [148.78, 137.85387591238356, 0.79288393], [148.79, 138.28747830135524, 0.79850435], [148.8, 138.40100142962785, 0.79287815], [148.81, 138.43137425607262, 0.77796805], [148.82, 138.36161457790791, 0.7680312], [148.83, 138.46242345245858, 0.7419487], [148.84, 139.04973677198734, 0.7712235], [148.85, 139.40937637605956, 0.67313945], [148.86, 139.88421958696935, 0.6801545], [148.87, 140.38716071011203, 0.7564925], [148.88, 140.82711554924038, 0.7491791], [148.89, 141.62184763555248, 0.7948144], [148.9, 141.16647092252344, 0.8096695], [148.91, 139.62319599286562, 0.8517334], [148.92, 138.36884772165203, 0.79999614], [148.93, 136.08458981576203, 0.81702805], [148.94, 134.67669452233486, 0.8163015], [148.95, 134.29998732390322, 0.82175726], [148.96, 134.62706805067643, 0.83371776], [148.97, 135.27041233178477, 0.763956], [148.98, 137.1568107052211, 0.7299934], [148.99, 139.83272058148967, 0.48348704], [149.0, 146.8142255179796, 0.6548886], [149.01, 149.95674217189128, 0.7228973], [149.02, 152.08395080369488, 0.7435608], [149.03, 149.00742543293558, 0.4909601], [149.04, 144.44302242398078, 0.37323943], [149.05, 142.51467266688695, 0.6258792], [149.06, 140.02412409753595, 0.64303356], [149.07, 139.30970457271772, 0.57171404], [149.08, 137.83267928195608, 0.7219118], [149.09, 135.83563798919738, 0.77355605], [149.1, 133.90840390990581, 0.81864536], [149.11, 132.75051643632645, 0.8551993], [149.12, 132.77191857524718, 0.8644584], [149.13, 133.11289036664616, 0.80613905], [149.14, 134.92278830815667, 0.64104885], [149.15, 137.63679752504981, 0.691999], [149.16, 139.9633821061289, 0.7775866], [149.17, 141.01956780058845, 0.8004728], [149.18, 140.42271695152598, 0.8187588], [149.19, 139.11175491301725, 0.8704403], [149.2, 138.04084791499488, 0.8615295], [149.21, 137.53714393822284, 0.8692472], [149.22, 137.91658776902938, 0.8513984], [149.23, 138.86209901473774, 0.8402453], [149.24, 139.85746959713828, 0.7966453], [149.25, 142.30754045502746, 0.6663176], [149.26, 145.7580836123034, 0.6758005], [149.27, 149.61542387007086, 0.7084032], [149.28, 152.81350426823215, 0.7243314], [149.29, 155.4670501767816, 0.8429133], [149.3, 156.02649927461755, 0.8619716], [149.31, 155.84309583956434, 0.84163725], [149.32, 154.28454264469184, 0.8203182], [149.33, 153.26952461315454, 0.7780024], [149.34, 152.39148648787366, 0.70715564], [149.35, 151.44117966536515, 0.7276932], [149.36, 149.49058664191205, 0.5594155], [149.37, 151.09846656369834, 0.38827533], [149.38, 151.9499053531069, 0.2838533], [149.39, 151.95940895337043, 0.25054663], [149.4, 153.05202362226282, 0.26509374], [149.41, 155.80679330715674, 0.19162759], [149.42, 157.51521094590433, 0.23081103], [149.43, 157.98027316982945, 0.4057209], [149.44, 157.2914669578825, 0.6047998], [149.45, 156.686357011535, 0.51097256], [149.46, 156.07122899322025, 0.6122433], [149.47, 155.1277260835839, 0.5866478], [149.48, 154.3994540383648, 0.5554982], [149.49, 154.24591191609306, 0.5050732], [149.5, 153.79850966862702, 0.24307126], [149.51, 151.02892956572651, 0.28816003], [149.52, 151.71862038313765, 0.35832855], [149.53, 152.81976335909604, 0.3918541], [149.54, 153.43746758131306, 0.5136578], [149.55, 152.77351754998605, 0.47614303], [149.56, 153.2394057413216, 0.4164082], [149.57, 156.88160938123195, 0.30788985], [149.58, 159.77860033269607, 0.45054355], [149.59, 159.78858583260967, 0.571061], [149.6, 160.63579123891992, 0.5265782], [149.61, 160.36215403208163, 0.5589061], [149.62, 157.26112017659742, 0.5358043], [149.63, 154.04840435181154, 0.43849167], [149.64, 150.0995038565879, 0.4028173], [149.65, 148.73257266931623, 0.31764528], [149.66, 151.00506667350407, 0.2593754], [149.67, 155.44516315801317, 0.44610402], [149.68, 156.57018811135487, 0.5274445], [149.69, 157.74710397781584, 0.5666388], [149.7, 159.19313239695126, 0.59646016], [149.71, 160.86610813348813, 0.709407], [149.72, 163.04313596941924, 0.7308987], [149.73, 165.15408768321495, 0.7482413], [149.74, 167.2532830540539, 0.7019498], [149.75, 170.9038915726365, 0.69396496], [149.76, 173.62534093303447, 0.7599004], [149.77, 174.648057957694, 0.81451935], [149.78, 175.5626804031602, 0.8369285], [149.79, 175.5963890060502, 0.81967324], [149.8, 174.81466320893773, 0.845077], [149.81, 174.74336345569662, 0.82020307], [149.82, 174.28247483195315, 0.7683607], [149.83, 173.39672433691817, 0.758377], [149.84, 172.79874384706912, 0.780315], [149.85, 171.2647314766467, 0.7940964], [149.86, 170.72635374640274, 0.76091486], [149.87, 170.6735329499528, 0.69674176], [149.88, 188.1605850083077, 0.65358335], [149.89, 213.93656780066027, 0.44034708], [149.9, 241.92691063554508, 0.39689583], [149.91, 271.6797932225418, 0.51846886], [149.92, 314.0620463872295, 0.23371735], [149.93, 343.21499814877484, 0.38023192], [149.94, 387.6589743411915, 0.414761], [149.95, 424.8659291669875, 0.36145386], [149.96, 479.8996180420381, 0.18015096], [149.97, 542.7404232363357, 0.28348866], [149.98, 608.4480506690358, 0.18630715], [149.99, 673.3468632603451, 0.35461476], [150.0, 775.5434962924834, 0.18793501], [150.01, 856.9112714725413, 0.15934584], [150.02, 945.1294753927699, 0.12654023], [150.03, 1090.606735679517, 0.10934016], [150.04, 1198.563609545181, 0.115238905], [150.05, 1304.889638965068, 0.10522338], [150.06, 1464.7746365483797, 0.053291224], [150.07, 1653.1878282415155, 0.06959051], [150.08, 1839.5004544262456, 0.06927985], [150.09, 1976.855407970734, 0.2179105], [150.1, 1976.2890347656166, 0.2076396], [150.11, 1976.83954077637, 0.21839565], [150.12, 1976.302060057237, 0.207528], [150.13, 1976.8584343520954, 0.21763867], [150.14, 1976.2869184114309, 0.20640373], [150.15, 1976.8531398555476, 0.21765597], [150.16, 1976.2791137749882, 0.20637187], [150.17, 1976.8563556295633, 0.216986], [150.18, 1976.3142284188107, 0.20566988], [150.19, 1976.8601145518994, 0.21648239], [150.2, 1976.3345925131625, 0.20602934], [150.21, 1976.8714221111773, 0.21730517], [150.22, 1976.3338764326404, 0.20633778], [150.23, 1976.8295027247232, 0.21663265], [150.24, 1976.3133433411376, 0.20585637], [150.25, 1976.8373155511363, 0.21651699], [150.26, 1976.3274773524474, 0.20639348], [150.27, 1976.8538656839987, 0.21634413], [150.28, 1976.347308481628, 0.20596953], [150.29, 1976.8807681247042, 0.21639739], [150.3, 1976.3555923107206, 0.20682482], [150.31, 1976.8641551013159, 0.2167631], [150.32, 1976.2963694706136, 0.20703256], [150.33, 1976.807088329738, 0.2167424], [150.34, 1976.3106678911759, 0.20710486], [150.35, 1976.787014147492, 0.21817395], [150.36, 1976.3011128782937, 0.20768], [150.37, 1976.7735053125389, 0.21768087], [150.38, 1976.3148219970617, 0.20769347], [150.39, 1976.806104356988, 0.2176827], [150.4, 1976.3126562313098, 0.20721027], [150.41, 1976.7891339779844, 0.21780972], [150.42, 1976.2962334200424, 0.20716698], [150.43, 1976.7804163328078, 0.21760774], [150.44, 1976.2696003985761, 0.20668955], [150.45, 1976.8189819950564, 0.21750659], [150.46, 1976.2867411930943, 0.20683144], [150.47, 1976.8577096848894, 0.21725127], [150.48, 1976.2790626287588, 0.20742415], [150.49, 1976.8435030683927, 0.21740323], [150.5, 1976.2692757159507, 0.20682392], [150.51, 1976.8786358025434, 0.21665214], [150.52, 1976.2793755955136, 0.20593452], [150.53, 1976.8712582171681, 0.21718992], [150.54, 1976.269621740133, 0.20661563], [150.55, 1976.8369197629443, 0.21775952], [150.56, 1976.266537207714, 0.20750277], [150.57, 1976.8454364736137, 0.21808682], [150.58, 1976.2527686454923, 0.20696306], [150.59, 1976.7923002552002, 0.21719177], [150.6, 1976.2444844494892, 0.20651431], [150.61, 1976.8011904276104, 0.21710704], [150.62, 1976.2825562219668, 0.20600083], [150.63, 1976.8102219107811, 0.21639676], [150.64, 1976.3396934085522, 0.2056285], [150.65, 1976.8459996845988, 0.21593475], [150.66, 1976.3341084412468, 0.20481394], [150.67, 1976.8759437027372, 0.21584147], [150.68, 1976.3335867017747, 0.2044825], [150.69, 1976.8706303389556, 0.21537866], [150.7, 1976.3445991711023, 0.20422068], [150.71, 1976.896862028192, 0.21443507], [150.72, 1976.3522798603863, 0.2040609], [150.73, 1976.9077219666792, 0.21427336], [150.74, 1976.3429387533915, 0.2051681], [150.75, 1976.9446455656011, 0.214159], [150.76, 1976.3567602259377, 0.20510846], [150.77, 1976.9345012162191, 0.21532819], [150.78, 1976.3260020517544, 0.20483203], [150.79, 1976.9178038982907, 0.21683712], [150.8, 1976.3097657588798, 0.20502113], [150.81, 1976.8945829420359, 0.21644726], [150.82, 1976.3331223734958, 0.20483777], [150.83, 1976.9154340148473, 0.2159754], [150.84, 1976.3370093512196, 0.20483857], [150.85, 1976.8999807321547, 0.21706907], [150.86, 1976.3617122917803, 0.20493263], [150.87, 1976.881095877614, 0.2155694], [150.88, 1976.356087538256, 0.20482276], [150.89, 1976.907095359468, 0.21619865], [150.9, 1976.3282510475776, 0.20431513], [150.91, 1976.8997240575823, 0.21640301], [150.92, 1976.3150502299554, 0.20538235], [150.93, 1976.8406055976284, 0.21669151], [150.94, 1976.293366882812, 0.2056495], [150.95, 1976.8963034768674, 0.21734609], [150.96, 1976.3430486923883, 0.2047411], [150.97, 1976.938741909171, 0.21632911], [150.98, 1976.307889128092, 0.20398948], [150.99, 1976.9373265319227, 0.21616286], [151.0, 1976.316932856486, 0.20416723], [151.01, 1976.9401026126648, 0.21687831], [151.02, 1976.2864564169317, 0.20467764], [151.03, 1976.9268014907652, 0.21705212], [151.04, 1976.325806965298, 0.20515579], [151.05, 1976.9036694984047, 0.21726164], [151.06, 1976.3293222766524, 0.205419], [151.07, 1976.8849968368786, 0.21801004], [151.08, 1976.3227136355808, 0.20623115], [151.09, 1976.8538965851883, 0.21790841], [151.1, 1976.3316639848067, 0.20598559], [151.11, 1976.8720233041408, 0.21772277], [151.12, 1976.313047828735, 0.20657317], [151.13, 1976.8754230611707, 0.21786687], [151.14, 1976.3256020366555, 0.2072146], [151.15, 1976.9045243862292, 0.21719435], [151.16, 1976.2931645815293, 0.20706314], [151.17, 1976.8946420477896, 0.21879482], [151.18, 1976.2714307462418, 0.20726731], [151.19, 1976.8869519954765, 0.21854746], [151.2, 1976.286007808615, 0.20713514], [151.21, 1976.8604976143422, 0.21808393], [151.22, 1976.2582724886606, 0.20685253], [151.23, 1976.8459444997482, 0.21848485], [151.24, 1976.2802336342552, 0.20690939], [151.25, 1976.812028088289, 0.21794337], [151.26, 1976.257018893357, 0.20617226], [151.27, 1976.8087616413707, 0.21794929], [151.28, 1976.291071328519, 0.20577379], [151.29, 1976.8275301099948, 0.21748157], [151.3, 1976.2981880240209, 0.20494261], [151.31, 1976.8537385562038, 0.2176736], [151.32, 1976.3167905401174, 0.20566018], [151.33, 1976.8248897752367, 0.21698342], [151.34, 1976.2620071592164, 0.20568971], [151.35, 1976.8159474492006, 0.21790044], [151.36, 1976.2557805410602, 0.20595865], [151.37, 1976.8778461540624, 0.2178828], [151.38, 1976.2795280879939, 0.20607229], [151.39, 1976.85829339857, 0.21726206], [151.4, 1976.2665202407627, 0.20635496], [151.41, 1976.8269681998393, 0.21773508], [151.42, 1976.2578352755543, 0.2064383], [151.43, 1976.814474146355, 0.2182093], [151.44, 1976.2683563693872, 0.20687516], [151.45, 1976.8216558821061, 0.21887696], [151.46, 1976.3038953070109, 0.20759735], [151.47, 1976.8610108392886, 0.21893084], [151.48, 1976.2699451882504, 0.20795679], [151.49, 1976.8760648680773, 0.219275], [151.5, 1976.297042043359, 0.20773305], [151.51, 1976.8866614933022, 0.21841061], [151.52, 1976.2732724143873, 0.20651774], [151.53, 1976.8307632671529, 0.21923031], [151.54, 1976.239676448022, 0.20700762], [151.55, 1976.8259051624154, 0.21887307], [151.56, 1976.1892188889567, 0.20800523], [151.57, 1976.814795046576, 0.21927321], [151.58, 1976.2216529441182, 0.20736186], [151.59, 1976.8191461071854, 0.21875323], [151.6, 1976.2311826313198, 0.20572178], [151.61, 1976.802860452544, 0.21866119], [151.62, 1976.1874662179375, 0.20688131], [151.63, 1976.7288615850978, 0.21907218], [151.64, 1976.1908778206655, 0.20825106], [151.65, 1976.7667835990235, 0.21993025], [151.66, 1976.225935947251, 0.20902047], [151.67, 1976.8333042159927, 0.22014907], [151.68, 1976.2605285784, 0.20885743], [151.69, 1976.8403652226423, 0.22002019], [151.7, 1976.2180038379493, 0.20874052], [151.71, 1976.8709476024264, 0.21922433], [151.72, 1976.2352659477085, 0.20954992], [151.73, 1976.8281427988818, 0.2199925], [151.74, 1976.2743920676603, 0.2101788], [151.75, 1976.8949807505383, 0.22060859], [151.76, 1976.3121318486676, 0.21043926], [151.77, 1976.8679353520397, 0.2204107], [151.78, 1976.281931814466, 0.20963207], [151.79, 1976.8368714953745, 0.21959288], [151.8, 1976.251409920284, 0.20899592], [151.81, 1976.8486523394338, 0.22042331], [151.82, 1976.2635411911797, 0.20843796], [151.83, 1976.8271119814574, 0.21931799], [151.84, 1976.280865065414, 0.207899], [151.85, 1976.8366689122327, 0.21891429], [151.86, 1976.2592624016336, 0.20696379], [151.87, 1976.8187103941693, 0.21956313], [151.88, 1976.2407702422993, 0.20684235], [151.89, 1976.7778256775136, 0.21954906], [151.9, 1976.2082748066575, 0.20656005], [151.91, 1976.7131113502298, 0.21914952], [151.92, 1976.1779467746078, 0.20634194], [151.93, 1976.7245894917412, 0.21950658], [151.94, 1976.1887557433326, 0.20712335], [151.95, 1976.7200220818427, 0.21987838], [151.96, 1976.227656088422, 0.20689276], [151.97, 1976.763939119984, 0.21937032], [151.98, 1976.2751308425936, 0.20652524], [151.99, 1976.7871226292061, 0.21805623], [152.0, 1976.279849904447, 0.2057643], [152.01, 1976.746623666512, 0.21803711], [152.02, 1976.2553261190126, 0.20499964], [152.03, 1976.778979104589, 0.21880203], [152.04, 1976.279981099779, 0.20564601], [152.05, 1976.802069575034, 0.21960431], [152.06, 1976.27085342579, 0.20647798], [152.07, 1976.8288617207986, 0.22021738], [152.08, 1976.2422668846725, 0.2076533], [152.09, 1976.8200879591052, 0.22068068], [152.1, 1976.2359128373091, 0.20734921], [152.11, 1976.8128569365895, 0.21947107], [152.12, 1976.2939955540153, 0.20710744], [152.13, 1976.8212945810274, 0.21987438], [152.14, 1976.2244583300394, 0.20640661], [152.15, 1976.8164915234615, 0.21945177], [152.16, 1976.237331594865, 0.20702584], [152.17, 1976.8199365596815, 0.21983647], [152.18, 1976.2862947348733, 0.20663613], [152.19, 1976.8216758317344, 0.21916066], [152.2, 1976.2719560235869, 0.2068137], [152.21, 1976.7694056032205, 0.21848051], [152.22, 1976.29304572222, 0.20700632], [152.23, 1976.7772663670505, 0.21901292], [152.24, 1976.2748059371972, 0.20823766], [152.25, 1976.7773769047674, 0.21855962], [152.26, 1976.2338201668151, 0.2079226], [152.27, 1976.7862981913063, 0.21903558], [152.28, 1976.2387502146498, 0.20764627], [152.29, 1976.7472317630186, 0.21884024], [152.3, 1976.2972458136778, 0.20750923], [152.31, 1976.7794750388782, 0.21899627], [152.32, 1976.3301206692, 0.20774001], [152.33, 1976.7628369396937, 0.21925274], [152.34, 1976.3454107138384, 0.20778058], [152.35, 1976.8405203966595, 0.21892324], [152.36, 1976.3817198780328, 0.20696977], [152.37, 1976.8539476528922, 0.21841024], [152.38, 1976.367401015775, 0.20670275], [152.39, 1976.8135040657696, 0.21799996], [152.4, 1976.3669493058287, 0.20736504], [152.41, 1976.7790487891684, 0.21802321], [152.42, 1976.3391040940664, 0.2073005], [152.43, 1976.817786030454, 0.21884653], [152.44, 1976.3186299300623, 0.2071477], [152.45, 1976.7964425315577, 0.21773595], [152.46, 1976.3262435623835, 0.20667955], [152.47, 1976.819552649897, 0.21889755], [152.48, 1976.3031485303964, 0.2060819], [152.49, 1976.8175757897043, 0.21870953], [152.5, 1976.282795753596, 0.20693526], [152.51, 1976.7985662680476, 0.2192844], [152.52, 1976.2990483209944, 0.20630589], [152.53, 1976.833283350385, 0.21891923], [152.54, 1976.2940650992048, 0.20715919], [152.55, 1976.855222958625, 0.21975926], [152.56, 1976.2944524694306, 0.2075939], [152.57, 1976.8851896357291, 0.22011833], [152.58, 1976.2692625416255, 0.20736662], [152.59, 1976.8354528069415, 0.21999413], [152.6, 1976.2518449747408, 0.20835482], [152.61, 1976.8213291184386, 0.22006795], [152.62, 1976.247688004291, 0.20790394], [152.63, 1976.8366256626464, 0.2199629], [152.64, 1976.255644362132, 0.20708245], [152.65, 1976.8344851197417, 0.21945949], [152.66, 1976.2630072351237, 0.20738906], [152.67, 1976.7837965062447, 0.22034687], [152.68, 1976.2535972622668, 0.20772834], [152.69, 1976.8527802449196, 0.22048937], [152.7, 1976.2838587514366, 0.20770632], [152.71, 1976.8783839444607, 0.22003743], [152.72, 1976.3046979658973, 0.207096], [152.73, 1976.8409467476, 0.21905686], [152.74, 1976.3094452989958, 0.20750397], [152.75, 1976.8142619249386, 0.21926071], [152.76, 1976.3429900318456, 0.20752488], [152.77, 1976.8712568339633, 0.21915585], [152.78, 1976.363109834656, 0.20805609], [152.79, 1976.864746783102, 0.21874817], [152.8, 1976.3545712028872, 0.20799738], [152.81, 1976.82486246322, 0.21846825], [152.82, 1976.3043331908782, 0.20805903], [152.83, 1976.8118544164906, 0.21932995], [152.84, 1976.3243297312058, 0.20742415], [152.85, 1976.8536742408464, 0.21851939], [152.86, 1976.305600246094, 0.20766655], [152.87, 1976.8580791887234, 0.21866314], [152.88, 1976.364946800632, 0.20728986], [152.89, 1976.8292081574014, 0.21858151], [152.9, 1976.3375520951138, 0.20690002], [152.91, 1976.7944348579413, 0.21944846], [152.92, 1976.3098479089113, 0.20792674], [152.93, 1976.7824977435873, 0.21946304], [152.94, 1976.3149387155975, 0.20841867], [152.95, 1976.794923894232, 0.21915412], [152.96, 1976.308816950758, 0.20852228], [152.97, 1976.8112827700897, 0.21910128], [152.98, 1976.305792448086, 0.20958549], [152.99, 1976.7648156650348, 0.21970536], [153.0, 1976.2984825271722, 0.21026643], [153.01, 1976.7768553719916, 0.22019354], [153.02, 1976.2963069325576, 0.21016409], [153.03, 1976.77830973209, 0.22115967], [153.04, 1976.3143615969623, 0.21047261], [153.05, 1976.7732148969994, 0.22072192], [153.06, 1976.3037007357793, 0.21016058], [153.07, 1976.8029893695486, 0.22059062], [153.08, 1976.2847948627561, 0.20998015], [153.09, 1976.8284165196578, 0.2199812], [153.1, 1976.2898617173005, 0.21021667], [153.11, 1976.830109136981, 0.22025275], [153.12, 1976.3388688387774, 0.21022077], [153.13, 1976.793181554001, 0.21959272], [153.14, 1976.331894335572, 0.20973831], [153.15, 1976.787041453293, 0.21922094], [153.16, 1976.3607701644762, 0.20900582], [153.17, 1976.7994819524615, 0.21886122], [153.18, 1976.3142525521662, 0.20915873], [153.19, 1976.775890731898, 0.21951526], [153.2, 1976.2879285058534, 0.21010716], [153.21, 1976.811414692868, 0.22008282], [153.22, 1976.2908510493207, 0.20927791], [153.23, 1976.8229335370847, 0.21997817], [153.24, 1976.293321713203, 0.20797856], [153.25, 1976.8251466051665, 0.21917656], [153.26, 1976.2708491166848, 0.20836966], [153.27, 1976.7531455400867, 0.2196765], [153.28, 1976.223864202727, 0.20900805], [153.29, 1976.7161152514113, 0.2203472], [153.3, 1976.2382508295377, 0.20843121], [153.31, 1976.7642029245587, 0.21928178], [153.32, 1976.268001252995, 0.20835195], [153.33, 1976.7722314400282, 0.21976654], [153.34, 1976.303983532092, 0.20872791], [153.35, 1976.7894625030954, 0.21943374], [153.36, 1976.3133937871403, 0.20873307], [153.37, 1976.777737622369, 0.21892375], [153.38, 1976.332798495322, 0.2089305], [153.39, 1976.7819316876157, 0.21871197], [153.4, 1976.3397373383373, 0.20960958], [153.41, 1976.7899016749338, 0.21936548], [153.42, 1976.323420073862, 0.20895895], [153.43, 1976.7985036954642, 0.21953945], [153.44, 1976.3458981988983, 0.20869619], [153.45, 1976.887625013459, 0.21934983], [153.46, 1976.3977864056303, 0.20778117], [153.47, 1976.9085763354976, 0.21806112], [153.48, 1976.394548816213, 0.20724337], [153.49, 1976.9108596352562, 0.2181933], [153.5, 1976.4231777965736, 0.20735942], [153.51, 1976.8944987090972, 0.21777666], [153.52, 1976.4462495779687, 0.20665501], [153.53, 1976.8821708460246, 0.21696539], [153.54, 1976.413206839786, 0.2063467], [153.55, 1976.8433418292152, 0.21722427], [153.56, 1976.4205880403995, 0.20599847], [153.57, 1976.7880061602796, 0.21698342], [153.58, 1976.3703694867686, 0.205716], [153.59, 1976.785472648649, 0.21738866], [153.6, 1976.4027793043424, 0.20528927], [153.61, 1976.8091718282674, 0.21629857], [153.62, 1976.4157633446393, 0.20328401], [153.63, 1976.8071019173026, 0.21623063], [153.64, 1976.3724075035857, 0.2032113], [153.65, 1976.8007051118448, 0.21714577], [153.66, 1976.3602921591528, 0.20478727], [153.67, 1976.7809955455798, 0.21746334], [153.68, 1976.3248859364012, 0.20556085], [153.69, 1976.779133361816, 0.21850367], [153.7, 1976.3475851135966, 0.20564671], [153.71, 1976.807436307438, 0.21805242], [153.72, 1976.365831938028, 0.20532753], [153.73, 1976.8140215226333, 0.21847782], [153.74, 1976.4075112025491, 0.20501068], [153.75, 1976.8444151284184, 0.21756561], [153.76, 1976.392184052287, 0.20387527], [153.77, 1976.8656339717475, 0.2166457], [153.78, 1976.4009282951215, 0.20394972], [153.79, 1976.882923910954, 0.21809727], [153.8, 1976.3825661690669, 0.20323998], [153.81, 1976.8507002466483, 0.2167716], [153.82, 1976.3958583574108, 0.20387582], [153.83, 1976.875140794492, 0.21782725], [153.84, 1976.375976282145, 0.20430522], [153.85, 1976.845906398123, 0.21731272], [153.86, 1976.3514319742508, 0.20484422], [153.87, 1976.8646907309542, 0.21756105], [153.88, 1976.3559202561512, 0.20450075], [153.89, 1976.844561021196, 0.21835895], [153.9, 1976.353088354222, 0.2041669], [153.91, 1976.8775664372583, 0.2171202], [153.92, 1976.3609793593037, 0.20486291], [153.93, 1976.8434838285768, 0.21783376], [153.94, 1976.327277334932, 0.20467293], [153.95, 1976.8940959143124, 0.21783602], [153.96, 1976.352983612655, 0.20481382], [153.97, 1976.8589632507687, 0.21757242], [153.98, 1976.3456529903203, 0.20512107], [153.99, 1976.881977369098, 0.21660064], [154.0, 1976.3925822219621, 0.20358953], [154.01, 1976.8872929575502, 0.21680097], [154.02, 1976.3247519831853, 0.20368502], [154.03, 1976.8339887029722, 0.21761289], [154.04, 1976.311273369346, 0.20521872], [154.05, 1976.8535839747442, 0.21745911], [154.06, 1976.3684766226156, 0.2047744], [154.07, 1976.887453464456, 0.2170705], [154.08, 1976.328501243871, 0.20451534], [154.09, 1976.8823271719652, 0.21764636], [154.1, 1976.3397775145659, 0.20481744], [154.11, 1976.8093592014648, 0.2166182], [154.12, 1976.2836948009387, 0.20486], [154.13, 1976.8202658942575, 0.21727808], [154.14, 1976.2871151862564, 0.20558736], [154.15, 1976.8169760477087, 0.216833], [154.16, 1976.3245545380946, 0.20586489], [154.17, 1976.8438667005012, 0.21763685], [154.18, 1976.3102213279744, 0.20619394], [154.19, 1976.8736615400715, 0.21813521], [154.2, 1976.2896321197563, 0.20629145], [154.21, 1976.8571718136625, 0.21821423], [154.22, 1976.2856569372796, 0.20609562], [154.23, 1976.9255215476583, 0.21738282], [154.24, 1976.3145630104634, 0.20599763], [154.25, 1976.9033802159065, 0.21843354], [154.26, 1976.3079851921386, 0.20626333], [154.27, 1976.871154602867, 0.21874814], [154.28, 1976.3066750957862, 0.20742969], [154.29, 1976.9186749987898, 0.21825595], [154.3, 1976.3556310760011, 0.20653434], [154.31, 1976.920672496675, 0.2175775], [154.32, 1976.3823598778908, 0.20650792], [154.33, 1976.8697111986355, 0.21670836], [154.34, 1976.3977707993977, 0.20648696], [154.35, 1976.8433190479773, 0.21753323], [154.36, 1976.362760102179, 0.20692596], [154.37, 1976.82913997632, 0.21696924], [154.38, 1976.3409350503084, 0.2068633], [154.39, 1976.843020278238, 0.21767272], [154.4, 1976.3588466977196, 0.20710726], [154.41, 1976.7858844506875, 0.21842706], [154.42, 1976.3135965939791, 0.2081664], [154.43, 1976.800142275107, 0.21838863], [154.44, 1976.3250810534407, 0.20784338], [154.45, 1976.7915148329132, 0.21873452], [154.46, 1976.2945819958338, 0.20763741], [154.47, 1976.7837273756415, 0.21969274], [154.48, 1976.272214952745, 0.20827557], [154.49, 1976.8085254079238, 0.2197902], [154.5, 1976.2734734400726, 0.2078367], [154.51, 1976.8036629441795, 0.21900325], [154.52, 1976.2698821167578, 0.2073194], [154.53, 1976.7705460551606, 0.21886677], [154.54, 1976.2770818402466, 0.20753235], [154.55, 1976.7351649239117, 0.21923588], [154.56, 1976.2612977710792, 0.20803678], [154.57, 1976.792813109141, 0.21945816], [154.58, 1976.2845954822226, 0.20827211], [154.59, 1976.819331949252, 0.21959168], [154.6, 1976.2856017644492, 0.20814179], [154.61, 1976.790155586887, 0.21963787], [154.62, 1976.2629304721659, 0.20783697], [154.63, 1976.7620621045094, 0.22014733], [154.64, 1976.2282691225098, 0.20866302], [154.65, 1976.7280541194295, 0.22044413], [154.66, 1976.2105374726048, 0.20828061], [154.67, 1976.7607558924833, 0.21999428], [154.68, 1976.189446229171, 0.20755908], [154.69, 1976.7211740563343, 0.21971305], [154.7, 1976.1939527464024, 0.20744716], [154.71, 1976.736969774421, 0.2196893], [154.72, 1976.1825655553598, 0.20714995], [154.73, 1976.7215618714604, 0.21968397], [154.74, 1976.1829256934889, 0.20825084], [154.75, 1976.7483835740088, 0.21956198], [154.76, 1976.1811209209543, 0.2076438], [154.77, 1976.724382900111, 0.2197156], [154.78, 1976.1850759700746, 0.20787778], [154.79, 1976.7269854890696, 0.21970245], [154.8, 1976.2042395350404, 0.20793837], [154.81, 1976.741713868993, 0.21887651], [154.82, 1976.2406839401444, 0.20751889], [154.83, 1976.7348882011177, 0.21907532], [154.84, 1976.2502030563448, 0.20721844], [154.85, 1976.7372451520553, 0.21871215], [154.86, 1976.241892360081, 0.20628007], [154.87, 1976.717931294153, 0.21829098], [154.88, 1976.2154664579257, 0.20604962], [154.89, 1976.715177549513, 0.21873727], [154.9, 1976.236233267311, 0.20677812], [154.91, 1976.7048418809306, 0.21833977], [154.92, 1976.2256404838427, 0.20587997], [154.93, 1976.7204064305927, 0.21756631], [154.94, 1976.2132609646305, 0.20569997], [154.95, 1976.6787952871287, 0.2174494], [154.96, 1976.2087941030845, 0.20530295], [154.97, 1976.744617358569, 0.21753602], [154.98, 1976.250133837862, 0.20469514], [154.99, 1976.7900225781307, 0.21799889], [155.0, 1976.2480044719948, 0.20471783], [155.01, 1976.7809897265074, 0.21737893], [155.02, 1976.2422072958225, 0.20506385], [155.03, 1976.719151985724, 0.21570916], [155.04, 1976.271506055871, 0.20413597], [155.05, 1976.7683195733475, 0.216916], [155.06, 1976.26541721358, 0.2041763], [155.07, 1976.7710680047362, 0.21730371], [155.08, 1976.2456173750656, 0.20472409], [155.09, 1976.725266645868, 0.21682206], [155.1, 1976.213569927937, 0.20441294], [155.11, 1976.697315101953, 0.21705522], [155.12, 1976.2249501067583, 0.20349346], [155.13, 1976.7243096176592, 0.21730079], [155.14, 1976.241320283643, 0.20325527], [155.15, 1976.6992829297037, 0.21681888], [155.16, 1976.2712730057915, 0.20344809], [155.17, 1976.7205913924906, 0.21695165], [155.18, 1976.2797630678383, 0.2045502], [155.19, 1976.7301666626056, 0.21794866], [155.2, 1976.2562034740574, 0.20441914], [155.21, 1976.7691756615386, 0.21845044], [155.22, 1976.2409172568346, 0.20540997], [155.23, 1976.7649544089295, 0.21854293], [155.24, 1976.2735155557193, 0.20498694], [155.25, 1976.8009856598362, 0.21816489], [155.26, 1976.2522807999167, 0.20474295], [155.27, 1976.7908284546386, 0.21773309], [155.28, 1976.249606965097, 0.20578454], [155.29, 1976.7728498635493, 0.2173239], [155.3, 1976.2451008379596, 0.20580891], [155.31, 1976.7633940566782, 0.21744819], [155.32, 1976.2540512729336, 0.20576516], [155.33, 1976.7904352475211, 0.21698152], [155.34, 1976.251569531669, 0.20538606], [155.35, 1976.7174830360452, 0.21742441], [155.36, 1976.2397908698617, 0.20480101], [155.37, 1976.7209596470798, 0.21671173], [155.38, 1976.2510621751967, 0.2048287], [155.39, 1976.724418631087, 0.21715456], [155.4, 1976.2531579032607, 0.20468548], [155.41, 1976.6840435068432, 0.21700956], [155.42, 1976.2524455309303, 0.20463091], [155.43, 1976.714049375632, 0.21682021], [155.44, 1976.235285339917, 0.20597112], [155.45, 1976.701170426468, 0.21681125], [155.46, 1976.2376832283016, 0.20719571], [155.47, 1976.7240964290315, 0.2180961], [155.48, 1976.2058964519201, 0.20644985], [155.49, 1976.6967723748312, 0.2181906], [155.5, 1976.2052513322217, 0.2060687], [155.51, 1976.6636549688988, 0.21800417], [155.52, 1976.193562477116, 0.20482711], [155.53, 1976.6311622829753, 0.2171745], [155.54, 1976.1647075103788, 0.20483129], [155.55, 1976.653020495742, 0.21799418], [155.56, 1976.186409357546, 0.2060105], [155.57, 1976.7059525983266, 0.21925025], [155.58, 1976.2159535637525, 0.20733318], [155.59, 1976.6645246663027, 0.21850662], [155.6, 1976.2183380979482, 0.20720437], [155.61, 1976.6472740423467, 0.21866785], [155.62, 1976.2463585398582, 0.20606567], [155.63, 1976.660719280019, 0.21887572], [155.64, 1976.2316657730037, 0.20510691], [155.65, 1976.6859995927216, 0.21887144], [155.66, 1976.2095393196855, 0.20553945], [155.67, 1976.677294425025, 0.2183437], [155.68, 1976.1819161229923, 0.20557085], [155.69, 1976.7074694833068, 0.2194685], [155.7, 1976.1397573428899, 0.2062019], [155.71, 1976.690625731566, 0.21951367], [155.72, 1976.1626062026394, 0.20667395], [155.73, 1976.6930539607758, 0.21903968], [155.74, 1976.195775226166, 0.20739076], [155.75, 1976.7049882247502, 0.21917474], [155.76, 1976.2631816249605, 0.20665354], [155.77, 1976.7235502286624, 0.2189936], [155.78, 1976.2688471142574, 0.2060088], [155.79, 1976.7224092594872, 0.21810447], [155.8, 1976.2253395137213, 0.20631193], [155.81, 1976.681949669322, 0.2186391], [155.82, 1976.1944747191774, 0.20584872], [155.83, 1976.696008947124, 0.21867187], [155.84, 1976.1667010014073, 0.20577224], [155.85, 1976.703376594179, 0.21887167], [155.86, 1976.1261031805311, 0.20581883], [155.87, 1976.6654491698725, 0.21869098], [155.88, 1976.1293620808742, 0.20562173], [155.89, 1976.67338981198, 0.21836871], [155.9, 1976.1618498166358, 0.20516834], [155.91, 1976.7148506193448, 0.21809669], [155.92, 1976.1718699740256, 0.20449957], [155.93, 1976.7143065962239, 0.21835668], [155.94, 1976.154354327166, 0.20536594], [155.95, 1976.7385445960167, 0.21896946], [155.96, 1976.1825226999053, 0.20525752], [155.97, 1976.7257700568725, 0.21774209], [155.98, 1976.1949684432, 0.20468639], [155.99, 1976.6968372567408, 0.21815747], [156.0, 1976.2092335931134, 0.20487668], [156.01, 1976.7740187331256, 0.21817872], [156.02, 1976.199834020006, 0.20585316], [156.03, 1976.7473473052914, 0.21887746], [156.04, 1976.2029430351818, 0.20672262], [156.05, 1976.7730586914304, 0.2195275], [156.06, 1976.1968029056898, 0.20696734], [156.07, 1976.7983604434723, 0.2189608], [156.08, 1976.212578733765, 0.20674568], [156.09, 1976.80005765586, 0.21829437], [156.1, 1976.2219582742564, 0.20644122], [156.11, 1976.7716635059523, 0.21867137], [156.12, 1976.2088959789444, 0.20606178], [156.13, 1976.7409072865025, 0.21724334], [156.14, 1976.2336132455048, 0.20625378], [156.15, 1976.750974940186, 0.2171861], [156.16, 1976.2297447894887, 0.20647463], [156.17, 1976.7722710064072, 0.218686], [156.18, 1976.2101607275545, 0.20720498], [156.19, 1976.7431314788669, 0.21742986], [156.2, 1976.2395228737478, 0.20628597], [156.21, 1976.7667148538508, 0.21733405], [156.22, 1976.2429981200007, 0.20610839], [156.23, 1976.7439634080504, 0.21775755], [156.24, 1976.2371410544888, 0.20599774], [156.25, 1976.749271653639, 0.21717048], [156.26, 1976.227450377219, 0.20615114], [156.27, 1976.7130547325637, 0.21797109], [156.28, 1976.221107619478, 0.20634246], [156.29, 1976.7036403161542, 0.21732864], [156.3, 1976.2439787655537, 0.20668143], [156.31, 1976.7266757888945, 0.21764632], [156.32, 1976.2121936182573, 0.2075811], [156.33, 1976.7475417588842, 0.21794902], [156.34, 1976.1953245331185, 0.20781231], [156.35, 1976.7635944940935, 0.21750745], [156.36, 1976.2155748204905, 0.20679422], [156.37, 1976.7923382126269, 0.21779959], [156.38, 1976.226369582389, 0.20606044], [156.39, 1976.7770391256088, 0.21782432], [156.4, 1976.248204894826, 0.20550461], [156.41, 1976.7430654988375, 0.2177032], [156.42, 1976.195796675138, 0.20609756], [156.43, 1976.7723098138113, 0.21773271], [156.44, 1976.2245029501062, 0.2063332], [156.45, 1976.7885137950134, 0.21780756], [156.46, 1976.2358707142907, 0.20492278], [156.47, 1976.7459806949898, 0.21694107], [156.48, 1976.2342854784551, 0.20577294], [156.49, 1976.7393504705317, 0.21834488], [156.5, 1976.2173389650545, 0.20592095], [156.51, 1976.7466071496137, 0.21738763], [156.52, 1976.2246254781376, 0.20588273], [156.53, 1976.7402002099755, 0.21752901], [156.54, 1976.189514606464, 0.205959], [156.55, 1976.7393152685659, 0.21776041], [156.56, 1976.176855357798, 0.20679973], [156.57, 1976.784128154508, 0.21905774], [156.58, 1976.1934652052505, 0.20762683], [156.59, 1976.7998252030723, 0.21827263], [156.6, 1976.2116326847117, 0.20806557], [156.61, 1976.8063654924115, 0.21904959], [156.62, 1976.211964488756, 0.2078028], [156.63, 1976.790338448081, 0.21842784], [156.64, 1976.185082126624, 0.20769913], [156.65, 1976.749810584201, 0.2186833], [156.66, 1976.20283666289, 0.20758677], [156.67, 1976.7892488152402, 0.21870424], [156.68, 1976.2100590171908, 0.20681545], [156.69, 1976.7740691525048, 0.21788403], [156.7, 1976.227547217651, 0.20653139], [156.71, 1976.7729276699065, 0.21789587], [156.72, 1976.2325003267488, 0.20606259], [156.73, 1976.8177484514874, 0.21832007], [156.74, 1976.28834974453, 0.2071922], [156.75, 1976.7851737575425, 0.21780945], [156.76, 1976.2720434954826, 0.20697874], [156.77, 1976.7950262078448, 0.21714164], [156.78, 1976.2803173376947, 0.20670979], [156.79, 1976.795471550927, 0.21713941], [156.8, 1976.269278297963, 0.2066903], [156.81, 1976.7795761794366, 0.21814527], [156.82, 1976.2649742499752, 0.20592615], [156.83, 1976.8266968434195, 0.21746452], [156.84, 1976.2551876553664, 0.20637582], [156.85, 1976.8340833850611, 0.21752527], [156.86, 1976.2892746500725, 0.20431317], [156.87, 1976.791146160177, 0.21620601], [156.88, 1976.2931471160946, 0.20342796], [156.89, 1976.7750633034723, 0.2159689], [156.9, 1976.2824988731581, 0.20413283], [156.91, 1976.7587189141059, 0.21605228], [156.92, 1976.286801294572, 0.20421974], [156.93, 1976.7683257037809, 0.21664838], [156.94, 1976.256044687861, 0.20478123], [156.95, 1976.7532593826827, 0.21752036], [156.96, 1976.3139229192088, 0.20505264], [156.97, 1976.8278556052778, 0.21687104], [156.98, 1976.3231616575672, 0.20474683], [156.99, 1976.8361799513436, 0.21670613], [157.0, 1976.2881892811783, 0.20538008], [157.01, 1976.7866437442215, 0.21675405], [157.02, 1976.273580837119, 0.20542786], [157.03, 1976.807275469157, 0.21738625], [157.04, 1976.2515072628278, 0.20611645], [157.05, 1976.844888034986, 0.2173346], [157.06, 1976.2711930177238, 0.20564905], [157.07, 1976.811723628999, 0.21716017], [157.08, 1976.267335202294, 0.2053341], [157.09, 1976.8399303057754, 0.21788187], [157.1, 1976.269443563897, 0.2065329], [157.11, 1976.7968143381927, 0.21818022], [157.12, 1976.3347788388874, 0.20694335], [157.13, 1976.7746679875681, 0.21746856], [157.14, 1976.3507535694055, 0.2064353], [157.15, 1976.8055342243924, 0.21781284], [157.16, 1976.3412264985311, 0.20670024], [157.17, 1976.8439565210767, 0.21763593], [157.18, 1976.3051739191108, 0.20671134], [157.19, 1976.7931040717838, 0.21735303], [157.2, 1976.2927735503272, 0.20597474], [157.21, 1976.8255205560035, 0.21743101], [157.22, 1976.300903754942, 0.20542179], [157.23, 1976.8390406222036, 0.21684979], [157.24, 1976.3387520446408, 0.20570622], [157.25, 1976.8381710098547, 0.21724346], [157.26, 1976.3407674953783, 0.20563279], [157.27, 1976.7710809409805, 0.2168729], [157.28, 1976.319833846209, 0.20604776], [157.29, 1976.7824070797358, 0.21710235], [157.3, 1976.2926905918098, 0.20635301], [157.31, 1976.8074475002084, 0.21753673], [157.32, 1976.3089169916816, 0.20606266], [157.33, 1976.764978565871, 0.21676502], [157.34, 1976.287137755902, 0.2059559], [157.35, 1976.786693891061, 0.21730308], [157.36, 1976.3063532833419, 0.2063893], [157.37, 1976.7808749764795, 0.21688974], [157.38, 1976.3019596961292, 0.20581737], [157.39, 1976.7962167907515, 0.21764368], [157.4, 1976.2919144239797, 0.206112], [157.41, 1976.7776358252584, 0.21787748], [157.42, 1976.268647585, 0.20653224], [157.43, 1976.77150799223, 0.2179747], [157.44, 1976.2696773761197, 0.20635088], [157.45, 1976.7688989265466, 0.21806389], [157.46, 1976.2651771827109, 0.20654798], [157.47, 1976.808346803747, 0.2188578], [157.48, 1976.2480549623215, 0.20719557], [157.49, 1976.815469489393, 0.21947637], [157.5, 1976.2587056330476, 0.20735809], [157.51, 1976.800124799431, 0.2194081], [157.52, 1976.262376382182, 0.20629483], [157.53, 1976.8304584467628, 0.21904793], [157.54, 1976.3011135989932, 0.2057988], [157.55, 1976.81467279558, 0.21870342], [157.56, 1976.2655610830293, 0.20627028], [157.57, 1976.8105014237863, 0.219122], [157.58, 1976.2854722975214, 0.20746323], [157.59, 1976.803376019785, 0.218838], [157.6, 1976.2800425841, 0.2077878], [157.61, 1976.8128578984238, 0.21861346], [157.62, 1976.2901155918883, 0.20764607], [157.63, 1976.8327993141065, 0.21860169], [157.64, 1976.3049676358337, 0.20674996], [157.65, 1976.8393926940785, 0.2182044], [157.66, 1976.2791757502137, 0.20660686], [157.67, 1976.8062656687903, 0.21826433], [157.68, 1976.2510450017485, 0.20680565], [157.69, 1976.799901861597, 0.21856642], [157.7, 1976.2350099603518, 0.20749049], [157.71, 1976.769954515951, 0.21882044], [157.72, 1976.2063087608171, 0.2069533], [157.73, 1976.7510017236416, 0.2185562], [157.74, 1976.23405897651, 0.20709887], [157.75, 1976.8025077037105, 0.2190288], [157.76, 1976.229390492281, 0.20666425], [157.77, 1976.815274537118, 0.2187808], [157.78, 1976.2333127731174, 0.206883], [157.79, 1976.7938226909928, 0.21888255], [157.8, 1976.249013553271, 0.20682259], [157.81, 1976.8394362393947, 0.21919003], [157.82, 1976.2319635138097, 0.206577], [157.83, 1976.8290971043768, 0.21925513], [157.84, 1976.2618991085264, 0.20699362], [157.85, 1976.8724876318497, 0.21805665], [157.86, 1976.2659373495917, 0.20632985], [157.87, 1976.8443354907968, 0.21768922], [157.88, 1976.270320685824, 0.20665018], [157.89, 1976.8805101349712, 0.21834591], [157.9, 1976.2805696725684, 0.2075663], [157.91, 1976.8710009313245, 0.21878481], [157.92, 1976.2723501645908, 0.20714164], [157.93, 1976.8243324397988, 0.21845941], [157.94, 1976.2850624987666, 0.20700772], [157.95, 1976.8686235618886, 0.218734], [157.96, 1976.298049896716, 0.20686267], [157.97, 1976.8624093353062, 0.21861252], [157.98, 1976.2843504956436, 0.20759492], [157.99, 1976.8821621712902, 0.21848072], [158.0, 1976.315527818895, 0.20722803], [158.01, 1976.929620750972, 0.21795692], [158.02, 1976.342900516665, 0.20671466], [158.03, 1976.897674809407, 0.21723995], [158.04, 1976.3299401281774, 0.2065144], [158.05, 1976.8850135665232, 0.21695833], [158.06, 1976.3181067777166, 0.20658796], [158.07, 1976.8755997714127, 0.21722975], [158.08, 1976.2462384756668, 0.20625475], [158.09, 1976.8644199558755, 0.2173834], [158.1, 1976.2544834139615, 0.20655905], [158.11, 1976.8745936367982, 0.21799901], [158.12, 1976.2673395130923, 0.2063037], [158.13, 1976.8961622357951, 0.21850179], [158.14, 1976.2625203627579, 0.20703124], [158.15, 1976.8349704229227, 0.21824592], [158.16, 1976.3084045315304, 0.20812826], [158.17, 1976.850437746093, 0.21782182], [158.18, 1976.283163068687, 0.20798564], [158.19, 1976.842148100379, 0.21818937], [158.2, 1976.3065265563678, 0.20735405], [158.21, 1976.8690815492073, 0.21689235], [158.22, 1976.2715253081751, 0.20652929], [158.23, 1976.8046141259802, 0.21720183], [158.24, 1976.2503992657241, 0.2070415], [158.25, 1976.8027975231316, 0.21794268], [158.26, 1976.2577027327225, 0.20680612], [158.27, 1976.8214976667136, 0.21689615], [158.28, 1976.2348643724426, 0.20640513], [158.29, 1976.8413934721175, 0.2174385], [158.3, 1976.2487079338493, 0.2072077], [158.31, 1976.85822423898, 0.21770322], [158.32, 1976.2609995047355, 0.20763701], [158.33, 1976.8537345323593, 0.217698], [158.34, 1976.2635304717364, 0.20731814], [158.35, 1976.831851387146, 0.2177469], [158.36, 1976.2136617300032, 0.20632131], [158.37, 1976.7948376203053, 0.21805145], [158.38, 1976.2104388981415, 0.20692226], [158.39, 1976.8109769742111, 0.21861997], [158.4, 1976.191861311815, 0.2069903], [158.41, 1976.762570648164, 0.21846126], [158.42, 1976.1972926546039, 0.20651424], [158.43, 1976.763339062304, 0.21770285], [158.44, 1976.2279947324644, 0.2059328], [158.45, 1976.7611134991162, 0.21727201], [158.46, 1976.241263507041, 0.20620781], [158.47, 1976.7907542692967, 0.21716413], [158.48, 1976.2687834030178, 0.20533627], [158.49, 1976.7870558243708, 0.21644278], [158.5, 1976.2220082803237, 0.2049903], [158.51, 1976.7585452421781, 0.2166134], [158.52, 1976.2355990157562, 0.20486613], [158.53, 1976.7653194968127, 0.21751478], [158.54, 1976.2613520188268, 0.20449658], [158.55, 1976.7860323337297, 0.21683963], [158.56, 1976.243451480897, 0.2049925], [158.57, 1976.8439492998048, 0.2173312], [158.58, 1976.235648666971, 0.20496915], [158.59, 1976.777920166235, 0.21719773], [158.6, 1976.2360697356335, 0.20502447], [158.61, 1976.8058969572896, 0.21685374], [158.62, 1976.2628819848862, 0.2053229], [158.63, 1976.8291862170868, 0.21699947], [158.64, 1976.2833617793885, 0.20457515], [158.65, 1976.8384073732086, 0.2157005], [158.66, 1976.2935774256357, 0.20376314], [158.67, 1976.847429977793, 0.21605204], [158.68, 1976.2390197003115, 0.20457348], [158.69, 1976.8368109162918, 0.21648349], [158.7, 1976.2551377137675, 0.20511407], [158.71, 1976.8710531030642, 0.2169939], [158.72, 1976.2400982840595, 0.20484646], [158.73, 1976.822429996489, 0.21758461], [158.74, 1976.2164281528758, 0.20556746], [158.75, 1976.8217571949433, 0.2180479], [158.76, 1976.2298069533867, 0.20620465], [158.77, 1976.8599311186665, 0.21885593], [158.78, 1976.2144182640568, 0.20686714], [158.79, 1976.8359800065687, 0.21856356], [158.8, 1976.2120482733135, 0.20681149], [158.81, 1976.8551651292048, 0.21841069], [158.82, 1976.2523608143956, 0.2070563], [158.83, 1976.8209509243536, 0.21826316], [158.84, 1976.2468995459217, 0.20689312], [158.85, 1976.8368503214626, 0.2183385], [158.86, 1976.2448221241762, 0.2061706], [158.87, 1976.8258867765421, 0.21795243], [158.88, 1976.245307199532, 0.20545879], [158.89, 1976.8692415753183, 0.21814314], [158.9, 1976.2473706680285, 0.20514907], [158.91, 1976.8851538037459, 0.21896286], [158.92, 1976.2328041971489, 0.20549433], [158.93, 1976.8253464149177, 0.21832365], [158.94, 1976.2588924075678, 0.20690003], [158.95, 1976.8232451288043, 0.21891327], [158.96, 1976.2495510087776, 0.20634933], [158.97, 1976.804093412851, 0.21859851], [158.98, 1976.2444257257057, 0.20609367], [158.99, 1976.8018217714073, 0.2184674], [159.0, 1976.2569791582318, 0.20555905], [159.01, 1976.7908325741305, 0.21833746], [159.02, 1976.2645729804208, 0.20577477], [159.03, 1976.8195725874075, 0.21816835], [159.04, 1976.2966116355656, 0.2062578], [159.05, 1976.8278744883487, 0.21833445], [159.06, 1976.3085940793944, 0.205179], [159.07, 1976.8162660252733, 0.2185211], [159.08, 1976.285873320634, 0.2051578], [159.09, 1976.8264617423629, 0.2180113], [159.1, 1976.2936540771432, 0.20545417], [159.11, 1976.8101442699415, 0.2184513], [159.12, 1976.208504757904, 0.20496267], [159.13, 1976.8386286703142, 0.21950425], [159.14, 1976.206596894318, 0.20609555], [159.15, 1976.8862021859493, 0.21858631], [159.16, 1976.2320556655877, 0.20558204], [159.17, 1976.91481933938, 0.21882424], [159.18, 1976.2099195493763, 0.20554124], [159.19, 1976.885768560664, 0.2190603], [159.2, 1976.198443148196, 0.20610957], [159.21, 1976.8853484305907, 0.2190347], [159.22, 1976.1849075758516, 0.20639986], [159.23, 1976.877238631946, 0.21858226], [159.24, 1976.1731868231486, 0.20768122], [159.25, 1976.832181753741, 0.219949], [159.26, 1976.1583646817244, 0.20722185], [159.27, 1976.8591927827422, 0.21947572], [159.28, 1976.1173378581093, 0.20736356], [159.29, 1976.8554088871706, 0.21913901], [159.3, 1976.1384484414289, 0.20682973], [159.31, 1976.873572965772, 0.21834613], [159.32, 1976.156613048837, 0.2065445], [159.33, 1976.798432845674, 0.21890898], [159.34, 1976.1478090893954, 0.206997], [159.35, 1976.7846486593912, 0.21976154], [159.36, 1976.1720487227944, 0.2066701], [159.37, 1976.7994107647357, 0.21978813], [159.38, 1976.204126894104, 0.20674792], [159.39, 1976.8156351665334, 0.2196228], [159.4, 1976.2235246486157, 0.20622194], [159.41, 1976.818644517622, 0.21872425], [159.42, 1976.2308468071262, 0.20668185], [159.43, 1976.8188478484342, 0.21923596], [159.44, 1976.2157958309547, 0.20652716], [159.45, 1976.832646859898, 0.21873318], [159.46, 1976.2352103703302, 0.20621948], [159.47, 1976.854167839388, 0.2179038], [159.48, 1976.2423363763571, 0.20601149], [159.49, 1976.8485174126795, 0.21893407], [159.5, 1976.2432078563565, 0.20628735], [159.51, 1976.8475043251456, 0.21875401], [159.52, 1976.2583032157238, 0.2062737], [159.53, 1976.8121676385774, 0.2183234], [159.54, 1976.209205022703, 0.20555812], [159.55, 1976.8336376408552, 0.21882094], [159.56, 1976.1978327625347, 0.20594715], [159.57, 1976.8180876832482, 0.21845019], [159.58, 1976.2052608785245, 0.20621224], [159.59, 1976.791089897317, 0.2180963], [159.6, 1976.1910365717542, 0.20645659], [159.61, 1976.7667155593508, 0.21830954], [159.62, 1976.2397872088443, 0.20712428], [159.63, 1976.7879877632424, 0.21853112], [159.64, 1976.2772303934526, 0.20652767], [159.65, 1976.8121069893893, 0.21869594], [159.66, 1976.269526722348, 0.20691843], [159.67, 1976.781347693598, 0.21789177], [159.68, 1976.23688681972, 0.20747651], [159.69, 1976.8151049462097, 0.21845372], [159.7, 1976.2436628545968, 0.20616241], [159.71, 1976.823092332886, 0.21841669], [159.72, 1976.205314206018, 0.20604157], [159.73, 1976.780238471849, 0.21851951], [159.74, 1976.1975030938336, 0.20685516], [159.75, 1976.8009331144249, 0.22018594], [159.76, 1976.2062799087334, 0.20733184], [159.77, 1976.7874640598002, 0.21938911], [159.78, 1976.2022686539192, 0.20740592], [159.79, 1976.838462858682, 0.21974966], [159.8, 1976.242316215745, 0.2071234], [159.81, 1976.8081517745468, 0.21876019], [159.82, 1976.1956989059206, 0.20667109], [159.83, 1976.7819483669127, 0.2186498], [159.84, 1976.2327168880004, 0.20733964], [159.85, 1976.8402888887604, 0.21929017], [159.86, 1976.2210681907873, 0.207359], [159.87, 1976.8800574832583, 0.21873574], [159.88, 1976.2728951032975, 0.20778938], [159.89, 1976.8540723859771, 0.2186763], [159.9, 1976.2858430529466, 0.20757085], [159.91, 1976.8855871899816, 0.21910214], [159.92, 1976.276909046653, 0.20839272], [159.93, 1976.8495193584395, 0.21839903], [159.94, 1976.2736492271417, 0.207149], [159.95, 1976.902129852202, 0.21794823], [159.96, 1976.2665375838183, 0.2060194], [159.97, 1976.875217905204, 0.2175357], [159.98, 1976.2731063442357, 0.20604455], [159.99, 1976.9311423520926, 0.2177271], [160.0, 1976.3217177763336, 0.20613745], [160.01, 1976.9224488060945, 0.21763104], [160.02, 1976.302494898353, 0.20362978], [160.03, 1976.9886289877047, 0.21733026], [160.04, 1976.3286053943546, 0.20358297], [160.05, 1976.9275466080805, 0.2175424], [160.06, 1976.289388668993, 0.20405823], [160.07, 1976.8949843848718, 0.21729624], [160.08, 1976.2954263079926, 0.20351817], [160.09, 1976.8817167879433, 0.21671426], [160.1, 1976.3264141855366, 0.20474423], [160.11, 1976.8802364925525, 0.21686728], [160.12, 1976.3309197643011, 0.20564887], [160.13, 1976.9135058963204, 0.21805246], [160.14, 1976.370538931026, 0.20538682], [160.15, 1976.9384511048545, 0.21723229], [160.16, 1976.3819798511042, 0.20498376], [160.17, 1976.9174019759212, 0.21752368], [160.18, 1976.366995661976, 0.20517962], [160.19, 1976.9410910035158, 0.2174176], [160.2, 1976.345638437399, 0.20526531], [160.21, 1976.9488327336899, 0.21731418], [160.22, 1976.328674007847, 0.20450865], [160.23, 1976.9224122197525, 0.21687073], [160.24, 1976.3183977643391, 0.20415768], [160.25, 1976.86542862263, 0.2166092], [160.26, 1976.324080726721, 0.20415102], [160.27, 1976.855536857101, 0.21816461], [160.28, 1976.3357244536408, 0.20446776], [160.29, 1976.8562003931208, 0.21788219], [160.3, 1976.338009279627, 0.20474991], [160.31, 1976.8685819535801, 0.21790864], [160.32, 1976.3202780252923, 0.2043594], [160.33, 1976.868711431525, 0.21797732], [160.34, 1976.303859029004, 0.20496364], [160.35, 1976.8679997324261, 0.21876861], [160.36, 1976.339554995921, 0.20557268], [160.37, 1976.876641379962, 0.21822743], [160.38, 1976.3155668212246, 0.20636497], [160.39, 1976.8583202148739, 0.21820767], [160.4, 1976.318847038199, 0.20617321], [160.41, 1976.88832792297, 0.2186108], [160.42, 1976.3557899250332, 0.2056794], [160.43, 1976.9053751190972, 0.21865429], [160.44, 1976.3331851725409, 0.20611541], [160.45, 1976.893356248802, 0.21830204], [160.46, 1976.3503434431802, 0.20649825], [160.47, 1976.8986521904187, 0.21849366], [160.48, 1976.3578332037114, 0.20683432], [160.49, 1976.89405481928, 0.218361], [160.5, 1976.3424195680818, 0.20734367], [160.51, 1976.909132520999, 0.2185145], [160.52, 1976.3433167453027, 0.20708458], [160.53, 1976.8840293356322, 0.21818767], [160.54, 1976.3401443855578, 0.20709665], [160.55, 1976.8798570884478, 0.21832727], [160.56, 1976.3561794709326, 0.20713581], [160.57, 1976.889836118175, 0.21844143], [160.58, 1976.3198324734847, 0.20744917], [160.59, 1976.8868539887662, 0.21777952], [160.6, 1976.3272159740432, 0.20860979], [160.61, 1976.862863189856, 0.21830726], [160.62, 1976.3267543240568, 0.20806886], [160.63, 1976.882952940185, 0.21857557], [160.64, 1976.2894661622975, 0.20793268], [160.65, 1976.857911396397, 0.21920161], [160.66, 1976.303884157538, 0.2075818], [160.67, 1976.8466162247405, 0.21852371], [160.68, 1976.3031578382888, 0.20730276], [160.69, 1976.8919986418293, 0.21970122], [160.7, 1976.2866134938204, 0.20696847], [160.71, 1976.8495195786102, 0.21938491], [160.72, 1976.2781023622701, 0.2077621], [160.73, 1976.8981325738503, 0.21958978], [160.74, 1976.2519536251189, 0.20829289], [160.75, 1976.8835776525557, 0.22002442], [160.76, 1976.2574038590478, 0.2086691], [160.77, 1976.845392710501, 0.21969138], [160.78, 1976.244285557925, 0.20942338], [160.79, 1976.840330227281, 0.22040106], [160.8, 1976.2466571373611, 0.20881426], [160.81, 1976.804224935977, 0.22059073], [160.82, 1976.2403683286861, 0.20912069], [160.83, 1976.8367473563615, 0.22060926], [160.84, 1976.236742616841, 0.20892459], [160.85, 1976.8333544469483, 0.22064914], [160.86, 1976.2566291095645, 0.20881699], [160.87, 1976.8707423716726, 0.22037141], [160.88, 1976.268351310182, 0.20868616], [160.89, 1976.9058667865008, 0.22080615], [160.9, 1976.2839293264524, 0.20817322], [160.91, 1976.8859281592258, 0.22054872], [160.92, 1976.2509604793645, 0.20818545], [160.93, 1976.8882855843426, 0.22018787], [160.94, 1976.2521764817034, 0.20884241], [160.95, 1976.8451809986097, 0.22001937], [160.96, 1976.255523944026, 0.20868544], [160.97, 1976.8639916681266, 0.22075997], [160.98, 1976.2359029420143, 0.20916411], [160.99, 1976.8830318100718, 0.22138044], [161.0, 1976.2082778836905, 0.2091656], [161.01, 1976.8464440543537, 0.22112477], [161.02, 1976.2069742901522, 0.20881489], [161.03, 1976.8890761906478, 0.22152133], [161.04, 1976.233991118131, 0.20881397], [161.05, 1976.8682763506124, 0.2201778], [161.06, 1976.2366947410703, 0.20838267], [161.07, 1976.9008013910072, 0.2200317], [161.08, 1976.2262479799645, 0.20811565], [161.09, 1976.877361510377, 0.22019705], [161.1, 1976.2718865500392, 0.20797195], [161.11, 1976.8359100545283, 0.22015771], [161.12, 1976.253908538527, 0.20736578], [161.13, 1976.8498288364458, 0.21970071], [161.14, 1976.2528171508586, 0.20667332], [161.15, 1976.8787586363956, 0.21896204], [161.16, 1976.2565950933365, 0.20619507], [161.17, 1976.87841101633, 0.21942471], [161.18, 1976.2321812676726, 0.20643517], [161.19, 1976.8767372011744, 0.21890308], [161.2, 1976.2650655121342, 0.2055787], [161.21, 1976.9152537713544, 0.219258], [161.22, 1976.249032926126, 0.20501028], [161.23, 1976.9317497965276, 0.2181874], [161.24, 1976.2631912022916, 0.20566112], [161.25, 1976.9118830199207, 0.2183941], [161.26, 1976.2581127758244, 0.2062873], [161.27, 1976.9113395735133, 0.21911022], [161.28, 1976.2548324688896, 0.2065578], [161.29, 1976.9448880822097, 0.21843964], [161.3, 1976.2491828605553, 0.20574208], [161.31, 1976.9287472444787, 0.21888486], [161.32, 1976.2636007473934, 0.20634219], [161.33, 1976.9684176893882, 0.21831585], [161.34, 1976.2973913162002, 0.20561421], [161.35, 1976.9063299450702, 0.21791227], [161.36, 1976.2962605693815, 0.20532604], [161.37, 1976.9015201685183, 0.21740818], [161.38, 1976.3011003782935, 0.20616516], [161.39, 1976.8916301763786, 0.21756527], [161.4, 1976.321873969322, 0.20679392], [161.41, 1976.9169769743203, 0.21833953], [161.42, 1976.2975463406215, 0.20647645], [161.43, 1976.8966218235464, 0.2176427], [161.44, 1976.2789539927005, 0.20694153], [161.45, 1976.8642400224544, 0.21910901], [161.46, 1976.2997083615355, 0.20722425], [161.47, 1976.8926314859464, 0.21946257], [161.48, 1976.3244222592036, 0.20719032], [161.49, 1976.863446479369, 0.21884075], [161.5, 1976.3196957080029, 0.20707723], [161.51, 1976.8359806105093, 0.21922323], [161.52, 1976.307110984196, 0.20763348], [161.53, 1976.8591616793308, 0.2186371], [161.54, 1976.314160384476, 0.20838624], [161.55, 1976.830752281896, 0.21925934], [161.56, 1976.2709931237353, 0.20769158], [161.57, 1976.8309263927317, 0.21885225], [161.58, 1976.273642937567, 0.20849442], [161.59, 1976.8515145513768, 0.21841912], [161.6, 1976.289311810043, 0.2076329], [161.61, 1976.8864416771457, 0.21849327], [161.62, 1976.3052331186634, 0.20721929], [161.63, 1976.84662735471, 0.21843293], [161.64, 1976.3009299609566, 0.20778652], [161.65, 1976.8803748398634, 0.21824655], [161.66, 1976.2860827361012, 0.20768167], [161.67, 1976.8699660224431, 0.21796013], [161.68, 1976.3290312478457, 0.20693219], [161.69, 1976.8797909511404, 0.21770503], [161.7, 1976.3095827987624, 0.2077215], [161.71, 1976.846025666646, 0.21917042], [161.72, 1976.3489274170902, 0.2087945], [161.73, 1976.8820698809807, 0.21839498], [161.74, 1976.305294494713, 0.20792212], [161.75, 1976.8561483824144, 0.21850942], [161.76, 1976.2949789818354, 0.20729905], [161.77, 1976.843865017293, 0.21859369], [161.78, 1976.2983057745096, 0.2069602], [161.79, 1976.8829283231316, 0.21774413], [161.8, 1976.3107096056174, 0.20612125], [161.81, 1976.8866578710458, 0.21783938], [161.82, 1976.3175784175128, 0.20621136], [161.83, 1976.923637613284, 0.21830714], [161.84, 1976.3327686101127, 0.2066421], [161.85, 1976.9281163990333, 0.21831267], [161.86, 1976.30952393613, 0.20690195], [161.87, 1976.9282611089297, 0.21940614], [161.88, 1976.3263093961743, 0.2064192], [161.89, 1976.939767869455, 0.21889089], [161.9, 1976.3124067663355, 0.20565802], [161.91, 1976.8875460097536, 0.21845864], [161.92, 1976.364547172505, 0.2056948], [161.93, 1976.8744165934536, 0.21771896], [161.94, 1976.376162079472, 0.20474437], [161.95, 1976.8891529188872, 0.21713337], [161.96, 1976.3545455928138, 0.20401408], [161.97, 1976.8599078560499, 0.2170607], [161.98, 1976.3450371449399, 0.20476133], [161.99, 1976.8252226785214, 0.21653506], [162.0, 1976.330211846946, 0.2048132], [162.01, 1976.832196298052, 0.21711776], [162.02, 1976.3493040588432, 0.20473564], [162.03, 1976.8166885633743, 0.21689102], [162.04, 1976.2939688243605, 0.20625558], [162.05, 1976.8223137437872, 0.2175112], [162.06, 1976.278007821169, 0.20685482], [162.07, 1976.8217357729702, 0.21800536], [162.08, 1976.266113568297, 0.20670508], [162.09, 1976.8525060770135, 0.21897805], [162.1, 1976.2753064425851, 0.20564635], [162.11, 1976.8358731458045, 0.21786417], [162.12, 1976.2523906252816, 0.20535143], [162.13, 1976.7944792503758, 0.21795085], [162.14, 1976.2643760885978, 0.20607984], [162.15, 1976.867881753718, 0.21877101], [162.16, 1976.263983014971, 0.20643789], [162.17, 1976.8494243188197, 0.2175609], [162.18, 1976.293197037107, 0.20680632], [162.19, 1976.8422833761258, 0.2176092], [162.2, 1976.2879721720549, 0.2062054], [162.21, 1976.8213934694816, 0.21774875], [162.22, 1976.2668972273032, 0.20699598], [162.23, 1976.8703964007327, 0.21854334], [162.24, 1976.2503786696543, 0.20733683], [162.25, 1976.8879010995781, 0.21868229], [162.26, 1976.2735945020745, 0.20719281], [162.27, 1976.8365494737534, 0.21803665], [162.28, 1976.2723548936483, 0.20615996], [162.29, 1976.8757750375178, 0.21877787], [162.3, 1976.2717810563004, 0.20678802], [162.31, 1976.930299146125, 0.21864139], [162.32, 1976.2882623674434, 0.20729733], [162.33, 1976.881112551075, 0.21800402], [162.34, 1976.2698417523616, 0.20647588], [162.35, 1976.8607357455112, 0.21867794], [162.36, 1976.2644567241337, 0.20695442], [162.37, 1976.8740779577067, 0.21947572], [162.38, 1976.3012539952113, 0.20570548], [162.39, 1976.8794860524, 0.21829765], [162.4, 1976.2911299376926, 0.20487073], [162.41, 1976.8118835785067, 0.21673009], [162.42, 1976.2455169067655, 0.20445332], [162.43, 1976.8268854147445, 0.2164995], [162.44, 1976.2605627728542, 0.20492037], [162.45, 1976.7975641465628, 0.2169267], [162.46, 1976.2720301687148, 0.20498456], [162.47, 1976.7884394767248, 0.21678925], [162.48, 1976.2650662200617, 0.20518115], [162.49, 1976.7810272821725, 0.21674344], [162.5, 1976.2771541070206, 0.2054266], [162.51, 1976.7991067771425, 0.21646772], [162.52, 1976.291573801042, 0.2049077], [162.53, 1976.7519071166998, 0.21660873], [162.54, 1976.2727821319424, 0.20457669], [162.55, 1976.7810907686555, 0.2171879], [162.56, 1976.26409574984, 0.20567417], [162.57, 1976.824993747265, 0.21744627], [162.58, 1976.2718217878441, 0.20677887], [162.59, 1976.79087180068, 0.21866931], [162.6, 1976.282736833069, 0.20710187], [162.61, 1976.8205033413387, 0.21827759], [162.62, 1976.2577882022947, 0.20599598], [162.63, 1976.8306715698407, 0.21867467], [162.64, 1976.2750880280473, 0.20515805], [162.65, 1976.8255439374375, 0.21776557], [162.66, 1976.2900611813645, 0.20488223], [162.67, 1976.8218200112105, 0.21723369], [162.68, 1976.2764480221176, 0.20542246], [162.69, 1976.7601477894118, 0.21662207], [162.7, 1976.2820791246747, 0.2056103], [162.71, 1976.7992301828262, 0.21725327], [162.72, 1976.2734229870955, 0.20542449], [162.73, 1976.82618191153, 0.21837431], [162.74, 1976.2273145291424, 0.20696692], [162.75, 1976.8233804716376, 0.21831666], [162.76, 1976.2409940335283, 0.20713286], [162.77, 1976.8449174909413, 0.21899694], [162.78, 1976.2279542344786, 0.20660782], [162.79, 1976.815762465569, 0.2177158], [162.8, 1976.240168985893, 0.20640361], [162.81, 1976.8303916666341, 0.21829109], [162.82, 1976.2255155663183, 0.2064955], [162.83, 1976.8808401342308, 0.21924342], [162.84, 1976.2362258585179, 0.20759325], [162.85, 1976.8782186702647, 0.21913403], [162.86, 1976.2487107317772, 0.20883586], [162.87, 1976.8601903729561, 0.21997082], [162.88, 1976.2604091272556, 0.20826222], [162.89, 1976.874555499319, 0.21888044], [162.9, 1976.2761025722561, 0.20737498], [162.91, 1976.8752830925805, 0.21764386], [162.92, 1976.2616739145822, 0.20622735], [162.93, 1976.8399930627108, 0.21744356], [162.94, 1976.2212338311313, 0.20605715], [162.95, 1976.8655019699468, 0.21855588], [162.96, 1976.1885059474384, 0.20543204], [162.97, 1976.8370719142288, 0.21861778], [162.98, 1976.1906785004162, 0.20534782], [162.99, 1976.8240605705855, 0.21831949], [163.0, 1976.1864835307397, 0.20579657], [163.01, 1976.8640120137134, 0.21852916], [163.02, 1976.2010900241173, 0.20556651], [163.03, 1976.815184490451, 0.21794827], [163.04, 1976.1726954861822, 0.2053176], [163.05, 1976.7941340314826, 0.21956588], [163.06, 1976.18373957409, 0.20604508], [163.07, 1976.7818463513684, 0.21944657], [163.08, 1976.1737526121688, 0.20577186], [163.09, 1976.7841557393454, 0.21817738], [163.1, 1976.2020054863065, 0.20531861], [163.11, 1976.759928867319, 0.21832453], [163.12, 1976.1637749942875, 0.20651126], [163.13, 1976.7256683434189, 0.21876618], [163.14, 1976.188553633223, 0.20687549], [163.15, 1976.7470363277334, 0.21926536], [163.16, 1976.2105987545565, 0.20628797], [163.17, 1976.7686926540764, 0.21832629], [163.18, 1976.2216694619362, 0.20655183], [163.19, 1976.7499114417024, 0.21953332], [163.2, 1976.1999847588552, 0.20680265], [163.21, 1976.7797898788494, 0.21898788], [163.22, 1976.198017053521, 0.20669363], [163.23, 1976.7513241301115, 0.21801373], [163.24, 1976.2051621281862, 0.2067233], [163.25, 1976.780538836682, 0.21765918], [163.26, 1976.2348076102194, 0.20637983], [163.27, 1976.7665709956173, 0.21803641], [163.28, 1976.2392264322352, 0.20624033], [163.29, 1976.7323136195778, 0.21861176], [163.3, 1976.2001106019434, 0.2071819], [163.31, 1976.6961046771435, 0.21959546], [163.32, 1976.2129495031716, 0.20756786], [163.33, 1976.663630903023, 0.21969837], [163.34, 1976.232047512375, 0.20753272], [163.35, 1976.7040598648841, 0.21953923], [163.36, 1976.2442014363385, 0.20746437], [163.37, 1976.6884421000746, 0.2199803], [163.38, 1976.2311792007893, 0.20786074], [163.39, 1976.7535873535737, 0.2199346], [163.4, 1976.2246143967898, 0.20838906], [163.41, 1976.7881683204203, 0.21943635], [163.42, 1976.2578486334862, 0.20688519], [163.43, 1976.8296529133684, 0.2187917], [163.44, 1976.2241608464865, 0.20694135], [163.45, 1976.8021435531891, 0.21861897], [163.46, 1976.2477651872027, 0.20693913], [163.47, 1976.7535147724948, 0.2181647], [163.48, 1976.2447743218606, 0.2064883], [163.49, 1976.7523866119377, 0.21781468], [163.5, 1976.225716452442, 0.20688632], [163.51, 1976.7674844004673, 0.21763974], [163.52, 1976.223334738445, 0.20694323], [163.53, 1976.776607637089, 0.21845898], [163.54, 1976.2047760269545, 0.20716314], [163.55, 1976.7878145118598, 0.21765336], [163.56, 1976.2270823886283, 0.20764168], [163.57, 1976.844444900416, 0.21884693], [163.58, 1976.2359476404688, 0.2078286], [163.59, 1976.86558068777, 0.21842165], [163.6, 1976.2527707441586, 0.20724744], [163.61, 1976.8372317876779, 0.21808913], [163.62, 1976.2162986010387, 0.20637989], [163.63, 1976.7774271389578, 0.21807793], [163.64, 1976.164741657601, 0.20648198], [163.65, 1976.7861060119162, 0.21873987], [163.66, 1976.1725219984723, 0.20605849], [163.67, 1976.7390869154697, 0.21816862], [163.68, 1976.148941036222, 0.20572007], [163.69, 1976.7409657981714, 0.2181307], [163.7, 1976.1639103281752, 0.20621379], [163.71, 1976.725877504655, 0.21880828], [163.72, 1976.1982632981171, 0.20567985], [163.73, 1976.776873880959, 0.2181495], [163.74, 1976.2098397748357, 0.20520717], [163.75, 1976.7743492337358, 0.217935], [163.76, 1976.235891986828, 0.20433585], [163.77, 1976.7612830638195, 0.2168221], [163.78, 1976.1651900009317, 0.20370972], [163.79, 1976.7363579401012, 0.21711409], [163.8, 1976.1852146606884, 0.20463058], [163.81, 1976.8252818524938, 0.2182779], [163.82, 1976.187957644827, 0.20454285], [163.83, 1976.815760583323, 0.21817501], [163.84, 1976.1807937836916, 0.20594119], [163.85, 1976.7903468764844, 0.21973424], [163.86, 1976.1947222501194, 0.20617601], [163.87, 1976.8234122952053, 0.21938935], [163.88, 1976.1638691862572, 0.20637996], [163.89, 1976.8192344744032, 0.21904135], [163.9, 1976.1858582492484, 0.20673701], [163.91, 1976.8634402349053, 0.21946375], [163.92, 1976.2029406496365, 0.20677386], [163.93, 1976.876306711329, 0.21968724], [163.94, 1976.2262886979447, 0.20602264], [163.95, 1976.9019566310676, 0.21952033], [163.96, 1976.2239371707615, 0.20554617], [163.97, 1976.8261402533362, 0.21853283], [163.98, 1976.2524919879536, 0.20558785], [163.99, 1976.8028689555786, 0.2173027], [164.0, 1976.263011118473, 0.205015], [164.01, 1976.7770043185392, 0.2169927], [164.02, 1976.249154724976, 0.20453264], [164.03, 1976.8381271848593, 0.21733643], [164.04, 1976.2816357926263, 0.20481457], [164.05, 1976.850225553551, 0.21665332], [164.06, 1976.2565020524196, 0.20507431], [164.07, 1976.8560851585194, 0.21688683], [164.08, 1976.2410175369855, 0.2046617], [164.09, 1976.8661380667138, 0.2185555], [164.1, 1976.2079718563546, 0.20559293], [164.11, 1976.823357174988, 0.217587], [164.12, 1976.2087915754992, 0.20583116], [164.13, 1976.831184513312, 0.21816358], [164.14, 1976.219927774887, 0.20484169], [164.15, 1976.8293595450052, 0.21815163], [164.16, 1976.2088483607213, 0.20461163], [164.17, 1976.8421688055237, 0.21781859], [164.18, 1976.194155755619, 0.20597784], [164.19, 1976.8007092208827, 0.21887356], [164.2, 1976.2015631588451, 0.2060945], [164.21, 1976.8339214083185, 0.21942936], [164.22, 1976.236316588495, 0.20635688], [164.23, 1976.836932955164, 0.21940398], [164.24, 1976.2354471823428, 0.20594883], [164.25, 1976.8735347181755, 0.21867467], [164.26, 1976.2798662187627, 0.20621014], [164.27, 1976.8749092169232, 0.21884789], [164.28, 1976.270654395326, 0.20574392], [164.29, 1976.8864434354978, 0.21875481], [164.3, 1976.2482693829293, 0.20645368], [164.31, 1976.815356050329, 0.21954381], [164.32, 1976.2282053701394, 0.20653552], [164.33, 1976.8245651016139, 0.21977912], [164.34, 1976.2568482699212, 0.20578927], [164.35, 1976.8954370428119, 0.21930017], [164.36, 1976.2392212547818, 0.20514844], [164.37, 1976.8633554093574, 0.21906374], [164.38, 1976.2129259191895, 0.20587611], [164.39, 1976.8400429325013, 0.21834102], [164.4, 1976.251373079093, 0.20503354], [164.41, 1976.8718688779552, 0.21774548], [164.42, 1976.2547353689638, 0.20388162], [164.43, 1976.8955641768728, 0.21729422], [164.44, 1976.2886514214645, 0.20348191], [164.45, 1976.9204618657138, 0.21689609], [164.46, 1976.2426189241573, 0.20428292], [164.47, 1976.8795633601483, 0.21818079], [164.48, 1976.2616873066308, 0.20535405], [164.49, 1976.8985819322436, 0.21780895], [164.5, 1976.2753481827563, 0.20535475], [164.51, 1976.9139581214522, 0.21801011], [164.52, 1976.2668043671113, 0.20529908], [164.53, 1976.8984181245055, 0.21781349], [164.54, 1976.270458082306, 0.20596945], [164.55, 1976.8661829425446, 0.21766166], [164.56, 1976.2953444074478, 0.20633669], [164.57, 1976.853360935162, 0.21864682], [164.58, 1976.2603055215889, 0.20619813], [164.59, 1976.8990369927947, 0.21849099], [164.6, 1976.265217308727, 0.20728454], [164.61, 1976.9006413020318, 0.21978004], [164.62, 1976.2534845646655, 0.20734592], [164.63, 1976.89856427264, 0.21995682], [164.64, 1976.2678720852707, 0.207203], [164.65, 1976.8710317545942, 0.21983299], [164.66, 1976.230342670956, 0.20669279], [164.67, 1976.8694314238774, 0.22005771], [164.68, 1976.2171908679873, 0.20732231], [164.69, 1976.888921478278, 0.21925896], [164.7, 1976.1927679939668, 0.20675585], [164.71, 1976.8548756619145, 0.21976869], [164.72, 1976.197191314061, 0.20700875], [164.73, 1976.8725216071011, 0.21929602], [164.74, 1976.2016542751664, 0.20741786], [164.75, 1976.8883399508927, 0.21948129], [164.76, 1976.2003326804438, 0.20707473], [164.77, 1976.8269374451243, 0.21825418], [164.78, 1976.2082182623203, 0.20674881], [164.79, 1976.8368529039194, 0.21800886], [164.8, 1976.2383728356945, 0.20687439], [164.81, 1976.8276731235192, 0.21848203], [164.82, 1976.213143446969, 0.20676795], [164.83, 1976.8018958364319, 0.21827528], [164.84, 1976.1481459576337, 0.20681547], [164.85, 1976.7965304941279, 0.21823452], [164.86, 1976.1750064724383, 0.20646775], [164.87, 1976.734396544492, 0.21781057], [164.88, 1976.2050593615759, 0.20663698], [164.89, 1976.810812348962, 0.2183862], [164.9, 1976.2249796859621, 0.2064392], [164.91, 1976.8068580578665, 0.21728629], [164.92, 1976.2547763422422, 0.20634374], [164.93, 1976.79408117742, 0.21708828], [164.94, 1976.2276478129565, 0.2060276], [164.95, 1976.7918144409064, 0.2170982], [164.96, 1976.2065370106397, 0.20591962], [164.97, 1976.8081887539631, 0.2165803], [164.98, 1976.230380432597, 0.20497829], [164.99, 1976.8014204338263, 0.21618262], [165.0, 1976.1834459955628, 0.20468423], [165.01, 1976.7303363842464, 0.21604306], [165.02, 1976.174047511633, 0.20431618], [165.03, 1976.7755233347389, 0.21604332], [165.04, 1976.1999945123782, 0.20519531], [165.05, 1976.7668241641077, 0.21684392], [165.06, 1976.246781190639, 0.2047183], [165.07, 1976.816716812139, 0.21667364], [165.08, 1976.2643247281208, 0.2051966], [165.09, 1976.8439759982184, 0.21724351], [165.1, 1976.2622682373817, 0.20626225], [165.11, 1976.8246589177684, 0.2160003], [165.12, 1976.259020887833, 0.20583035], [165.13, 1976.8053628877194, 0.21659581], [165.14, 1976.2533180154549, 0.20553027], [165.15, 1976.794994487532, 0.2162763], [165.16, 1976.2400531107223, 0.20599438], [165.17, 1976.7677538034466, 0.21603782], [165.18, 1976.219928812166, 0.20565699], [165.19, 1976.7572001645935, 0.21575059], [165.2, 1976.1900821193062, 0.20587891], [165.21, 1976.7549634985817, 0.21680143], [165.22, 1976.1833795578846, 0.20586698], [165.23, 1976.8042229497291, 0.21722479], [165.24, 1976.2273345113797, 0.20686792], [165.25, 1976.796254165714, 0.21643035], [165.26, 1976.2146922801185, 0.20619369], [165.27, 1976.818218240839, 0.21699102], [165.28, 1976.183865365989, 0.20642932], [165.29, 1976.8067448232823, 0.21759208], [165.3, 1976.1442244753266, 0.2076675], [165.31, 1976.811362004188, 0.21773629], [165.32, 1976.1593183966872, 0.20804994], [165.33, 1976.7990250826267, 0.21896279], [165.34, 1976.1570659904683, 0.20851593], [165.35, 1976.8095754700332, 0.21932364], [165.36, 1976.1792814672106, 0.20943344], [165.37, 1976.798758902787, 0.21953925], [165.38, 1976.1782387049502, 0.20839885], [165.39, 1976.8080739917768, 0.21875714], [165.4, 1976.220700109607, 0.20743176], [165.41, 1976.869982420831, 0.21829365], [165.42, 1976.2720510258348, 0.20706646], [165.43, 1976.8713077807165, 0.2170297], [165.44, 1976.2948898423972, 0.20636855], [165.45, 1976.862036572541, 0.21671665], [165.46, 1976.2870985017225, 0.20623311], [165.47, 1976.9017262080727, 0.2167718], [165.48, 1976.2774914374672, 0.20561768], [165.49, 1976.9179306555707, 0.21675643], [165.5, 1976.2565983232798, 0.20480138], [165.51, 1976.9328502155613, 0.2169517], [165.52, 1976.220366491891, 0.20421302], [165.53, 1976.9867190792638, 0.21580447], [165.54, 1976.2379474877173, 0.20423147], [165.55, 1976.9590831819069, 0.21634112], [165.56, 1976.2306443574741, 0.20498678], [165.57, 1976.8813594362848, 0.2155353], [165.58, 1976.2150646711711, 0.20463538], [165.59, 1976.8727247298964, 0.2162889], [165.6, 1976.2109232485618, 0.20385608], [165.61, 1976.9103980994284, 0.21586551], [165.62, 1976.2062871804205, 0.20526741], [165.63, 1976.8839250680985, 0.21621452], [165.64, 1976.1519317715477, 0.20683667], [165.65, 1976.8704966631021, 0.21822086], [165.66, 1976.1653315095596, 0.20774618], [165.67, 1976.8811738917416, 0.21917176], [165.68, 1976.197322702037, 0.20782128], [165.69, 1976.8792368258119, 0.2198538], [165.7, 1976.1821534214082, 0.20777173], [165.71, 1976.9130513999678, 0.2181241], [165.72, 1976.1888749913473, 0.20753708], [165.73, 1976.847280329931, 0.21848144], [165.74, 1976.1899478379028, 0.20709115], [165.75, 1976.8249731989429, 0.21800387], [165.76, 1976.2480053115237, 0.20753874], [165.77, 1976.875358801011, 0.21788314], [165.78, 1976.2637656189725, 0.20687172], [165.79, 1976.9156197286247, 0.2178672], [165.8, 1976.3029523456885, 0.20644961], [165.81, 1976.9177528181183, 0.21774149], [165.82, 1976.2563148065833, 0.20546183], [165.83, 1976.868282306542, 0.21741118], [165.84, 1976.2098648954657, 0.2053293], [165.85, 1976.7890963062632, 0.21761201], [165.86, 1976.2259960574543, 0.20512272], [165.87, 1976.8059618377438, 0.21669759], [165.88, 1976.2240012232583, 0.20454636], [165.89, 1976.8055205288838, 0.2167243], [165.9, 1976.2102981007065, 0.20423919], [165.91, 1976.819598706336, 0.21679899], [165.92, 1976.2241521704982, 0.20422931], [165.93, 1976.8422460229713, 0.21743137], [165.94, 1976.2084476199846, 0.20391397], [165.95, 1976.8349678147345, 0.21760373], [165.96, 1976.1987214359103, 0.20472255], [165.97, 1976.8513122111385, 0.21836406], [165.98, 1976.1858346222868, 0.20580527], [165.99, 1976.891323990375, 0.21900022], [166.0, 1976.1848396592384, 0.20649634], [166.01, 1976.9116886940767, 0.2187134], [166.02, 1976.2003332025524, 0.206369], [166.03, 1976.9178467912839, 0.2188826], [166.04, 1976.1926900980118, 0.2068343], [166.05, 1976.8648568678664, 0.2185618], [166.06, 1976.1869283175242, 0.20734623], [166.07, 1976.8786447578148, 0.21839465], [166.08, 1976.1886619235192, 0.20692001], [166.09, 1976.886384626096, 0.21809678], [166.1, 1976.2146253034125, 0.20654938], [166.11, 1976.8674670627192, 0.21796715], [166.12, 1976.2306277003277, 0.2065179], [166.13, 1976.8881553179908, 0.21736734], [166.14, 1976.2778125282045, 0.20590898], [166.15, 1976.8813273527169, 0.21693198], [166.16, 1976.2756520284358, 0.20602337], [166.17, 1976.8436554181103, 0.21820104], [166.18, 1976.2584088711844, 0.20719819], [166.19, 1976.846737339003, 0.21806957], [166.2, 1976.2616616900243, 0.20809178], [166.21, 1976.8216143983936, 0.21943684], [166.22, 1976.2323289277228, 0.20802325], [166.23, 1976.8245502137852, 0.21886344], [166.24, 1976.2833838532006, 0.20722134], [166.25, 1976.8168595863424, 0.21807516], [166.26, 1976.260461430049, 0.20622474], [166.27, 1976.8422182111804, 0.21738516], [166.28, 1976.2426360949837, 0.20571856], [166.29, 1976.77552443692, 0.2172859], [166.3, 1976.217157304543, 0.20626085], [166.31, 1976.7549717730963, 0.21832936], [166.32, 1976.223310097939, 0.20719704], [166.33, 1976.7835550154464, 0.2184842], [166.34, 1976.219221682798, 0.20750146], [166.35, 1976.7821979132007, 0.21961474], [166.36, 1976.1723796244726, 0.20709807], [166.37, 1976.81445589233, 0.2194513], [166.38, 1976.1874688402065, 0.20713656], [166.39, 1976.7961442604658, 0.21950024], [166.4, 1976.187958962022, 0.20764759], [166.41, 1976.8063160427546, 0.2196212], [166.42, 1976.1787360174217, 0.2073987], [166.43, 1976.8441660637973, 0.21924317], [166.44, 1976.188208212709, 0.20755728], [166.45, 1976.8446592161638, 0.21938209], [166.46, 1976.1689620130542, 0.20658113], [166.47, 1976.8406048807967, 0.21882007], [166.48, 1976.1752525726818, 0.20738986], [166.49, 1976.8443266927834, 0.21895547], [166.5, 1976.2191333186581, 0.20793845], [166.51, 1976.8073373528089, 0.21968283], [166.52, 1976.2265156541862, 0.20791115], [166.53, 1976.8480292082975, 0.21853812], [166.54, 1976.1936987318356, 0.20831835], [166.55, 1976.8507099423882, 0.2194351], [166.56, 1976.2309543198608, 0.20861973], [166.57, 1976.8418319118712, 0.2199106], [166.58, 1976.215224613847, 0.20858607], [166.59, 1976.9153907800305, 0.22052832], [166.6, 1976.2345865605628, 0.2088647], [166.61, 1976.8824676421355, 0.22012351], [166.62, 1976.2185670491604, 0.20955528], [166.63, 1976.91939450846, 0.22125268], [166.64, 1976.211611000696, 0.20980512], [166.65, 1976.918495338333, 0.22073777], [166.66, 1976.2513652092084, 0.20987682], [166.67, 1976.912799337499, 0.21948327], [166.68, 1976.2350706053876, 0.20986491], [166.69, 1976.8132709731549, 0.22054596], [166.7, 1976.2394071520134, 0.21069711], [166.71, 1976.827640201337, 0.22117366], [166.72, 1976.270069535684, 0.21000963], [166.73, 1976.8249192394298, 0.21977729], [166.74, 1976.235129159366, 0.2097455], [166.75, 1976.8116115529501, 0.22022726], [166.76, 1976.249273230709, 0.20946597], [166.77, 1976.837368857301, 0.2205092], [166.78, 1976.2538112176057, 0.20879695], [166.79, 1976.8559517240158, 0.22034694], [166.8, 1976.2540541725284, 0.20800473], [166.81, 1976.8663537268073, 0.2199648], [166.82, 1976.2521642044517, 0.20765565], [166.83, 1976.8591703998973, 0.21930067], [166.84, 1976.249302848028, 0.20775208], [166.85, 1976.874894565297, 0.21887472], [166.86, 1976.2745881102594, 0.20746998], [166.87, 1976.8696386366148, 0.21918602], [166.88, 1976.2500418434345, 0.20779827], [166.89, 1976.8764267590886, 0.21891853], [166.9, 1976.3338960277838, 0.20752683], [166.91, 1976.8741515367526, 0.21763332], [166.92, 1976.2846582171182, 0.20608948], [166.93, 1976.8212709537438, 0.21780498], [166.94, 1976.2895105699786, 0.20620643], [166.95, 1976.7885350016593, 0.21737956], [166.96, 1976.2894691852875, 0.20633762], [166.97, 1976.8379257460813, 0.21764705], [166.98, 1976.2982745596892, 0.20706938], [166.99, 1976.8220703354725, 0.21853468], [167.0, 1976.2745472887943, 0.20820637], [167.01, 1976.8120185304901, 0.21869168], [167.02, 1976.2559370224224, 0.20843965], [167.03, 1976.8387156365136, 0.2182117], [167.04, 1976.2615199654554, 0.2083252], [167.05, 1976.7856688546542, 0.2186653], [167.06, 1976.218865476873, 0.2081529], [167.07, 1976.7787956845243, 0.21794489], [167.08, 1976.2282586805986, 0.2078953], [167.09, 1976.7985405015545, 0.21809907], [167.1, 1976.2417572651793, 0.2071514], [167.11, 1976.770952889488, 0.21880326], [167.12, 1976.2326912688118, 0.20755675], [167.13, 1976.8286061696938, 0.21945156], [167.14, 1976.2900382645, 0.20773341], [167.15, 1976.7743222928632, 0.2190444], [167.16, 1976.3237109485867, 0.20751533], [167.17, 1976.7986248344255, 0.21879292], [167.18, 1976.3363760761436, 0.2073165], [167.19, 1976.7788601010764, 0.21853672], [167.2, 1976.3112888889327, 0.20758073], [167.21, 1976.7475620632015, 0.21897782], [167.22, 1976.2806232797125, 0.20722805], [167.23, 1976.8061211365857, 0.21856761], [167.24, 1976.264792055871, 0.20707665], [167.25, 1976.7802396750303, 0.21934776], [167.26, 1976.243803095343, 0.20700428], [167.27, 1976.7746348669448, 0.21968445], [167.28, 1976.2528499394919, 0.20813325], [167.29, 1976.7521713934393, 0.21980026], [167.3, 1976.2685915911657, 0.20744976], [167.31, 1976.8037896439669, 0.21875374], [167.32, 1976.2400047991855, 0.20663945], [167.33, 1976.7688670320367, 0.21786447], [167.34, 1976.2400466752065, 0.20638439], [167.35, 1976.7516643601753, 0.21744232], [167.36, 1976.2068806702493, 0.20630449], [167.37, 1976.7721152113832, 0.21817128], [167.38, 1976.218584764738, 0.20682432], [167.39, 1976.7690576962991, 0.21858716], [167.4, 1976.185829671814, 0.20704453], [167.41, 1976.8003112626482, 0.21862942], [167.42, 1976.1960368665484, 0.20809467], [167.43, 1976.7990717412542, 0.2191101], [167.44, 1976.2021662981292, 0.2074857], [167.45, 1976.8358713442788, 0.21893485], [167.46, 1976.2300355890698, 0.2072706], [167.47, 1976.8645700617085, 0.21895613], [167.48, 1976.2425790114144, 0.2081409], [167.49, 1976.81895402564, 0.218913], [167.5, 1976.2517950968456, 0.20810953], [167.51, 1976.8530520382749, 0.21897304], [167.52, 1976.2960949391208, 0.20754345], [167.53, 1976.845815280253, 0.21926884], [167.54, 1976.2657502380682, 0.2073163], [167.55, 1976.8425778452959, 0.21914382], [167.56, 1976.2741036816683, 0.20793922], [167.57, 1976.8330383470677, 0.21867809], [167.58, 1976.2646466955143, 0.20729917], [167.59, 1976.8564362986335, 0.21871111], [167.6, 1976.2749885931114, 0.20710106], [167.61, 1976.8892634680988, 0.21845701], [167.62, 1976.2578180091894, 0.20626181], [167.63, 1976.8804037527254, 0.2184723], [167.64, 1976.250157596455, 0.2062228], [167.65, 1976.8584685837075, 0.21853858], [167.66, 1976.2380294972786, 0.20674305], [167.67, 1976.8288474301107, 0.21915524], [167.68, 1976.2109320173454, 0.20714423], [167.69, 1976.8243655106298, 0.21853854], [167.7, 1976.2095626463051, 0.20641817], [167.71, 1976.80587038661, 0.21893683], [167.72, 1976.187627915575, 0.20744479], [167.73, 1976.819947286929, 0.21949075], [167.74, 1976.2099445255492, 0.20759043], [167.75, 1976.8303685059614, 0.2185558], [167.76, 1976.2037160877112, 0.20787545], [167.77, 1976.8303579891733, 0.21932194], [167.78, 1976.1972896482619, 0.20792626], [167.79, 1976.821267395029, 0.21930934], [167.8, 1976.1872630507291, 0.207337], [167.81, 1976.8373520698997, 0.21970606], [167.82, 1976.191323612934, 0.20690471], [167.83, 1976.8465851099847, 0.2180095], [167.84, 1976.2187676451326, 0.20585722], [167.85, 1976.8451593410057, 0.21833476], [167.86, 1976.2261024843747, 0.20597461], [167.87, 1976.8396543382948, 0.218856], [167.88, 1976.220087230476, 0.20564249], [167.89, 1976.8325582352727, 0.21830189], [167.9, 1976.2035213560812, 0.20550404], [167.91, 1976.8212095580736, 0.21822064], [167.92, 1976.1666568353633, 0.2054462], [167.93, 1976.7928955754908, 0.21865402], [167.94, 1976.1903386782262, 0.20585705], [167.95, 1976.8086085973255, 0.21939328], [167.96, 1976.1805668953784, 0.20721501], [167.97, 1976.74923640252, 0.21998286], [167.98, 1976.1681701046743, 0.20701402], [167.99, 1976.7744537982476, 0.21931395], [168.0, 1976.2137949334256, 0.20634444], [168.01, 1976.7919163251838, 0.22040835], [168.02, 1976.254670478741, 0.20612352], [168.03, 1976.8020343005965, 0.22003767], [168.04, 1976.2667752117127, 0.20675397], [168.05, 1976.7881337899203, 0.2201279], [168.06, 1976.260054351577, 0.207348], [168.07, 1976.8071950726621, 0.22030787], [168.08, 1976.2506000202677, 0.20734955], [168.09, 1976.7978803155004, 0.22075842], [168.1, 1976.2268313901027, 0.20723335], [168.11, 1976.8012105351213, 0.22091947], [168.12, 1976.2342553627866, 0.20748387], [168.13, 1976.721410341033, 0.22130425], [168.14, 1976.2336318560099, 0.20838353], [168.15, 1976.7265897235122, 0.2211391], [168.16, 1976.2257739406775, 0.20900165], [168.17, 1976.7763352210768, 0.22147143], [168.18, 1976.2396457653883, 0.2090294], [168.19, 1976.7538948476406, 0.2206764], [168.2, 1976.2122568652305, 0.20843655], [168.21, 1976.7670528681788, 0.22003923], [168.22, 1976.228545493912, 0.20790637], [168.23, 1976.7541352927094, 0.22064362], [168.24, 1976.2359930802113, 0.20780523], [168.25, 1976.7826472443128, 0.2195888], [168.26, 1976.2950387433104, 0.20734222], [168.27, 1976.8129915365935, 0.2187995], [168.28, 1976.3059922049513, 0.20672384], [168.29, 1976.780439107846, 0.21898459], [168.3, 1976.274913640967, 0.20707516], [168.31, 1976.8253193487524, 0.21860628], [168.32, 1976.310113854017, 0.20668478], [168.33, 1976.8283834226006, 0.21929675], [168.34, 1976.2977811553687, 0.20716712], [168.35, 1976.8793425295466, 0.21876596], [168.36, 1976.302013465971, 0.2078373], [168.37, 1976.8541800859978, 0.21837682], [168.38, 1976.2542058374336, 0.20684648], [168.39, 1976.8415792123042, 0.21861087], [168.4, 1976.3033484526864, 0.20646498], [168.41, 1976.845164812486, 0.2185777], [168.42, 1976.2956585599725, 0.20569329], [168.43, 1976.857067706279, 0.21770369], [168.44, 1976.260535670106, 0.20615448], [168.45, 1976.8522042329691, 0.21827477], [168.46, 1976.2642895799615, 0.20705345], [168.47, 1976.860985963747, 0.21851699], [168.48, 1976.248393343271, 0.2068162], [168.49, 1976.8926325664625, 0.21885106], [168.5, 1976.3050646404422, 0.20617656], [168.51, 1976.9291180735668, 0.21767895], [168.52, 1976.3290395274907, 0.20544437], [168.53, 1976.9024030823537, 0.21702498], [168.54, 1976.3492729357026, 0.20523162], [168.55, 1976.8987505369291, 0.21618198], [168.56, 1976.3344252692605, 0.20530592], [168.57, 1976.9113864501073, 0.21709591], [168.58, 1976.2924491345307, 0.2059499], [168.59, 1976.9286707818646, 0.21714374], [168.6, 1976.2705123669243, 0.20664634], [168.61, 1976.9223478449694, 0.21869262], [168.62, 1976.2753631030168, 0.20694785], [168.63, 1976.9364321355815, 0.21891226], [168.64, 1976.2889344177202, 0.20671591], [168.65, 1976.9327885183507, 0.21728526], [168.66, 1976.2769789051117, 0.2058629], [168.67, 1976.9057375070493, 0.2179595], [168.68, 1976.268744428979, 0.20651746], [168.69, 1976.9270914164508, 0.21748371], [168.7, 1976.28887701136, 0.2066003], [168.71, 1976.8904469711308, 0.21736607], [168.72, 1976.276001721552, 0.20669515], [168.73, 1976.9336978067608, 0.21672542], [168.74, 1976.3111880483393, 0.20650142], [168.75, 1976.9231151458262, 0.21726568], [168.76, 1976.2943511442736, 0.20693508], [168.77, 1976.9259887734156, 0.21776126], [168.78, 1976.2901395545887, 0.20708592], [168.79, 1976.9641248552903, 0.21710758], [168.8, 1976.3087993862562, 0.20563395], [168.81, 1976.9399821226827, 0.21786197], [168.82, 1976.2446040307689, 0.20573817], [168.83, 1976.9291165239085, 0.2173336], [168.84, 1976.2675106744903, 0.2055463], [168.85, 1976.9351993461478, 0.2169256], [168.86, 1976.2869165819643, 0.20512308], [168.87, 1976.9267940672555, 0.21691883], [168.88, 1976.295465553389, 0.2050412], [168.89, 1976.9520525967832, 0.21627247], [168.9, 1976.3409011184813, 0.20546144], [168.91, 1976.9780620984366, 0.21580118], [168.92, 1976.3341374224829, 0.20505519], [168.93, 1976.928938972606, 0.21506955], [168.94, 1976.308177743601, 0.20416132], [168.95, 1976.9521512618244, 0.21554507], [168.96, 1976.2891391814064, 0.20450038], [168.97, 1976.9691152894443, 0.2156659], [168.98, 1976.2567064996565, 0.2052427], [168.99, 1976.9485853658416, 0.21605028], [169.0, 1976.239264070517, 0.20695752], [169.01, 1976.9236835644965, 0.21672297], [169.02, 1976.2541551342144, 0.2067753], [169.03, 1976.9685539354907, 0.2164637], [169.04, 1976.2874093461896, 0.2063126], [169.05, 1976.945193875248, 0.21724531], [169.06, 1976.2809094941874, 0.20667507], [169.07, 1976.9653598325458, 0.21701479], [169.08, 1976.2603602005138, 0.20612442], [169.09, 1976.964794166308, 0.21675214], [169.1, 1976.2805857154694, 0.20551018], [169.11, 1976.9689238059948, 0.21637778], [169.12, 1976.266880249577, 0.20598817], [169.13, 1976.9466009410746, 0.21641748], [169.14, 1976.2550394720533, 0.20635478], [169.15, 1976.9312609894841, 0.2166848], [169.16, 1976.2730951737237, 0.20698616], [169.17, 1976.916299585626, 0.21657664], [169.18, 1976.2754437161661, 0.20652132], [169.19, 1976.909954430616, 0.21635659], [169.2, 1976.3101703765865, 0.20638709], [169.21, 1976.9698241373192, 0.21579285], [169.22, 1976.3599773575413, 0.20607403], [169.23, 1976.9560687921169, 0.21510847], [169.24, 1976.3231093080433, 0.20577462], [169.25, 1976.9386676106924, 0.21581951], [169.26, 1976.3256907427942, 0.20629542], [169.27, 1976.9121700242647, 0.21638793], [169.28, 1976.334916303335, 0.20637843], [169.29, 1976.9315222960834, 0.21644531], [169.3, 1976.3540877908329, 0.2057202], [169.31, 1976.9372433365857, 0.21516792], [169.32, 1976.34574331382, 0.20485224], [169.33, 1976.971154705145, 0.2158097], [169.34, 1976.341633031617, 0.20561504], [169.35, 1976.9605515372543, 0.21635099], [169.36, 1976.3488615723927, 0.20548257], [169.37, 1976.974896643503, 0.21582401], [169.38, 1976.3492534212646, 0.20572866], [169.39, 1976.9127824570105, 0.21631809], [169.4, 1976.3501005833134, 0.20636451], [169.41, 1976.9072707576208, 0.21696332], [169.42, 1976.3186544175744, 0.20640777], [169.43, 1976.9101236670438, 0.21743098], [169.44, 1976.3030923942433, 0.20711587], [169.45, 1976.9359366022343, 0.21656625], [169.46, 1976.3250074825169, 0.20647813], [169.47, 1976.939458677044, 0.21726501], [169.48, 1976.287917717027, 0.20636807], [169.49, 1976.929419885989, 0.21689989], [169.5, 1976.2748070973935, 0.20686641], [169.51, 1976.9297459661423, 0.21714304], [169.52, 1976.2719268571234, 0.20815243], [169.53, 1976.9131611968953, 0.21823205], [169.54, 1976.271012444987, 0.20843858], [169.55, 1976.9053704279563, 0.21853901], [169.56, 1976.2434459503302, 0.2084605], [169.57, 1976.8922977602463, 0.21899578], [169.58, 1976.2320303319634, 0.20821953], [169.59, 1976.8692620516856, 0.21801268], [169.6, 1976.2042669076257, 0.20737387], [169.61, 1976.9091702119863, 0.21705616], [169.62, 1976.2386614152933, 0.20691973], [169.63, 1976.8698225104918, 0.21652013], [169.64, 1976.2249240157964, 0.20651221], [169.65, 1976.8618106487472, 0.21726072], [169.66, 1976.2365515676504, 0.20669475], [169.67, 1976.8318919372814, 0.21695173], [169.68, 1976.2404367422312, 0.20676051], [169.69, 1976.8599802101999, 0.21780184], [169.7, 1976.2071151852845, 0.20591033], [169.71, 1976.8594348068666, 0.21758825], [169.72, 1976.2161814295077, 0.20677467], [169.73, 1976.8766556197008, 0.21825334], [169.74, 1976.189544297648, 0.20702507], [169.75, 1976.8543673653178, 0.2181638], [169.76, 1976.201085669486, 0.2060447], [169.77, 1976.8658207290966, 0.21711588], [169.78, 1976.2142919312826, 0.20574704], [169.79, 1976.8118840404452, 0.21795054], [169.8, 1976.1478127279884, 0.20556462], [169.81, 1976.8313151644616, 0.21842787], [169.82, 1976.1503521321458, 0.20609207], [169.83, 1976.8149925203286, 0.21812248], [169.84, 1976.1825979194127, 0.20521215], [169.85, 1976.8643786380846, 0.21810485], [169.86, 1976.1873478932935, 0.20468174], [169.87, 1976.858315634212, 0.21729283], [169.88, 1976.1698159698747, 0.20531008], [169.89, 1976.854835361235, 0.21756898], [169.9, 1976.2511799211447, 0.20511916], [169.91, 1976.879638046817, 0.21695082], [169.92, 1976.2283095980317, 0.20439963], [169.93, 1976.8222308078566, 0.21685258], [169.94, 1976.2334030969869, 0.20496866], [169.95, 1976.8379124188052, 0.21608275], [169.96, 1976.263234047403, 0.20495106], [169.97, 1976.877925172391, 0.21602419], [169.98, 1976.251874695106, 0.20475042], [169.99, 1976.8374724550326, 0.2161981], [170.0, 1976.2667928578505, 0.2048444], [170.01, 1976.848023085737, 0.21611613], [170.02, 1976.254272612035, 0.20442396], [170.03, 1976.8595486111437, 0.21604298], [170.04, 1976.2420913655674, 0.204202], [170.05, 1976.8755860996728, 0.21571001], [170.06, 1976.2541680985012, 0.20502013], [170.07, 1976.884813672356, 0.21706055], [170.08, 1976.2301441882823, 0.20571741], [170.09, 1976.8310480980613, 0.21694751], [170.1, 1976.24746953983, 0.20631096], [170.11, 1976.8617903886857, 0.21693136], [170.12, 1976.28577095874, 0.2062097], [170.13, 1976.8792584943053, 0.2165472], [170.14, 1976.278349113697, 0.20636657], [170.15, 1976.8387610383802, 0.21769644], [170.16, 1976.2443231610778, 0.20583017], [170.17, 1976.829571117423, 0.21668898], [170.18, 1976.237799531384, 0.20564924], [170.19, 1976.8251800613798, 0.21793313], [170.2, 1976.2136521595392, 0.2059944], [170.21, 1976.8143291960978, 0.21749863], [170.22, 1976.200533567307, 0.2063522], [170.23, 1976.8236082254389, 0.21787103], [170.24, 1976.2296804882312, 0.20626126], [170.25, 1976.853554482636, 0.21765263], [170.26, 1976.2138821008446, 0.20642634], [170.27, 1976.8549059472818, 0.21784452], [170.28, 1976.2125540117413, 0.20665719], [170.29, 1976.8740305638112, 0.21806787], [170.3, 1976.2743182790364, 0.2060149], [170.31, 1976.8665544678083, 0.2175642], [170.32, 1976.2059987510843, 0.20580436], [170.33, 1976.8566547413375, 0.21703616], [170.34, 1976.1702078386625, 0.2065011], [170.35, 1976.881368140372, 0.21742658], [170.36, 1976.1582828908263, 0.20537032], [170.37, 1976.8706015984276, 0.21689458], [170.38, 1976.181598342099, 0.20436078], [170.39, 1976.8601974271633, 0.2160589], [170.4, 1976.149615090443, 0.20492968], [170.41, 1976.8277282637782, 0.21748795], [170.42, 1976.1225335223755, 0.20611331], [170.43, 1976.8880263891426, 0.21794204], [170.44, 1976.1984406949246, 0.20739946], [170.45, 1976.8888437071403, 0.21853372], [170.46, 1976.1797248790303, 0.20804892], [170.47, 1976.8785568482622, 0.21843089], [170.48, 1976.195894426163, 0.20746037], [170.49, 1976.879400481438, 0.2179581], [170.5, 1976.2078145292571, 0.20628601], [170.51, 1976.9313647581466, 0.21680743], [170.52, 1976.2362141665844, 0.20601906], [170.53, 1976.8959995819457, 0.21574256], [170.54, 1976.2363511760839, 0.20583802], [170.55, 1976.9412247490327, 0.21615613], [170.56, 1976.2593631687496, 0.20513101], [170.57, 1976.9471363116534, 0.21541396], [170.58, 1976.2565527213515, 0.20576571], [170.59, 1976.9313187329337, 0.21592735], [170.6, 1976.2148984031755, 0.20718919], [170.61, 1976.9226964206075, 0.21690716], [170.62, 1976.2037007692625, 0.2069387], [170.63, 1976.8919679350633, 0.21666509], [170.64, 1976.203151138499, 0.20678572], [170.65, 1976.8843281653028, 0.21673177], [170.66, 1976.2398674502856, 0.20653917], [170.67, 1976.8893462789392, 0.2171792], [170.68, 1976.2400841900956, 0.20706604], [170.69, 1976.9118958072943, 0.21789174], [170.7, 1976.2465173340365, 0.20810501], [170.71, 1976.905974263261, 0.21842967], [170.72, 1976.246892323238, 0.20899782], [170.73, 1976.87532049859, 0.21882181], [170.74, 1976.2634021700944, 0.20951925], [170.75, 1976.9189956222974, 0.21871664], [170.76, 1976.2914161901788, 0.20850438], [170.77, 1976.917051579147, 0.21822535], [170.78, 1976.2670005742664, 0.20790008], [170.79, 1976.9083482779233, 0.21866947], [170.8, 1976.2285666578337, 0.20820504], [170.81, 1976.9293559658213, 0.21792077], [170.82, 1976.2587435843252, 0.20761476], [170.83, 1976.8629312622893, 0.21770035], [170.84, 1976.2108027483816, 0.20753953], [170.85, 1976.8607794139305, 0.21848568], [170.86, 1976.2202959890838, 0.20737438], [170.87, 1976.9040835763906, 0.21769461], [170.88, 1976.234838103402, 0.20683782], [170.89, 1976.8787893972876, 0.21747161], [170.9, 1976.2481895255985, 0.2065853], [170.91, 1976.884161251191, 0.21689726], [170.92, 1976.2216997904827, 0.20671989], [170.93, 1976.877575332655, 0.21764566], [170.94, 1976.2083426015386, 0.20786497], [170.95, 1976.930289495876, 0.21721293], [170.96, 1976.246496104216, 0.20794486], [170.97, 1976.9517572394066, 0.2172369], [170.98, 1976.2319806106211, 0.2077711], [170.99, 1976.903952607083, 0.21798152], [171.0, 1976.2576632654118, 0.20799625], [171.01, 1976.9167472526447, 0.21792254], [171.02, 1976.209275224211, 0.20782678], [171.03, 1976.8679739094853, 0.21848981], [171.04, 1976.2024559159047, 0.208562], [171.05, 1976.8524660617188, 0.21915539], [171.06, 1976.159328085457, 0.20885244], [171.07, 1976.842158966323, 0.22006455], [171.08, 1976.159729059699, 0.20855984], [171.09, 1976.907011414644, 0.21922731], [171.1, 1976.1673509107388, 0.20861614], [171.11, 1976.9232929283294, 0.21884082], [171.12, 1976.189221525919, 0.20710817], [171.13, 1976.967589342927, 0.21805616], [171.14, 1976.1773024162405, 0.20663896], [171.15, 1976.9532653909764, 0.21712881], [171.16, 1976.1569189314764, 0.2075881], [171.17, 1976.9434454361722, 0.21876101], [171.18, 1976.2133650697103, 0.2080496], [171.19, 1976.9407112227987, 0.21771169], [171.2, 1976.2222072393179, 0.20745942], [171.21, 1976.915751620884, 0.21814029], [171.22, 1976.2045944866738, 0.20751718], [171.23, 1976.9068656741172, 0.21791558], [171.24, 1976.2305972112272, 0.20799387], [171.25, 1976.942714522826, 0.21779606], [171.26, 1976.2410079503704, 0.20772313], [171.27, 1976.9320296059707, 0.21838267], [171.28, 1976.2149756347435, 0.2079542], [171.29, 1976.8880299294042, 0.21908394], [171.3, 1976.1860529644118, 0.20915797], [171.31, 1976.8824341048385, 0.21896823], [171.32, 1976.2058899655767, 0.20910452], [171.33, 1976.863448743773, 0.21958013], [171.34, 1976.2141103254319, 0.20828085], [171.35, 1976.8751665523127, 0.21954921], [171.36, 1976.205901289426, 0.20704843], [171.37, 1976.9266984567944, 0.21853861], [171.38, 1976.224449730349, 0.20610128], [171.39, 1976.9478144903107, 0.21849257], [171.4, 1976.1669057524618, 0.20615658], [171.41, 1976.8755946785363, 0.21858905], [171.42, 1976.159206352641, 0.20671071], [171.43, 1976.861573618416, 0.21857452], [171.44, 1976.1177217434733, 0.2074712], [171.45, 1976.866026304184, 0.21904014], [171.46, 1976.1176713241082, 0.20745939], [171.47, 1976.8857426150546, 0.21917433], [171.48, 1976.0830329449002, 0.20767598], [171.49, 1976.8952518617175, 0.21903269], [171.5, 1976.0866207314655, 0.20695575], [171.51, 1976.9105270880295, 0.21899213], [171.52, 1976.0725376704086, 0.2070049], [171.53, 1976.900890235422, 0.22002584], [171.54, 1976.0219959912706, 0.20798309], [171.55, 1976.915197045805, 0.22017671], [171.56, 1976.0806631835321, 0.20832284], [171.57, 1976.9479790550467, 0.22042012], [171.58, 1976.0588777208236, 0.20778787], [171.59, 1976.9633370278393, 0.22007646], [171.6, 1976.0674874098822, 0.20831497], [171.61, 1976.965866000664, 0.2197775], [171.62, 1976.0698332068896, 0.20810679], [171.63, 1976.9218379323916, 0.21923406], [171.64, 1976.0700012958628, 0.20747428], [171.65, 1976.928629790311, 0.2196872], [171.66, 1976.0865565630725, 0.20787153], [171.67, 1976.9652226692033, 0.2199116], [171.68, 1976.1044372024298, 0.2079789], [171.69, 1976.9501801282374, 0.21961048], [171.7, 1976.1121741901188, 0.20819147], [171.71, 1976.940571057357, 0.21885195], [171.72, 1976.1134123623503, 0.20737343], [171.73, 1976.9444841021386, 0.21847828], [171.74, 1976.1025708789962, 0.207493], [171.75, 1976.9434338419862, 0.219093], [171.76, 1976.0864574461382, 0.20700406], [171.77, 1976.8856608552019, 0.2186356], [171.78, 1976.0805419261387, 0.20752908], [171.79, 1976.8632544152163, 0.21824616], [171.8, 1976.1122391861725, 0.20686209], [171.81, 1976.858372568062, 0.21888505], [171.82, 1976.1214538022118, 0.20674579], [171.83, 1976.8615006947753, 0.21920238], [171.84, 1976.1064790908122, 0.20726386], [171.85, 1976.808048629026, 0.21885552], [171.86, 1976.1532443859228, 0.20699218], [171.87, 1976.847914027248, 0.21839495], [171.88, 1976.1464216156617, 0.20645158], [171.89, 1976.8327473960333, 0.21784225], [171.9, 1976.1218244507018, 0.20642193], [171.91, 1976.8085731753524, 0.218016], [171.92, 1976.1372137393273, 0.20656972], [171.93, 1976.8458505752278, 0.21863867], [171.94, 1976.1596633241086, 0.20674422], [171.95, 1976.8621145714742, 0.21915492], [171.96, 1976.1481408728994, 0.20700938], [171.97, 1976.9100265708698, 0.21859635], [171.98, 1976.184244618802, 0.20638366], [171.99, 1976.8731921484318, 0.21682064], [172.0, 1976.1865608300345, 0.20609865], [172.01, 1976.8216435583463, 0.21784303], [172.02, 1976.129142164633, 0.20507297], [172.03, 1976.876766419491, 0.2183957], [172.04, 1976.1459051842003, 0.206056], [172.05, 1976.8747035820013, 0.21773955], [172.06, 1976.1677926136408, 0.20580855], [172.07, 1976.8507201422906, 0.21847393], [172.08, 1976.1454736465762, 0.20606081], [172.09, 1976.849879583589, 0.2184931], [172.1, 1976.1377558111997, 0.20631456], [172.11, 1976.865512783172, 0.21887569], [172.12, 1976.1514053871078, 0.20598806], [172.13, 1976.8832221728533, 0.21878068], [172.14, 1976.1589154458065, 0.20548992], [172.15, 1976.8851097286426, 0.21865451], [172.16, 1976.1581032547388, 0.20534998], [172.17, 1976.9130300001868, 0.21794605], [172.18, 1976.166781330007, 0.20621172], [172.19, 1976.8845563713885, 0.21808574], [172.2, 1976.165139490536, 0.2071269], [172.21, 1976.886356298254, 0.21857986], [172.22, 1976.1601826663227, 0.20750546], [172.23, 1976.8924696610495, 0.21904522], [172.24, 1976.1688957504107, 0.20753132], [172.25, 1976.9394751898883, 0.21912195], [172.26, 1976.1774335914229, 0.20777173], [172.27, 1976.9179931717858, 0.21817406], [172.28, 1976.189973290278, 0.20710737], [172.29, 1976.9626459529738, 0.21905446], [172.3, 1976.1798551707589, 0.20687681], [172.31, 1976.9550685897375, 0.21817204], [172.32, 1976.1546144712224, 0.20739654], [172.33, 1976.9169182979952, 0.2191182], [172.34, 1976.1831782785177, 0.2076012], [172.35, 1976.9356278049518, 0.21955395], [172.36, 1976.2253812572776, 0.2081779], [172.37, 1976.9093029440523, 0.21914557], [172.38, 1976.2126358393684, 0.20878005], [172.39, 1976.87654438804, 0.2188731], [172.4, 1976.2261027888244, 0.20879848], [172.41, 1976.881069276687, 0.21817379], [172.42, 1976.2157321712732, 0.20742345], [172.43, 1976.908985388529, 0.21890067], [172.44, 1976.1933222464077, 0.20787856], [172.45, 1976.9175468078208, 0.21924952], [172.46, 1976.209558710817, 0.20835292], [172.47, 1976.8961430844238, 0.21873781], [172.48, 1976.2138864592248, 0.20795535], [172.49, 1976.9002134416023, 0.21945098], [172.5, 1976.238256720493, 0.20792201], [172.51, 1976.9026240596534, 0.21872784], [172.52, 1976.2051636973583, 0.20736478], [172.53, 1976.8929116150732, 0.21845978], [172.54, 1976.1697790167223, 0.20694448], [172.55, 1976.8657900228736, 0.21979573], [172.56, 1976.177353065614, 0.2077344], [172.57, 1976.8910394610489, 0.2193105], [172.58, 1976.2050424808017, 0.20794564], [172.59, 1976.9475363580816, 0.21887584], [172.6, 1976.2171812319523, 0.20706989], [172.61, 1976.9379127568939, 0.21910383], [172.62, 1976.1849474386693, 0.20744778], [172.63, 1976.933337308544, 0.21984082], [172.64, 1976.1996541236845, 0.20719808], [172.65, 1976.9402327213356, 0.21850657], [172.66, 1976.2032599038582, 0.20572995], [172.67, 1976.9231219469577, 0.21880753], [172.68, 1976.1971212530225, 0.20562121], [172.69, 1976.9136148611947, 0.21873528], [172.7, 1976.203343877809, 0.20666854], [172.71, 1976.896439573575, 0.21920858], [172.72, 1976.203901820147, 0.20630357], [172.73, 1976.9101337927323, 0.2188977], [172.74, 1976.139230671971, 0.20642203], [172.75, 1976.8888219227708, 0.21989977], [172.76, 1976.1428272250978, 0.20705985], [172.77, 1976.9590800934327, 0.22040017], [172.78, 1976.1457874540988, 0.20734516], [172.79, 1976.9240632451197, 0.21971828], [172.8, 1976.1559185235678, 0.20656687], [172.81, 1976.9151975585203, 0.21883997], [172.82, 1976.1390823935803, 0.20667532], [172.83, 1976.9324320642422, 0.21975705], [172.84, 1976.1886681083333, 0.20789692], [172.85, 1976.9633956452953, 0.22022757], [172.86, 1976.1753056773587, 0.20827895], [172.87, 1976.9517139609075, 0.22012626], [172.88, 1976.188272514316, 0.20820588], [172.89, 1976.9709045101486, 0.22005652], [172.9, 1976.163781508009, 0.20722051], [172.91, 1977.0331419115923, 0.21981657], [172.92, 1976.2296965830737, 0.20702307], [172.93, 1976.9998707087357, 0.21975775], [172.94, 1976.2224296010882, 0.20710708], [172.95, 1976.9667107603393, 0.22002155], [172.96, 1976.2281290879782, 0.20768312], [172.97, 1977.0071553032808, 0.2188432], [172.98, 1976.2708886654898, 0.20764396], [172.99, 1976.9808279772292, 0.21858102], [173.0, 1976.2422700274246, 0.20733048], [173.01, 1976.9248341133436, 0.21871981], [173.02, 1976.24495064454, 0.2080084], [173.03, 1976.9269746282587, 0.21895152], [173.04, 1976.2301348094409, 0.20792845], [173.05, 1976.8925188010178, 0.22011545], [173.06, 1976.2155760783855, 0.20829608], [173.07, 1976.9195137505853, 0.21977073], [173.08, 1976.2176433102813, 0.2087893], [173.09, 1976.8757093658755, 0.21935831], [173.1, 1976.1726968662472, 0.20868865], [173.11, 1976.8703306564867, 0.21907222], [173.12, 1976.190857738421, 0.20824951], [173.13, 1976.8692269864223, 0.22023778], [173.14, 1976.151843095894, 0.20900266], [173.15, 1976.874641066229, 0.2202719], [173.16, 1976.1438483006323, 0.20986667], [173.17, 1976.886200520137, 0.22070244], [173.18, 1976.1653034007772, 0.20936824], [173.19, 1976.9256307360527, 0.22065425], [173.2, 1976.1537816334862, 0.20933545], [173.21, 1976.9064192014362, 0.22054125], [173.22, 1976.2097267550134, 0.21058527], [173.23, 1976.9003627748039, 0.21987188], [173.24, 1976.2288591504025, 0.2110781], [173.25, 1976.8916133757934, 0.21966326], [173.26, 1976.229870399234, 0.21054538], [173.27, 1976.8723687022475, 0.2202451], [173.28, 1976.2418299982846, 0.21003917], [173.29, 1976.8987384898228, 0.22059627], [173.3, 1976.2227512626553, 0.20951056], [173.31, 1976.91423406774, 0.2197823], [173.32, 1976.2027499947385, 0.20969427], [173.33, 1976.9410908827813, 0.2204639], [173.34, 1976.2134822948883, 0.21013528], [173.35, 1976.9507360827774, 0.21956651], [173.36, 1976.2370766127924, 0.2100966], [173.37, 1976.9686813052213, 0.21967158], [173.38, 1976.2121271128276, 0.20875642], [173.39, 1976.9550765378594, 0.21908846], [173.4, 1976.1923126831143, 0.20900196], [173.41, 1976.9533666106076, 0.2192602], [173.42, 1976.1806616084277, 0.20905818], [173.43, 1976.9472823554247, 0.21989915], [173.44, 1976.1820634224284, 0.20948374], [173.45, 1976.9325632690823, 0.21931167], [173.46, 1976.199726995967, 0.20939748], [173.47, 1976.9637732589376, 0.21892852], [173.48, 1976.1859408736452, 0.20865977], [173.49, 1976.961982027842, 0.21904966], [173.5, 1976.220325767363, 0.20851187], [173.51, 1976.9406737436057, 0.21865459], [173.52, 1976.2237967555668, 0.20797127], [173.53, 1976.9320754969685, 0.21855502], [173.54, 1976.2797053617649, 0.20843509], [173.55, 1976.9302791287105, 0.2186478], [173.56, 1976.2828067832672, 0.20825191], [173.57, 1976.9772253620793, 0.21870205], [173.58, 1976.2795199360287, 0.20755854], [173.59, 1976.946403871507, 0.21833855], [173.6, 1976.2620091295762, 0.20802307], [173.61, 1976.9554888273747, 0.21846303], [173.62, 1976.2650336017587, 0.20735842], [173.63, 1976.949275571077, 0.21801984], [173.64, 1976.2532131573362, 0.20699868], [173.65, 1976.8854248405655, 0.21759593], [173.66, 1976.2621295025183, 0.20702751], [173.67, 1976.9088114929675, 0.21816395], [173.68, 1976.3135048037916, 0.20714173], [173.69, 1976.9292788089392, 0.2181803], [173.7, 1976.3185747858952, 0.2072879], [173.71, 1976.9658907587743, 0.21784319], [173.72, 1976.339596353852, 0.20784518], [173.73, 1976.9622559838108, 0.21714981], [173.74, 1976.3327964516775, 0.2065372], [173.75, 1976.968555387968, 0.21773581], [173.76, 1976.2445461180723, 0.20697671], [173.77, 1976.9220974213113, 0.21876779], [173.78, 1976.2305746115753, 0.20613654], [173.79, 1976.8966874317011, 0.21805602], [173.8, 1976.2495519843965, 0.20539054], [173.81, 1976.9119389695302, 0.21820389], [173.82, 1976.2540754906463, 0.20604967], [173.83, 1976.9480602233045, 0.21791303], [173.84, 1976.2900633769368, 0.20630099], [173.85, 1976.962636160382, 0.21739766], [173.86, 1976.3121445472657, 0.20546511], [173.87, 1977.02219297372, 0.21744609], [173.88, 1976.2891439697105, 0.20599623], [173.89, 1977.057590655275, 0.21789332], [173.9, 1976.293740855504, 0.20731832], [173.91, 1977.0177778093744, 0.21778078], [173.92, 1976.272922463694, 0.20797178], [173.93, 1976.9701296144258, 0.21946777], [173.94, 1976.2801903056243, 0.20789285], [173.95, 1977.076672981284, 0.21945441], [173.96, 1976.2926750546471, 0.20827596], [173.97, 1977.023815169051, 0.21845646], [173.98, 1976.2989476389464, 0.20733118], [173.99, 1977.028184536828, 0.21895786], [174.0, 1976.298099455191, 0.20731962], [174.01, 1976.9986134066357, 0.21873099], [174.02, 1976.2810397473086, 0.20738041], [174.03, 1976.9838874592092, 0.21847133], [174.04, 1976.2938820353963, 0.20771776], [174.05, 1977.0181320124495, 0.21922372], [174.06, 1976.2879616871523, 0.20902523], [174.07, 1976.9930447942422, 0.21964179], [174.08, 1976.2699273922858, 0.20865633], [174.09, 1977.0122112064794, 0.22029984], [174.1, 1976.27294959254, 0.20814516], [174.11, 1976.9524056437112, 0.21942967], [174.12, 1976.2571000281469, 0.20795338], [174.13, 1976.9861270074434, 0.21970071], [174.14, 1976.2528943090877, 0.20858297], [174.15, 1977.058297913388, 0.21954429], [174.16, 1976.2948294250527, 0.20872365], [174.17, 1977.0798988422641, 0.21962725], [174.18, 1976.3201599626645, 0.20863642], [174.19, 1977.0667056884938, 0.21910135], [174.2, 1976.3198597337155, 0.20870167], [174.21, 1976.9807597175193, 0.21942665], [174.22, 1976.2717625630598, 0.20867282], [174.23, 1976.9685402284563, 0.22027631], [174.24, 1976.269212342431, 0.209961], [174.25, 1976.974043290619, 0.22045875], [174.26, 1976.2771332927414, 0.20945217], [174.27, 1976.9792081016844, 0.22030447], [174.28, 1976.2203016342357, 0.20896402], [174.29, 1976.9504299293592, 0.22013591], [174.3, 1976.2455116752471, 0.21020688], [174.31, 1976.9252862780227, 0.2204836], [174.32, 1976.2256063587645, 0.20902136], [174.33, 1976.9208308413845, 0.22105773], [174.34, 1976.2049446244362, 0.20936777], [174.35, 1976.95443571442, 0.22126198], [174.36, 1976.210340299368, 0.2100473], [174.37, 1976.9513362956745, 0.22096579], [174.38, 1976.2463334804293, 0.21037014], [174.39, 1976.943275762101, 0.22046986], [174.4, 1976.2554335928974, 0.20932475], [174.41, 1976.9467631832865, 0.22074509], [174.42, 1976.231316626762, 0.20817186], [174.43, 1976.985181630293, 0.21973631], [174.44, 1976.2403596029255, 0.20852302], [174.45, 1976.9201949474802, 0.21930857], [174.46, 1976.228336887674, 0.20886204], [174.47, 1977.0223660048919, 0.21949503], [174.48, 1976.2392395396648, 0.20866665], [174.49, 1977.0204659385486, 0.21870404], [174.5, 1976.2593646101632, 0.20814382], [174.51, 1977.0229955809632, 0.2186312], [174.52, 1976.2592866282773, 0.207605], [174.53, 1977.0289043936568, 0.21846156], [174.54, 1976.2402311652845, 0.20788507], [174.55, 1976.9765104991611, 0.218856], [174.56, 1976.2840271300083, 0.20776832], [174.57, 1976.984319541155, 0.21898003], [174.58, 1976.3154088709598, 0.2077344], [174.59, 1976.9944605901806, 0.2183894], [174.6, 1976.3116559414254, 0.20730454], [174.61, 1977.0181323224776, 0.21788277], [174.62, 1976.3038487549204, 0.20726703], [174.63, 1977.0608974466868, 0.2173857], [174.64, 1976.3379153017352, 0.20752169], [174.65, 1977.0892822980895, 0.21772419], [174.66, 1976.330921053438, 0.20617156], [174.67, 1977.0778898396973, 0.21697356], [174.68, 1976.3174161968545, 0.20618437], [174.69, 1977.0351261383012, 0.21687931], [174.7, 1976.316162483458, 0.20698929], [174.71, 1977.059233960998, 0.21748918], [174.72, 1976.3492937030192, 0.20762105], [174.73, 1977.0693684429627, 0.21738903], [174.74, 1976.3126700504208, 0.20824972], [174.75, 1977.0683221365764, 0.21717696], [174.76, 1976.3356080485719, 0.20764899], [174.77, 1977.1080807367885, 0.21687543], [174.78, 1976.3351840904088, 0.20695083], [174.79, 1977.0872030178896, 0.21755366], [174.8, 1976.288724409675, 0.2078554], [174.81, 1977.0355306314425, 0.21848388], [174.82, 1976.2742492763314, 0.20719646], [174.83, 1977.0250388916515, 0.21794447], [174.84, 1976.2813493656813, 0.2052769], [174.85, 1977.0702605993895, 0.21728668], [174.86, 1976.2813914735107, 0.20552012], [174.87, 1977.063898793736, 0.21705377], [174.88, 1976.2483257987926, 0.2057527], [174.89, 1977.0392922587937, 0.21851109], [174.9, 1976.2419700937508, 0.20570298], [174.91, 1977.038800285989, 0.21772832], [174.92, 1976.2632023626409, 0.20609371], [174.93, 1976.9686218747663, 0.21705042], [174.94, 1976.265144394623, 0.20607074], [174.95, 1976.9986882063242, 0.2176164], [174.96, 1976.2843066194132, 0.20600705], [174.97, 1977.0189150838528, 0.21714312], [174.98, 1976.2603113600599, 0.20621301], [174.99, 1976.9693150532623, 0.21781258], [175.0, 1976.2502704112821, 0.2080877], [175.01, 1976.9715207285212, 0.2185113], [175.02, 1976.2556172830755, 0.20785624], [175.03, 1976.9557709862534, 0.21890748], [175.04, 1976.3143992639984, 0.20749867], [175.05, 1976.978219354965, 0.21834241], [175.06, 1976.346685892812, 0.20811284], [175.07, 1976.9613930388505, 0.2182636], [175.08, 1976.3003994584435, 0.2078076], [175.09, 1976.970296453267, 0.21793275], [175.1, 1976.3264106990382, 0.20801263], [175.11, 1976.9388211872079, 0.21863084], [175.12, 1976.2830080828871, 0.20735778], [175.13, 1976.9492738322301, 0.2183583], [175.14, 1976.259582814453, 0.20716196], [175.15, 1976.9470992811848, 0.21887027], [175.16, 1976.2414640106554, 0.20746678], [175.17, 1976.9412147949606, 0.21902312], [175.18, 1976.2134110901059, 0.20809153], [175.19, 1976.978860723026, 0.21907814], [175.2, 1976.21162953759, 0.20891364], [175.21, 1976.9325596200888, 0.22007917], [175.22, 1976.2236082966842, 0.20893434], [175.23, 1976.9655734758308, 0.22145802], [175.24, 1976.2287747761702, 0.20880526], [175.25, 1976.9791590793463, 0.22065046], [175.26, 1976.2296509686198, 0.20760053], [175.27, 1976.9610278162613, 0.22057346], [175.28, 1976.2070547705832, 0.20745647], [175.29, 1976.9861587820026, 0.22032101], [175.3, 1976.2134879828282, 0.20711552], [175.31, 1976.9839687233423, 0.22017787], [175.32, 1976.2237467456075, 0.20622998], [175.33, 1977.0024199346249, 0.2198803], [175.34, 1976.2175879442052, 0.20686592], [175.35, 1976.9695464853667, 0.21995912], [175.36, 1976.196442609444, 0.20720145], [175.37, 1976.9591541009563, 0.21965842], [175.38, 1976.182142040004, 0.20758702], [175.39, 1976.938337988956, 0.21950024], [175.4, 1976.2061733331461, 0.20748168], [175.41, 1976.9423005528597, 0.2199574], [175.42, 1976.2234009392705, 0.20678982], [175.43, 1976.9971649104536, 0.21844196], [175.44, 1976.260153468765, 0.20570172], [175.45, 1976.972843148284, 0.21810675], [175.46, 1976.247909882795, 0.20445251], [175.47, 1976.9268130008172, 0.21807326], [175.48, 1976.2455530789025, 0.20663337], [175.49, 1976.8872322814782, 0.21894525], [175.5, 1976.2310654846249, 0.20769434], [175.51, 1976.848920950749, 0.21971262], [175.52, 1976.2269441526516, 0.20821482], [175.53, 1976.8840278418204, 0.22029032], [175.54, 1976.2341501806077, 0.20859839], [175.55, 1976.8623119849533, 0.2198207], [175.56, 1976.259843144952, 0.20789689], [175.57, 1976.8710667535634, 0.2194244], [175.58, 1976.2233930572388, 0.20788807], [175.59, 1976.8517636198785, 0.21993867], [175.6, 1976.217794498846, 0.20804177], [175.61, 1976.8914375729937, 0.21934998], [175.62, 1976.2710983684349, 0.20841771], [175.63, 1976.9008049918584, 0.21976487], [175.64, 1976.2935574801406, 0.20922603], [175.65, 1976.9065814478256, 0.21959738], [175.66, 1976.3166159639873, 0.20972435], [175.67, 1976.915844747724, 0.21922454], [175.68, 1976.2909138059183, 0.20959651], [175.69, 1976.8800464571314, 0.21923298], [175.7, 1976.28892508022, 0.2109633], [175.71, 1976.9153461046299, 0.21892971], [175.72, 1976.2910739131194, 0.21001434], [175.73, 1976.8875370075248, 0.21834128], [175.74, 1976.2832244424906, 0.20912795], [175.75, 1976.9234209422734, 0.2186668], [175.76, 1976.2932871230717, 0.20827432], [175.77, 1976.9444639098806, 0.21763143], [175.78, 1976.2710136899573, 0.20798223], [175.79, 1976.9366234479626, 0.2176926], [175.8, 1976.2660143115872, 0.20758928], [175.81, 1976.9090626841037, 0.21778151], [175.82, 1976.2672590472287, 0.20710471], [175.83, 1976.9121141679377, 0.21777444], [175.84, 1976.2753082725797, 0.20698084], [175.85, 1976.974786542643, 0.21699733], [175.86, 1976.308428965462, 0.20703407], [175.87, 1977.0128105970455, 0.21735488], [175.88, 1976.3042642461685, 0.20770925], [175.89, 1977.0054987588198, 0.21750617], [175.9, 1976.3156180187932, 0.207314], [175.91, 1976.9868297665537, 0.21760194], [175.92, 1976.2797964262595, 0.20690356], [175.93, 1976.990438002923, 0.21711859], [175.94, 1976.3099019836432, 0.20663135], [175.95, 1976.9686460968237, 0.21704409], [175.96, 1976.3322902165992, 0.20763177], [175.97, 1976.985492677834, 0.21754663], [175.98, 1976.3380940424458, 0.20821813], [175.99, 1976.906130751597, 0.21795678], [176.0, 1976.336548586893, 0.20796697], [176.01, 1976.953669543385, 0.21903361], [176.02, 1976.2941886893313, 0.2080658], [176.03, 1976.9887704777282, 0.21939991], [176.04, 1976.316067925243, 0.20796332], [176.05, 1976.983126438389, 0.2189318], [176.06, 1976.2712639091865, 0.2087196], [176.07, 1976.9408430750434, 0.22021124], [176.08, 1976.2739321712502, 0.20932908], [176.09, 1976.9309204635895, 0.22000894], [176.1, 1976.2804616191725, 0.21026902], [176.11, 1976.968317091916, 0.22000805], [176.12, 1976.2661518139262, 0.21044506], [176.13, 1976.959031393625, 0.21992594], [176.14, 1976.2615286395223, 0.20981318], [176.15, 1976.910471905826, 0.22001553], [176.16, 1976.248462022269, 0.20975894], [176.17, 1976.9205305550067, 0.22102453], [176.18, 1976.2813208902967, 0.20979224], [176.19, 1976.9082192619906, 0.21990423], [176.2, 1976.2731781941839, 0.20955908], [176.21, 1976.9518660754352, 0.21986346], [176.22, 1976.274938645115, 0.20953254], [176.23, 1976.9840996793328, 0.21932739], [176.24, 1976.291804788411, 0.21000414], [176.25, 1976.954181137826, 0.2203443], [176.26, 1976.3087372780592, 0.20927888], [176.27, 1976.9277418249844, 0.21981102], [176.28, 1976.2813052103845, 0.20931903], [176.29, 1976.9146601357734, 0.21981184], [176.3, 1976.2499449429179, 0.20950957], [176.31, 1976.9650640283462, 0.21988082], [176.32, 1976.2716598684322, 0.20971213], [176.33, 1976.9652254944049, 0.21988574], [176.34, 1976.2505401815379, 0.20896298], [176.35, 1976.934483011677, 0.21977632], [176.36, 1976.2154376797562, 0.20879059], [176.37, 1976.9133140598753, 0.22058374], [176.38, 1976.2358722964327, 0.20938516], [176.39, 1976.9555858848082, 0.21988145], [176.4, 1976.2786319645047, 0.20908073], [176.41, 1976.9928488801904, 0.21902591], [176.42, 1976.2752872777664, 0.20875385], [176.43, 1977.010715094361, 0.21809068], [176.44, 1976.3333869358958, 0.20818004], [176.45, 1977.0440999496443, 0.2178294], [176.46, 1976.3318844360188, 0.20826785], [176.47, 1977.0298811056587, 0.21839538], [176.48, 1976.3418940907495, 0.20896919], [176.49, 1977.0152321525618, 0.2179401], [176.5, 1976.3038717916575, 0.208136], [176.51, 1976.99618350279, 0.2182432], [176.52, 1976.2712642215783, 0.2087874], [176.53, 1976.992001515322, 0.2184718], [176.54, 1976.2927168377637, 0.20822214], [176.55, 1976.996766803205, 0.21740787], [176.56, 1976.3091567023216, 0.20817104], [176.57, 1976.9391397301636, 0.21822634], [176.58, 1976.332181000631, 0.20859638], [176.59, 1976.9633049867296, 0.21802117], [176.6, 1976.329956440904, 0.2081423], [176.61, 1976.9981360550528, 0.21802616], [176.62, 1976.3291602856873, 0.20749049], [176.63, 1977.009867810489, 0.21754093], [176.64, 1976.3259442884962, 0.20748326], [176.65, 1977.0013898999027, 0.2178754], [176.66, 1976.330142804512, 0.20795752], [176.67, 1977.0219976676551, 0.21783021], [176.68, 1976.3104240172217, 0.20645633], [176.69, 1977.0307443755732, 0.21823251], [176.7, 1976.3285614342487, 0.20532925], [176.71, 1977.042215884564, 0.2171611], [176.72, 1976.3026727967463, 0.20587015], [176.73, 1976.9704906327834, 0.21722737], [176.74, 1976.3069482250885, 0.20628181], [176.75, 1976.9668556138668, 0.21744892], [176.76, 1976.2803712526918, 0.20672525], [176.77, 1976.9584039325398, 0.21816547], [176.78, 1976.291161616941, 0.20759693], [176.79, 1976.9468939734554, 0.21757405], [176.8, 1976.3300257026194, 0.20757516], [176.81, 1976.9262409972703, 0.21786048], [176.82, 1976.334303132, 0.20694113], [176.83, 1976.9350056005012, 0.21738859], [176.84, 1976.3047086047145, 0.20681824], [176.85, 1976.9255826786762, 0.21685503], [176.86, 1976.3061137659654, 0.20796163], [176.87, 1976.917065182581, 0.21867716], [176.88, 1976.307747941223, 0.20813935], [176.89, 1976.9384547564548, 0.21847658], [176.9, 1976.2816075435803, 0.20899835], [176.91, 1976.9451011733236, 0.2187789], [176.92, 1976.3181874388583, 0.20860296], [176.93, 1976.9307739034869, 0.21812083], [176.94, 1976.3289288094402, 0.20871405], [176.95, 1976.8950177530962, 0.21777312], [176.96, 1976.3196032521043, 0.2092118], [176.97, 1976.9349583208623, 0.21800081], [176.98, 1976.336751953761, 0.20906605], [176.99, 1976.9608715125873, 0.21780321], [177.0, 1976.3203829129711, 0.20942721], [177.01, 1976.9289616074946, 0.218716], [177.02, 1976.31274787635, 0.20926139], [177.03, 1976.9450583436094, 0.21910082], [177.04, 1976.311804787627, 0.2091787], [177.05, 1976.9450938217985, 0.21957643], [177.06, 1976.3422962131053, 0.20866275], [177.07, 1976.9795896205878, 0.21842088], [177.08, 1976.3405431087954, 0.20826411], [177.09, 1976.9989957090754, 0.21869764], [177.1, 1976.3689485579212, 0.20804192], [177.11, 1977.030576020851, 0.21905923], [177.12, 1976.3995800029834, 0.20734666], [177.13, 1976.999686006482, 0.21833016], [177.14, 1976.400250495575, 0.2072287], [177.15, 1976.939491825898, 0.21893826], [177.16, 1976.3489086399004, 0.20848006], [177.17, 1976.9434396715496, 0.21907876], [177.18, 1976.3604692349982, 0.20848155], [177.19, 1976.9434408988834, 0.21884894], [177.2, 1976.369886022036, 0.20789066], [177.21, 1976.9700941124904, 0.21957597], [177.22, 1976.3558463126901, 0.20772913], [177.23, 1976.9725881970587, 0.21927583], [177.24, 1976.3524720735493, 0.20823258], [177.25, 1976.9673514065307, 0.21941279], [177.26, 1976.3310244027384, 0.20848332], [177.27, 1976.9495602526467, 0.22040465], [177.28, 1976.3139097679086, 0.20980507], [177.29, 1976.9584691411433, 0.22024238], [177.3, 1976.375558102547, 0.20989805], [177.31, 1976.9791667233767, 0.220183], [177.32, 1976.3739441229227, 0.20866843], [177.33, 1977.0185518111534, 0.22009455], [177.34, 1976.3585101967794, 0.20945196], [177.35, 1976.9846691288922, 0.22062838], [177.36, 1976.32810300975, 0.21032695], [177.37, 1976.965887373677, 0.2208946], [177.38, 1976.3388851052782, 0.21055657], [177.39, 1976.9562285523318, 0.2206988], [177.4, 1976.3730867766037, 0.20955174], [177.41, 1976.9395528995706, 0.22035979], [177.42, 1976.3563516722163, 0.20889929], [177.43, 1976.916793006643, 0.22058679], [177.44, 1976.3960837328032, 0.20980877], [177.45, 1976.9627946057801, 0.2204699], [177.46, 1976.4585346382137, 0.20994258], [177.47, 1976.9972816645102, 0.21972801], [177.48, 1976.4156231636575, 0.20925787], [177.49, 1977.005973861527, 0.21986258], [177.5, 1976.3984034195432, 0.2089664], [177.51, 1977.0001508548512, 0.22029379], [177.52, 1976.3876638889724, 0.20919237], [177.53, 1976.9743759582786, 0.22069865], [177.54, 1976.3843251341732, 0.20916754], [177.55, 1976.995390955345, 0.2198609], [177.56, 1976.391063041069, 0.20829336], [177.57, 1976.9628574335588, 0.21890451], [177.58, 1976.420038908485, 0.20776229], [177.59, 1977.020977027782, 0.21912853], [177.6, 1976.4252115995648, 0.20750886], [177.61, 1977.052364816552, 0.21901856], [177.62, 1976.4169285170833, 0.20819125], [177.63, 1977.022131006154, 0.21930818], [177.64, 1976.4043401366393, 0.20768593], [177.65, 1976.9855568728103, 0.21897805], [177.66, 1976.3839540688873, 0.2079619], [177.67, 1976.944109510964, 0.21954593], [177.68, 1976.3940826872072, 0.20741856], [177.69, 1976.9505911031188, 0.21943909], [177.7, 1976.396904551677, 0.20713374], [177.71, 1976.957257618119, 0.21946049], [177.72, 1976.3888753334745, 0.20825654], [177.73, 1976.9200054623454, 0.21921249], [177.74, 1976.366517015663, 0.20818599], [177.75, 1976.883730532329, 0.21977477], [177.76, 1976.349785851044, 0.20748402], [177.77, 1976.9294488052049, 0.21925376], [177.78, 1976.3496134780148, 0.20786914], [177.79, 1976.938088286083, 0.21941367], [177.8, 1976.3396610717423, 0.20866394], [177.81, 1976.880673917083, 0.21903153], [177.82, 1976.3511816122307, 0.20940174], [177.83, 1976.8648858181589, 0.21979496], [177.84, 1976.3107671929442, 0.20945054], [177.85, 1976.9062791787028, 0.22040635], [177.86, 1976.314824700702, 0.20990814], [177.87, 1976.8821998965243, 0.22106974], [177.88, 1976.2906316812403, 0.21091448], [177.89, 1976.9127498697549, 0.22138108], [177.9, 1976.2981597074277, 0.21095386], [177.91, 1976.8992165391862, 0.22102192], [177.92, 1976.2730568851773, 0.21109802], [177.93, 1976.8848406768063, 0.22141008], [177.94, 1976.2702023182533, 0.2109473], [177.95, 1976.899771066678, 0.22064836], [177.96, 1976.301444210465, 0.21080582], [177.97, 1976.83979437207, 0.22013979], [177.98, 1976.2499186393975, 0.2110736], [177.99, 1976.854837964978, 0.22031699], [178.0, 1976.2584530632093, 0.21102503], [178.01, 1976.880655661304, 0.22083554], [178.02, 1976.2912885615876, 0.21067636], [178.03, 1976.8816290299937, 0.22032326], [178.04, 1976.296279029699, 0.2112551], [178.05, 1976.8971148300918, 0.22093089], [178.06, 1976.2906397634117, 0.21029745], [178.07, 1976.84718471309, 0.22048664], [178.08, 1976.2631510862605, 0.21031477], [178.09, 1976.8358781132029, 0.22075468], [178.1, 1976.2160404643955, 0.2096843], [178.11, 1976.8071388124429, 0.2203196], [178.12, 1976.2051617567327, 0.20991758], [178.13, 1976.7928867116825, 0.22021364], [178.14, 1976.2241404507581, 0.20955245], [178.15, 1976.8019196294154, 0.22092852], [178.16, 1976.2180119338552, 0.20942573], [178.17, 1976.8126531018538, 0.22051612], [178.18, 1976.2228058796688, 0.20896907], [178.19, 1976.8354315936197, 0.22045231], [178.2, 1976.229417050854, 0.20879361], [178.21, 1976.87282126871, 0.22029091], [178.22, 1976.20110082048, 0.20951563], [178.23, 1976.8665529743432, 0.22124904], [178.24, 1976.2049332615484, 0.2099733], [178.25, 1976.925531778685, 0.22071458], [178.26, 1976.2334708267463, 0.20948663], [178.27, 1976.9199797219626, 0.22045055], [178.28, 1976.2507617471083, 0.20880103], [178.29, 1976.904539115375, 0.2199531], [178.3, 1976.253909590525, 0.20925662], [178.31, 1976.914675190008, 0.22050917], [178.32, 1976.2657870359235, 0.2098847], [178.33, 1976.9195600707108, 0.21998525], [178.34, 1976.2686838301652, 0.20969282], [178.35, 1976.9045225900081, 0.22059874], [178.36, 1976.2367009334173, 0.21096165], [178.37, 1976.900475104641, 0.22139235], [178.38, 1976.2501529360648, 0.21138267], [178.39, 1976.8694794863416, 0.2210829], [178.4, 1976.2449843195195, 0.21014777], [178.41, 1976.8585564415946, 0.22042432], [178.42, 1976.2349283673311, 0.21032643], [178.43, 1976.8870910021485, 0.22088368], [178.44, 1976.2537549106614, 0.21105655], [178.45, 1976.9001077477085, 0.22033489], [178.46, 1976.2318416069118, 0.21048926], [178.47, 1976.901799442635, 0.22080202], [178.48, 1976.2326990454085, 0.21041495], [178.49, 1976.9074605433796, 0.22036721], [178.5, 1976.2388307260562, 0.2099088], [178.51, 1976.907623433269, 0.22042021], [178.52, 1976.2437989741052, 0.209696], [178.53, 1976.9134050804767, 0.22086996], [178.54, 1976.2750546419422, 0.20993635], [178.55, 1976.9144396815464, 0.22102952], [178.56, 1976.234127566061, 0.21008667], [178.57, 1976.969571919037, 0.22063154], [178.58, 1976.2885890436448, 0.21072794], [178.59, 1976.9189935155296, 0.22014083], [178.6, 1976.2462276577355, 0.20974743], [178.61, 1976.8950747429276, 0.22003822], [178.62, 1976.2602768528816, 0.20992094], [178.63, 1976.9119257038337, 0.21932341], [178.64, 1976.283017942128, 0.2091986], [178.65, 1976.917423586503, 0.2190499], [178.66, 1976.3226347010084, 0.20838659], [178.67, 1976.9583461766174, 0.21797836], [178.68, 1976.3491990359976, 0.20876929], [178.69, 1976.9267571535088, 0.21804866], [178.7, 1976.3301881155357, 0.2084693], [178.71, 1976.8837202557334, 0.21838006], [178.72, 1976.326579885989, 0.20938747], [178.73, 1976.8757268596917, 0.21904232], [178.74, 1976.304703975813, 0.20922144], [178.75, 1976.8842866266098, 0.2199493], [178.76, 1976.2914407664514, 0.20961805], [178.77, 1976.9016511846019, 0.21916413], [178.78, 1976.310618004688, 0.2091434], [178.79, 1976.9151891820022, 0.21970353], [178.8, 1976.3144920541695, 0.20894164], [178.81, 1976.9535917720102, 0.21951056], [178.82, 1976.32112152472, 0.20956802], [178.83, 1976.9852567978833, 0.219117], [178.84, 1976.351698113137, 0.20922463], [178.85, 1976.965100495725, 0.21850495], [178.86, 1976.3656337442987, 0.20901713], [178.87, 1976.9481751420083, 0.21782343], [178.88, 1976.34859664917, 0.20883285], [178.89, 1976.9613753596798, 0.21886529], [178.9, 1976.3705068188608, 0.20852818], [178.91, 1976.9330371291326, 0.2182943], [178.92, 1976.3585458335317, 0.20811687], [178.93, 1976.9253707591083, 0.21822344], [178.94, 1976.3392647622327, 0.20854317], [178.95, 1976.955141686499, 0.21923566], [178.96, 1976.3241016062411, 0.2088275], [178.97, 1976.9590412732405, 0.2194164], [178.98, 1976.3246526512557, 0.2096556], [178.99, 1976.9520841729354, 0.21939233], [179.0, 1976.340425697107, 0.20868883], [179.01, 1976.9393342333544, 0.21863301], [179.02, 1976.3565342707784, 0.20863326], [179.03, 1976.9399223637813, 0.2192713], [179.04, 1976.34804644073, 0.2088707], [179.05, 1976.9212079149602, 0.21928278], [179.06, 1976.346186251443, 0.20917057], [179.07, 1976.8774621628995, 0.21913852], [179.08, 1976.3318443192684, 0.20900173], [179.09, 1976.8837557867564, 0.21855214], [179.1, 1976.3402138613992, 0.20824413], [179.11, 1976.8591224393751, 0.21832748], [179.12, 1976.3219803449938, 0.20820878], [179.13, 1976.884084849228, 0.21897063], [179.14, 1976.328853810144, 0.20863706], [179.15, 1976.8840026042506, 0.21898308], [179.16, 1976.348325050228, 0.20836194], [179.17, 1976.8892039008458, 0.2184914], [179.18, 1976.3455148612543, 0.20807536], [179.19, 1976.8998460615205, 0.21842796], [179.2, 1976.3315212566272, 0.20870325], [179.21, 1976.917257305746, 0.21837723], [179.22, 1976.3370918583523, 0.20731074], [179.23, 1976.8967178899607, 0.2182096], [179.24, 1976.3375355739947, 0.20766287], [179.25, 1976.9717200369562, 0.21818222], [179.26, 1976.3589919145502, 0.20781972], [179.27, 1976.8938516164458, 0.21774624], [179.28, 1976.326272430796, 0.20824139], [179.29, 1976.8315497007359, 0.21894357], [179.3, 1976.311420264425, 0.20886359], [179.31, 1976.874387683674, 0.21930143], [179.32, 1976.3483413003587, 0.20999114], [179.33, 1976.9027423955226, 0.21918365], [179.34, 1976.3300277230046, 0.2100255], [179.35, 1976.874261324814, 0.21906391], [179.36, 1976.3536754575111, 0.20994836], [179.37, 1976.9068297156755, 0.21899481], [179.38, 1976.3542251611193, 0.21050723], [179.39, 1976.886959116689, 0.22017579], [179.4, 1976.3252104077403, 0.21202637], [179.41, 1976.900741080644, 0.22016206], [179.42, 1976.3507130542525, 0.21207039], [179.43, 1976.9049796024915, 0.21956581], [179.44, 1976.369928882623, 0.21150658], [179.45, 1976.9269969613151, 0.2198616], [179.46, 1976.4068522371713, 0.21211359], [179.47, 1976.9785232881068, 0.21948847], [179.48, 1976.4422432030738, 0.21203949], [179.49, 1976.9956408497876, 0.21850201], [179.5, 1976.4514860734732, 0.21201733], [179.51, 1977.0120559291481, 0.21857643], [179.52, 1976.3996611535167, 0.21134983], [179.53, 1976.9692051795355, 0.21941781], [179.54, 1976.3983158666927, 0.21245919], [179.55, 1976.963191426591, 0.21964674], [179.56, 1976.4162880104182, 0.21176192], [179.57, 1976.9243015315228, 0.21910171], [179.58, 1976.4000016118346, 0.21212491], [179.59, 1976.9715979103667, 0.21916337], [179.6, 1976.4218893776388, 0.21147503], [179.61, 1976.9901488893124, 0.21930256], [179.62, 1976.4112942327076, 0.21184038], [179.63, 1976.942097037635, 0.2195919], [179.64, 1976.4013369622114, 0.2120468], [179.65, 1976.9086660779192, 0.21955131], [179.66, 1976.4549055722543, 0.21170892], [179.67, 1976.9371084045722, 0.21965434], [179.68, 1976.4332645017116, 0.21226859], [179.69, 1976.9815342361953, 0.21978234], [179.7, 1976.4227691179483, 0.2116133], [179.71, 1976.9762723122044, 0.219416], [179.72, 1976.3892893256107, 0.21055971], [179.73, 1976.9556858023125, 0.21922384], [179.74, 1976.4050352286986, 0.21009082], [179.75, 1976.9671570044566, 0.22009097], [179.76, 1976.3868256380474, 0.21027963], [179.77, 1976.9749728100862, 0.21959957], [179.78, 1976.3495253460578, 0.21017654], [179.79, 1976.9817336169, 0.21998851], [179.8, 1976.358508640312, 0.20993246], [179.81, 1977.0170963150522, 0.2202929], [179.82, 1976.3272524225813, 0.21096602], [179.83, 1976.9766332845188, 0.22101505], [179.84, 1976.317716950009, 0.2113155], [179.85, 1976.9481900087958, 0.22067645], [179.86, 1976.3697541436866, 0.20975883], [179.87, 1976.9517000874534, 0.21991599], [179.88, 1976.3602724428197, 0.20948142], [179.89, 1976.9862560328897, 0.21980292], [179.9, 1976.336474023244, 0.20958436], [179.91, 1976.9720889675264, 0.22076337], [179.92, 1976.353352500487, 0.2100869], [179.93, 1977.0011029443501, 0.22163759], [179.94, 1976.3569343907157, 0.21029586], [179.95, 1976.998209853048, 0.22048247], [179.96, 1976.3885784481818, 0.20942566], [179.97, 1976.9882491599315, 0.22055452], [179.98, 1976.402647633056, 0.21024597], [179.99, 1976.9747710110996, 0.2201473], [180.0, 1956.7685783641296, 0.14392005], [180.01, 1958.7118539403034, 0.15488578], [180.02, 1949.7180387448327, 0.06683831], [180.03, 1949.198787271087, 0.1155123]] \ No newline at end of file From 3e66260f26de73b475fbc01865ddd9e195a19ee2 Mon Sep 17 00:00:00 2001 From: hmbemba Date: Tue, 11 Apr 2023 14:23:19 -0400 Subject: [PATCH 5/5] convert mp3 to mono --- .gitignore | 168 +---- README.md | 243 +++--- cli.py | 210 ------ internals/__init__.py | 0 internals/db.py | 101 --- internals/media.py | 43 -- internals/processors.py | 917 ----------------------- internals/utils.py | 191 ----- internals/old/polymath.py => polymath.py | 10 +- requirements.txt | 112 +-- 10 files changed, 143 insertions(+), 1852 deletions(-) delete mode 100644 cli.py delete mode 100644 internals/__init__.py delete mode 100644 internals/db.py delete mode 100644 internals/media.py delete mode 100644 internals/processors.py delete mode 100644 internals/utils.py rename internals/old/polymath.py => polymath.py (98%) diff --git a/.gitignore b/.gitignore index 2adcec7..e969c78 100644 --- a/.gitignore +++ b/.gitignore @@ -1,170 +1,4 @@ input/ library/ processed/ -separated/ - -#Mine -.vscode/ -.mypy_cache - -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class - -# C extensions -*.so - -# Distribution / packaging -.Python -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -share/python-wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.nox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -*.py,cover -.hypothesis/ -.pytest_cache/ -cover/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -local_settings.py -db.sqlite3 -db.sqlite3-journal - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ - -# PyBuilder -.pybuilder/ -target/ - -# Jupyter Notebook -.ipynb_checkpoints - -# IPython -profile_default/ -ipython_config.py - -# pyenv -# For a library or package, you might want to ignore these files since the code is -# intended to run in multiple environments; otherwise, check them in: -# .python-version - -# pipenv -# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. -# However, in case of collaboration, if having platform-specific dependencies or dependencies -# having no cross-platform support, pipenv may install dependencies that don't work, or not -# install all needed dependencies. -#Pipfile.lock - -# poetry -# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. -# This is especially recommended for binary packages to ensure reproducibility, and is more -# commonly ignored for libraries. -# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control -#poetry.lock - -# pdm -# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. -#pdm.lock -# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it -# in version control. -# https://pdm.fming.dev/#use-with-ide -.pdm.toml - -# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm -__pypackages__/ - -# Celery stuff -celerybeat-schedule -celerybeat.pid - -# SageMath parsed files -*.sage.py - -# Environments -.env -.venv -env/ -venv/ -ENV/ -env.bak/ -venv.bak/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ -.dmypy.json -dmypy.json - -# Pyre type checker -.pyre/ - -# pytype static type analyzer -.pytype/ - -# Cython debug symbols -cython_debug/ - -# PyCharm -# JetBrains specific template is maintained in a separate JetBrains.gitignore that can -# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore -# and can be added to the global gitignore or merged into this file. For a more nuclear -# option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ - \ No newline at end of file +separated/ \ No newline at end of file diff --git a/README.md b/README.md index 00acb13..4d6aabb 100644 --- a/README.md +++ b/README.md @@ -1,160 +1,167 @@ -# Polymath -This is a fork of the original [Polymath](https://github.com/samim23/polymath) project with several aims. +# Polymath -1. Clean up and organizing the original codebase to make it easier to read +Polymath uses machine learning to convert any music library (*e.g from Hard-Drive or YouTube*) into a music production sample-library. The tool automatically separates songs into stems (*beats, bass, etc.*), quantizes them to the same tempo and beat-grid (*e.g. 120bpm*), analyzes musical structure (*e.g. verse, chorus, etc.*), key (*e.g C4, E3, etc.*) and other infos (*timbre, loudness, etc.*), and converts audio to midi. The result is a searchable sample library that streamlines the workflow for music producers, DJs, and ML audio developers. -2. Utilize a human readable database +

Polymath

-3. Create a more intuitive cli +## Use-cases +Polymath makes it effortless to combine elements from different songs to create unique new compositions: Simply grab a beat from a Funkadelic track, a bassline from a Tito Puente piece, and fitting horns from a Fela Kuti song, and seamlessly integrate them into your DAW in record time. Using Polymath's search capability to discover related tracks, it is a breeze to create a polished, hour-long mash-up DJ set. For ML developers, Polymath simplifies the process of creating a large music dataset, for training generative models, etc. +## How does it work? +- Music Source Separation is performed with the [Demucs](https://github.com/facebookresearch/demucs) neural network +- Music Structure Segmentation/Labeling is performed with the [sf_segmenter](https://github.com/wayne391/sf_segmenter) neural network +- Music Pitch Tracking and Key Detection are performed with [Crepe](https://github.com/marl/crepe) neural network +- Music to MIDI transcription is performed with [Basic Pitch](https://github.com/spotify/basic-pitch) neural network +- Music Quantization and Alignment are performed with [pyrubberband](https://github.com/bmcfee/pyrubberband) +- Music Info retrieval and processing is performed with [librosa](https://github.com/librosa/librosa) -# How it works +## Community -This fork utilizies [tinydb](https://github.com/msiemens/tinydb) to create a Json database and [fire](https://github.com/google/python-fire) to create the cli +Join the Polymath Community on [Discord](https://discord.gg/gaZMZKzScj) -## Folder structure +## Requirements -``` -/polymath - cli.py - /internals - /content - /db - db.json - /FrequencyFrames - /ytdl_content - /processed - /stems -``` +You need to have the following software installed on your system: -### content +- ``ffmpeg`` -- The content dir and subdirectories are autogenerated if they do not already exist +## Installation -- You should see this message the first time you run any command +You need python version `>=3.7` and `<=3.10`. From your terminal run: +```bash +git clone https://github.com/samim23/polymath +cd polymath +pip install -r requirements.txt ``` -Created folder at: - C:\Users\...\polymath\content -Created folder at: - C:\Users\...\polymath\content\processed - -Created folder at: - C:\Users\...\polymath\content\stems - -Created folder at: - C:\Users\...\polymath\content\db - -Created folder at: - C:\Users\...\polymath\content\db\frequencyFrames - -Created folder at: - C:\Users\...\polymath\content\ytdl_content +If you run into an issue with basic-pitch while trying to run Polymath, run this command after your installation: +```bash +pip install git+https://github.com/spotify/basic-pitch.git ``` -### db -- The db directory contains a db.json file which is used as the main database for this project. - -- The frequencyFrames directory within the db directory contains frequency frames for each audio file added to the database as a text file - -### ytdl_content -- This directory contains all the downloaded audio files from youtube-dl +## GPU support -### processed -- Before a song is added to the database it is cleaned and processed by converting it to a WAV - and resampling it a samplerate of 44100 if it is not already - -- This directory contains the processed audio files. +Most of the libraries polymath uses come with native GPU support through cuda. Please follow the steps on https://www.tensorflow.org/install/pip to setup tensorflow for use with cuda. If you have followed these steps, tensorflow and torch will both automatically pick up the GPU and use it. This only applied to native setups, for dockerized deployments (see next section), gpu support is forthcoming -### stems +## Docker setup -- This directory contains the separated stems generated the processed audio filess - -### cli.py -- This is the main script to run the command line interface (CLI). - - -## The database - -- When a song is added to the database it will populate a record that looks like this : +If you have [Docker](https://www.docker.com/) installed on your system, you can use the provided `Dockerfile` to quickly build a polymath docker image (if your user is not part of the `docker` group, remember to prepend `sudo` to the following command): -``` - "1": { - "id": "song_name_ID", - "songName": "song_name", - "pathToFile": "C:\\Users\\...\\polymath\\content\\processed\\song_name_ID.wav", - "features": { - "id": "song_name_ID", - "tempo": "129.19921875", - "duration": "180.03591836734694", - "timbre": "-10.74387", - "timbre_frames": "[[...]]", - "pitch": "0.32957405", - "pitch_frames": "[[...]]", - "intensity": "-52.960995579585294", - "intensity_frames": "[[...]]", - "volume": "[...]", - "avg_volume": "0.19482724", - "loudness": "0.24210354685783386", - "beats": "[ ...]", - "segments_boundaries": "[...]", - "segments_labels": "[...]", - "frequency": "230.88860214871994", - "key": "A#3", - "frequencyFramesPath": "C:\\Users\\...\\polymath\\content\\db\\frequencyFrames\\song_name_ID_FrequencyFrames.txt" - } - } +```bash +docker build -t polymath ./ ``` -# Install +In order to exchange input and output files between your hosts system and the polymath docker container, you need to create the following four directories: -``` -git clone https://github.com/hmbemba/polymath.git +- `./input` +- `./library` +- `./processed` +- `./separated` -cd polymath +Now put any files you want to process with polymath into the `input` folder. +Then you can run polymath through docker by using the `docker run` command and pass any arguments that you would originally pass to the python command, e.g. if you are in a linux OS call: -pip install -r requirements.txt +```bash +docker run \ + -v "$(pwd)"/processed:/polymath/processed \ + -v "$(pwd)"/separated:/polymath/separated \ + -v "$(pwd)"/library:/polymath/library \ + -v "$(pwd)"/input:/polymath/input \ + polymath python /polymath/polymath.py -a ./input/song1.wav ``` -# Usage - -- These are the current core features with more to come +## Run Polymath -## Add Song - -- Add a local song to the database +### 1. Add songs to the Polymath Library +##### Add YouTube video to library (auto-download) +```bash +python polymath.py -a n6DAqMFe97E ``` -python cli.py addSong "path/to/song.mp3" +##### Add audio file (wav or mp3) +```bash +python polymath.py -a /path/to/audiolib/song.wav ``` +##### Add multiple files at once +```bash +python polymath.py -a n6DAqMFe97E,eaPzCHEQExs,RijB8wnJCN0 +python polymath.py -a /path/to/audiolib/song1.wav,/path/to/audiolib/song2.wav +python polymath.py -a /path/to/audiolib/ +``` +Songs are automatically analyzed once which takes some time. Once in the database, they can be access rapidly. The database is stored in the folder "/library/database.p". To reset everything, simply delete it. -### splitstems - -- The "-ss" boolean flag will split the stems right after - +### 2. Quantize songs in the Polymath Library +##### Quantize a specific songs in the library to tempo 120 BPM (-q = database audio file ID, -t = tempo in BPM) +```bash +python polymath.py -q n6DAqMFe97E -t 120 ``` -python cli.py addSong "path/too/song.mp3" -ss +##### Quantize all songs in the library to tempo 120 BPM +```bash +python polymath.py -q all -t 120 ``` +##### Quantize a specific songs in the library to the tempo of the song (-k) +```bash +python polymath.py -q n6DAqMFe97E -k +``` +Songs are automatically quantized to the same tempo and beat-grid and saved to the folder “/processed”. - -## Add Video - -- Download a single song from youtube and add it to the database - -- Note : This is meant for a single video only not a playlist - +### 3. Search for similar songs in the Polymath Library +##### Search for 10 similar songs based on a specific songs in the library (-s = database audio file ID, -sa = results amount) +```bash +python polymath.py -s n6DAqMFe97E -sa 10 ``` -python cli.py addVideo "https://youtu.be/dQw4w9WgXcQ" +##### Search for similar songs based on a specific songs in the library and quantize all of them to tempo 120 BPM +```bash +python polymath.py -s n6DAqMFe97E -sa 10 -q all -t 120 ``` - -## Split Song +##### Include BPM as search criteria (-st) +```bash +python polymath.py -s n6DAqMFe97E -sa 10 -q all -t 120 -st -k ``` -python cli.py split "path/to/song.mp3" "output/dir" +Similar songs are automatically found and optionally quantized and saved to the folder "/processed". This makes it easy to create for example an hour long mix of songs that perfectly match one after the other. + +### 4. Convert Audio to MIDI +##### Convert all processed audio files and stems to MIDI (-m) +```bash +python polymath.py -a n6DAqMFe97E -q all -t 120 -m ``` +Generated Midi Files are currently always 120BPM and need to be time adjusted in your DAW. This will be resolved [soon](https://github.com/spotify/basic-pitch/issues/40). The current Audio2Midi model gives mixed results with drums/percussion. This will be resolved with additional audio2midi model options in the future. -# Credits -- This project is a fork of the original Polymath project. -- The original project was developed by [samim](https://github.com/samim23), and can be found at https://github.com/samim23/polymath +## Audio Features +### Extracted Stems +The Demucs Neural Net has settings that can be adjusted in the python file +```bash +- bass +- drum +- guitare +- other +- piano +- vocals +``` +### Extracted Features +The audio feature extractors have settings that can be adjusted in the python file +```bash +- tempo +- duration +- timbre +- timbre_frames +- pitch +- pitch_frames +- intensity +- intensity_frames +- volume +- avg_volume +- loudness +- beats +- segments_boundaries +- segments_labels +- frequency_frames +- frequency +- key +``` + +## License +Polymath is released under the MIT license as found in the [LICENSE](https://github.com/samim23/polymath/blob/main/LICENSE) file. diff --git a/cli.py b/cli.py deleted file mode 100644 index 4967a05..0000000 --- a/cli.py +++ /dev/null @@ -1,210 +0,0 @@ -from internals.media import Media -from internals.processors import AudioProcessor,VideoProcessor -from internals import utils -from internals.db import TinyDBWrapper -import fire - - -utils.PathConfig.initFolders() -utils.createDBFile(utils.PathConfig.dbDir, utils.PathConfig.dbFile) -utils.printPolymath() - -db = TinyDBWrapper(utils.PathConfig.dbFile) - -def splitStems(cleanedFile:str, stemsOutputDir:str = str(utils.PathConfig.stemsDir)) -> None: - # check if audio is clean - print("splitting stems") - AudioProcessor.split_stems(cleanedFile, stemsOutputDir) - -def addSong(songPath: str, ss: bool = False) -> None: - """ - Overview - -------- - Process a single song from local hard drive,\nthen add it to the database - - - Parameters - ---------- - songPath : str - Path to song to be added - - Returns - ------- - None - - """ - - # check if song exists and is a valid file - songPath = utils.strictFile( - songPath, - lambda: print( - f"The path you specified is not a valid file path:\n\t{songPath}" - ), - ).allowedExtensions([".mp3", ".wav"]) - - # generate song ID - # The id will look like this: "song_name_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6q7r8s9t0u1v2w3x4y5z" - songID = Media.generateID(songPath.path.replace(" ", "_")) - print(f"Song ID: {songID}") - - - def upsert() -> str: - cleanedFile, features, frequencyFrames = db.upsertSong( - songPath.path, - songID, - str(utils.PathConfig.processed), - str(utils.PathConfig.frequencyFramesOutDir), - ) - return cleanedFile - - - # add song to db if not already there - if not db.idExists(songID): - cleanedFile = upsert() - if ss: - splitStems(cleanedFile, utils.PathConfig().stemsDir) - - # if song is already in db, ask if user wants to overwrite - else: - ii = input( - f""" - {songPath.pathObj.stem} is already in the database with the following ID: {songID} - Do you want to overwrite it? (y/n): """ - ) - - # if user wants to overwrite, update the song - if ii.lower() == "y": - cleanedFile = upsert() - if ss: - splitStems(cleanedFile, str(utils.PathConfig.stemsDir)) - # if user doesn't want to overwrite, exit - else: - print("Goodbye") - exit() - -def addVideo(youtubeUrl: str, ss: bool = False) -> None: - """ - Overview - -------- - Extract the audio from a SINGLE youtube video and add it to the database\n - Will not accept a playlist url, only a single video url - - Parameters - ---------- - youtubeUrl : str - The url of the youtube video to be added - - ss : bool, optional - Whether or not to split the stems, by default False - - Returns - ------- - None - - """ - if not VideoProcessor.is_youtube_url(youtubeUrl): - print(f"The url you entered is not a youtube url: {youtubeUrl}") - return - - if VideoProcessor.is_playlist(youtubeUrl): - print( - f"""The url you entered is a playlist url:\n\t{youtubeUrl} - \nPlease enter a video url instead - \nUse the 'addPlaylist' command to add a playlist""" - ) - return - - """ - Begin processing the video - """ - info = VideoProcessor.get_video_info_filtered(youtubeUrl) - - # The id will look like this: "Ciara - Da Girls [Official Video]_M2z-RZR0P3Y" - id = info["title"].replace(" ", "_") + "_" + info["id"] - - def upsert() -> str: - mp3 = VideoProcessor.download_audio( - youtubeUrl, str(utils.PathConfig.ytdl_content), format="mp3" - ) - - cleanedFile, features, frequencyFrames = db.upsertSong( - mp3, - id, - str(utils.PathConfig.processed), - str(utils.PathConfig.frequencyFramesOutDir), - ) - return cleanedFile - - - if not db.idExists(id): - # add song to db, split stems if specified and seperate frequency frames into their own text file - cleanedFile = upsert() - - if ss: - splitStems(cleanedFile, str(utils.PathConfig.stemsDir)) - else: - # Let user know that the song is already in the database - # Ask if they want to overwrite it - ii = input( - f""" - {info['title']} is already in the database with the following ID: {id} - Do you want to overwrite it? (y/n): """ - ) - - # if user wants to overwrite, update the song - if ii.lower() == "y": - cleanedFile = upsert() - - if ss: - splitStems(cleanedFile, str(utils.PathConfig.stemsDir)) - # if user doesn't want to overwrite, exit - else: - print("Goodbye") - exit() - -def allSongs() -> None: - """ """ - return db.tdb.all() - -# def rmSong(songID: str) -> None: -# """ """ -# pass - - -# # def addPlaylist(): -> None: - -# # def addSongs() -> None: -# # ''' -# # process one or more songs -# # ''' -# # pass - - -# # def addVideos() -> None: -# # ''' -# # Process one or more videos -# # ''' -# # pass - -# # def audioToMidi(audioPath:str) -> None: -# # ''' - -# # ''' -# # pass - -# # def search(query:str) -> None: -# # ''' - -# # ''' -# # pass - -if __name__ == "__main__": - fire.Fire( - { - "addSong": addSong, - "addVideo": addVideo, - "all": allSongs, - "splitStems": splitStems, - 'mp32wav': AudioProcessor.mp3ToWav, - } - ) diff --git a/internals/__init__.py b/internals/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/internals/db.py b/internals/db.py deleted file mode 100644 index 94bcd6e..0000000 --- a/internals/db.py +++ /dev/null @@ -1,101 +0,0 @@ -from tinydb import TinyDB, Query -from pathlib import Path -from .processors import AudioProcessor -from .utils import writeFrequencyFramesToFile -from dataclasses import dataclass - - -@dataclass -class TinyDBWrapper: - pathToDb: str - - def __post_init__(self): - self.pathToDb = Path(self.pathToDb) - if not self.pathToDb.exists(): - self.pathToDb.touch() - self.tdb = TinyDB(self.pathToDb) - - def idExists(self, id: str) -> bool: - """ - Overview - --------- - Check if a song ID exists in the database - - Parameters - ---------- - id : str - ID of song - - Returns - ------- - bool - True if song exists, False if not - - """ - return bool(self.tdb.search(Query().id == id)) - - - def upsertSong( - self, - songPath: str, - songID: str, - cleanedAudioOutputPath: str, - frequencyFramesOutputDir: str, - separateFrequencyFrames: bool = True, - #update: bool = False, - ) -> tuple[str, dict[str, str], list[list[float]]]: - """ - Overview - -------- - This function grabs the cleaned file, features, and frequency frames,\n - then writes the frequency frames to a text file - and inserts the song into the database - - If update is True, then the song will be updated if it already exists - - Parameters - ---------- - songPath : str - Path to the song to be added - - songID : str - ID of the song to be added - - splitStems : bool, optional - Whether to split the stems or not, by default False - - Returns - ------- - cleanedFile: str - Path to the cleaned file - features: dict[str, str] - Dictionary of features - frequencyFrames: list[list[float]] - List of frequency frames - """ - cleanedFile, features, frequencyFrames = AudioProcessor.processSong( - songPath, songID, cleanedAudioOutputPath, separateFrequencyFrames=True - ) - - data = { - "id": songID, - "songName": Path(songPath).stem, - "pathToFile": cleanedFile, - - # Convert the features to strings - # then add the frequency frames path with the pipe operator - "features": {k: str(v) for (k, v) in features.items()} - | { - "frequencyFramesPath": writeFrequencyFramesToFile( - songID, frequencyFrames, frequencyFramesOutputDir - ) - } - if separateFrequencyFrames - else {"frequencyFrames": frequencyFrames}, - } - - - self.tdb.upsert(data, Query().id == songID) - print(f"Song in db: {songPath}") - return cleanedFile, features, frequencyFrames - diff --git a/internals/media.py b/internals/media.py deleted file mode 100644 index 720261c..0000000 --- a/internals/media.py +++ /dev/null @@ -1,43 +0,0 @@ -from dataclasses import dataclass -import hashlib -from pathlib import Path - -@dataclass -class Media: - id: str - name: str - - def generateID(mediaPath: str) -> str: - ''' - Overview - --------- - - Creates a unique ID for a media file By hashing the file stem - String should look like: "songName_1234567890abcdef1234567890abcdef" - - Parameter - --------- - mediaPath : str - Path to media file - - Returns - ------- - str: - return f"{name}_{hashStr}" - should look like: "songName_1234567890abcdef1234567890abcdef" - - - ''' - name = Path(mediaPath).stem - hashStr = hashlib.sha256(mediaPath.encode()).hexdigest() - return f"{name}_{hashStr}" - -# @dataclass -# class Video(Media): -# url: str -# video_features: List = field(default_factory=lambda: []) -# audio_features: List = field(default_factory=lambda: []) - -# @dataclass -# class Audio(Media): -# path: str \ No newline at end of file diff --git a/internals/processors.py b/internals/processors.py deleted file mode 100644 index d713c8e..0000000 --- a/internals/processors.py +++ /dev/null @@ -1,917 +0,0 @@ -import os -import sys -import subprocess -import shutil -from math import log2, pow -import numpy as np -import librosa -import crepe -import soundfile as sf -import pyrubberband as pyrb -import re - -# from yt_dlp import YoutubeDL -from sf_segmenter.segmenter import Segmenter - -# import tensorflow as tf -# from basic_pitch import ICASSP_2022_MODEL_PATH - -# from basic_pitch.inference import predict -from dataclasses import dataclass -from pathlib import Path - -# field -# from typing import Any, List -# from abc import ABCMeta, abstractmethod -from yt_dlp import YoutubeDL - - -@dataclass -class VideoProcessor: - """ - Handles video processing - """ - - def audio_extract(vidobj, file): - print("audio_extract", file) - command = ( - "ffmpeg -hide_banner -loglevel panic -i " - + file - + " -ab 160k -ac 2 -ar 44100 -vn -y " - + vidobj.audio - ) - subprocess.call(command, shell=True) - return vidobj.audio - - def is_youtube_url(url: str) -> bool: - if "youtube.com/" in url: - return True - if "youtu.be/" in url: - return True - return False - - def get_url_type(url: str) -> str: - return ( - 1 - if "youtube.com/watch?v=" in url - else 2 - if "youtu.be/" in url - else 3 - if "youtube.com/playlist" - else 0 - ) - - def download_video( - url: str, - outdir: str, - format: str = "mp4", - ): - if not Path(outdir).exists(): - raise Exception( - f"The output directory you supplied does not exist \n \n outdir: {outdir} \n \n url: {url} \n \n" - ) - - if not Path(outdir).is_dir(): - raise Exception( - f"The output directory you supplied is not a directory \n \n outdir: {outdir} \n \n url: {url} \n \n" - ) - - ydl_opts = { - "outtmpl": outdir, - "format": "bestvideo[ext=mp4]+bestaudio[ext=m4a]/bestvideo+bestaudio/best--merge-output-format mp4", - } - with YoutubeDL(ydl_opts) as ydl: - ydl.download(url) - # return Path(outdir) / - - def download_audio( - url: str, - outdir: str, - format: str = "mp3", - ) -> str: - ''' - Overview - -------- - Download audio from a youtube url - - Parameters - ---------- - url : str - outdir : str - format : str - - Returns - ------- - finalPath : str - Path to the downloaded audio file - - ''' - - # In case the format specifier has too many dots in it like "..mp3" - format = format.lower().replace(".", "") - - if not Path(outdir).is_dir(): - raise Exception( - f"The output directory you supplied is not a directory \n \n outdir: {outdir} \n \n url: {url} \n \n" - ) - - if not isinstance(format, str): - raise Exception( - f"The format you supplied is not a string \n \n format: {format} \n \n url: {url} \n \n" - ) - if format not in ["mp3", "wav"]: - raise Exception( - f"The format you supplied is not a valid format \n \n format: {format} \n \n url: {url} \n \n" - ) - - if not isinstance(outdir, str): - raise Exception( - f"The outdir you supplied is not a string \n \n outdir: {outdir} \n \n url: {url} \n \n" - ) - - title = VideoProcessor.get_video_info_filtered(url)["title"] - - finalPath = str(Path(outdir) / str(title + "." + format)) - - ydl_opts = { - "outtmpl": str(Path(outdir) / "%(title)s.%(ext)s"), - "format": "bestaudio/best", - "postprocessors": [ - { - "key": "FFmpegExtractAudio", - "preferredcodec": format, - "preferredquality": "192", - } - ], - } - with YoutubeDL(ydl_opts) as ydl: - ydl.download(url) - - - - return finalPath - - def get_video_info_full(url: str) -> dict: - """ - returns the full dictionary of video info - """ - if not VideoProcessor.is_youtube_url(url): - raise Exception( - f"The url you supplied is not a youtube url \n \n url: {url} \n \n" - ) - - return YoutubeDL().extract_info(url, download=False) - - def get_video_info_filtered(url: str) -> dict: - """ - Overview - -------- - Grabbing the full dictionary of video info is a bit too much,\nso this function filters out the info we want. - - - Returns - -------- - dict: - A filtered dictionary of video info\n - wanted_keys = ( - "title", - "id", - "url", - "thumbnail", - "duration", - "description", - "resolution", - "tags", - "fps", - "playlist_index", - "playlist", - ) - - """ - if not VideoProcessor.is_youtube_url(url): - raise Exception( - f"The url you supplied is not a youtube url \n \n url: {url} \n \n" - ) - - dictfilt = lambda x, y: dict([(i, x[i]) for i in x if i in set(y)]) - wanted_keys = ( - "title", - "id", - "url", - "thumbnail", - "duration", - "description", - "resolution", - "tags", - "fps", - "playlist_index", - "playlist", - ) - return dictfilt(YoutubeDL().extract_info(url, download=False), wanted_keys) - - def get_audio_from_video(videoPath: str, audioOutPath: str) -> str: - """ - Extracts audio from video file - - and returns the path to the audio file - """ - command = ( - "ffmpeg -hide_banner -loglevel panic -i " - + videoPath - + " -ab 160k -ac 2 -ar 44100 -vn -y " - + audioOutPath - ) - subprocess.call(command, shell=True) - return audioOutPath - - def extract_video_id(url:str): - """ - Extracts the video id from a YouTube URL. - """ - if VideoProcessor.get_url_type(url) == 1: - regex = r"watch\?v=(\S+)" - match = re.search(regex, url) - if match: - return match.group(1).split("&")[0] - else: - return None - elif VideoProcessor.get_url_type(url) == 2: - return url.split("be/")[1].split("?")[0] - elif VideoProcessor.get_url_type(url) == 3: - return None - else: - raise Exception(f"Unknown URL type \n \n url: {url} \n \n") - - def is_playlist(url:str) -> bool: - return True if VideoProcessor.extract_playlist_id(url) != None else False - - def extract_playlist_id(url:str): - """ - Extracts the playlist id from a YouTube URL. - """ - - if VideoProcessor.get_url_type(url) == 1: - regex = r"list=(\S+)" - match = re.search(regex, url) - if match: - return match.group(1).split("&")[0] - else: - return None - elif VideoProcessor.get_url_type(url) == 2: - try: - return url.split("list=")[1] - except: - return None - elif VideoProcessor.get_url_type(url) == 3: - return url.split("playlist?list=")[1] - else: - raise Exception(f"Unknown URL type \n \n url: {url} \n \n") - - -@dataclass -class AudioProcessor: - - """ - Handles all audio processing - """ - - neg80point8db: float = 0.00009120108393559096 - bit_depth: int = 16 - default_silence_threshold: float = (neg80point8db * (2 ** (bit_depth - 1))) * 4 - - def resampleAudio(audioArray, sampleRate, targetSampleRate=44100) -> np.ndarray: - return librosa.resample( - audioArray, orig_sr=sampleRate, target_sr=targetSampleRate - ) - - def getAudioData(songPath: str, sr=None, mono=False) -> tuple[np.ndarray, int]: - """ - y: - Is a numpy array that contains the audio signal. - Each value in the array represents the amplitude of the audio signal at a specific point in time. - - sr: - Is the sampling rate of the audio signal. - Specifies the number of samples per second in the audio signal. - """ - y, sr = librosa.load(path=songPath, sr=sr, mono=mono) - return y, sr - - @staticmethod - def mp3ToWav(songPath: str, outputDir: str, songID: str) -> str: - import wave - """ - Convert mp3 to wav and return the path to the wav file - """ - - # if this is not an mp3 file raise an exception - if not songPath.endswith(".mp3"): - raise Exception(f"File is not an mp3: {songPath}") - - # if outPath does not exist raise an exception - if not Path(outputDir).exists(): - raise Exception(f"Outpath does not exist: {outputDir}") - - songName = Path(songPath).name - - print("Converting mp3 to wav: ", songName) - - songArray, sampleRate = AudioProcessor.getAudioData(songPath) - - # resample to 44100k if required - if sampleRate != 44100: - print("converting audio file to 44100:", songName) - songArray = AudioProcessor.resampleAudio(songArray, sampleRate, 44100) - - # If the file is stereo, convert to mono by averaging the left and right channels - if songArray.ndim > 1: - songArray = np.mean(songArray, axis=0) - """ - write the wav file to the library folder - """ - - finalPath = str(Path(outputDir) / str(songID + ".wav")) - sf.write(finalPath, np.ravel(songArray), 44100) - return finalPath - - - def cleanAudio(songPath: str, songID: str, outputDir: str) -> str: - """ - Overview - --------- - Create a useable WAV file to later process - - - Parameter - --------- - songPath : str - path to the song - songID : str - unique ID for the song - outputDir : str - path to the output directory - - Returns - ------- - str - path to the cleaned audio file - - - """ - if not Path(outputDir).exists(): - raise Exception(f"Outpath does not exist: {outputDir}") - - songName = Path(songPath).name - - print("Cleaning Audio :", songName) - - if songName.endswith(".mp3"): - cleanedFile = AudioProcessor.mp3ToWav(songPath, outputDir, songID) - - # check if is wav and copy it to local folder - elif songName.endswith(".wav"): - audioArray, sampleRate = AudioProcessor.getAudioData(songPath) - - finalPath = str( - Path(songPath).stem + "_" + songID + ".wav" - ) # str(Path(outputDir) / "test.wav") # - - if sampleRate != 44100: - print("Sample rate is not 44100:", sampleRate) - print("Converting wav file to 44100:", songName) - data = AudioProcessor.resampleAudio(audioArray, sampleRate, 44100) - sf.write(finalPath, data, 44100) - else: - shutil.copy2(songPath, finalPath) - - cleanedFile = finalPath - - return cleanedFile - - ################## AUDIO FEATURES ################## - - def root_mean_square(data): - return float(np.sqrt(np.mean(np.square(data)))) - - def loudness_of(data): - return AudioProcessor.root_mean_square(data) - - def normalized(audioBuffer: list) -> list: - """ - Given an audio buffer, return it with the loudest value scaled to 1.0 - - """ - return audioBuffer.astype(np.float32) / float(np.amax(np.abs(audioBuffer))) - - def start_of(list, threshold=default_silence_threshold, samples_before=1): - """ - takes three arguments: - a list of audio samples, - a threshold value for silence detection (defaulting to default_silence_threshold if not provided), - and a number of samples to look back before the detected start of audio (defaulting to 1 if not provided). - - The function returns the index of the start of audio in the input list. - """ - if int(threshold) != threshold: - threshold = threshold * float(2 ** (AudioProcessor.bit_depth - 1)) - index = np.argmax(np.absolute(list) > threshold) - if index > (samples_before - 1): - return index - samples_before - else: - return 0 - - def end_of(list, threshold=default_silence_threshold, samples_after=1): - if int(threshold) != threshold: - threshold = threshold * float(2 ** (AudioProcessor.bit_depth - 1)) - rev_index = np.argmax(np.flipud(np.absolute(list)) > threshold) - if rev_index > (samples_after - 1): - return len(list) - (rev_index - samples_after) - else: - return len(list) - - def trim_data( - data, - start_threshold=default_silence_threshold, - end_threshold=default_silence_threshold, - ): - start = AudioProcessor.start_of(data, start_threshold) - end = AudioProcessor.end_of(data, end_threshold) - - return data[start:end] - - def load_and_trim(file): - y, rate = librosa.load(file, mono=True) - y = AudioProcessor.normalized(y) - trimmed = AudioProcessor.trim_data(y) - return trimmed, rate - - def get_loudness(file): - loudness = -1 - try: - audio, rate = AudioProcessor.load_and_trim(file) - loudness = AudioProcessor.loudness_of(audio) - except Exception as e: - sys.stderr.write(f"Failed to run on {file}: {e}\n") - return loudness - - def get_volume(file): - volume = -1 - avg_volume = -1 - try: - audio, rate = AudioProcessor.load_and_trim(file) - volume = librosa.feature.rms(y=audio)[0] - avg_volume = np.mean(volume) - loudness = AudioProcessor.loudness_of(audio) - except Exception as e: - sys.stderr.write(f"Failed to get Volume and Loudness on {file}: {e}\n") - return volume, avg_volume, loudness - - def get_key(freq): - A4 = 440 - C0 = A4 * pow(2, -4.75) - name = ["C", "C#", "D", "D#", "E", "F", "F#", "G", "G#", "A", "A#", "B"] - h = round(12 * log2(freq / C0)) - octave = h // 12 - n = h % 12 - return name[n] + str(octave) - - def get_average_pitch(pitch): - pitches = [] - confidences_thresh = 0.8 - i = 0 - while i < len(pitch): - if pitch[i][2] > confidences_thresh: - pitches.append(pitch[i][1]) - i += 1 - if len(pitches) > 0: - average_frequency = np.array(pitches).mean() - average_key = AudioProcessor.get_key(average_frequency) - else: - average_frequency = 0 - average_key = "A0" - return average_frequency, average_key - - def get_intensity(y, sr, beats): - # Beat-synchronous Loudness - Intensity - CQT = librosa.cqt(y, sr=sr, fmin=librosa.note_to_hz("A1")) - freqs = librosa.cqt_frequencies(CQT.shape[0], fmin=librosa.note_to_hz("A1")) - perceptual_CQT = librosa.perceptual_weighting(CQT**2, freqs, ref=np.max) - CQT_sync = librosa.util.sync(perceptual_CQT, beats, aggregate=np.median) - return CQT_sync - - def get_pitch(y_harmonic, sr, beats): - # Chromagram - C = librosa.feature.chroma_cqt(y=y_harmonic, sr=sr) - # Beat-synchronous Chroma - Pitch - C_sync = librosa.util.sync(C, beats, aggregate=np.median) - return C_sync - - def get_timbre(y, sr, beats): - # Mel spectogram - S = librosa.feature.melspectrogram(y, sr=sr, n_mels=128) - log_S = librosa.power_to_db(S, ref=np.max) - # MFCC - Timbre - mfcc = librosa.feature.mfcc(S=log_S, n_mfcc=13) - delta_mfcc = librosa.feature.delta(mfcc) - delta2_mfcc = librosa.feature.delta(mfcc, order=2) - M = np.vstack([mfcc, delta_mfcc, delta2_mfcc]) - # Beat-synchronous MFCC - Timbre - M_sync = librosa.util.sync(M, beats) - return M_sync - - def get_segments(audio_file:str): - segmenter = Segmenter() - boundaries, labs = segmenter.proc_audio(audio_file) - return boundaries, labs - - def get_pitch_dnn(audio_file:str): - # DNN Pitch Detection - pitch = [] - audio, sr = librosa.load(audio_file) - time, frequency, confidence, activation = crepe.predict( - audio, - sr, - model_capacity="tiny", - viterbi=True, - center=True, - step_size=10, - verbose=1, - ) # tiny|small|medium|large|full - i = 0 - while i < len(time): - pitch.append([time[i], frequency[i], confidence[i]]) - i += 1 - return pitch - - def stemsplit(destination:str, demucsmodel:str): - subprocess.run(["demucs", destination, "-n", demucsmodel]) # '--mp3' - - def extractMIDI(audio_paths, output_dir:str): - from basic_pitch.inference import predict_and_save - - print("- Extract Midi") - save_midi = True - sonify_midi = False - save_model_outputs = False - save_notes = False - - predict_and_save( - audio_path_list=audio_paths, - output_directory=output_dir, - save_midi=save_midi, - sonify_midi=sonify_midi, - save_model_outputs=save_model_outputs, - save_notes=save_notes, - ) - - def quantizeAudio( - vid, bpm=120, keepOriginalBpm=False, pitchShiftFirst=False, extractMidi=False - ): - print( - "Quantize Audio: Target BPM", - bpm, - "-- id:", - vid.id, - "bpm:", - round(vid.audio_features["tempo"], 2), - "frequency:", - round(vid.audio_features["frequency"], 2), - "key:", - vid.audio_features["key"], - "timbre:", - round(vid.audio_features["timbre"], 2), - "name:", - vid.name, - "keepOriginalBpm:", - keepOriginalBpm, - ) - - # load audio file - y, sr = librosa.load(vid.audio, sr=None) - - # Keep Original Song BPM - if keepOriginalBpm: - bpm = float(vid.audio_features["tempo"]) - print("Keep original audio file BPM:", vid.audio_features["tempo"]) - # Pitch Shift audio file to desired BPM first - elif pitchShiftFirst: # WORK IN PROGRESS - print("Pitch Shifting audio to desired BPM", bpm) - # Desired tempo in bpm - original_tempo = vid.audio_features["tempo"] - speed_factor = bpm / original_tempo - # Resample the audio to adjust the sample rate accordingly - sr_stretched = int(sr / speed_factor) - y = librosa.resample( - y=y, orig_sr=sr, target_sr=sr_stretched - ) # , res_type='linear' - y = librosa.resample(y, orig_sr=sr, target_sr=44100) - - # extract beat - y_harmonic, y_percussive = librosa.effects.hpss(y) - tempo, beats = librosa.beat.beat_track( - sr=sr, - onset_envelope=librosa.onset.onset_strength(y=y_percussive, sr=sr), - trim=False, - ) - beat_frames = librosa.frames_to_samples(beats) - - # generate metronome - fixed_beat_times = [] - for i in range(len(beat_frames)): - fixed_beat_times.append(i * 120 / bpm) - fixed_beat_frames = librosa.time_to_samples(fixed_beat_times) - - # construct time map - time_map = [] - for i in range(len(beat_frames)): - new_member = (beat_frames[i], fixed_beat_frames[i]) - time_map.append(new_member) - - # add ending to time map - original_length = len(y + 1) - orig_end_diff = original_length - time_map[i][0] - new_ending = int(round(time_map[i][1] + orig_end_diff * (tempo / bpm))) - new_member = (original_length, new_ending) - time_map.append(new_member) - - # time strech audio - print("- Quantize Audio: source") - strechedaudio = pyrb.timemap_stretch(y, sr, time_map) - - path_suffix = ( - f"Key {vid.audio_features['key']} - " - f"Freq {round(vid.audio_features['frequency'], 2)} - " - f"Timbre {round(vid.audio_features['timbre'], 2)} - " - f"BPM Original {int(vid.audio_features['tempo'])} - " - f"BPM {bpm}" - ) - path_prefix = f"{vid.id} - {vid.name}" - - audiofilepaths = [] - # save audio to disk - path = os.path.join( - os.getcwd(), "processed", path_prefix + " - " + path_suffix + ".wav" - ) - sf.write(path, strechedaudio, sr) - audiofilepaths.append(path) - - # process stems - stems = ["bass", "drums", "guitar", "other", "piano", "vocals"] - for stem in stems: - path = os.path.join( - os.getcwd(), "separated", "htdemucs_6s", vid.id, stem + ".wav" - ) - print(f"- Quantize Audio: {stem}") - y, sr = librosa.load(path, sr=None) - strechedaudio = pyrb.timemap_stretch(y, sr, time_map) - # save stems to disk - path = os.path.join( - os.getcwd(), - "processed", - path_prefix + " - Stem " + stem + " - " + path_suffix + ".wav", - ) - sf.write(path, strechedaudio, sr) - audiofilepaths.append(path) - - # metronome click (optinal) - click = False - if click: - clicks_audio = librosa.clicks(times=fixed_beat_times, sr=sr) - print(len(clicks_audio), len(strechedaudio)) - clicks_audio = clicks_audio[: len(strechedaudio)] - path = os.path.join(os.getcwd(), "processed", vid.id + "- click.wav") - sf.write(path, clicks_audio, sr) - - if extractMidi: - output_dir = os.path.join(os.getcwd(), "processed") - AudioProcessor.extractMIDI(audiofilepaths, output_dir) - - def get_audio_features( - songPath: str, songID: str, extractMidi: bool = False - ) -> dict: - print( - "------------------------------ get_audio_features:", - songID, - "------------------------------", - ) - print("1/8 segementation") - segments_boundaries, segments_labels = AudioProcessor.get_segments(songPath) - - print("2/8 pitch tracking") - frequency_frames = AudioProcessor.get_pitch_dnn(songPath) - average_frequency, average_key = AudioProcessor.get_average_pitch( - frequency_frames - ) - - print("3/8 load sample") - y, sr = librosa.load(songPath, sr=None) - song_duration = librosa.get_duration(y=y, sr=sr) - - print("4/8 sample separation") - y_harmonic, y_percussive = librosa.effects.hpss(y) - - print("5/8 beat tracking") - tempo, beats = librosa.beat.beat_track( - sr=sr, - onset_envelope=librosa.onset.onset_strength(y=y_percussive, sr=sr), - trim=False, - ) - - print("6/8 feature extraction") - CQT_sync = AudioProcessor.get_intensity(y, sr, beats) - C_sync = AudioProcessor.get_pitch(y_harmonic, sr, beats) - M_sync = AudioProcessor.get_timbre(y, sr, beats) - volume, avg_volume, loudness = AudioProcessor.get_volume(songPath) - - print("7/8 feature aggregation") - intensity_frames = np.matrix(CQT_sync).getT() - pitch_frames = np.matrix(C_sync).getT() - timbre_frames = np.matrix(M_sync).getT() - - # print('8/8 split stems') - # stemsplit(songPath, 'htdemucs_6s') - - if extractMidi: - audiofilepaths = [] - stems = ["bass", "drums", "guitar", "other", "piano", "vocals"] - for stem in stems: - path = os.path.join( - os.getcwd(), "separated", "htdemucs_6s", songID, stem + ".wav" - ) - audiofilepaths.append(path) - output_dir = os.path.join( - os.getcwd(), "separated", "htdemucs_6s", songID - ) - AudioProcessor.extractMIDI(audiofilepaths, output_dir) - - audio_features = { - "id": songID, - "tempo": tempo, - "duration(sec)": song_duration, - "duration(mins)": song_duration / 60, - "timbre": np.mean(timbre_frames), - "timbre_frames": timbre_frames, - "pitch": np.mean(pitch_frames), - "pitch_frames": pitch_frames, - "intensity": np.mean(intensity_frames), - "intensity_frames": intensity_frames, - "volume": volume, - "avg_volume": avg_volume, - "loudness": loudness, - "beats": librosa.frames_to_time(beats, sr=sr), - "segments_boundaries": segments_boundaries, - "segments_labels": segments_labels, - "frequency_frames": frequency_frames, - "frequency": average_frequency, - "key": average_key, - } - return audio_features - - def get_audio_features( - songPath: str, - songID: str, - extractMidi: bool = False, - separateFrequencyFrames: bool = False, - ) -> dict | tuple[dict, list]: - """ - Extracts audio features from a song and returns them as a dictionary. - - If separateFrequencyFrames is set to True, the function will return a tuple - containing the audio features dictionary and a list of frequency frames. - """ - print( - "------------------------------ get_audio_features:", - songID, - "------------------------------", - ) - - print("1/8 segementation") - segments_boundaries, segments_labels = AudioProcessor.get_segments(songPath) - - print("2/8 pitch tracking") - frequency_frames = AudioProcessor.get_pitch_dnn(songPath) - average_frequency, average_key = AudioProcessor.get_average_pitch( - frequency_frames - ) - - print("3/8 load sample") - y, sr = librosa.load(songPath, sr=None) - song_duration = librosa.get_duration(y=y, sr=sr) - - print("4/8 sample separation") - y_harmonic, y_percussive = librosa.effects.hpss(y) - - print("5/8 beat tracking") - tempo, beats = librosa.beat.beat_track( - sr=sr, - onset_envelope=librosa.onset.onset_strength(y=y_percussive, sr=sr), - trim=False, - ) - - print("6/8 feature extraction") - CQT_sync = AudioProcessor.get_intensity(y, sr, beats) - C_sync = AudioProcessor.get_pitch(y_harmonic, sr, beats) - M_sync = AudioProcessor.get_timbre(y, sr, beats) - volume, avg_volume, loudness = AudioProcessor.get_volume(songPath) - - print("7/8 feature aggregation") - intensity_frames = np.matrix(CQT_sync).getT() - pitch_frames = np.matrix(C_sync).getT() - timbre_frames = np.matrix(M_sync).getT() - - if extractMidi: - audiofilepaths = [] - stems = ["bass", "drums", "guitar", "other", "piano", "vocals"] - for stem in stems: - path = os.path.join( - os.getcwd(), "separated", "htdemucs_6s", songID, stem + ".wav" - ) - audiofilepaths.append(path) - output_dir = os.path.join(os.getcwd(), "separated", "htdemucs_6s", songID) - AudioProcessor.extractMIDI(audiofilepaths, output_dir) - - audio_features = { - "id": songID, - "tempo": tempo, - "duration": song_duration, - "timbre": np.mean(timbre_frames), - "timbre_frames": timbre_frames, - "pitch": np.mean(pitch_frames), - "pitch_frames": pitch_frames, - "intensity": np.mean(intensity_frames), - "intensity_frames": intensity_frames, - "volume": volume, - "avg_volume": avg_volume, - "loudness": loudness, - "beats": librosa.frames_to_time(beats, sr=sr), - "segments_boundaries": segments_boundaries, - "segments_labels": segments_labels, - # "frequency_frames":frequency_frames, - "frequency": average_frequency, - "key": average_key, - } - return ( - audio_features, - frequency_frames - if separateFrequencyFrames - else audio_features["frequency_frames"].append(frequency_frames), - ) - - @staticmethod - def split_stems(audioFilePath:str, destination:str, demucsmodel:str = "htdemucs_6s"): - ''' - Calls the demucs library to split the stems of a song - ''' - - #destination = str(destination) - - subprocess.run(["demucs", str(audioFilePath), "-o", str(destination), "-n", demucsmodel]) # '--mp3' - - @staticmethod - def processSong( - songPath: str, - songID: str, - cleanedAudioOutputPath: str, - separateFrequencyFrames: bool = False - ) -> tuple[str, dict] | tuple[str, dict, list]: - """ - - Overview: - -------- - This is the main entry point to process a song. - - This function cleans the audio file, converts it to WAV - and places the WAV file in the processed folder - - Then it grabs the audio features and returns them - - Parameters: - --------- - songPath: str - Path to the song - songID: str - ID of the song - separateFrequencyFrames: bool - If set to True, the function will return a tuple containing the audio features - dictionary and a list of frequency frames. - - - Returns: - -------- - tuple[str, dict] | tuple[str, dict, list]: - If separateFrequencyFrames is set to True, the function will return a tuple - - - """ - # Path to the cleaned file - cleanedFile = AudioProcessor.cleanAudio(songPath, songID, cleanedAudioOutputPath) # PathConfig.processed - - if separateFrequencyFrames: - features, frequencyFrames = AudioProcessor.get_audio_features( - cleanedFile, songID, separateFrequencyFrames=True - ) - return cleanedFile, features, frequencyFrames - - # get features as a dict - features = AudioProcessor.get_audio_features(cleanedFile, songID) - return cleanedFile, features diff --git a/internals/utils.py b/internals/utils.py deleted file mode 100644 index f8d1dd6..0000000 --- a/internals/utils.py +++ /dev/null @@ -1,191 +0,0 @@ -from pathlib import Path -from dataclasses import dataclass - - - -@dataclass -class strictFile: - path: str - ifErr: callable = None - - def __post_init__(self): - if not Path(self.path).is_file(): - if self.ifErr: - self.ifErr() - else: - raise Exception(f"File not found: {self.path}") - self.pathObj = Path(self.path) - - def allowedExtensions(self, allowedExtensionsList: list) -> object: - ''' - If the file extension is not in the list of allowed extensions\n - An exception will be raised - ''' - if not allowedExtensionsList: - return self - - allowedExtensionsList = [item.lower() for item in allowedExtensionsList] - - if self.pathObj.suffix.lower() not in allowedExtensionsList: - raise Exception(f"File extension not allowed: {self.pathObj.suffix.lower()}") - return self - - - -@dataclass -class PathConfig: - ''' - PathConfig is a dataclass that contains all the paths used in the project\n - All paths are relative to the root of the project\n - And are stored as Path objects - - Accessing the paths like this will return a Path object: - PathConfig.dbFile - - Accessing the paths like this will return a string: - PathConfig().dbFile - - ''' - - thisFile: Path = Path(__file__) - - - # Directories - internalsDir: Path = thisFile.parent - contentDir: Path = internalsDir.parent / "content" - - ''' - /content - /ytdl_content - /processed - /stems - /htdemucs_6s - /db - /frequencyFrames - ''' - ytdl_content: Path = contentDir / "ytdl_content" - processed: Path = contentDir / "processed" - stemsDir: Path = contentDir / "stems" - #demucs: Path = separated / "htdemucs_6s" - dbDir: Path = contentDir / "db" - frequencyFramesOutDir: Path = dbDir / "frequencyFrames" - - # Files - dbFile: Path = dbDir / "db.json" - - - - def __getattribute__(self,item): - """ - PathConfig().attrib will return a str rather than a Path Object - PathConfig.attrib will return a path Object - """ - return eval(f"str(PathConfig.{item})") - - def checkAllPathsExist(): - """ - If any of the paths in PathConfig are bad - an exception will be raised - """ - for k, v in PathConfig.__annotations__.items(): - if not eval(f"PathConfig.{k}.exists()"): - raise Exception(f'Path at "{k}" DOES NOT EXIST') - - def initFolder(folder: Path): - if not folder.exists(): - try: - folder.mkdir() - print(f"Created folder at:\n\t{folder}") - except Exception as e: - print(e, f"Failed to create {folder} folder \n Exiting...") - exit(1) - - def initFolders(): - ''' - Overview - -------- - - Create the following directories if they don't already exist: - - ytdl_videos - - db - - frequencyFramesOutDir - - processed - - separated - - demucs - - ''' - list( - map( - PathConfig.initFolder, - [ - PathConfig.contentDir, - PathConfig.processed, - PathConfig.stemsDir, - PathConfig.dbDir, - PathConfig.frequencyFramesOutDir, - PathConfig.ytdl_content, - ] - ) - ) - -def printPolymath(): - print( - "---------------------------------------------------------------------------- " - ) - print( - "--------------------------------- POLYMATH --------------------------------- " - ) - print( - "---------------------------------------------------------------------------- " - ) - - -def createDBFile(dbDir:Path, dbFile:Path) -> None: - """ - Create db.json file if it doesn't already exist - - Parameters - ---------- - dbDir : Path - Path to the db directory - dbFile : Path - Path to the db.json file - """ - Path.mkdir(dbDir, exist_ok=True) - Path(dbFile).touch(exist_ok=True) - - -def writeFrequencyFramesToFile( - songID: str, - frequencyFrames: list, - frequencyFramesOutputDir:str - ) -> str: - """ - Overview - -------- - Write the frequency frames to a text file - - Parameters - ---------- - songID : str - Song ID - frequencyFrames : list - List of frequency frames - frequencyFramesOuputDir : str - Path to the frequency frames text file - - Returns - ------- - frequencyFramesPath : str - Path to the frequency frames text file - """ - # Path to the frequency frames file - frequencyFramesPath = Path(frequencyFramesOutputDir) / f"{songID}_FrequencyFrames.txt" - - # Write the frequency frames to a file - with open(frequencyFramesPath, "w") as f: - f.write(str(frequencyFrames)) - - return str(frequencyFramesPath) - - diff --git a/internals/old/polymath.py b/polymath.py similarity index 98% rename from internals/old/polymath.py rename to polymath.py index 99921ec..a586e5c 100644 --- a/internals/old/polymath.py +++ b/polymath.py @@ -152,13 +152,17 @@ def audio_process(vids, videos): if vid.endswith(".mp3"): # convert mp3 to wav and save it print('converting mp3 to wav:', vid) - y, sr = librosa.load(path=vid, sr=None, mono=False) + songArray, sr = librosa.load(path=vid, sr=None, mono=False) path = os.path.join(os.getcwd(), 'library', audioid+'.wav') # resample to 44100k if required if sr != 44100: print('converting audio file to 44100:', vid) - y = librosa.resample(y, orig_sr=sr, target_sr=44100) - sf.write(path, np.ravel(y), 44100) + songArray = librosa.resample(songArray, orig_sr=sr, target_sr=44100) + + if songArray.ndim > 1: + songArray = np.mean(songArray, axis=0) + + sf.write(path, np.ravel(songArray), 44100) vid = path # check if is wav and copy it to local folder diff --git a/requirements.txt b/requirements.txt index 8c50b32..c447f84 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,106 +1,14 @@ -absl-py==1.4.0 -antlr4-python3-runtime==4.9.3 -astunparse==1.6.3 -audioread==3.0.0 -basic-pitch==0.2.0 -Brotli==1.0.9 -cachetools==5.3.0 -certifi==2022.12.7 -cffi==1.15.1 -charset-normalizer==3.1.0 -cloudpickle==2.2.1 -colorama==0.4.6 -contourpy==1.0.7 crepe==0.0.13 -cycler==0.11.0 -Cython==0.29.34 -decorator==5.1.1 -demucs==4.0.0 -diffq==0.2.3 -dora-search==0.1.11 -einops==0.6.0 -filelock==3.11.0 -fire==0.5.0 -flatbuffers==1.12 -fonttools==4.39.3 -future==0.18.3 -gast==0.4.0 -google-auth==2.17.2 -google-auth-oauthlib==0.4.6 -google-pasta==0.2.0 -grpcio==1.53.0 -h5py==3.8.0 -hmmlearn==0.2.8 -idna==3.4 -imageio==2.27.0 -Jinja2==3.1.2 -joblib==1.2.0 -julius==0.2.7 -keras==2.9.0 -Keras-Preprocessing==1.1.2 -kiwisolver==1.4.4 -lameenc==1.4.2 -libclang==16.0.0 librosa==0.9.2 -llvmlite==0.39.1 -Markdown==3.4.3 -MarkupSafe==2.1.2 -matplotlib==3.7.1 -miditoolkit==0.1.16 -mido==1.2.10 -mir-eval==0.7 -mpmath==1.3.0 -mutagen==1.46.0 -networkx==3.1 -numba==0.56.4 -numpy==1.23.5 -oauthlib==3.2.2 -omegaconf==2.3.0 -openunmix==1.2.1 -opt-einsum==3.3.0 -packaging==23.0 -Pillow==9.5.0 -platformdirs==3.2.0 -pooch==1.7.0 -pretty-midi==0.2.10 -protobuf==3.19.6 -pyasn1==0.4.8 -pyasn1-modules==0.2.8 -pycparser==2.21 -pycryptodomex==3.17 -pyparsing==3.0.9 +numpy>=1.20 pyrubberband==0.3.0 -PySoundFile==0.9.0.post1 -python-dateutil==2.8.2 -PyYAML==6.0 -requests==2.28.2 -requests-oauthlib==1.3.1 -resampy==0.2.2 -retrying==1.3.4 -rsa==4.9 -scikit-learn==1.2.2 -scipy==1.10.1 -sf-segmenter==0.0.2 -six==1.16.0 +sf_segmenter==0.0.2 soundfile==0.11.0 -submitit==1.4.5 -sympy==1.11.1 -tensorboard==2.9.1 -tensorboard-data-server==0.6.1 -tensorboard-plugin-wit==1.8.1 -tensorflow==2.9.0 -tensorflow-estimator==2.9.0 -tensorflow-io-gcs-filesystem==0.31.0 -termcolor==2.2.0 -threadpoolctl==3.1.0 -tinydb==4.7.1 -torch==2.0.0 -torchaudio==2.0.1 -tqdm==4.65.0 -treetable==0.2.5 -typing_extensions==4.5.0 -urllib3==1.26.15 -websockets==11.0.1 -Werkzeug==2.2.3 -wrapt==1.15.0 -yt-dlp==2023.2.17 +yt_dlp==2023.02.17 +demucs==4.0.0 +basic-pitch==0.2.0 +matplotlib +tensorflow==2.9; sys_platform == 'windows' or platform_machine != 'arm64' +tensorflow-macos; sys_platform == 'darwin' and platform_machine == 'arm64' +tensorflow-metal; sys_platform == 'darwin' and platform_machine == 'arm64' +