diff --git a/content/CC1_CMS_activity.ipynb b/content/CC1_CMS_activity.ipynb index 4201ca3..e93943a 100644 --- a/content/CC1_CMS_activity.ipynb +++ b/content/CC1_CMS_activity.ipynb @@ -34,15 +34,23 @@ "outputs": [], "source": [ "# Installing some extra programs to help us (this may take a minute the first time this is run)\n", - "!pip -q install gdown==4.6.0\n", - "import gdown\n", - "\n", "import pandas as pd\n", "import numpy as np\n", "import matplotlib as mpl\n", "import matplotlib.pyplot as plt\n", - "import pyodide_http\n", - "pyodide_http.patch_all()\n" + "\n", + "\n", + "# run these fixes only if we're running on a JupyerLite / JupyterEverywhere platform\n", + "import sys\n", + "if (sys.platform == 'emscripten'):\n", + " import pyodide_http\n", + " from pyodide.http import pyfetch\n", + " import io\n", + " pyodide_http.patch_all()\n", + "\n", + "else:\n", + " !pip -q install gdown==4.6.0\n", + " import gdown" ] }, { @@ -54,11 +62,18 @@ }, "outputs": [], "source": [ - "# Load in the dimuon data set from Google Drive\n", - "muon_csv_id = '1UIgcmWP6Jzk2CX2aZqG9cSzR5vGBbQjk'\n", - "file_name = \"Muons.csv\"\n", - "gdown.download(id=muon_csv_id, output=file_name)\n", - "muons = pd.read_csv(file_name)\n" + "# Load in the dimuon data set from Google Drive (or GitHub if we're using JupyterLite)\n", + "# JupyterLite won't load the full 2015 dataset without crashing due to memory, so we're using the 2011 dataset instead\n", + "if (sys.platform == 'emscripten'):\n", + " # Load the 2011 dataset (500k rows)\n", + " url = \"https://raw.githubusercontent.com/QuarkNet-HEP/coding-camp/refs/heads/main/content/data/Double_Muon_Run2011A.csv\"\n", + " muons = pd.read_csv(url)\n", + "else:\n", + " # Load the full 2015 dataset (1M+ rows)\n", + " muon_csv_id = '1UIgcmWP6Jzk2CX2aZqG9cSzR5vGBbQjk'\n", + " file_name = \"Muons.csv\"\n", + " gdown.download(id=muon_csv_id, output=file_name)\n", + " muons = pd.read_csv(file_name)" ] }, { diff --git a/content/Elements.ipynb b/content/Elements.ipynb index bb56d5a..a4cd259 100644 --- a/content/Elements.ipynb +++ b/content/Elements.ipynb @@ -41,8 +41,12 @@ "%matplotlib inline\n", "import matplotlib.pyplot as plt\n", "pd.options.display.max_rows = 120\n", - "import pyodide_http\n", - "pyodide_http.patch_all()\n" + "\n", + "# run these fixes only if we're running on a JupyerLite / JupyterEverywhere platform\n", + "import sys\n", + "if (sys.platform == 'emscripten'):\n", + " import pyodide_http\n", + " pyodide_http.patch_all()\n" ] }, { diff --git a/content/Falcon_9_Rocket_Data.ipynb b/content/Falcon_9_Rocket_Data.ipynb index 473cfd1..3864932 100644 --- a/content/Falcon_9_Rocket_Data.ipynb +++ b/content/Falcon_9_Rocket_Data.ipynb @@ -27,8 +27,11 @@ "mpl.rcParams.update(mpl.rcParamsDefault)\n", "%matplotlib inline\n", "\n", - "import pyodide_http\n", - "pyodide_http.patch_all()\n", + "# run these fixes only if we're running on a JupyerLite / JupyterEverywhere platform\n", + "import sys\n", + "if (sys.platform == 'emscripten'):\n", + " import pyodide_http\n", + " pyodide_http.patch_all()\n", "\n", "\n", "# Set the graph size to be large\n", @@ -36,7 +39,7 @@ "#plt.rcParams['figure.dpi'] = 600\n", "\n", "#Importing the data set\n", - "data_url = \"https://raw.githubusercontent.com/Peter-Apps/Coding-in-MS-HS/master/Falcon%209%20Rocket%20Data.csv\"\n", + "data_url = \"https://raw.githubusercontent.com/QuarkNet-HEP/coding-camp/refs/heads/main/content/data/Falcon%209%20Rocket%20Data.csv\"\n", "data = pd.read_csv(data_url,on_bad_lines='skip')" ] }, diff --git a/content/basic_stats.ipynb b/content/basic_stats.ipynb index 0aa754b..277aa90 100644 --- a/content/basic_stats.ipynb +++ b/content/basic_stats.ipynb @@ -24,8 +24,12 @@ "import numpy as np\n", "import matplotlib as mpl\n", "import matplotlib.pyplot as plt\n", - "import pyodide_http\n", - "pyodide_http.patch_all()\n" + "\n", + "# run these fixes only if we're running on a JupyerLite / JupyterEverywhere platform\n", + "import sys\n", + "if (sys.platform == 'emscripten'):\n", + " import pyodide_http\n", + " pyodide_http.patch_all()\n" ] }, { @@ -36,7 +40,7 @@ "outputs": [], "source": [ "# read in a data file.\n", - "data = pd.read_csv('https://github.com/QuarkNet-HEP/coding-camp/raw/main/data/Double_Muon_Run2011A.csv')\n", + "data = pd.read_csv('https://raw.githubusercontent.com/QuarkNet-HEP/coding-camp/refs/heads/main/content/data/Double_Muon_Run2011A.csv')\n", "data.head()" ] }, @@ -168,6 +172,25 @@ "## Credits\n", "This notebook was designed by [Quarknet](https://quarknet.org/) Teaching and Learning Fellow [Adam LaMee](https://adamlamee.github.io/). The handy csv files were created from the CMS Run2011A primary datasets and converted from ROOT format by the masterful [Tom McCauley](https://github.com/tpmccauley). More can be found on the [CERN OpenData](http://opendata.cern.ch/?ln=en) site, like [here](http://opendata.cern.ch/record/545). The 3D vector image can be found on [WikiMedia Commons](https://commons.wikimedia.org/wiki/File:Coord_XYZ.svg). Finally, thanks to the great folks at [Binder](https://mybinder.org/) and [Google Colaboratory](https://colab.research.google.com/notebooks/intro.ipynb) for making this notebook interactive without you needing to download it or install [Jupyter](https://jupyter.org/) on your own device. Find more activities and license info at [CODINGinK12.org](http://www.codingink12.org)." ] + }, + { + "cell_type": "markdown", + "id": "f40c8fac", + "metadata": {}, + "source": [ + "# Acknowledgements & Licenses\n", + "\n", + "The development and implementation of these materials and workshop were additionally funded by generous support from IRIS-HEP, the [Institute for Research and Innovation in Software for High Energy Physics](https://iris-hep.org/).\n", + "\n", + "This work is licensed under a\n", + "[Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License][cc-by-nc-sa].\n", + "\n", + "[![CC BY-NC-SA 4.0][cc-by-nc-sa-image]][cc-by-nc-sa]\n", + "\n", + "[cc-by-nc-sa]: http://creativecommons.org/licenses/by-nc-sa/4.0/\n", + "[cc-by-nc-sa-image]: https://licensebuttons.net/l/by-nc-sa/4.0/88x31.png\n", + "[cc-by-nc-sa-shield]: https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg" + ] } ], "metadata": { diff --git a/content/data/Falcon 9 Rocket Data.csv b/content/data/Falcon 9 Rocket Data.csv new file mode 100644 index 0000000..e4f70bc --- /dev/null +++ b/content/data/Falcon 9 Rocket Data.csv @@ -0,0 +1,5483 @@ +Time,Altitude,Velocity +0,0,0 +0.1,0.583558275869696,0.573479210655006 +0.2,1.20785729498847,0.790573497175108 +0.3,1.87216286145739,0.928331491164882 +0.4,2.53610132997684,1.1537545806928 +0.5,3.2297693855468,1.28668270631684 +0.6,3.95279993021779,1.44087507820503 +0.7,4.70482586604034,1.60799304405374 +0.8,5.48548009506499,1.78754964216974 +0.9,6.29439551934226,1.99019760057892 +1,7.13120504092269,2.20644546348204 +1.1,7.99554156185681,2.40548114846775 +1.2,8.88703798419514,2.59374197084981 +1.3,9.80532720998821,2.78012520165163 +1.4,10.7500421412866,2.94352250458288 +1.5,11.7208156801407,3.08651300123895 +1.6,12.7172807286012,3.20809301048576 +1.7,13.7390701887186,3.31356927658052 +1.8,14.7858169625433,3.41914322839937 +1.9,15.857153952126,3.53158539779197 +2,16.9527140595172,3.65156421536363 +2.1,18.0721301867673,3.792121511014 +2.2,19.215035235927,3.96297125142254 +2.3,20.3810621090467,4.16498439219404 +2.4,21.569843708177,4.39647014060977 +2.5,22.7810129353683,4.64056908094684 +2.6,24.0142026926714,4.89093668282211 +2.7,25.2690458821366,5.15452762075578 +2.8,26.5451754058145,5.41672963749588 +2.9,27.8422241657556,5.66789487289109 +3,29.1598250640105,5.91961732424799 +3.1,30.4976110026297,6.17000294580346 +3.2,31.8552148836637,6.41088204366483 +3.3,33.232269609163,6.6493402450375 +3.4,34.6284080811783,6.8848840345459 +3.5,36.0432632017599,7.11258070297436 +3.6,37.4764678729585,7.34044735590858 +3.7,38.9276549968246,7.55914695630033 +3.8,40.3964574754086,7.76668433235655 +3.9,41.8825082107612,7.98230180110546 +4,43.3854401049329,8.20805734623141 +4.1,44.9048860599741,8.42528584903168 +4.2,46.4404789779355,8.64386566385174 +4.3,47.9918517608675,8.86119695830842 +4.4,49.5586373108207,9.07107351600901 +4.5,51.1404685298457,9.27807874759498 +4.6,52.7369783199928,9.48978489020833 +4.7,54.3477995833128,9.69947348492541 +4.8,55.972565221856,9.90725225666253 +4.9,57.6109081376731,10.115270854653 +5,59.2624612328145,10.3248875037457 +5.1,60.9268574093309,10.5415904343862 +5.2,62.6037295692727,10.76208972092 +5.3,64.2927106146904,10.970721212306 +5.4,65.9934334476346,11.1671285967622 +5.5,67.7055309701558,11.3656415464638 +5.6,69.4286360843046,11.5641596080867 +5.7,71.1623816921315,11.7634770137536 +5.8,72.9064006956869,11.9597752833169 +5.9,74.6603259970215,12.1496453861793 +6,76.4237904981858,12.3445375981602 +6.1,78.1964271012302,12.5421696708788 +6.2,79.9778687082055,12.7321496149113 +6.3,81.7677482211619,12.9204886277091 +6.4,83.5656985421501,13.1075877664884 +6.5,85.3713525732207,13.2980916924642 +6.6,87.1843432164241,13.5053247127319 +6.7,89.0043033738109,13.7091624266052 +6.8,90.8308659474316,13.9079131010955 +6.9,92.6636638393367,14.1149269717404 +7,94.5023317633246,14.3245301968945 +7.1,96.3503452922697,14.5293702424936 +7.2,98.2146067844971,14.7276388360265 +7.3,100.101880855805,14.9164295735091 +7.4,102.018794379467,15.1058081497872 +7.5,103.971836486228,15.2955397581744 +7.6,105.967358564307,15.4837093970853 +7.7,108.011572447652,15.6713699252658 +7.8,110.106711368604,15.8645756705469 +7.9,112.251444031531,16.0630120709169 +8,114.444439140797,16.2546935571095 +8.1,116.684365400771,16.4464381010879 +8.2,118.969891515819,16.6449699743877 +8.3,121.299686190305,16.8425073584669 +8.4,123.672418128598,17.0480791763494 +8.5,126.086756035064,17.257563051498 +8.6,128.541368614068,17.4655955043689 +8.7,131.034924569978,17.6804847666559 +8.8,133.566092607159,17.8997031447304 +8.9,136.133541429978,18.1165571077877 +9,138.735939742802,18.3394814768454 +9.1,141.371956249997,18.5623336411575 +9.2,144.040259655928,18.7790688146733 +9.3,146.739518664964,18.9960926478625 +9.4,149.468401981469,19.2221990707527 +9.5,152.225578309811,19.4468278664634 +9.6,155.009716354355,19.6666799435225 +9.7,157.819484819469,19.8919945438132 +9.8,160.653552409518,20.1186297570524 +9.9,163.510587828869,20.3464150543875 +10,166.389259781888,20.5826205221998 +10.1,169.288236972942,20.8205563034047 +10.2,172.206188106397,21.0640453486591 +10.3,175.141781886619,21.3092380690999 +10.4,178.093687017976,21.5370164485813 +10.5,181.060572204832,21.7612528292725 +10.6,184.041106151556,21.9981090701908 +10.7,187.033957562512,22.2298529731567 +10.8,190.037795142068,22.4532425604678 +10.9,193.005775546755,22.6831141996748 +11,195.915582702248,22.9281792132606 +11.1,198.764436368937,23.1876316377222 +11.2,201.549927782346,23.4395012286693 +11.3,204.270019653128,23.6782874424059 +11.4,206.923046167069,23.9232138826065 +11.5,209.507712985084,24.175604658243 +11.6,212.068609291055,24.4269285826038 +11.7,214.626168474852,24.6776834595432 +11.8,217.181659566759,24.9322290233081 +11.9,219.73635159706,25.190354249076 +12,222.291513596036,25.4521177244634 +12.1,224.848414593972,25.7181180065152 +12.2,227.408323621151,25.9793799035214 +12.3,229.972509707855,26.2305599148628 +12.4,232.542241884368,26.4822342334449 +12.5,235.118789180973,26.7328006649335 +12.6,237.703420627953,26.9909092130527 +12.7,240.297405255591,27.2418271162768 +12.8,242.902012094171,27.4734790871892 +12.9,245.518510173975,27.7016137296776 +13,248.148168525287,27.9399717495877 +13.1,250.79225617839,28.1710231780713 +13.2,253.452042163567,28.3846778840042 +13.3,256.1287955111,28.6502119846768 +13.4,258.823785251275,28.8999820691843 +13.5,261.538280414372,29.1542948944515 +13.6,264.273550030676,29.4206192482043 +13.7,267.03086313047,29.6777516144277 +13.8,269.811488744036,29.9353844833098 +13.9,272.616695901659,30.211466060485 +14,275.44775363362,30.4358238464692 +14.1,278.305930970204,30.6901196016222 +14.2,281.192496941693,30.9589204255898 +14.3,284.108720578371,31.2151141728247 +14.4,287.05587091052,31.4603245745029 +14.5,290.035216968425,31.7264678058801 +14.6,293.048012657417,31.9907288782864 +14.7,296.095346787659,32.2553440802927 +14.8,299.178057331496,32.5204305862793 +14.9,302.296730416624,32.7832718926348 +15,305.451700326095,33.0438382219589 +15.1,308.643049498309,33.3216162209593 +15.2,311.870608527025,33.585820688696 +15.3,315.1339712863,33.8503455162767 +15.4,318.432644900717,34.1158520632348 +15.5,321.766135488029,34.3733227130056 +15.6,325.13394916599,34.623853263811 +15.7,328.535592052353,34.8871454686393 +15.8,331.970570264871,35.1490568339106 +15.9,335.438389921299,35.3999646066504 +16,338.938557139389,35.6518539741596 +16.1,342.470578036894,35.901826926402 +16.2,346.033958731569,36.1461578208815 +16.3,349.628205341166,36.4126435643338 +16.4,353.252823983439,36.6761238172935 +16.5,356.907320776142,36.944099429449 +16.6,360.591201837027,37.2222357407036 +16.7,364.303973283849,37.4998965621811 +16.8,368.04514123436,37.778292256708 +16.9,371.814211806314,38.0703333450177 +17,375.610691117464,38.3474943253108 +17.1,379.434085285564,38.625545130984 +17.2,383.283900428367,38.903356205458 +17.3,387.159642663627,39.1812318662205 +17.4,391.060826321339,39.4590901208479 +17.5,394.987053028337,39.7369530906224 +17.6,398.93805589506,40.0148146918694 +17.7,402.913699997927,40.2926770311266 +17.8,406.913982379341,40.5705377848456 +17.9,410.939032047688,40.8484041717536 +18,414.989109977335,41.1262494972193 +18.1,419.064600896392,41.4041738633781 +18.2,423.165934202109,41.6818015289969 +18.3,427.293539774118,41.9605454936758 +18.4,431.447847492053,42.2540692103262 +18.5,435.629287235545,42.5445101631997 +18.6,439.838288884226,42.8357594699811 +18.7,444.075282317727,43.1268581826726 +18.8,448.340697415682,43.4177503965353 +18.9,452.634964057723,43.7096212303277 +19,456.95851212348,43.9972200635589 +19.1,461.311771492588,44.2587311217367 +19.2,465.695172044676,44.5131166055916 +19.3,470.109143659379,44.7617440761994 +19.4,474.554116216327,45.0271936082744 +19.5,479.030519595153,45.2915188812832 +19.6,483.538783675489,45.5565793030521 +19.7,488.079337203807,45.8399143993083 +19.8,492.652562089706,46.1291705715923 +19.9,497.258733061335,46.4392572547994 +20,501.898013532982,46.7605386880698 +20.1,506.570455605085,47.0643847100225 +20.2,511.27600006422,47.3666793486716 +20.3,516.014476383112,47.6836506460415 +20.4,520.785603853787,47.9728378509884 +20.5,525.589037291286,48.2812742825829 +20.6,530.424427378251,48.5930054406114 +20.7,535.291424797319,48.8938214262235 +20.8,540.18968023113,49.2059300318104 +20.9,545.118844362323,49.5271241798738 +21,550.078567873538,49.8311136085435 +21.1,555.068501447414,50.1431381056595 +21.2,560.08829576659,50.4250837710108 +21.3,565.137601513705,50.6884782157795 +21.4,570.216069371398,50.9691915376201 +21.5,575.32335002231,51.2470804539454 +21.6,580.459094149078,51.5228847825617 +21.7,585.622952589006,51.8148842988046 +21.8,590.814598572268,52.109987188366 +21.9,596.033772950388,52.4230512508506 +22,601.280289688986,52.7531270882744 +22.1,606.554035867779,53.0784119897348 +22.2,611.854971680579,53.4001422470218 +22.3,617.183130435295,53.7327883089203 +22.4,622.53861839927,54.0488190538948 +22.5,627.92159256107,54.3680399117155 +22.6,633.33221540201,54.7004648035995 +22.7,638.770649403405,55.0151531169903 +22.8,644.237057046568,55.3326442111248 +22.9,649.731600812813,55.6529527077102 +23,655.254443183456,55.9535519718457 +23.1,660.805746639811,56.2722171911599 +23.2,666.385673663192,56.5896578334406 +23.3,671.994386734914,56.9050129337632 +23.4,677.632048336291,57.2329935438812 +23.5,683.298820956953,57.5568066071232 +23.6,688.994894399879,57.8727510315805 +23.7,694.720573855795,58.1907058090092 +23.8,700.476297627537,58.5083024924023 +23.9,706.262637130053,58.8257998213531 +24,712.080296890404,59.1451427925678 +24.1,717.93011454776,59.4546252363874 +24.2,723.813060845091,59.7558105531912 +24.3,729.730212324125,60.0685252375433 +24.4,735.682663250959,60.3872024692564 +24.5,741.67150789169,60.7048240055746 +24.6,747.697840512415,61.022387767199 +24.7,753.762755379228,61.3399541524749 +24.8,759.867346758229,61.6574481974439 +24.9,766.012708915512,61.9751727198783 +25,772.199936117175,62.2922601490523 +25.1,778.430122629313,62.6127928575419 +25.2,784.704345897907,62.9139034772243 +25.3,791.023390542904,63.2314543371263 +25.4,797.387522715596,63.5327827154369 +25.5,803.7964834795,63.8383040723888 +25.6,810.249488810353,64.1671582740904 +25.7,816.745229596117,64.488791242534 +25.8,823.281871636974,64.8194713071139 +25.9,829.857072465449,65.1745405613124 +26,836.46825735232,65.5212692984023 +26.1,843.112844949241,65.8551626921101 +26.2,849.78825390787,66.2336486478619 +26.3,856.491902879862,66.5886882368696 +26.4,863.221210516874,66.9466774291352 +26.5,869.973595470562,67.304304763982 +26.6,876.746476392581,67.6526642673103 +26.7,883.537295000532,68.0016681348186 +26.8,890.343887611922,68.3677242973553 +26.9,897.164785284961,68.7020876324065 +27,903.999222401754,69.0156248490772 +27.1,910.847136668293,69.3688808264004 +27.2,917.709169114467,69.7049961166555 +27.3,924.586664094052,70.035701766312 +27.4,931.481646218775,70.3727695849526 +27.5,938.396448824347,70.7279399009747 +27.6,945.333413829665,71.071815599995 +27.7,952.294883153628,71.4542954947518 +27.8,959.283198715134,71.8027590464725 +27.9,966.30070243308,72.1596185739573 +28,973.349736226365,72.5309730218528 +28.1,980.432641293187,72.8873230574098 +28.2,987.551673155675,73.2446623745458 +28.3,994.708837860148,73.6033841848616 +28.4,1001.90587332345,73.9454732354154 +28.5,1009.14424933296,74.2741222899211 +28.6,1016.42516754656,74.6128315078797 +28.7,1023.74956149268,74.9525720607711 +28.8,1031.11809729095,75.2947480856959 +28.9,1038.53125860762,75.6311163403008 +29,1045.98951045526,75.9838831440494 +29.1,1053.49331784644,76.3397512996148 +29.2,1061.04314579373,76.7133665646838 +29.3,1068.63945930971,77.0675421574788 +29.4,1076.28272340694,77.3880906549034 +29.5,1083.97339097259,77.7220532930338 +29.6,1091.7118416809,78.0511509880889 +29.7,1099.49836279872,78.3666973112998 +29.8,1107.33314917855,78.7003298843559 +29.9,1115.21630325853,79.0382349767832 +30,1123.1478350625,79.3987414619015 +30.1,1131.1276621999,79.7855453907315 +30.2,1139.1556219913,80.1515291466934 +30.3,1147.2315325558,80.5163672997513 +30.4,1155.35521200557,80.8941196231152 +30.5,1163.5264784528,81.2738890599503 +30.6,1171.74515000965,81.6266150195675 +30.7,1180.0110236622,82.0036414827291 +30.8,1188.32355121433,82.3675943428104 +30.9,1196.68158570096,82.7317133965301 +31,1205.08337462191,83.1344998935244 +31.1,1213.52655994192,83.5146199286054 +31.2,1222.00817809066,83.8892981938833 +31.3,1230.52465996272,84.2903518717918 +31.4,1239.07185204369,84.6660693232738 +31.5,1247.64534046629,85.0417390793947 +31.6,1256.24070459712,85.4426961192091 +31.7,1264.85352380277,85.814656563602 +31.8,1273.47937744986,86.2084916019424 +31.9,1282.11411712988,86.6039891725127 +32,1290.75520826149,86.9806748725795 +32.1,1299.40214267582,87.3592505203926 +32.2,1308.05643872928,87.7568983628332 +32.3,1316.72164130352,88.1549801544364 +32.4,1325.40332180546,88.5292374991911 +32.5,1334.10907816725,88.8697103191049 +32.6,1342.84826262144,89.2350046501221 +32.7,1351.63064009863,89.6118394123197 +32.8,1360.46597564222,90.0125131507961 +32.9,1369.3640342956,90.4098461796289 +33,1378.33442132129,90.8050337540126 +33.1,1387.38419827637,91.2232875263638 +33.2,1396.51605137019,91.6564191736611 +33.3,1405.72824455035,92.066374772265 +33.4,1415.01461950267,92.4828990438356 +33.5,1424.36459565124,92.8552658773556 +33.6,1433.76317015836,93.2322803513081 +33.7,1443.19107770546,93.6096945155439 +33.8,1452.62717441764,93.9895528237099 +33.9,1462.05026950595,94.3931164317204 +34,1471.43917218148,94.809374366498 +34.1,1480.77401855623,95.2197512470142 +34.2,1490.04268057515,95.6364437859185 +34.3,1499.24269842603,96.0528787761177 +34.4,1508.3812809369,96.4709651416959 +34.5,1517.475305576,96.8675550470192 +34.6,1526.5513184518,97.2414080114697 +34.7,1535.64553431297,97.6422750556092 +34.8,1544.80250964746,98.0461945152161 +34.9,1554.06873375052,98.4642013011722 +35,1563.49069631476,98.872881889845 +35.1,1573.11483298708,99.2674098684747 +35.2,1582.98230211559,99.6813624673516 +35.3,1593.11948098068,100.088233225625 +35.4,1603.53695826043,100.489296894329 +35.5,1614.2295340306,100.906051024546 +35.6,1625.17621976463,101.322759159999 +35.7,1636.34023833367,101.74783165335 +35.8,1647.66907805223,102.185787151132 +35.9,1659.09971593132,102.624672779366 +36,1670.5682950586,103.083279469423 +36.1,1682.01643228729,103.53524764939 +36.2,1693.3973657663,103.969903188622 +36.3,1704.67629919616,104.392647340019 +36.4,1715.83040182901,104.828217254909 +36.5,1726.84880846863,105.2656584409 +36.6,1737.7326194704,105.701314452002 +36.7,1748.49472713007,106.144412637716 +36.8,1759.15451552947,106.541959964627 +36.9,1769.73171363828,106.94194467165 +37,1780.24665681955,107.352520299915 +37.1,1790.72202129595,107.750524371119 +37.2,1801.18313261443,108.146573746467 +37.3,1811.65796564626,108.544059960239 +37.4,1822.17714458699,108.939766061943 +37.5,1832.77394295646,109.353065714003 +37.6,1843.48428296687,109.769725487548 +37.7,1854.34612976136,110.187042736429 +37.8,1865.39775694774,110.598662320481 +37.9,1876.67461720941,111.038375792059 +38,1888.19618230883,111.47352974722 +38.1,1899.96210854214,111.933922388173 +38.2,1911.952236296,112.389119789963 +38.3,1924.12659004759,112.843659827468 +38.4,1936.42537836456,113.32342143166 +38.5,1948.7689939051,113.803638506355 +38.6,1961.06083434229,114.255182610615 +38.7,1973.20265872301,114.736910353194 +38.8,1985.11548127979,115.188203067498 +38.9,1996.74755383252,115.644127639447 +39,2008.07441122581,116.126577822389 +39.1,2019.098871329,116.558186485302 +39.2,2029.85103503616,117.019811299395 +39.3,2040.38828626612,117.477249757576 +39.4,2050.79309560009,117.909868735412 +39.5,2061.15596101516,118.347887079551 +39.6,2071.56735854192,118.786856389957 +39.7,2082.11191400996,119.194176081362 +39.8,2092.85826354333,119.651816169094 +39.9,2103.85802774471,120.063080657871 +40,2115.14581169545,120.48053912366 +40.1,2126.73920495552,120.898289041084 +40.2,2138.63878156355,121.300362239983 +40.3,2150.8281674207,121.703898800698 +40.4,2163.27982111081,122.122872386445 +40.5,2175.96367128179,122.541889378572 +40.6,2188.8439719167,123.004355154198 +40.7,2201.87858439855,123.45974974738 +40.8,2215.0189775102,123.913411242823 +40.9,2228.21022743448,124.408776520094 +41,2241.39101775408,124.891997203425 +41.1,2254.4936414486,125.394357724388 +41.2,2267.44592408028,125.868598940855 +41.3,2280.18723605227,126.321544921849 +41.4,2292.6823913623,126.764452807236 +41.5,2304.92233745028,127.209715511232 +41.6,2316.92415519828,127.668475238755 +41.7,2328.7310589306,128.128181649485 +41.8,2340.41239641367,128.585911637236 +41.9,2352.06322779352,129.036459662439 +42,2363.79248388219,129.516413613113 +42.1,2375.70526081931,130.015129434928 +42.2,2387.88181593809,130.523206870444 +42.3,2400.37186893349,130.994472676683 +42.4,2413.19460157239,131.48132366979 +42.5,2426.33865769355,131.959990780159 +42.6,2439.76214320767,132.458313930365 +42.7,2453.39262609735,132.907495851006 +42.8,2467.13263939941,133.384693345981 +42.9,2480.8930078221,133.85043463102 +43,2494.60779097112,134.313186626851 +43.1,2508.23448079433,134.767313397578 +43.2,2521.75400158173,135.194318428592 +43.3,2535.17070996547,135.60100022745 +43.4,2548.51239491984,136.057842247852 +43.5,2561.8292938017,136.510506619822 +43.6,2575.17768232129,136.966786248472 +43.7,2588.60144948449,137.433898818239 +43.8,2602.13036517056,137.906202959806 +43.9,2615.78008013208,138.393001385764 +44,2629.55212599503,138.899750595738 +44.1,2643.4339152587,139.403000643266 +44.2,2657.39874679298,139.868963533647 +44.3,2671.41051502114,140.360011549093 +44.4,2685.43866210348,140.835778650048 +44.5,2699.46130038344,141.334523200711 +44.6,2713.46521243413,141.823623333401 +44.7,2727.44585105834,142.311368112854 +44.8,2741.4073392885,142.790461524911 +44.9,2755.36247038671,143.291029087545 +45,2769.33101950443,143.765951881327 +45.1,2783.33121977646,144.25086224705 +45.2,2797.37695423988,144.745128392149 +45.3,2811.47775029603,145.239225154054 +45.4,2825.63877971055,145.756785897058 +45.5,2839.86085861334,146.272904932135 +45.6,2854.1404474986,146.786816070662 +45.7,2868.47033679265,147.323609130999 +45.8,2882.84463867957,147.876981801794 +45.9,2897.26099547412,148.391219346772 +46,2911.72058943322,148.916873937734 +46.1,2926.22814275594,149.423012274275 +46.2,2940.7919175835,149.934309651345 +46.3,2955.42371599928,150.459279239547 +46.4,2970.13821381312,150.96459551268 +46.5,2984.94917761841,151.396229218731 +46.6,2999.86806085807,151.926486651033 +46.7,3014.90399949815,152.410968349853 +46.8,3030.06381202784,152.882937189228 +46.9,3045.35199945946,153.323868685512 +47,3060.77074807977,153.800776343994 +47.1,3076.32035779605,154.283865222676 +47.2,3092.00086095647,154.850331850761 +47.3,3107.81244246112,155.339642250895 +47.4,3123.75543976832,155.876007108756 +47.5,3139.83034289464,156.446315692278 +47.6,3156.03774939499,157.043133724257 +47.7,3172.37518723301,157.60111407826 +47.8,3188.83183036801,158.166372158448 +47.9,3205.38793883731,158.710381923165 +48,3222.01485510887,159.239611578874 +48.1,3238.67500408131,159.765780051389 +48.2,3255.3219699256,160.288729909315 +48.3,3271.90588367849,160.820154917274 +48.4,3288.38532946309,161.335491808233 +48.5,3304.73336446949,161.88426767896 +48.6,3320.93800355497,162.444896087891 +48.7,3337.00221924407,163.004953707044 +48.8,3352.94394172852,163.55190691189 +48.9,3368.79598202558,164.063465722321 +49,3384.60068940452,164.555606825832 +49.1,3400.40121954434,165.074820119625 +49.2,3416.24072812405,165.593994453 +49.3,3432.16237082265,166.082156191523 +49.4,3448.20930331914,166.613800363912 +49.5,3464.42289109891,167.17346725591 +49.6,3480.83019087786,167.758669076873 +49.7,3497.43860674736,168.358646519101 +49.8,3514.2358701882,168.923420537478 +49.9,3531.19004007059,169.442690640872 +50,3548.24950265419,169.999812294802 +50.1,3565.34680312788,170.53178096011 +50.2,3582.41643087257,171.06310470765 +50.3,3599.41151126619,171.599381665523 +50.4,3616.30914955035,172.111506728711 +50.5,3633.11045081639,172.623350211104 +50.6,3649.84052000533,173.172999706306 +50.7,3666.54799624623,173.714819429771 +50.8,3683.29928794903,174.263751394152 +50.9,3700.16207604731,174.800477597246 +51,3717.20114076815,175.314905769471 +51.1,3734.47836162059,175.839701013241 +51.2,3752.05244882315,176.387297921496 +51.3,3769.96151366993,176.943743134708 +51.4,3788.19573353718,177.507685327308 +51.5,3806.69679966898,178.061430397417 +51.6,3825.35841886534,178.615087793503 +51.7,3844.02631348318,179.200122476106 +51.8,3862.51368363996,179.79331923075 +51.9,3880.66503415704,180.398342831064 +52,3898.38993292283,180.985898335629 +52.1,3915.69081155975,181.544557542133 +52.2,3932.66545100594,182.133029945691 +52.3,3949.50698151519,182.741054365344 +52.4,3966.48319894406,183.342316640541 +52.5,3983.83654323811,183.947585874845 +52.6,4001.69893410572,184.543210310875 +52.7,4020.07544228076,185.127324068998 +52.8,4038.84428951066,185.709561841186 +52.9,4057.77010971506,186.238361714657 +53,4076.59370801879,186.762098793815 +53.1,4095.08995924815,187.278607318395 +53.2,4113.15248704627,187.795844235193 +53.3,4130.81526982847,188.335096471437 +53.4,4148.25264079034,188.87094214085 +53.5,4165.75781037519,189.437244431093 +53.6,4183.64267396229,190.027771341107 +53.7,4202.12606176352,190.615544785181 +53.8,4221.29652403881,191.201755700989 +53.9,4241.11226619249,191.820336135889 +54,4261.4204995728,192.425597282922 +54.1,4282.00521176343,193.015593070466 +54.2,4302.61588587061,193.573431165831 +54.3,4323.05443167622,194.127114362198 +54.4,4343.19717670812,194.691054501697 +54.5,4362.99486624146,195.281175729742 +54.6,4382.47260839692,195.876083372019 +54.7,4401.71052334122,196.511736451649 +54.8,4420.79597299558,197.158554280645 +54.9,4439.81631928124,197.816079546197 +55,4458.85741461148,198.494684173765 +55.1,4477.9935873741,199.159648188625 +55.2,4497.28356420741,199.80927964616 +55.3,4516.77045809453,200.454061455098 +55.4,4536.48176836331,201.047104629285 +55.5,4556.42850228933,201.629678768275 +55.6,4576.59937522651,202.240231388806 +55.7,4596.95996867551,202.832692584151 +55.8,4617.46273809772,203.461634867075 +55.9,4638.05109063933,204.089173255429 +56,4658.66186271766,204.691219830995 +56.1,4679.23507576884,205.318611326165 +56.2,4699.7172271276,205.969185979741 +56.3,4720.06708989661,206.602108672395 +56.4,4740.25806438652,207.224892925922 +56.5,4760.28213757248,207.829712458839 +56.6,4780.16545171259,208.41130374855 +56.7,4799.96967114996,208.993785878621 +56.8,4819.7822265651,209.523255749021 +56.9,4839.71390249044,210.077149363105 +57,4859.88964124516,210.664761540493 +57.1,4880.41248679297,211.274306177571 +57.2,4901.35079639482,211.909715342881 +57.3,4922.72267199025,212.556930100876 +57.4,4944.49264012127,213.204452724794 +57.5,4966.58300463074,213.913473893163 +57.6,4988.88496408004,214.595672006063 +57.7,5011.26827315771,215.278402936842 +57.8,5033.61729882365,215.960488268648 +57.9,5055.84305774738,216.625210218363 +58,5077.89566793052,217.30393718901 +58.1,5099.7668627246,217.971702686193 +58.2,5121.47863813268,218.607384877408 +58.3,5143.07191368766,219.23365669648 +58.4,5164.5937436516,219.870840679547 +58.5,5186.07875824316,220.496591246074 +58.6,5207.54442711464,221.107753279121 +58.7,5228.97860772955,221.742410640107 +58.8,5250.33785472615,222.37748091552 +58.9,5271.56227956215,223.011293725232 +59,5292.58505074525,223.678937373613 +59.1,5313.3448586513,224.312546409306 +59.2,5333.80447429439,224.956080925416 +59.3,5353.9540532535,225.595935207933 +59.4,5373.83071093039,226.180181995699 +59.5,5393.52936023159,226.741026714246 +59.6,5413.18803528868,227.337391864511 +59.7,5432.9786129346,227.908923146099 +59.8,5453.10344447427,228.503954768051 +59.9,5473.75984557099,229.099795385603 +60,5495.11633348663,229.724709336289 +60.1,5517.29272431518,230.368260609891 +60.2,5540.34733065421,231.077643174275 +60.3,5564.26337699523,231.794186506077 +60.4,5588.93616346041,232.500342380484 +60.5,5614.17577687424,233.216922700352 +60.6,5639.74711389731,233.922787882012 +60.7,5665.44111128549,234.602910544609 +60.8,5691.10537092921,235.318673591246 +60.9,5716.64523162864,236.03577162032 +61,5742.03299806698,236.731649044305 +61.1,5767.27545351727,237.44530833535 +61.2,5792.386576665,238.159898120205 +61.3,5817.38262595351,238.874900525172 +61.4,5842.23658423705,239.622570391713 +61.5,5866.88768079772,240.367680198116 +61.6,5891.26529217973,241.080136662091 +61.7,5915.29346377783,241.80198440337 +61.8,5938.9361848667,242.510392121905 +61.9,5962.22267884974,243.184010138778 +62,5985.2441328777,243.901422244176 +62.1,6008.14972440173,244.574817441821 +62.2,6031.10680154763,245.25906479217 +62.3,6054.26942863981,245.963698391132 +62.4,6077.75146700239,246.6487063564 +62.5,6101.62041881568,247.370760805515 +62.6,6125.8999357849,248.091306847831 +62.7,6150.56906277775,248.805755851792 +62.8,6175.54603903761,249.520303906854 +62.9,6200.68446126461,250.234842122411 +63,6225.78039458698,250.9492524572 +63.1,6250.61560932382,251.663929769142 +63.2,6275.02561271759,252.369218564557 +63.3,6298.91398231833,253.068869782127 +63.4,6322.25679536191,253.74429090208 +63.5,6345.1192853114,254.419959129646 +63.6,6367.66305458172,255.043613815525 +63.7,6390.14922443676,255.647465282217 +63.8,6412.92188863126,256.282190325172 +63.9,6436.34469278309,256.927494420141 +64,6460.70753572364,257.610880637432 +64.1,6486.11289232494,258.323518923034 +64.2,6512.46682164777,259.068428325822 +64.3,6539.49873932765,259.834350118585 +64.4,6566.89891364722,260.630584657985 +64.5,6594.37117596822,261.372698124943 +64.6,6621.63460860534,262.08493908617 +64.7,6648.49108805176,262.797609090134 +64.8,6674.89720114332,263.511977414772 +64.9,6700.9635297183,264.232858864292 +65,6726.93146066091,264.992361545508 +65.1,6753.02341753856,265.755603757825 +65.2,6779.36955204807,266.546661788093 +65.3,6806.00485949581,267.340807282738 +65.4,6832.88184150715,268.13662795514 +65.5,6859.93690225469,268.93082524544 +65.6,6887.12253604084,269.718099095302 +65.7,6914.40821104562,270.46709563442 +65.8,6941.77959883388,271.211413020471 +65.9,6969.19978456776,271.982141476146 +66,6996.59008438421,272.737186067008 +66.1,7023.82899390556,273.491391579646 +66.2,7050.77458361321,274.244956797947 +66.3,7077.34644622686,274.975379450535 +66.4,7103.53895474859,275.729254914643 +66.5,7129.43090834916,276.472400750808 +66.6,7155.19402874107,277.176011974931 +66.7,7181.00240365344,277.892127103711 +66.8,7207.0171869241,278.606605551374 +66.9,7233.34236493482,279.322679368211 +67,7259.97460470134,280.017989917319 +67.1,7286.83860936487,280.679322077538 +67.2,7313.78916186343,281.343984416535 +67.3,7340.66189594512,282.056127397513 +67.4,7367.38582552764,282.808895024057 +67.5,7393.99845548252,283.564709126695 +67.6,7420.64298384368,284.276939047912 +67.7,7447.49951713578,285.044625768058 +67.8,7474.6845793303,285.852020933532 +67.9,7502.2379686675,286.666940990555 +68,7530.12523556428,287.472543526939 +68.1,7558.28521538957,288.270114571118 +68.2,7586.67283365666,289.04759548789 +68.3,7615.26063501091,289.84720716876 +68.4,7644.03840103838,290.641018532692 +68.5,7673.01212093915,291.434921473211 +68.6,7702.20383629518,292.228936215959 +68.7,7731.64959447739,293.012149189769 +68.8,7761.35623309171,293.76412140027 +68.9,7791.26106136197,294.533193369638 +69,7821.23081205424,295.322580742629 +69.1,7851.09656340525,296.116561189024 +69.2,7880.73371354702,296.910046073462 +69.3,7910.07552561388,297.669424431793 +69.4,7939.11275778223,298.43430347936 +69.5,7967.88970146859,299.227847135864 +69.6,7996.50182243053,300.024352859646 +69.7,8025.0948021478,300.804686232392 +69.8,8053.82315657802,301.588383571148 +69.9,8082.79321547201,302.343341721497 +70,8112.05896444548,303.131966818567 +70.1,8141.62215777658,303.926063759814 +70.2,8171.43256936088,304.708961918945 +70.3,8201.38799692689,305.46088697919 +70.4,8231.33773837379,306.228672010895 +70.5,8261.13325381467,306.993088885171 +70.6,8290.67401963035,307.786616045043 +70.7,8319.90985424118,308.58208853683 +70.8,8348.84406899612,309.335088776164 +70.9,8377.53997416917,310.1003543726 +71,8406.12166367855,310.895515590958 +71.1,8434.76506684094,311.648641290018 +71.2,8463.61038791712,312.402885058664 +71.3,8492.71256187192,313.15716121939 +71.4,8522.04127256431,313.909939134607 +71.5,8551.50335422985,314.708456066938 +71.6,8580.97055416648,315.463324473114 +71.7,8610.28109926515,316.176673420406 +71.8,8639.26359332019,316.891159017852 +71.9,8667.8967668233,317.605882840662 +72,8696.3780367026,318.302426241397 +72.1,8725.11738097035,319.019936033099 +72.2,8754.46049930908,319.719251455907 +72.3,8784.31542697055,320.433127618752 +72.4,8814.12840517716,321.214246712041 +72.5,8843.24105166652,322.049250655795 +72.6,8871.57966658651,322.881912997273 +72.7,8899.71971854278,323.733462051127 +72.8,8928.86653224217,324.563958842835 +72.9,8960.053628158,325.409262708661 +73,8993.07461121691,326.282524513029 +73.1,9027.16185336932,327.130071734757 +73.2,9062.19719403746,327.92266727367 +73.3,9098.12072842602,328.717315707376 +73.4,9134.62420368352,329.510819728193 +73.5,9170.47877534256,330.269044315327 +73.6,9204.44059127585,331.050953600012 +73.7,9236.7218404343,331.845157550283 +73.8,9268.55087713179,332.636045688897 +73.9,9300.63211006654,333.469180769518 +74,9332.94624134389,334.30203627429 +74.1,9364.95662590475,335.13602907663 +74.2,9396.3067231463,336.005403930926 +74.3,9426.96631684806,336.83905759958 +74.4,9457.14995525799,337.63293132464 +74.5,9487.08511221444,338.429805150161 +74.6,9516.9660638625,339.184078292642 +74.7,9546.96287398441,339.903765423074 +74.8,9577.23999320563,340.614075043443 +74.9,9607.95855860138,341.367458101332 +75,9639.24179793389,342.133618553939 +75.1,9671.07367849585,342.927276828143 +75.2,9703.28895557389,343.71986040658 +75.3,9735.64077410985,344.535801369921 +75.4,9768.01490763471,345.406956210706 +75.5,9800.45745991086,346.249248317671 +75.6,9833.1290624745,347.043506476403 +75.7,9866.1025378369,347.865998553715 +75.8,9899.40048133642,348.69977822437 +75.9,9933.06866736381,349.533178460311 +76,9967.27027438335,350.385847378113 +76.1,10002.0955204192,351.217280233133 +76.2,10037.4513692208,352.066774681592 +76.3,10072.9742271122,352.943060696584 +76.4,10108.2541804424,353.787675487637 +76.5,10143.0065004228,354.621077359685 +76.6,10177.1408815544,355.454402922177 +76.7,10210.6080297624,356.256282265796 +76.8,10243.3781830547,357.009628945488 +76.9,10275.5282501895,357.783216487741 +77,10307.375407724,358.530680619006 +77.1,10339.4124415199,359.323953127869 +77.2,10371.9610880053,360.117863464626 +77.3,10405.0027194908,360.91203044705 +77.4,10438.3033150468,361.737641616738 +77.5,10471.6711604852,362.611711335717 +77.6,10504.9661795559,363.472304060411 +77.7,10538.0735411234,364.310245808356 +77.8,10570.905236305,365.104825972339 +77.9,10603.6405499419,365.898721938664 +78,10636.7323731451,366.69233317791 +78.1,10670.6283411481,367.515783274815 +78.2,10705.475603979,368.34961348084 +78.3,10741.2161095799,369.175973151756 +78.4,10777.7742507904,370.052561900221 +78.5,10815.1295048197,370.967880301714 +78.6,10853.1974562993,371.881863901052 +78.7,10891.8031308729,372.83720577369 +78.8,10930.8042569203,373.760227413968 +78.9,10970.0734705824,374.673907772575 +79,11009.3813548258,375.648789760803 +79.1,11048.3766323543,376.597812285344 +79.2,11086.6665867811,377.508401507159 +79.3,11123.9563124611,378.420310584771 +79.4,11160.1414718456,379.2913426871 +79.5,11195.3378722902,380.14375140385 +79.6,11229.8907225127,381.006424295594 +79.7,11264.1809991708,381.837843644794 +79.8,11298.4212132858,382.629733770981 +79.9,11332.636148549,383.416727498274 +80,11366.8401864433,384.245492080861 +80.1,11401.0523958273,385.085868203949 +80.2,11435.2854155127,385.939271735893 +80.3,11469.5668769912,386.823023151664 +80.4,11504.118900579,387.695862519785 +80.5,11539.3275727403,388.606733527867 +80.6,11575.5074006016,389.565674205049 +80.7,11612.7177520359,390.483441118278 +80.8,11650.8977103644,391.390476370491 +80.9,11689.9589356694,392.34645371932 +81,11729.7313843957,393.258393386078 +81.1,11769.8324920132,394.171530120816 +81.2,11809.7597258066,395.089665717986 +81.3,11849.2244283104,396.002521286083 +81.4,11888.2340581497,396.907024377885 +81.5,11926.8889252432,397.819075431293 +81.6,11965.1900788791,398.689826937641 +81.7,12003.0874136203,399.594072263552 +81.8,12040.6432949744,400.507202990802 +81.9,12078.067325207,401.418827242973 +82,12115.554825377,402.323840494749 +82.1,12153.1321053603,403.245406748369 +82.2,12190.6504875619,404.157921726655 +82.3,12227.9218436073,405.102411115286 +82.4,12264.8392437948,406.011201619045 +82.5,12301.3671904967,406.884525453206 +82.6,12337.5067473403,407.758070593221 +82.7,12373.3054451871,408.600296305743 +82.8,12408.9295581044,409.433449899166 +82.9,12444.6257596288,410.298684367741 +83,12480.5942657352,411.141863699582 +83.1,12516.8969700199,412.030070640256 +83.2,12553.5691749836,412.943780127175 +83.3,12590.684863119,413.898538262079 +83.4,12628.3317601821,414.839080251611 +83.5,12666.5459173611,415.78388488588 +83.6,12705.373112733,416.736944253154 +83.7,12744.9289789861,417.688287171435 +83.8,12785.3617626036,418.63065866509 +83.9,12826.6795619629,419.614225113825 +84,12868.6053685719,420.564609316573 +84.1,12910.6188573649,421.561160006559 +84.2,12952.1721514838,422.561719258438 +84.3,12992.7522516828,423.522239976032 +84.4,13031.9655765046,424.475008613495 +84.5,13069.6611285865,425.39581197197 +84.6,13105.9822197365,426.239615439846 +84.7,13141.4081040727,427.105072006125 +84.8,13176.6645963468,427.978815113845 +84.9,13212.5512168812,428.848145173447 +85,13249.63751249,429.792753577265 +85.1,13288.0132270472,430.74552543609 +85.2,13327.4109645691,431.69827258706 +85.3,13367.619424151,432.720491187075 +85.4,13408.5463494261,433.71725719169 +85.5,13450.1148467283,434.716172480248 +85.6,13492.1968442568,435.745647207159 +85.7,13534.7257920894,436.748025464163 +85.8,13577.7246286818,437.736624778543 +85.9,13621.2110933452,438.764817676291 +86,13665.0260318219,439.803421177694 +86.1,13708.8203426727,440.87146733251 +86.2,13752.1572332116,441.905328024844 +86.3,13794.5859281766,442.945393566663 +86.4,13835.9385793227,443.937557861041 +86.5,13876.6866819404,444.922687441384 +86.6,13917.7081163184,445.918485752882 +86.7,13959.4388394458,446.904386797263 +86.8,14001.7315931036,447.897157229726 +86.9,14044.3949319565,448.885009485187 +87,14087.4430754136,449.874845765741 +87.1,14130.9534438444,450.899148671716 +87.2,14174.892928565,451.983420160485 +87.3,14219.0411277287,453.015705722801 +87.4,14263.028201673,454.049130075163 +87.5,14306.5182828133,455.089670591658 +87.6,14349.5230892447,456.121634968943 +87.7,14392.3955932972,457.150490252741 +87.8,14435.4034709631,458.187617842748 +87.9,14478.223315836,459.211381914947 +88,14520.210378311,460.240391928373 +88.1,14561.2898431679,461.277670750095 +88.2,14601.9700370286,462.268188425348 +88.3,14642.6743366334,463.26060179634 +88.4,14683.6022945587,464.252997310189 +88.5,14724.9449455864,465.245333403448 +88.6,14766.7811548744,466.237895040513 +88.7,14809.0132668893,467.230271327858 +88.8,14851.6591942171,468.222667214592 +88.9,14894.9470530594,469.21165964128 +89,14938.8266884176,470.243225213036 +89.1,14982.5984414213,471.279499416429 +89.2,15025.2804057942,472.313711627471 +89.3,15066.5262730374,473.312153824194 +89.4,15106.6551871278,474.307470633603 +89.5,15146.2408302664,475.293987502744 +89.6,15186.1096459426,476.324347455954 +89.7,15227.0409209103,477.361468605566 +89.8,15268.0689820981,478.387153206114 +89.9,15307.2406005577,479.378030446259 +90,15347.4531604902,480.370143343288 +90.1,15396.5471582618,481.396439701548 +90.2,15442.6872695884,482.429045578583 +90.3,15470.1496990189,483.425880480092 +90.4,15501.683734199,484.446140163422 +90.5,15546.4828666133,485.486450821994 +90.6,15596.5750386193,486.560017248861 +90.7,15644.6369827468,487.708012317378 +90.8,15685.3243730487,488.867316214855 +90.9,15731.4358929023,490.02512355445 +91,15797.1628268207,491.207754110535 +91.1,15858.3687728745,492.365861058484 +91.2,15906.8939613435,493.510764254464 +91.3,15953.0701800768,494.693623029895 +91.4,16001.669341856,495.842858763992 +91.5,16050.1994111972,496.948719386339 +91.6,16097.0999075819,498.093005930345 +91.7,16142.7276730294,499.212949705865 +91.8,16187.4815727752,500.287503801292 +91.9,16231.6284057969,501.392144870996 +92,16275.6109038599,502.464621214453 +92.1,16319.9686445281,503.536229516213 +92.2,16365.0944554516,504.646727172995 +92.3,16411.1953309302,505.722377149321 +92.4,16458.1082694329,506.833106091692 +92.5,16505.3750338904,507.976763831074 +92.6,16552.5972534005,509.098272605447 +92.7,16599.362232875,510.174882976331 +92.8,16645.2377153841,511.244038874259 +92.9,16690.1659003957,512.319317328598 +93,16734.4051796724,513.387641331574 +93.1,16778.3686783417,514.456066879089 +93.2,16822.5954093408,515.534068653557 +93.3,16867.5357160613,516.602583919215 +93.4,16913.4948572904,517.749686719289 +93.5,16960.740284473,518.906938802413 +93.6,17009.4079480159,520.055068290244 +93.7,17059.1789009689,521.246672513369 +93.8,17109.573227965,522.44316722817 +93.9,17160.1938950229,523.637073052283 +94,17210.6585929544,524.86741337344 +94.1,17260.8632866174,526.058672228216 +94.2,17310.8105426055,527.251882904618 +94.3,17360.066590149,528.442382944002 +94.4,17408.3066238862,529.598690702697 +94.5,17455.7549480542,530.707907167351 +94.6,17502.8882403073,531.81050751027 +94.7,17550.1756109645,532.921693717109 +94.8,17597.7533878902,534.037387926313 +94.9,17645.3808430883,535.17990029189 +95,17693.0597334485,536.336450881948 +95.1,17741.1624263498,537.487833741245 +95.2,17789.9477745055,538.716111818109 +95.3,17839.4212327508,539.95538870626 +95.4,17889.3787383764,541.15128036816 +95.5,17939.4753494892,542.378690303828 +95.6,17989.5044054813,543.578713711313 +95.7,18039.4969602328,544.768141156444 +95.8,18089.5126949139,545.99002966786 +95.9,18139.5367715893,547.18486680383 +96,18189.5357209306,548.374408098906 +96.1,18239.537791487,549.596505004045 +96.2,18289.6171964604,550.791237955279 +96.3,18339.6756570919,551.981017207124 +96.4,18389.3829737522,553.165038570194 +96.5,18438.4649339745,554.323541632542 +96.6,18486.8496263092,555.473528279445 +96.7,18534.6818771068,556.621074832942 +96.8,18582.2679420407,557.740067880188 +96.9,18629.818128722,558.846048442475 +97,18677.3835786164,559.950691355692 +97.1,18725.244060772,561.104919739051 +97.2,18773.9912153088,562.253998108358 +97.3,18824.1251724249,563.438666002705 +97.4,18875.7030619283,564.673353665062 +97.5,18928.1224651429,565.901343738877 +97.6,18980.3365799279,567.172141840176 +97.7,19031.8545176677,568.449666483306 +97.8,19082.7515248517,569.683686144307 +97.9,19133.4221540902,570.910837804199 +98,19184.7372332388,572.144862497023 +98.1,19235.7265256178,573.370241843485 +98.2,19283.2368276152,574.636481369492 +98.3,19331.7928109739,575.868404803433 +98.4,19390.6303745349,577.133620135935 +98.5,19432.4095448015,578.398008966812 +98.6,19469.0503081396,579.670586227636 +98.7,19520.0529379363,580.902900197161 +98.8,19574.71331805,582.134689427117 +98.9,19628.0002838182,583.328611231979 +99,19679.0523591035,584.521234979789 +99.1,19722.2861006061,585.710087607943 +99.2,19784.2560574182,586.94415737795 +99.3,19851.6034354657,588.175485919356 +99.4,19903.7375360861,589.441033433145 +99.5,19952.7460529084,590.71186414659 +99.6,20007.512773271,592.02147376864 +99.7,20064.6742915307,593.366465473343 +99.8,20120.6024222181,594.718966874876 +99.9,20176.0822144901,596.028819446383 +100,20231.9912566707,597.374913181656 +100.1,20288.1764566617,598.724234805555 +100.2,20343.7798014007,600.033473999955 +100.3,20397.9260845421,601.34125094285 +100.4,20450.9333442996,602.613354813345 +100.5,20503.4145260031,603.846181401444 +100.6,20555.3470516178,605.113885286398 +100.7,20606.521708734,606.38675066276 +100.8,20657.0203730165,607.620274163358 +100.9,20707.482342265,608.92773954496 +101,20759.0356779964,610.240880735865 +101.1,20812.2248766463,611.551433130661 +101.2,20866.1498494074,612.896648227132 +101.3,20919.8928178006,614.208338770271 +101.4,20973.2927382901,615.478480590054 +101.5,21026.6340388779,616.786197633321 +101.6,21080.4630179605,618.059386980259 +101.7,21134.7617948094,619.328678680153 +101.8,21189.0907842405,620.637063964023 +101.9,21243.8347579842,621.949583861905 +102,21299.4149119329,623.299006918332 +102.1,21355.8233724089,624.687578490743 +102.2,21412.8328739969,626.078903732979 +102.3,21470.1597229809,627.467648036333 +102.4,21527.3321658775,628.855739187373 +102.5,21583.7689617136,630.245813459818 +102.6,21639.5010517089,631.634734757013 +102.7,21695.108005337,633.022419334874 +102.8,21751.2368460605,634.413229866122 +102.9,21808.1921687859,635.762930740441 +103,21865.482832016,637.111282661726 +103.1,21922.646360793,638.46301780247 +103.2,21979.7417789659,639.814708474833 +103.3,22036.9214964347,641.163540654373 +103.4,22094.2061041026,642.515173629163 +103.5,22151.2129810775,643.864013812052 +103.6,22207.4188416531,645.25342570376 +103.7,22262.6644354754,646.60488818565 +103.8,22317.2297849489,647.913893877106 +103.9,22371.6981546329,649.220665196531 +104,22426.281764005,650.532025306029 +104.1,22480.8128116136,651.841791934201 +104.2,22535.3647764702,653.190175944273 +104.3,22590.3952700462,654.499970918185 +104.4,22646.8236599465,655.809568455598 +104.5,22705.0698396649,657.198221691827 +104.6,22763.7528548573,658.63187226933 +104.7,22821.8354063893,660.125114144747 +104.8,22879.582648584,661.62983167501 +104.9,22938.3509637354,663.058875881065 +105,22999.6135816952,664.527357617991 +105.1,23062.4583667258,666.07467482046 +105.2,23122.9630464679,667.582817155473 +105.3,23178.2629113991,669.076865335115 +105.4,23229.7624801482,670.515219195642 +105.5,23282.6565595994,671.908674630909 +105.6,23345.4351566502,673.299589495289 +105.7,23399.6445279764,674.689074583028 +105.8,23436.6860197909,676.039260904059 +105.9,23491.8459750945,677.35162333465 +106,23555.9426460275,678.672935659107 +106.1,23619.8997891984,679.948385137278 +106.2,23682.4438042295,681.257852323398 +106.3,23735.2898871666,682.646540481978 +106.4,23794.3581827617,684.075252306459 +106.5,23869.1180774209,685.504713817885 +106.6,23927.9150357119,686.972508074399 +106.7,23983.1291437282,688.400948603975 +106.8,24044.3455941334,689.86961306881 +106.9,24107.6407243112,691.377586186764 +107,24169.010005233,692.890184532789 +107.1,24229.1213966884,694.319058052067 +107.2,24289.4669680212,695.787403369027 +107.3,24349.2906204867,697.216420747726 +107.4,24407.6414026755,698.60568504474 +107.5,24463.339043688,699.995036904634 +107.6,24516.73405883,701.305257488705 +107.7,24570.6814371987,702.531799930527 +107.8,24626.1979405634,703.880567916443 +107.9,24682.7075971718,705.229742231356 +108,24740.8007189676,706.618642211597 +108.1,24801.1863508223,708.127148470188 +108.2,24863.4663448861,709.635378299 +108.3,24927.4481999517,711.183482200641 +108.4,24993.3602911601,712.810769814741 +108.5,25060.1412828076,714.399046633884 +108.6,25125.8607082654,715.947457948726 +108.7,25190.6181645658,717.574507449169 +108.8,25255.8963612006,719.162067739874 +108.9,25321.7256979965,720.749766484686 +109,25388.15521609,722.376887298312 +109.1,25457.3851538148,724.004405930875 +109.2,25519.8547382393,725.592348629179 +109.3,25581.4287240183,727.219544974331 +109.4,25683.1650376913,728.807364248686 +109.5,25691.1352041436,730.355352421241 +109.6,25658.4671857803,731.942925960325 +109.7,25761.2921742323,733.490998268993 +109.8,25822.2783302568,734.999280022108 +109.9,25882.8569202945,736.586876996266 +110,25954.436665593,738.13498554834 +110.1,25982.9236735835,739.643385373751 +110.2,26103.2658223732,741.191449990815 +110.3,26264.9387863168,742.739429792028 +110.4,26291.1629119614,744.287325926293 +110.5,26355.6408903838,745.835221976793 +110.6,26426.0483887953,747.30390178112 +110.7,26485.3223973987,748.772417245906 +110.8,26547.2436737199,750.280730629683 +110.9,26610.8712287314,751.749220578759 +111,26673.3454320985,753.218120091679 +111.1,26735.0462269811,754.726789950832 +111.2,26797.5464248076,756.275144982161 +111.3,26861.5042937876,757.823049564053 +111.4,26925.9567573293,759.411062253404 +111.5,26988.8912697665,760.959013523032 +111.6,27049.9231888396,762.506958981322 +111.7,27111.1376677737,764.054925180022 +111.8,27174.2690570424,765.603016240816 +111.9,27237.8415466282,767.111007832816 +112,27299.8300574761,768.658911958833 +112.1,27360.4857268512,770.127238921248 +112.2,27421.4015507608,771.556243659753 +112.3,27483.8732171264,773.065709704778 +112.4,27548.1179451618,774.574291813502 +112.5,27612.2183326308,776.082780102741 +112.6,27674.9829808299,777.630634629172 +112.7,27737.198738018,779.099378373273 +112.8,27799.5643327281,780.534689862686 +112.9,27862.7533749501,782.069732255912 +113,27926.7677461688,783.625424566947 +113.1,27990.983676367,785.199409759815 +113.2,28055.5676982142,786.750431196585 +113.3,28121.6455995066,788.300742751711 +113.4,28189.3248226526,789.928978865054 +113.5,28257.9025701603,791.66936239123 +113.6,28326.1882149856,793.428802766003 +113.7,28394.0651366914,795.087692128107 +113.8,28463.2677702386,796.769507973078 +113.9,28533.1398518223,798.473360274575 +114,28602.9051342233,800.138246658159 +114.1,28672.8623633382,801.84590532504 +114.2,28742.765170785,803.555561049594 +114.3,28812.5871093966,805.225783304169 +114.4,28882.2906501835,806.932764050936 +114.5,28951.482786003,808.599137838698 +114.6,29021.8821651149,810.265718413039 +114.7,29093.4677136263,811.975276982733 +114.8,29164.21291687,813.648358614934 +114.9,29234.0943242358,815.249341691296 +115,29304.3217209444,816.914923597175 +115.1,29375.8293226343,818.581988904609 +115.2,29445.7419710058,820.208411750222 +115.3,29512.4440712883,821.877457480447 +115.4,29578.6269839558,823.54276938636 +115.5,29647.0921112029,825.201731593111 +115.6,29717.9711168363,826.933802663361 +115.7,29789.4064225609,828.600044459965 +115.8,29859.388223568,830.265917107401 +115.9,29929.7578536632,831.975015664363 +116,30001.2215373938,833.640961551494 +116.1,30071.3870583917,835.308676812078 +116.2,30139.9581293126,836.978770847731 +116.3,30206.4034042944,838.603603350547 +116.4,30268.9583398341,840.190595822891 +116.5,30329.3811608596,841.783324888701 +116.6,30392.6163024003,843.409678191573 +116.7,30460.2574380747,845.03779764033 +116.8,30529.2419064622,846.666567454985 +116.9,30597.1869997771,848.292912329711 +117,30665.7118461795,849.922953089645 +117.1,30737.8998856094,851.592329157853 +117.2,30812.8093000053,853.295229359547 +117.3,30885.3151370675,854.962492758027 +117.4,30953.6752282986,856.670304029879 +117.5,31021.4539623597,858.375298549896 +117.6,31092.4211079187,860.081896924535 +117.7,31165.7280558011,861.86668162847 +117.8,31228.6728187708,863.609487483864 +117.9,31299.2717996438,865.233721526096 +118,31399.2689259207,866.86212168968 +118.1,31388.2633730408,868.484834780908 +118.2,31457.7416293934,870.112104752039 +118.3,31526.1903841264,871.822163967689 +118.4,31595.3273710097,873.491915331232 +118.5,31679.9484778758,875.241080060671 +118.6,31754.6651074029,877.111959821704 +118.7,31799.3805383506,878.934978758088 +118.8,31953.9476264493,880.725209740225 +118.9,32026.6450797908,882.516159622377 +119,32097.9147522174,884.277744559661 +119.1,32168.5288002926,886.022423481451 +119.2,32238.9716235003,887.812082740275 +119.3,32314.0739077005,889.556332873639 +119.4,32388.6029524845,891.381197123658 +119.5,32462.9279519574,893.208094549607 +119.6,32538.8922107705,895.029296354699 +119.7,32616.8033265883,896.75564379313 +119.8,32694.213518822,898.543540986257 +119.9,32767.0798218012,900.246430965284 +120,32836.8884888654,901.91250005569 +120.1,32906.9817573413,903.584577844355 +120.2,32978.317349848,905.249921313438 +120.3,33049.9120679916,906.917514890155 +120.4,33121.2279726974,908.667857744106 +120.5,33192.814631414,910.37265142645 +120.6,33265.598839993,912.080928176621 +120.7,33339.8464005321,913.872944649292 +120.8,33414.9504835079,915.655677904074 +120.9,33489.9908876614,917.481276550015 +121,33564.9846900137,919.348816891723 +121.1,33640.0666322429,921.172621756636 +121.2,33714.9368917028,922.99874569343 +121.3,33790.1692373189,924.868449762314 +121.4,33867.0368462007,926.7293172365 +121.5,33945.4040927248,928.595971169112 +121.6,34025.5247320338,930.464143597314 +121.7,34105.5430117188,932.28510945352 +121.8,34183.6780264386,934.093585679462 +121.9,34260.636890894,935.963938633612 +122,34338.155495757,937.827653774949 +122.1,34415.7424609108,939.694585955097 +122.2,34493.442828753,941.605044051373 +122.3,34570.5941687863,943.513722206042 +122.4,34647.7202828081,945.461837770177 +122.5,34727.9325858334,947.465390950756 +122.6,34811.3510742167,949.444401719883 +122.7,34894.5825756942,951.386417610181 +122.8,34975.8361645876,953.375486570035 +122.9,35055.4681466292,955.317938535104 +123,35135.1674167796,957.218019944761 +123.1,35217.0619393461,959.167418640294 +123.2,35297.4336123141,961.074824817775 +123.3,35377.5927390596,962.98124528906 +123.4,35457.6581580982,964.927192892446 +123.5,35522.9719808222,966.826660486825 +123.6,35639.198166818,968.690469871282 +123.7,35623.0795181998,970.640290572895 +123.8,35708.459189753,972.543168616407 +123.9,35795.6472427103,974.445000765594 +124,35864.265357962,976.35625166057 +124.1,35944.7615975336,978.264125394861 +124.2,36035.9048594752,980.170285221952 +124.3,36075.2971703959,982.076115231465 +124.4,36244.0812194168,983.854750072169 +124.5,36305.1047444502,985.517002565446 +124.6,36359.7749790837,987.102367990271 +124.7,36426.7903248792,988.479108974976 +124.8,36477.0693842652,989.69977169218 +124.9,36529.4805344953,990.854109488067 +125,36585.2664906653,992.167848029461 +125.1,36646.7829809451,993.644847965447 +125.2,36715.8987462324,995.319657765653 +125.3,36793.2338717616,997.151536994007 +125.4,36879.0765967366,999.18721770816 +125.5,36971.560461397,1001.46449705732 +125.6,37075.684841497,1003.84347573139 +125.7,37175.6646379621,1006.17097352076 +125.8,37270.059074941,1008.47757671894 +125.9,37364.9665048064,1010.73644900453 +126,37457.3026068506,1012.95992555872 +126.1,37547.5414157584,1015.26147870052 +126.2,37638.9105636039,1017.47890300672 +126.3,37722.4049360785,1019.66681527686 +126.4,37808.9619090908,1021.86396454682 +126.5,37898.6413621659,1024.00067540845 +126.6,37985.9176847824,1026.10353294546 +126.7,38073.8906847612,1028.25301193987 +126.8,38161.5917593965,1030.31736271936 +126.9,38247.2708119391,1032.37686533669 +127,38332.9639099812,1034.48237559344 +127.1,38418.7379111851,1036.5447633907 +127.2,38504.4638228857,1038.57039860821 +127.3,38590.2087545482,1040.64216396948 +127.4,38675.9481228967,1042.69865480003 +127.5,38761.6877581835,1044.72327725815 +127.6,38847.4287191669,1046.79680694546 +127.7,38933.1733337347,1048.85658915862 +127.8,39018.8833056922,1050.83703683149 +127.9,39104.7517921957,1052.90368315907 +128,39189.8750798069,1054.96224339781 +128.1,39273.1385820721,1056.94941987034 +128.2,39357.0856453152,1059.01144379426 +128.3,39444.9508518985,1060.98742159538 +128.4,39527.7584681314,1062.8934846913 +128.5,39606.8905927568,1064.84810468882 +128.6,39686.2622585515,1066.74569941698 +128.7,39764.6015450471,1068.56914917179 +128.8,39844.5448784505,1070.47911703405 +128.9,39923.9752368186,1072.38626874465 +129,39999.3667434419,1074.37505512631 +129.1,40079.9988640479,1076.43989817972 +129.2,40163.9451631454,1078.49438100479 +129.3,40245.8378719874,1080.51934155713 +129.4,40329.2902688658,1082.62915984174 +129.5,40413.2089404497,1084.68594684793 +129.6,40496.5908772478,1086.66604072748 +129.7,40581.1218383407,1088.65772006155 +129.8,40667.0058765886,1090.67804389863 +129.9,40752.950766467,1092.70914258746 +130,40840.6275064325,1094.85891798696 +130.1,40928.5455704106,1096.95891388513 +130.2,41015.9836739998,1099.02050087712 +130.3,41105.5585379445,1101.17476480608 +130.4,41194.8806631326,1103.34739848311 +130.5,41282.0815148545,1105.45612130024 +130.6,41370.70640029,1107.646752937 +130.7,41460.8276442254,1109.79295278768 +130.8,41550.454372192,1111.97711532411 +130.9,41640.6106638617,1114.25222597754 +131,41731.0166666851,1116.50483469573 +131.1,41820.6101768739,1118.69270421716 +131.2,41910.6927270507,1120.91943123841 +131.3,41999.8210328901,1123.05597107546 +131.4,42087.0416855996,1125.15074630625 +131.5,42175.757494538,1127.25582549374 +131.6,42265.7817203564,1129.34671082801 +131.7,42353.3505734705,1131.41533825199 +131.8,42441.1656439478,1133.56495251491 +131.9,42531.2175512278,1135.70466741973 +132,42623.0150851462,1137.8846604561 +132.1,42713.7400678407,1140.0853542048 +132.2,42802.1268036907,1142.33376519921 +132.3,42892.1324994019,1144.56024362853 +132.4,42987.93719278,1146.82955110561 +132.5,43082.9536143611,1149.00918147331 +132.6,43172.4451584013,1151.13263239527 +132.7,43261.2476315243,1153.36260387613 +132.8,43355.2319436013,1155.61280553198 +132.9,43449.5344017301,1157.8089844131 +133,43541.0370641295,1160.03262998815 +133.1,43629.1508922371,1162.20106110772 +133.2,43716.7635636401,1164.35968643007 +133.3,43805.3735704203,1166.57058013294 +133.4,43892.3891882922,1168.70404177249 +133.5,43979.4639340866,1170.80740369613 +133.6,44070.5864017241,1172.89060010392 +133.7,44160.4400752569,1175.05851650566 +133.8,44248.595292681,1177.25036096902 +133.9,44339.4921448439,1179.50017823493 +134,44430.9005135839,1181.71075616508 +134.1,44520.832024626,1183.77509871028 +134.2,44606.4239668513,1185.85183666117 +134.3,44689.1597086833,1187.97579341854 +134.4,44772.595085162,1189.97529875447 +134.5,44855.9639185974,1192.04878123705 +134.6,44939.7382290447,1194.15195808749 +134.7,45027.5924518124,1196.30624483251 +134.8,45122.1139022137,1198.66368642161 +134.9,45217.7198247765,1201.03286179208 +135,45314.1756354786,1203.33562263975 +135.1,45417.4184468674,1205.57676717158 +135.2,45517.1552917366,1207.93752953476 +135.3,45614.9578025827,1210.2287882562 +135.4,45710.4812262607,1212.53908076664 +135.5,45802.762527199,1214.7905095328 +135.6,45896.6304584679,1217.08785938841 +135.7,45991.4614072129,1219.47706768256 +135.8,46081.7371548253,1221.99528875575 +135.9,46177.346632498,1224.34246727364 +136,46274.873350534,1226.77622506428 +136.1,46374.4769230259,1229.1812777853 +136.2,46474.7084370901,1231.56525056658 +136.3,46573.5559759136,1233.96137683455 +136.4,46668.9863218061,1236.29390358015 +136.5,46761.4274841224,1238.52439550418 +136.6,46855.0942540438,1240.79970598101 +136.7,46950.0513198531,1243.06133074673 +136.8,47042.5175001992,1245.33212017717 +136.9,47136.0819597971,1247.64048475211 +137,47232.2021403693,1249.93504898395 +137.1,47329.2438222132,1252.24282969016 +137.2,47430.5112123545,1254.70462764238 +137.3,47531.7761769404,1257.1200904006 +137.4,47629.417659404,1259.49872143432 +137.5,47730.1392209024,1261.9213749895 +137.6,47828.6909861294,1264.33992703079 +137.7,47924.4759593521,1266.72601187703 +137.8,48024.1268384957,1269.1608064027 +137.9,48116.1306565768,1271.57191252626 +138,48212.2071782945,1273.94740170183 +138.1,48309.973813682,1276.36402040136 +138.2,48405.2152776075,1278.69860569716 +138.3,48498.7579444528,1280.94806932098 +138.4,48596.0332256722,1283.25128745874 +138.5,48690.770795759,1285.49152254496 +138.6,48788.6308104444,1287.70068724983 +138.7,48882.7696233335,1290.05155286106 +138.8,48978.4324464729,1292.35184576939 +138.9,49075.6246834774,1294.70711648106 +139,49175.6505070229,1297.13655339959 +139.1,49273.4789177368,1299.59442718006 +139.2,49372.4683168421,1302.06163026494 +139.3,49474.8347918603,1304.61439138343 +139.4,49575.2773628547,1307.07388716307 +139.5,49677.3030735409,1309.57081296484 +139.6,49780.082294122,1312.10165217458 +139.7,49880.5246461109,1314.59676500456 +139.8,49980.4337830782,1316.95861084386 +139.9,50080.5696610014,1319.42066745725 +140,50180.298864068,1321.81419581124 +140.1,50282.72441961,1324.22122110899 +140.2,50385.4351171231,1326.6916453427 +140.3,50487.6896575672,1329.15188629664 +140.4,50592.1251759237,1331.64685969714 +140.5,50697.0193612543,1334.28292303117 +140.6,50801.7306479335,1336.85585170175 +140.7,50906.7445477115,1339.38096629095 +140.8,51009.434381556,1341.97298871418 +140.9,51109.297583514,1344.51840071942 +141,51209.5596650412,1347.01749467219 +141.1,51312.3711110608,1349.57140687367 +141.2,51414.2496053022,1352.07385469088 +141.3,51514.1911029272,1354.53813738947 +141.4,51614.2485816976,1357.08171344843 +141.5,51714.2591543275,1359.50312351923 +141.6,51814.3413111244,1361.83705616816 +141.7,51914.1810544709,1364.26906606904 +141.8,52011.3807369454,1366.6912943257 +141.9,52109.7227661128,1369.06447495864 +142,52213.2239437761,1371.56946865184 +142.1,52317.5730470151,1374.04188868489 +142.2,52419.5576525161,1376.53595227665 +142.3,52522.7253081076,1379.19889942406 +142.4,52627.808320769,1381.80884815841 +142.5,52732.56906166,1384.34282453573 +142.6,52837.1930586826,1386.97325816964 +142.7,52938.7173819558,1389.47918812212 +142.8,53038.577060623,1391.89483876351 +142.9,53139.0249569813,1394.40813653904 +143,53238.886790605,1396.87111847874 +143.1,53339.9157988631,1399.32757672704 +143.2,53444.0555185022,1401.91221102671 +143.3,53551.142548708,1404.45088214576 +143.4,53657.3872080994,1407.05508206198 +143.5,53762.6691205073,1409.79597832433 +143.6,53871.9994559047,1412.49121895176 +143.7,53983.4287038034,1415.1007445347 +143.8,54090.3766912967,1417.73984398288 +143.9,54193.4401560646,1420.36299073297 +144,54296.2604012737,1422.98016797531 +144.1,54402.8243192247,1425.62258141208 +144.2,54512.0778887049,1428.24974360766 +144.3,54616.6539243449,1430.82614056905 +144.4,54719.7957813712,1433.53352765711 +144.5,54825.9848827678,1436.21895556727 +144.6,54934.211243549,1438.82079286334 +144.7,55043.0226830557,1441.47783902347 +144.8,55149.3044023656,1444.12903002773 +144.9,55254.6224571397,1446.70167894404 +145,55361.6850424967,1449.40286552763 +145.1,55470.1812033504,1452.02528929389 +145.2,55574.1651402408,1454.62732605516 +145.3,55656.5297182946,1457.31283281415 +145.4,55743.4461342705,1459.97737864896 +145.5,55842.0261506921,1462.54516934483 +145.6,55948.340711456,1465.20284223462 +145.7,56053.2678402167,1467.77276791085 +145.8,56155.995890348,1470.26657598095 +145.9,56261.6598708728,1472.86805434742 +146,56391.3182774648,1475.44323216163 +146.1,56514.1078116607,1477.97984312165 +146.2,56621.831737347,1480.49888500381 +146.3,56720.1977944381,1482.99676251815 +146.4,56820.4893652058,1485.44051923268 +146.5,56918.1002284107,1488.08928786222 +146.6,57018.7428260592,1490.67336046136 +146.7,57121.6942534474,1493.20147721459 +146.8,57226.264608629,1495.78165357308 +146.9,57334.453189346,1498.47631458244 +147,57443.7919324957,1501.18085956202 +147.1,57555.696450954,1503.99654156651 +147.2,57672.3703828055,1506.67377561581 +147.3,57783.6537562588,1509.31448084206 +147.4,57889.1508485529,1512.02677467497 +147.5,57994.8207143242,1514.74128463597 +147.6,58102.6233529832,1517.43894404266 +147.7,58213.5999750756,1520.20244624281 +147.8,58325.4438214093,1522.94679488145 +147.9,58434.3746885436,1525.72648357579 +148,58551.4931991048,1528.62299566751 +148.1,58667.4495294283,1531.53787485814 +148.2,58778.8675639562,1534.38591805634 +148.3,58894.7856336441,1537.28775499885 +148.4,59010.3425356254,1540.1430864917 +148.5,59119.309771855,1542.90279614343 +148.6,59232.8191746143,1545.7803422775 +148.7,59342.2276629396,1548.61492913811 +148.8,59452.4228079659,1551.37273797732 +148.9,59566.6364869931,1554.23469181652 +149,59679.8832159102,1557.04533286036 +149.1,59791.894144858,1559.82346443871 +149.2,59907.0399407073,1562.73694962825 +149.3,60018.0806920891,1565.49705649596 +149.4,60127.0293594898,1568.15787625616 +149.5,60237.8539997065,1570.87550086397 +149.6,60349.6952617374,1573.56502689395 +149.7,60455.4165641507,1576.26635588411 +149.8,60562.2999027002,1579.0354577649 +149.9,60672.0551950483,1581.72444608347 +150,60781.4495644115,1584.42546808728 +150.1,60891.4472549265,1587.2182695275 +150.2,61003.2560845828,1590.02993649564 +150.3,61114.0824701733,1592.85844275875 +150.4,61230.6078104854,1595.73467999798 +150.5,61347.4823138653,1598.59688681561 +150.6,61461.8595292901,1601.49333323608 +150.7,61579.5386244788,1604.52747598076 +150.8,61699.6786701244,1607.56906406446 +150.9,61819.6108713453,1610.57784498029 +151,61940.0299998648,1613.61173394035 +151.1,62057.1307349071,1616.61364359008 +151.2,62171.5149367214,1619.55387247646 +151.3,62290.0681754412,1622.57730395107 +151.4,62410.4576425359,1625.50533210616 +151.5,62528.105955252,1628.39654395367 +151.6,62645.2279725743,1631.3717608494 +151.7,62762.022323497,1634.29868330043 +151.8,62876.9065760648,1637.19279614584 +151.9,62997.8500780633,1640.1162229466 +152,63114.6549705984,1643.07504032211 +152.1,63228.4813611786,1646.00220902755 +152.2,63345.19892617,1649.02925282053 +152.3,63462.1839585812,1651.97573689877 +152.4,63576.6142428052,1654.90301043894 +152.5,63694.765861509,1657.92823781848 +152.6,63811.4626765016,1660.95601770936 +152.7,63930.6772424543,1663.87811979641 +152.8,64048.1229880008,1666.92308457707 +152.9,64165.8776543335,1669.88736608258 +153,64285.3801531525,1672.85155547232 +153.1,64405.3503656566,1675.88952442283 +153.2,64524.318181794,1678.86156456701 +153.3,64639.0578653953,1681.78763896452 +153.4,64753.2329971856,1684.74622035076 +153.5,64873.4860025401,1687.53610672162 +153.6,64992.8652774562,1690.24335744182 +153.7,65110.8276856471,1692.85138733449 +153.8,65231.2216270605,1695.23263231301 +153.9,65351.0239550203,1697.42022537974 +154,65473.3539132137,1699.45361392515 +154.1,65596.3519466473,1701.17487653069 +154.2,65716.0043176435,1702.68837752815 +154.3,65836.1202101498,1703.99707753373 +154.4,65955.8885790078,1705.03542215268 +154.5,66072.7710570852,1705.87183366814 +154.6,66191.2371392516,1706.49295097715 +154.7,66311.6480708546,1706.89359334632 +154.8,66429.3441077138,1707.15227030376 +154.9,66546.4162954433,1707.27037783 +155,66666.8637756382,1707.24052160303 +155.1,66787.0634529149,1707.14086530323 +155.2,66910.2685181965,1706.95929902734 +155.3,67031.8744092544,1706.71016230896 +155.4,67151.5164013007,1706.41979756539 +155.5,67274.0563025652,1706.08925932754 +155.6,67395.804648274,1705.71203917304 +155.7,67512.0723426813,1705.28320055023 +155.8,67632.0598445647,1704.81331848481 +155.9,67755.2685267189,1704.31403642802 +156,67878.0422219832,1703.79527810592 +156.1,68001.1254258847,1703.25808949164 +156.2,68121.6483603162,1702.70580792314 +156.3,68240.5897452037,1702.16638734482 +156.4,68358.8357266965,1701.64568200604 +156.5,68470.9872168579,1701.11490934934 +156.6,68576.9504439391,1700.57745312456 +156.7,68680.7610100361,1700.07264452721 +156.8,68783.4644132104,1699.54956299457 +156.9,68895.0893397299,1699.03090873193 +157,69011.9388347948,1698.47528343225 +157.1,69125.7788417325,1697.91621511298 +157.2,69245.6210313375,1697.35948309217 +157.3,69367.8447327349,1696.78621935685 +157.4,69492.8235902395,1696.17187508517 +157.5,69618.6041386374,1695.57967422305 +157.6,69737.8255634099,1694.95108387198 +157.7,69854.498833671,1694.32565516966 +157.8,69974.285562235,1693.69421552412 +157.9,70091.1772427671,1693.03707640538 +158,70208.4659163291,1692.39350327563 +158.1,70325.6358899843,1691.76209855555 +158.2,70442.7968985367,1691.09321067774 +158.3,70559.7042887462,1690.44839874415 +158.4,70674.0191252717,1689.81634256092 +158.5,70792.7233431332,1689.14604089133 +158.6,70913.0308947379,1688.50111836508 +158.7,71030.8038234927,1687.86905360325 +158.8,71145.6193521741,1687.19932179031 +158.9,71257.6464277086,1686.56250914419 +159,71366.9671168649,1685.9349202328 +159.1,71478.6979499418,1685.29641497522 +159.2,71592.0849838816,1684.69437507772 +159.3,71703.068898111,1684.10093992577 +159.4,71817.0071291037,1683.50567083785 +159.5,71931.3309678753,1682.90336173784 +159.6,72047.9069369521,1682.29256809305 +159.7,72170.9479465807,1681.65204730672 +159.8,72292.3921191497,1681.0099941805 +159.9,72408.9806084209,1680.33384707344 +160,72526.3431435312,1679.66030126448 +160.1,72643.3243560869,1678.94273875545 +160.2,72762.5223758883,1678.26909296831 +160.3,72879.5488851217,1677.56212705831 +160.4,72993.5005396356,1676.8889788719 +160.5,73108.1466472182,1676.22416682502 +160.6,73221.2530797695,1675.53003468981 +160.7,73331.0743659932,1674.85277246336 +160.8,73439.4853614546,1674.21915149063 +160.9,73548.5971143862,1673.58392577102 +161,73657.9987482106,1672.94573174538 +161.1,73764.0269058036,1672.33943393975 +161.2,73868.6054413233,1671.70165302718 +161.3,73973.4207847807,1671.12683484366 +161.4,74078.3342389063,1670.53434362476 +161.5,74184.2570598095,1669.90782202635 +161.6,74293.1001001635,1669.2706929155 +161.7,74403.838021041,1668.64732078762 +161.8,74517.8328785054,1667.98108481884 +161.9,74632.2586626216,1667.33968079952 +162,74746.4405095619,1666.69543668544 +162.1,74863.179930416,1666.01892781141 +162.2,74983.6626910661,1665.36662817218 +162.3,75100.2799984186,1664.69093313421 +162.4,75217.8027164639,1664.04988347422 +162.5,75332.3481936968,1663.37357546612 +162.6,75448.9147696492,1662.70783591568 +162.7,75568.5484680291,1662.00079692523 +162.8,75688.6240808028,1661.32735538091 +162.9,75805.3412846515,1660.65267135093 +163,75922.8113810527,1659.97960151117 +163.1,76037.5475076243,1659.2947268738 +163.2,76151.7802920866,1658.62909280857 +163.3,76266.1016229223,1657.95076051768 +163.4,76379.9980581412,1657.31693610717 +163.5,76488.6130168174,1656.67998189256 +163.6,76594.4025046646,1656.05456742373 +163.7,76703.3173538632,1655.41746812874 +163.8,76814.0198240947,1654.79280886691 +163.9,76928.2003684631,1654.15898422127 +164,77040.2780646658,1653.52384290368 +164.1,77149.6167710812,1652.88876607622 +164.2,77263.9161513712,1652.25533961821 +164.3,77380.6099973597,1651.60681081782 +164.4,77488.7752006175,1651.0249901727 +164.5,77594.6658783404,1650.43316444214 +164.6,77700.2713420822,1649.9197955324 +164.7,77808.4167499528,1649.44156043102 +164.8,77918.3531552255,1649.00952469171 +164.9,78025.6878449671,1648.62585042385 +165,78129.4067080051,1648.31043569427 +165.1,78234.4450519979,1648.03137707645 +165.2,78345.4357409376,1647.82510335293 +165.3,78454.6565352203,1647.64455226774 +165.4,78563.124943244,1647.5162496733 +165.5,78676.3450190376,1647.42029489304 +165.6,78790.7459380106,1647.35815596442 +165.7,78905.4228626868,1647.32838787418 +165.8,79018.400642834,1647.32763744174 +165.9,79121.7440868487,1647.35176066439 +166,79221.5646876827,1647.39658074549 +166.1,79321.596650461,1647.45792088843 +166.2,79418.0836219293,1647.53160518442 +166.3,79517.8693272358,1647.61373948628 +166.4,79623.2796676112,1647.70139118689 +166.5,79731.4056283392,1647.79268954883 +166.6,79845.7556467166,1647.88667385706 +166.7,79965.0967189784,1647.98292686065 +166.8,80081.6432537713,1648.08153546105 +166.9,80195.9999062768,1648.18342264516 +167,80308.9577163781,1648.29039246316 +167.1,80420.0619292511,1648.40396966548 +167.2,80534.0752484563,1648.52411259631 +167.3,80648.3967501687,1648.64967692561 +167.4,80762.625857856,1648.7799489541 +167.5,80877.358831434,1648.91446349204 +167.6,80994.8919324436,1649.051733264 +167.7,81110.797844198,1649.18987116014 +167.8,81223.6023118521,1649.32965938347 +167.9,81333.6738370343,1649.4735578831 +168,81440.5878503368,1649.61954749006 +168.1,81546.5175364214,1649.76483710962 +168.2,81655.5442175635,1649.91149680602 +168.3,81761.4307593064,1650.06306952663 +168.4,81868.4181827348,1650.2196937081 +168.5,81978.1494936343,1650.37858830242 +168.6,82087.9125109786,1650.53705886437 +168.7,82201.3239538887,1650.69729262285 +168.8,82314.3757889754,1650.86220160163 +168.9,82425.412133129,1651.03030670524 +169,82539.5449119295,1651.1965824968 +169.1,82651.5273743039,1651.36042575235 +169.2,82760.890298185,1651.53368442567 +169.3,82872.6291675829,1651.70449718838 +169.4,82986.4562711967,1651.83593441168 +169.5,83096.0386525092,1651.94301915879 +169.6,83205.5383702843,1652.10285998185 +169.7,83316.2565535974,1652.29964541938 +169.8,83425.1606250885,1652.47385273158 +169.9,83536.4892509867,1652.63912894803 +170,83644.7485059266,1652.80905061461 +170.1,83743.7663161902,1653.01224403906 +170.2,83848.1753513108,1653.24109344492 +170.3,83958.9302151494,1653.42242434118 +170.4,84057.709617481,1653.56718666267 +170.5,84165.6515335535,1653.73992305588 +170.6,84273.4071099745,1653.91785824306 +170.7,84381.73484605,1654.09266027262 +170.8,84494.2630086947,1654.27705148295 +170.9,84607.8184484167,1654.46561015869 +171,84714.9794618521,1654.64728857388 +171.1,84830.9151256314,1654.83298286357 +171.2,84942.3890860155,1655.02130154702 +171.3,85052.0925756898,1655.20409652829 +171.4,85161.7992338728,1655.38703572975 +171.5,85269.2980463466,1655.56683603611 +171.6,85372.3891361211,1655.73995462286 +171.7,85476.8545083943,1655.91596434101 +171.8,85580.5198020918,1656.09528032738 +171.9,85680.6235064357,1656.26919064971 +172,85783.0798801222,1656.44402087534 +172.1,85887.8768377028,1656.62611024333 +172.2,85994.6977097895,1656.80882451843 +172.3,86105.9775064258,1656.99311415139 +172.4,86215.8563377469,1657.18169548431 +172.5,86326.5409054621,1657.36988842898 +172.6,86440.8226731108,1657.56417629943 +172.7,86552.5801092168,1657.76216497803 +172.8,86664.4970585594,1657.95295545682 +172.9,86778.7176110022,1658.14560323809 +173,86889.2337243,1658.34473648664 +173.1,86999.1707598855,1658.54338017168 +173.2,87111.1192841017,1658.74192004362 +173.3,87220.8728848226,1658.93969716127 +173.4,87331.8079031098,1659.13918304259 +173.5,87443.3985923627,1659.34550168252 +173.6,87552.8447115898,1659.549530546 +173.7,87662.3665533003,1659.74736036547 +173.8,87774.0286069357,1659.94565303227 +173.9,87884.8892582654,1660.14427604692 +174,87994.4054239797,1660.3428036065 +174.1,88102.6882884824,1660.54113250357 +174.2,88207.7392160046,1660.73931068133 +174.3,88312.401167199,1660.94220924135 +174.4,88417.4643444549,1661.15313161009 +174.5,88519.4099064493,1661.35558668139 +174.6,88620.6516358002,1661.51587443045 +174.7,88724.4597652916,1661.64511434405 +174.8,88822.0486152245,1661.82187921299 +174.9,88922.8831433434,1662.02524610717 +175,89025.513695377,1662.19880237303 +175.1,89127.4647124916,1662.35864933463 +175.2,89231.1471711453,1662.54957296017 +175.3,89336.0193100264,1662.79575346718 +175.4,89441.625827291,1663.07371167755 +175.5,89553.5213357868,1663.30366272487 +175.6,89664.7696077551,1663.50709091315 +175.7,89776.7071145383,1663.74115522371 +175.8,89888.9450720936,1663.98604997717 +175.9,90000.0170436219,1664.20842948945 +176,90107.982852264,1664.41661410335 +176.1,90213.3837070147,1664.62400783168 +176.2,90321.9107290381,1664.84139325643 +176.3,90429.1468694625,1665.0605028049 +176.4,90533.8236492635,1665.27923440535 +176.5,90637.869715278,1665.49654514845 +176.6,90739.2731008707,1665.70300561587 +176.7,90839.3115829519,1665.9006068629 +176.8,90938.8917516275,1666.09888761041 +176.9,91035.6473368992,1666.29743380077 +177,91134.4663223738,1666.49591411993 +177.1,91233.8924150055,1666.69419331202 +177.2,91331.3140969979,1666.89297324155 +177.3,91429.8181708899,1667.09539187916 +177.4,91529.997506002,1667.30456934009 +177.5,91629.9774064383,1667.5137340104 +177.6,91730.0599533434,1667.71263742175 +177.7,91829.8506589584,1667.91861932676 +177.8,91931.9324653422,1668.13604471548 +177.9,92039.7889813419,1668.35483313157 +178,92151.9718208425,1668.58497963756 +178.1,92266.3520738022,1668.83027219949 +178.2,92381.1272076194,1669.07840511493 +178.3,92498.7386807157,1669.32873611921 +178.4,92614.2948935754,1669.57907228443 +178.5,92728.4162987129,1669.81736343921 +178.6,92842.8666759517,1670.06488999794 +178.7,92954.7260363664,1670.30832446751 +178.8,93064.1329275619,1670.54499955871 +178.9,93173.3879420633,1670.78528847466 +179,93279.0640038936,1671.02097945975 +179.1,93386.3964315399,1671.24781706119 +179.2,93495.3368150491,1671.48538233227 +179.3,93602.6345004525,1671.71797758703 +179.4,93706.7291003137,1671.94825709907 +179.5,93809.2066842958,1672.171347323 +179.6,93914.7970569941,1672.38788838186 +179.7,94021.6436295091,1672.60295197034 +179.8,94121.0083673726,1672.8122230993 +179.9,94213.2323005847,1673.01123892813 +180,94305.9046774964,1673.2146911517 +180.1,94401.8832841815,1673.43073977694 +180.2,94499.5076682473,1673.64873776073 +180.3,94593.8002457611,1673.87120207791 +180.4,94689.7279577608,1674.110006754 +180.5,94792.7771389698,1674.35818846643 +180.6,94900.2665358175,1674.60805889206 +180.7,95009.058951064,1674.86043714289 +180.8,95118.7658238496,1675.10936389418 +180.9,95228.1999600774,1675.35706041486 +181,95338.0808889783,1675.61044472813 +181.1,95444.0613014217,1675.84216033019 +181.2,95545.9094451679,1676.07575184808 +181.3,95649.0707429714,1676.33139838513 +181.4,95750.4448065585,1676.57568177604 +181.5,95850.16089569,1676.8154120377 +181.6,95950.3801260287,1677.06545161317 +181.7,96049.9687230685,1677.30425116924 +181.8,96152.4181941324,1677.55074504996 +181.9,96259.8552855739,1677.79793167185 +182,96365.9412782441,1678.03370396741 +182.1,96470.5045514215,1678.27381572272 +182.2,96573.8830388707,1678.51029536588 +182.3,96673.4209460448,1678.73775598018 +182.4,96770.7631835884,1678.95858606553 +182.5,96868.2089344835,1679.1795639962 +182.6,96963.6999117154,1679.40558160907 +182.7,97060.2784646429,1679.62943817175 +182.8,97160.1245874335,1679.8593256578 +182.9,97260.2222626182,1680.09793886478 +183,97360.9274790291,1680.33536709521 +183.1,97465.2371885975,1680.5889384776 +183.2,97571.0598829639,1680.85549810184 +183.3,97675.7382172927,1681.1065586276 +183.4,97781.7698190172,1681.36965418391 +183.5,97886.9422770445,1681.62714982789 +183.6,97992.9743702887,1681.87887069102 +183.7,98102.8347131249,1682.1426385209 +183.8,98213.8139125235,1682.40923334043 +183.9,98320.8008738375,1682.66442953168 +184,98429.1842642046,1682.93322308234 +184.1,98536.4334570501,1683.19820401818 +184.2,98640.8917426213,1683.45492664739 +184.3,98745.9623011664,1683.72116124445 +184.4,98849.9447839761,1683.98610560848 +184.5,98953.3636857892,1684.25147788353 +184.6,99060.767376455,1684.52258627717 +184.7,99165.1489248811,1684.78375999286 +184.8,99266.7986483583,1685.03637429856 +184.9,99371.506513313,1685.30243341991 +185,99476.0734260033,1685.56684622524 +185.1,99583.5070209873,1685.82891870916 +185.2,99684.0862046798,1686.08241064714 +185.3,99769.1688478283,1686.32929304769 +185.4,99841.6915947206,1686.57941311259 +185.5,99904.5398095115,1686.83117068116 +185.6,99960.2526689067,1687.08244828441 +185.7,100017.065274449,1687.33402273112 +185.8,100076.703413296,1687.58678752171 +185.9,100149.841965506,1687.83554491194 +186,100245.069696695,1688.07955345612 +186.1,100364.498372866,1688.34291878251 +186.2,100503.775830952,1688.60864896292 +186.3,100654.242707091,1688.85983276216 +186.4,100808.045820863,1689.12237752018 +186.5,100959.002751558,1689.3889142076 +186.6,101102.602129275,1689.65525442779 +186.7,101236.003634919,1689.93272650605 +186.8,101358.038000201,1690.2010904384 +186.9,101469.20700764,1690.45571414532 +187,101571.481460837,1690.72493224599 +187.1,101667.203487608,1690.99062063484 +187.2,101758.714589486,1691.23851780126 +187.3,101848.225561637,1691.50424140705 +187.4,101937.55362844,1691.78673596272 +187.5,102028.090678853,1692.0535372953 +187.6,102120.803266422,1692.33089109279 +187.7,102216.232609272,1692.62145985655 +187.8,102314.494590115,1692.89076881579 +187.9,102415.280673622,1693.17520772566 +188,102517.987695415,1693.46552977799 +188.1,102621.980726489,1693.73050551619 +188.2,102726.626240222,1694.00842279518 +188.3,102831.345231959,1694.29925477145 +188.4,102935.681425126,1694.56395476834 +188.5,103039.305750155,1694.84207028526 +188.6,103142.016344482,1695.13226591625 +188.7,103243.738552547,1695.39991815708 +188.8,103344.524925799,1695.67326261267 +188.9,103444.553820304,1695.94714807572 +189,103544.076277169,1696.20845349666 +189.1,103643.347816426,1696.48068417586 +189.2,103742.623227121,1696.74178037035 +189.3,103842.129362708,1696.98992455957 +189.4,103942.030487091,1697.24777622957 +189.5,104042.426026362,1697.51335065408 +189.6,104143.3505688,1697.77681232666 +189.7,104244.773864873,1698.05636101694 +189.8,104346.600827237,1698.33577330884 +189.9,104448.672261717,1698.62530349188 +190,104550.792071924,1698.92091008034 +190.1,104652.761913202,1699.22890932473 +190.2,104754.384924378,1699.52337603416 +190.3,104855.490070575,1699.81994358147 +190.4,104955.952044157,1700.1110522962 +190.5,105055.691848515,1700.40186292853 +190.6,105154.676798062,1700.69405218277 +190.7,105252.92051824,1700.98078804561 +190.8,105350.482945514,1701.25476275808 +190.9,105447.468843895,1701.54313273964 +191,105544.003462122,1701.82427368132 +191.1,105640.212632716,1702.08596837496 +191.2,105736.222164573,1702.35130221289 +191.3,105832.154893897,1702.61607852362 +191.4,105928.124907603,1702.8794447249 +191.5,106024.236872715,1703.14921186164 +191.6,106120.586036373,1703.42496855462 +191.7,106217.258225829,1703.69252062369 +191.8,106314.329848446,1703.97610283282 +191.9,106411.86791533,1704.26961443086 +192,106509.932990389,1704.55736483232 +192.1,106608.584966934,1704.86180423942 +192.2,106707.883735136,1705.16054222845 +192.3,106807.882291449,1705.4686625456 +192.4,106908.605235755,1705.78705199669 +192.5,107010.044588632,1706.10456702752 +192.6,107112.159791346,1706.42154617834 +192.7,107214.877705859,1706.7414620197 +192.8,107318.092614823,1707.047673443 +192.9,107421.666224722,1707.35026745105 +193,107525.434556452,1707.65057959423 +193.1,107629.22944817,1707.9573229734 +193.2,107732.883165108,1708.2556983237 +193.3,107836.243232268,1708.56010804208 +193.4,107939.190737031,1708.86485942674 +193.5,108041.641459838,1709.16734241628 +193.6,108143.545874191,1709.47881144475 +193.7,108244.889146654,1709.7870787989 +193.8,108345.691136853,1710.08791876426 +193.9,108446.0059704,1710.40524849807 +194,108545.907206196,1710.70807749558 +194.1,108645.469533828,1711.01153765254 +194.2,108744.767464229,1711.33106081806 +194.3,108843.869229199,1711.64861605961 +194.4,108942.829313366,1711.96371302559 +194.5,109041.687998515,1712.29544246404 +194.6,109140.471363586,1712.62943053294 +194.7,109239.191284671,1712.95820845067 +194.8,109337.845435019,1713.29411977453 +194.9,109436.417463686,1713.63639768699 +195,109534.883096017,1713.97515652994 +195.1,109633.217601679,1714.325478207 +195.2,109731.396272958,1714.67030703186 +195.3,109829.396931589,1715.01133024802 +195.4,109927.204678586,1715.35610980573 +195.5,110024.81242374,1715.71194717199 +195.6,110122.220885615,1716.04193216189 +195.7,110219.438591552,1716.37729393471 +195.8,110316.481877665,1716.71407637159 +195.9,110413.374866233,1717.04537749149 +196,110510.146958853,1717.38246399807 +196.1,110606.828086622,1717.73948126678 +196.2,110703.448180638,1718.08038463042 +196.3,110800.036498044,1718.44567503907 +196.4,110896.618282279,1718.81160191695 +196.5,110993.213730463,1719.16782951813 +196.6,111089.837993085,1719.54048874394 +196.7,111186.501174014,1719.89228385645 +196.8,111283.208330489,1720.22291203023 +196.9,111379.959473126,1720.55854163223 +197,111476.750239868,1720.89458747025 +197.1,111573.575235734,1721.23996146763 +197.2,111670.429065443,1721.57626962026 +197.3,111767.306318621,1721.91792859737 +197.4,111864.201342767,1722.26163667546 +197.5,111961.108067829,1722.62639459535 +197.6,112058.02000166,1722.9919082808 +197.7,112154.930230012,1723.34906535666 +197.8,112251.831416543,1723.71030095241 +197.9,112348.715802811,1724.08948321396 +198,112445.575223366,1724.4468922467 +198.1,112542.401332793,1724.82317149982 +198.2,112639.185781125,1725.19960152165 +198.3,112735.920240099,1725.56992094398 +198.4,112832.598606997,1725.94299649843 +198.5,112929.221074569,1726.30027699836 +198.6,113025.794570584,1726.64512515219 +198.7,113122.332757827,1727.00122011466 +198.8,113218.8560341,1727.35382092412 +198.9,113315.391532218,1727.68927583781 +199,113411.973098311,1728.04638451334 +199.1,113508.639087983,1728.38968472889 +199.2,113605.428296383,1728.72797339597 +199.3,113702.379518657,1729.07751961786 +199.4,113799.529647479,1729.43500574541 +199.5,113896.904509277,1729.7922768952 +199.6,113994.516108635,1730.14987480275 +199.7,114092.362627744,1730.50643457419 +199.8,114190.428426402,1730.87255629457 +199.9,114288.68404202,1731.26589551711 +200,114387.086189614,1731.64390863285 +200.1,114485.579664289,1732.01276919092 +200.2,114584.106504997,1732.39144542101 +200.3,114682.60875015,1732.77077470777 +200.4,114781.029189568,1733.13970579878 +200.5,114879.317393942,1733.52319114981 +200.6,114977.432615474,1733.88470122081 +200.7,115075.343806385,1734.25217046798 +200.8,115173.029618919,1734.63470022132 +200.9,115270.47840534,1734.99649857684 +201,115367.688217933,1735.37290090912 +201.1,115464.666057594,1735.75885475974 +201.2,115561.42184437,1736.12020442814 +201.3,115657.96551682,1736.4782600725 +201.4,115754.307035698,1736.82192966166 +201.5,115850.457057296,1737.18354573413 +201.6,115946.427711964,1737.5398167312 +201.7,116042.23264748,1737.89699555043 +201.8,116137.887029052,1738.25356809914 +201.9,116233.407539317,1738.619948922 +202,116328.812378341,1739.01219687526 +202.1,116424.121241424,1739.41271668813 +202.2,116519.354645756,1739.78887470942 +202.3,116614.533151901,1740.18583765703 +202.4,116709.677320422,1740.56305186045 +202.5,116804.807144672,1740.93620541304 +202.6,116899.93939498,1741.30185156249 +202.7,116995.086842019,1741.66192496707 +202.8,117090.258256702,1742.03765563983 +202.9,117185.458410187,1742.41443261503 +203,117280.688073875,1742.79317278941 +203.1,117375.94401941,1743.16787460554 +203.2,117471.219585891,1743.57541547809 +203.3,117566.507335681,1743.97895349591 +203.4,117661.799831047,1744.37575455389 +203.5,117757.089670518,1744.77281499745 +203.6,117852.370552738,1745.16943992807 +203.7,117947.6384862,1745.5545348434 +203.8,118042.891854842,1745.97066010952 +203.9,118138.131418046,1746.35412069103 +204,118233.360310637,1746.74492125581 +204.1,118328.584042882,1747.14200635896 +204.2,118423.810464229,1747.53888675708 +204.3,118519.048699456,1747.93608536374 +204.4,118614.307938935,1748.34250335138 +204.5,118709.597373034,1748.74248001588 +204.6,118804.925396054,1749.1272871407 +204.7,118900.295949606,1749.52539649617 +204.8,118995.707473377,1749.92230838675 +204.9,119091.152905037,1750.31919116596 +205,119186.619680238,1750.71621584506 +205.1,119282.089732616,1751.11559606985 +205.2,119377.539493789,1751.49019256398 +205.3,119472.940689432,1751.91277647788 +205.4,119568.263995886,1752.31460554196 +205.5,119663.480089405,1752.71147374011 +205.6,119758.55977495,1753.1084130048 +205.7,119853.477639815,1753.50530239747 +205.8,119948.216139776,1753.90009838903 +205.9,120042.765814643,1754.31897241728 +206,120137.125288258,1754.70959415366 +206.1,120231.301268499,1755.12118486661 +206.2,120325.308547279,1755.53787889018 +206.3,120419.169871835,1755.95500429151 +206.4,120512.912291105,1756.35296935267 +206.5,120606.563069581,1756.76781890879 +206.6,120700.149471754,1757.1657520105 +206.7,120793.698425143,1757.56337097786 +206.8,120887.233978842,1757.96030946793 +206.9,120980.776144162,1758.35744203119 +207,121074.340888714,1758.7541215241 +207.1,121167.940136408,1759.16989995089 +207.2,121261.581767454,1759.56879330893 +207.3,121355.269618362,1759.98458144032 +207.4,121449.003818914,1760.40073342716 +207.5,121542.783333618,1760.81875688051 +207.6,121636.607121064,1761.23402273863 +207.7,121730.474138679,1761.67108633017 +207.8,121824.382589069,1762.10459164976 +207.9,121918.327869292,1762.51540897757 +208,122012.302225343,1762.95656350508 +208.1,122106.294752154,1763.39375080762 +208.2,122200.291393596,1763.80794548112 +208.3,122294.274942475,1764.24663937853 +208.4,122388.225041695,1764.66562139683 +208.5,122482.118937922,1765.06311867995 +208.6,122575.933532308,1765.5108915238 +208.7,122669.645726,1765.92306075722 +208.8,122763.232518884,1766.33889002142 +208.9,122856.673677579,1766.7772320747 +209,122949.954644671,1767.1740366189 +209.1,123043.066685818,1767.56868393551 +209.2,123136.00688974,1767.98805226193 +209.3,123228.778168226,1768.37982748972 +209.4,123321.389256132,1768.77691453255 +209.5,123413.854612646,1769.17466004776 +209.6,123506.191753288,1769.56301125368 +209.7,123598.418340674,1769.93545992349 +209.8,123690.552037423,1770.33824209429 +209.9,123782.610560049,1770.73385237709 +210,123874.612378699,1771.15095406466 +210.1,123966.57720596,1771.56347288945 +210.2,124058.526006861,1772.00480109999 +210.3,124150.480998878,1772.44961434621 +210.4,124242.465651926,1772.93021054604 +210.5,124334.504688366,1773.38045713929 +210.6,124426.624029104,1773.83367296991 +210.7,124518.850093856,1774.29501121991 +210.8,124611.209312342,1774.7555737628 +210.9,124703.728114282,1775.18238527477 +211,124796.431974608,1775.64402613629 +211.1,124889.338507389,1776.10041904572 +211.2,124982.454428402,1776.55685711425 +211.3,125075.775541999,1777.01796363145 +211.4,125169.28674111,1777.45068578267 +211.5,125262.962007243,1777.88642343721 +211.6,125356.764410479,1778.34793622827 +211.7,125450.647064267,1778.77986626832 +211.8,125544.560031495,1779.2165880818 +211.9,125638.453361919,1779.65342604854 +212,125732.2771055,1780.08996482217 +212.1,125825.981414497,1780.52069590839 +212.2,125919.516811039,1780.98337682612 +212.3,126012.834230425,1781.4195407058 +212.4,126105.885021121,1781.85105188299 +212.5,126198.620944763,1782.31257919514 +212.6,126290.994176156,1782.76888873579 +212.7,126382.957303073,1783.22475669364 +212.8,126474.463224152,1783.68631609552 +212.9,126565.464881336,1784.09722005579 +213,126655.915216562,1784.55516160576 +213.1,126745.767184206,1785.00203923573 +213.2,126834.979648001,1785.41396340125 +213.3,126923.532688259,1785.84972440311 +213.4,127011.430053392,1786.26792239043 +213.5,127098.699159916,1786.70338640663 +213.6,127185.391092447,1787.12204135287 +213.7,127271.580603702,1787.51820898206 +213.8,127357.366102068,1787.95443569435 +213.9,127442.863754671,1788.39103478832 +214,127528.192180163,1788.8277889226 +214.1,127613.469997195,1789.28216923893 +214.2,127698.815824419,1789.7195749663 +214.3,127784.347914331,1790.19590257918 +214.4,127870.175041085,1790.63830875565 +214.5,127956.386987225,1791.04997711338 +214.6,128043.054097276,1791.46620956809 +214.7,128130.227277741,1791.86417591906 +214.8,128217.937997106,1792.28159664793 +214.9,128306.198285831,1792.6923867461 +215,128395.001102514,1793.13250142772 +215.1,128484.329446075,1793.58279096466 +215.2,128574.165869022,1794.05850126511 +215.3,128664.492923862,1794.53355455396 +215.4,128755.293092627,1795.00986069546 +215.5,128846.544129269,1795.48631178226 +215.6,128938.211582274,1795.96693206076 +215.7,129030.248120304,1796.41896849634 +215.8,129122.593532198,1796.89460194952 +215.9,129215.17472697,1797.35003920828 +216,129307.905733809,1797.80834944177 +216.1,129400.687772558,1798.28407751436 +216.2,129493.413911313,1798.76046392006 +216.3,129585.976543813,1799.23702745873 +216.4,129678.268063796,1799.71319859798 +216.5,129770.181455517,1800.170357614 +216.6,129861.62452475,1800.62849718883 +216.7,129952.534500046,1801.07999400663 +216.8,130042.878697316,1801.54150327098 +216.9,130132.654519827,1801.97875731777 +217,130221.889458208,1802.43634186826 +217.1,130310.641090444,1802.91223400166 +217.2,130398.996491364,1803.38234714006 +217.3,130487.058001634,1803.88347087141 +217.4,130574.928626505,1804.38440758862 +217.5,130662.711371224,1804.85120246091 +217.6,130750.509225772,1805.35218265037 +217.7,130838.419430748,1805.82880005932 +217.8,130926.51916211,1806.28689633557 +217.9,131014.863334074,1806.7492059842 +218,131103.48459911,1807.20079334827 +218.1,131192.393347942,1807.65246148961 +218.2,131281.577709551,1808.13377558738 +218.3,131371.00356644,1808.61018910776 +218.4,131460.620288749,1809.0865464133 +218.5,131550.375049513,1809.58124051488 +218.6,131640.215021764,1810.09751160938 +218.7,131730.087378537,1810.58869163189 +218.8,131819.940097612,1811.10959101266 +218.9,131909.725209895,1811.63043217826 +219,131999.399618924,1812.12160794991 +219.1,132088.925100872,1812.63749292942 +219.2,132178.268304542,1813.12788272352 +219.3,132267.400751373,1813.62916823194 +219.4,132356.298835437,1814.12737336196 +219.5,132444.943018689,1814.60354435422 +219.6,132533.314582594,1815.05509385912 +219.7,132621.394808618,1815.531392372 +219.8,132709.164978225,1816.00781359989 +219.9,132796.606996085,1816.48367334985 +220,132883.710624193,1816.9547198463 +220.1,132970.478144023,1817.45862212365 +220.2,133056.924433995,1817.95486396858 +220.3,133143.076969485,1818.47092650269 +220.4,133228.975822818,1818.9870347786 +220.5,133314.673663268,1819.47710677238 +220.6,133400.23513386,1820.00551676705 +220.7,133485.729617241,1820.50194030924 +220.8,133571.226573532,1820.99315803109 +220.9,133656.795462857,1821.50933640314 +221,133742.505745337,1822.00380042371 +221.1,133828.424396833,1822.47995157429 +221.2,133914.606088601,1822.98238789506 +221.3,134001.090761045,1823.45113138314 +221.4,134087.903623713,1823.92723397557 +221.5,134175.055155305,1824.40387976322 +221.6,134262.541103663,1824.85852286501 +221.7,134350.342485778,1825.31653852107 +221.8,134438.428072051,1825.7931406312 +221.9,134526.764206633,1826.2695896167 +222,134615.317233675,1826.74103791467 +222.1,134704.053497326,1827.2371330659 +222.2,134792.93919639,1827.73945964885 +222.3,134881.938739061,1828.23770069253 +222.4,134971.013702182,1828.75409373262 +222.5,135060.122814807,1829.26964408349 +222.6,135149.221958203,1829.78560216916 +222.7,135238.264165845,1830.32830739098 +222.8,135327.199623422,1830.86475619385 +222.9,135415.97581418,1831.36822562532 +223,135504.539164187,1831.90952953659 +223.1,135592.836083071,1832.42572265392 +223.2,135680.812980459,1832.94167832612 +223.3,135768.416389511,1833.45775533919 +223.4,135855.599833254,1833.97396931883 +223.5,135942.334165092,1834.46310707038 +223.6,136028.608423895,1834.98490418194 +223.7,136114.429833998,1835.49985602682 +223.8,136199.823805201,1836.01526664254 +223.9,136284.833932765,1836.53242957859 +224,136369.521873892,1837.04796077336 +224.1,136453.960481374,1837.53974106918 +224.2,136538.223463093,1838.0826119542 +224.3,136622.384526931,1838.59932080188 +224.4,136706.517380767,1839.09137363072 +224.5,136790.695404213,1839.60807864414 +224.6,136874.984585044,1840.12374139163 +224.7,136959.436715897,1840.63945242644 +224.8,137044.08911807,1841.17978055764 +224.9,137128.964641522,1841.67384962757 +225,137214.071664875,1842.16939281095 +225.1,137299.404095409,1842.68539190626 +225.2,137384.941697339,1843.17938153428 +225.3,137470.657155375,1843.65494601879 +225.4,137556.522878027,1844.13290226034 +225.5,137642.511273805,1844.60925473651 +225.6,137728.594751218,1845.10661639558 +225.7,137814.745865269,1845.62415192674 +225.8,137900.93823819,1846.14017550175 +225.9,137987.146916315,1846.67714205509 +226,138073.348370861,1847.23432670215 +226.1,138159.520497928,1847.78830093974 +226.2,138245.642618496,1848.34391039568 +226.3,138331.69547843,1848.9007268794 +226.4,138417.661101986,1849.45609614981 +226.5,138503.521871071,1849.98503065124 +226.6,138589.260168371,1850.52709131935 +226.7,138674.858376575,1851.04283132959 +226.8,138760.298888192,1851.55874290975 +226.9,138845.566540647,1852.07481816306 +227,138930.654233672,1852.59115637697 +227.1,139015.563718801,1853.08097346225 +227.2,139100.305599367,1853.62384201198 +227.3,139184.899330506,1854.12771221005 +227.4,139269.373219156,1854.66168516442 +227.5,139353.76441423,1855.19800914195 +227.6,139438.116471533,1855.73944527518 +227.7,139522.47373636,1856.25569095879 +227.8,139606.880554006,1856.79787894462 +227.9,139691.381269766,1857.31279129979 +228,139776.020118521,1857.8300050085 +228.1,139860.835653621,1858.34601584776 +228.2,139945.852668588,1858.86153963996 +228.3,140031.081563456,1859.37071307929 +228.4,140116.518344767,1859.90471245198 +228.5,140202.144625578,1860.43901669767 +228.6,140287.927625453,1860.97454084672 +228.7,140373.820280886,1861.53480398998 +228.8,140459.76681641,1862.09074376891 +228.9,140545.710822895,1862.64640369702 +229,140631.595891216,1863.20204563837 +229.1,140717.365612244,1863.75768816412 +229.2,140802.964220538,1864.31335747825 +229.3,140888.343351261,1864.86944134675 +229.4,140973.466077841,1865.43192646904 +229.5,141058.306966184,1865.96995153406 +229.6,141142.852074678,1866.50769512158 +229.7,141227.098954189,1867.04531804867 +229.8,141311.056648061,1867.581033855 +229.9,141394.745048433,1868.11965346834 +230,141478.188139319,1868.65694647676 +230.1,141561.409958948,1869.18581332052 +230.2,141644.434545547,1869.74205156772 +230.3,141727.285937344,1870.2956428853 +230.4,141809.988068794,1870.85116149741 +230.5,141892.563695028,1871.40987102206 +230.6,141975.033755419,1871.96255589682 +230.7,142057.417365285,1872.51792504652 +230.8,142139.731815884,1873.07547742072 +230.9,142221.992574416,1873.63059466969 +231,142304.213284024,1874.16054321933 +231.1,142386.405867568,1874.69467765619 +231.2,142468.581603172,1875.23400368704 +231.3,142550.751760657,1875.75223583741 +231.4,142632.927609847,1876.28534877225 +231.5,142715.120420564,1876.81925923243 +231.6,142797.34134103,1877.35275575249 +231.7,142879.599021555,1877.91435854108 +231.8,142961.897450734,1878.47004743354 +231.9,143044.235876467,1879.02046972194 +232,143126.608805958,1879.61521449471 +232.1,143209.006005715,1880.194193069 +232.2,143291.412501548,1880.74541439166 +232.3,143373.808700174,1881.3225602851 +232.4,143456.172765526,1881.90056970985 +232.5,143538.482782552,1882.45166408955 +232.6,143620.716836203,1883.02751231758 +232.7,143702.853011427,1883.58361464403 +232.8,143784.869458692,1884.13896113693 +232.9,143866.747401111,1884.72257744826 +233,143948.475330114,1885.2764243012 +233.1,144030.049316955,1885.83151254709 +233.2,144111.473012718,1886.41362410801 +233.3,144192.757648315,1886.97036081312 +233.4,144273.922034488,1887.4982527747 +233.5,144354.992496289,1888.03149955156 +233.6,144435.99986595,1888.56370504445 +233.7,144516.975287217,1889.10083082866 +233.8,144597.949903841,1889.6568515222 +233.9,144678.954859569,1890.18495836177 +234,144760.02129806,1890.71773058974 +234.1,144841.179124252,1891.28051946025 +234.2,144922.452652473,1891.85817495303 +234.3,145003.859651204,1892.43598169309 +234.4,145085.411343074,1893.01449538249 +234.5,145167.112404863,1893.57080324351 +234.6,145248.960967497,1894.15421446932 +234.7,145330.948616145,1894.74872880873 +234.8,145413.061628846,1895.34278090428 +234.9,145495.285328394,1895.9177764875 +235,145577.605037585,1896.51259776926 +235.1,145660.006079214,1897.10606631622 +235.2,145742.473776077,1897.70089946712 +235.3,145824.993401363,1898.29830084241 +235.4,145907.549893717,1898.87809069651 +235.5,145990.127755678,1899.45611937192 +235.6,146072.711053557,1900.04905959189 +235.7,146155.283417442,1900.62268572949 +235.8,146237.828041188,1901.19711869526 +235.9,146320.327682426,1901.79187485126 +236,146402.764712164,1902.38520221091 +236.1,146485.12139973,1902.97996051425 +236.2,146567.380014326,1903.57745626776 +236.3,146649.522825159,1904.15743769629 +236.4,146731.532101431,1904.73562716842 +236.5,146813.390252333,1905.32857344739 +236.6,146895.081187805,1905.90211023264 +236.7,146976.591084482,1906.47643241581 +236.8,147057.908394253,1907.07115304118 +236.9,147139.023844263,1907.66433862004 +237,147219.930436916,1908.25901832188 +237.1,147300.623449868,1908.85660702817 +237.2,147381.100296047,1909.43679467805 +237.3,147461.359162886,1910.01535508733 +237.4,147541.398246381,1910.63147812496 +237.5,147621.215742528,1911.22742667496 +237.6,147700.809847324,1911.82301931123 +237.7,147780.178764855,1912.42071828825 +237.8,147859.322037178,1913.0148022992 +237.9,147938.243341435,1913.60920187013 +238,148016.9508433,1914.22754206722 +238.1,148095.457196973,1914.78493714589 +238.2,148173.779545186,1915.33774463942 +238.3,148251.9395192,1915.89502051725 +238.4,148329.963230715,1916.46466591855 +238.5,148407.879941992,1917.03767823903 +238.6,148485.719268733,1917.63256625712 +238.7,148563.510826644,1918.20542715567 +238.8,148641.284231429,1918.77278988539 +238.9,148719.069098793,1919.37058047254 +239,148796.894999512,1919.96425794086 +239.1,148874.789624061,1920.54343363112 +239.2,148952.776345714,1921.1224919677 +239.3,149030.87405227,1921.696274097 +239.4,149109.097146058,1922.29038357777 +239.5,149187.45554393,1922.91453725654 +239.6,149265.954677267,1923.52797178204 +239.7,149344.595536903,1924.16259230842 +239.8,149423.376508502,1924.79954728506 +239.9,149502.295809454,1925.44887327214 +240,149581.351657152,1926.08421048996 +240.1,149660.542268985,1926.72215860924 +240.2,149739.865862346,1927.35657033267 +240.3,149819.320468523,1927.97484363501 +240.4,149898.902193462,1928.61014808395 +240.5,149978.604268962,1929.24607766857 +240.6,150058.41704309,1929.86552555856 +240.7,150138.327980183,1930.49996024624 +240.8,150218.321660851,1931.13204128584 +240.9,150298.379781971,1931.76593994822 +241,150378.481342795,1932.40254248954 +241.1,150458.604384186,1933.01563368872 +241.2,150538.726937427,1933.65505451586 +241.3,150618.827033802,1934.29030012075 +241.4,150698.882704593,1934.92540031785 +241.5,150778.871990495,1935.56829965386 +241.6,150858.774303528,1936.20400548476 +241.7,150938.573201578,1936.85266793606 +241.8,151018.256726017,1937.48789360048 +241.9,151097.817401706,1938.11846092174 +242,151177.252236993,1938.75433743213 +242.1,151256.562723715,1939.37305952423 +242.2,151335.754827785,1940.0037882698 +242.3,151414.837627277,1940.63970520364 +242.4,151493.820537889,1941.25989407351 +242.5,151572.712975319,1941.91662759385 +242.6,151651.524355266,1942.54918762548 +242.7,151730.264093427,1943.18516253566 +242.8,151808.94150099,1943.83665230603 +242.9,151887.56401751,1944.4683673193 +243,151966.135738436,1945.10428882389 +243.1,152044.657370157,1945.75432952012 +243.2,152123.126229995,1946.36676866501 +243.3,152201.536246207,1946.9798847959 +243.4,152279.877957987,1947.61187197182 +243.5,152358.138619973,1948.22996710669 +243.6,152436.303969372,1948.82929516531 +243.7,152514.359698432,1949.42339113601 +243.8,152592.291499395,1950.04229810298 +243.9,152670.085064509,1950.6633542519 +244,152747.726086017,1951.29764491826 +244.1,152825.200531196,1951.9328819651 +244.2,152902.497114523,1952.57058208875 +244.3,152979.608604592,1953.24139707341 +244.4,153056.531835973,1953.91522409778 +244.5,153133.267709211,1954.55353093579 +244.6,153209.821190828,1955.22519221077 +244.7,153286.201313318,1955.88305887531 +244.8,153362.420900124,1956.52159539022 +244.9,153438.49409346,1957.19298474308 +245,153514.435047399,1957.82878605839 +245.1,153590.257916015,1958.46666784649 +245.2,153665.976853381,1959.13798120114 +245.3,153741.60601357,1959.77379050188 +245.4,153817.15945764,1960.41171272871 +245.5,153892.649631126,1961.08297746669 +245.6,153968.086121318,1961.71879357767 +245.7,154043.475620927,1962.3567522577 +245.8,154118.82192809,1963.02819509207 +245.9,154194.125946368,1963.66761285324 +246,154269.385684744,1964.30387016406 +246.1,154344.59635064,1964.97528345394 +246.2,154419.751872427,1965.61417791216 +246.3,154494.846142142,1966.2681385755 +246.4,154569.873051825,1966.90325266134 +246.5,154644.826493514,1967.50930673592 +246.6,154719.700359247,1968.13530449439 +246.7,154794.488547495,1968.81811027096 +246.8,154869.185753766,1969.45026592996 +246.9,154943.78901281,1970.0560498776 +247,155018.297876744,1970.6742985065 +247.1,155092.714415059,1971.32174504175 +247.2,155167.043214617,1971.96366510376 +247.3,155241.291379649,1972.60656295569 +247.4,155315.468525326,1973.20926427131 +247.5,155389.585987152,1973.84702197417 +247.6,155463.655278761,1974.51144607501 +247.7,155537.687913789,1975.18362899342 +247.8,155611.695405868,1975.8473515789 +247.9,155685.689268635,1976.52050596348 +248,155759.681015724,1977.19216542582 +248.1,155833.681949732,1977.85331628795 +248.2,155907.70134066,1978.50531272858 +248.3,155981.745494419,1979.18044648479 +248.4,156055.817745322,1979.81747111171 +248.5,156129.918456084,1980.48749996314 +248.6,156204.045017821,1981.15095423324 +248.7,156278.191850051,1981.78820238415 +248.8,156352.350611731,1982.46374000668 +248.9,156426.512022817,1983.12349893294 +249,156500.666795756,1983.7710260838 +249.1,156574.805642996,1984.44693650791 +249.2,156648.919276983,1985.09888436894 +249.3,156722.998410166,1985.76879594532 +249.4,156797.03375719,1986.44553125475 +249.5,156871.016284421,1987.11597782651 +249.6,156944.937685861,1987.79299014608 +249.7,157018.790436643,1988.49092544007 +249.8,157092.567793025,1989.16738559225 +249.9,157166.263792394,1989.8274047292 +250,157239.873253266,1990.50215823404 +250.1,157313.391773082,1991.17334025853 +250.2,157386.815478695,1991.8090934596 +250.3,157460.140550448,1992.44429802344 +250.4,157533.363168682,1993.0793002294 +250.5,157606.479513737,1993.71356974783 +250.6,157679.485765954,1994.39066229917 +250.7,157752.378105676,1995.02814675073 +250.8,157825.152857043,1995.70725708986 +250.9,157897.808691087,1996.39692166888 +251,157970.348348365,1997.1117724027 +251.1,158042.778684844,1997.78892515887 +251.2,158115.110671896,1998.49910153151 +251.3,158187.359396303,1999.16998992537 +251.4,158259.544060253,1999.84812616761 +251.5,158331.687837542,2000.49388309851 +251.6,158403.815670484,2001.15657595336 +251.7,158475.952547274,2001.80352140418 +251.8,158548.123456106,2002.48058019977 +251.9,158620.353385176,2003.11794635768 +252,158692.667322678,2003.76862232389 +252.1,158765.090256808,2004.4414603766 +252.2,158837.646472902,2005.12808935723 +252.3,158910.353731218,2005.80356512184 +252.4,158983.220389812,2006.50158960539 +252.5,159056.245384136,2007.17702853615 +252.6,159129.418227037,2007.85219951425 +252.7,159202.719008761,2008.55410644053 +252.8,159276.118396946,2009.24161964775 +252.9,159349.578339487,2009.93264838524 +253,159423.057886754,2010.64786254766 +253.1,159496.516068715,2011.32515484345 +253.2,159569.911915338,2012.03811363606 +253.3,159643.204456591,2012.78957127813 +253.4,159716.352722443,2013.50430591269 +253.5,159789.315744628,2014.20787368167 +253.6,159862.054754279,2014.94175759374 +253.7,159934.539666335,2015.65612308227 +253.8,160006.75026968,2016.37064218936 +253.9,160078.676227145,2017.08515509232 +254,160150.317075506,2017.77634242288 +254.1,160221.682225485,2018.49180602206 +254.2,160292.790959982,2019.21610579388 +254.3,160363.670236446,2019.91230881772 +254.4,160434.348202465,2020.58485327624 +254.5,160504.853005628,2021.30068214321 +254.6,160575.212793523,2021.9877359021 +254.7,160645.455713738,2022.69109372785 +254.8,160715.609913861,2023.37624259882 +254.9,160785.70354148,2024.07919583428 +255,160855.764294198,2024.76502030857 +255.1,160925.817264017,2025.48204532925 +255.2,160995.884292624,2026.15665465029 +255.3,161065.983971268,2026.81799616728 +255.4,161136.131640765,2027.4875866207 +255.5,161206.339391494,2028.15272234891 +255.6,161276.616063401,2028.78675550775 +255.7,161346.967695982,2029.4497681534 +255.8,161417.399683897,2030.12469822096 +255.9,161487.91742169,2030.79849539865 +256,161558.526303903,2031.51459292813 +256.1,161629.23172508,2032.2345236171 +256.2,161700.039079763,2032.94604559023 +256.3,161770.953762497,2033.70178906772 +256.4,161841.980829331,2034.45704837962 +256.5,161913.122308442,2035.16900580369 +256.6,161984.375917155,2035.92487498671 +256.7,162055.735054039,2036.67438578626 +256.8,162127.188798897,2037.38830523562 +256.9,162198.721912776,2038.14377863411 +257,162270.314837959,2038.86982558899 +257.1,162341.944036461,2039.58318397008 +257.2,162413.584679411,2040.34002767843 +257.3,162485.211930028,2041.052912385 +257.4,162556.800951526,2041.77190730631 +257.5,162628.326907124,2042.52079075415 +257.6,162699.764960038,2043.23574562297 +257.7,162771.090273484,2043.95018212855 +257.8,162842.278495519,2044.66471921747 +257.9,162913.309558336,2045.3792749318 +258,162984.169469471,2046.09377922699 +258.1,163054.850322338,2046.80975320248 +258.2,163125.350296221,2047.48910292014 +258.3,163195.67365628,2048.16218410434 +258.4,163265.830753547,2048.86531626304 +258.5,163335.837540086,2049.58109357243 +258.6,163405.711769703,2050.25330528583 +258.7,163475.471206728,2050.96914011825 +258.8,163545.133615491,2051.65298283312 +258.9,163614.716760323,2052.33995394264 +259,163684.238405553,2053.05610394274 +259.1,163753.716315511,2053.76556268717 +259.2,163823.168169253,2054.44013836824 +259.3,163892.609086268,2055.15633858841 +259.4,163962.048828437,2055.86601022863 +259.5,164031.491649701,2056.57078787354 +259.6,164100.936296062,2057.31331725421 +259.7,164170.37600558,2058.06707845148 +259.8,164239.798508374,2058.78736173292 +259.9,164309.1861119,2059.57291745925 +260,164378.518175238,2060.32737236302 +260.1,164447.773907135,2061.0868187593 +260.2,164516.932516339,2061.88146430419 +260.3,164585.973211595,2062.63411910804 +260.4,164654.875201652,2063.38887434206 +260.5,164723.617695256,2064.18179040119 +260.6,164792.179901154,2064.91461033218 +260.7,164860.541947331,2065.66838181923 +260.8,164928.689061223,2066.4222184775 +260.9,164996.612757341,2067.14629362728 +261,165064.310837357,2067.9019724956 +261.1,165131.7873901,2068.65584464367 +261.2,165199.052791558,2069.38132933898 +261.3,165266.123704878,2070.12468375177 +261.4,165333.022161125,2070.8786967224 +261.5,165399.771379077,2071.60413993208 +261.6,165466.394577588,2072.34721156777 +261.7,165532.914975516,2073.07136084869 +261.8,165599.355791717,2073.7566426592 +261.9,165665.740245048,2074.43194259592 +262,165732.091554366,2075.106785125 +262.1,165798.432938527,2075.78195731561 +262.2,165864.786905714,2076.48590149036 +262.3,165931.172065545,2077.20086795198 +262.4,165997.60223557,2077.94679141661 +262.5,166064.086441228,2078.6893314448 +262.6,166130.628915847,2079.47227195313 +262.7,166197.229100646,2080.26060358192 +262.8,166263.881644729,2081.01568278006 +262.9,166330.577115766,2081.76990667108 +263,166397.305187879,2082.52537236033 +263.1,166464.055535149,2083.23713885703 +263.2,166530.817831652,2083.99295694153 +263.3,166597.581751469,2084.74706032588 +263.4,166664.336968678,2085.50696696808 +263.5,166731.073157358,2086.30009824966 +263.6,166797.779991588,2087.08812120078 +263.7,166864.447339768,2087.84154545287 +263.8,166931.066124466,2088.63667250872 +263.9,166997.628560163,2089.40094717251 +264,167064.128153264,2090.15490947263 +264.1,167130.559702097,2090.90879119148 +264.2,167196.919296911,2091.63325560812 +264.3,167263.204319879,2092.35355864592 +264.4,167329.413250776,2093.10735637772 +264.5,167395.544807132,2093.86191765833 +264.6,167461.597706483,2094.64574407579 +264.7,167527.570666369,2095.43999791363 +264.8,167593.462404327,2096.22815602867 +264.9,167659.271637895,2097.01246867887 +265,167724.997084611,2097.80613578871 +265.1,167790.637462013,2098.57019118166 +265.2,167856.191697415,2099.32418273691 +265.3,167921.660457041,2100.0784816341 +265.4,167987.046823167,2100.82641195797 +265.5,168052.35629714,2101.54743035573 +265.6,168117.596799384,2102.30257852821 +265.7,168182.778669391,2103.01721679444 +265.8,168247.914665731,2103.72027193261 +265.9,168313.019756268,2104.43507120991 +266,168378.109589029,2105.1495236459 +266.1,168443.199815064,2105.87026100345 +266.2,168508.306085422,2106.62409124221 +266.3,168573.444051151,2107.37696044738 +266.4,168638.629363301,2108.17111200556 +266.5,168703.87767292,2109.0063441969 +266.6,168769.204631059,2109.83989826547 +266.7,168834.625785242,2110.67349147596 +266.8,168900.153901889,2111.50672622386 +266.9,168965.796112822,2112.31010192172 +267,169031.553776518,2113.10376466298 +267.1,169097.422478111,2113.89767201718 +267.2,169163.392029386,2114.69099750208 +267.3,169229.446468786,2115.44463466747 +267.4,169295.564164928,2116.22943536857 +267.5,169361.720494194,2116.9840540031 +267.6,169427.890694215,2117.74093434767 +267.7,169494.050002621,2118.53882186266 +267.8,169560.173657045,2119.3029037809 +267.9,169626.236895117,2120.0539458713 +268,169692.214954468,2120.88662712994 +268.1,169758.083072729,2121.65906332946 +268.2,169823.816513411,2122.45281091065 +268.3,169889.392365179,2123.27426692057 +268.4,169954.792482569,2124.06442658072 +268.5,170020.003757575,2124.88814726583 +268.6,170085.018119643,2125.72548964464 +268.7,170149.832535677,2126.52088131113 +268.8,170214.449010037,2127.3453474007 +268.9,170278.874558657,2128.17905387355 +269,170343.119409772,2129.01203204298 +269.1,170407.194063202,2129.80460961767 +269.2,170471.109018765,2130.61288346871 +269.3,170534.874776281,2131.40795478784 +269.4,170598.501835568,2132.16063750923 +269.5,170662.000696445,2132.91488808174 +269.6,170725.381858731,2133.6690966596 +269.7,170788.655822244,2134.42392304351 +269.8,170851.833028941,2135.219152146 +269.9,170914.923152148,2135.99868496853 +270,170977.934619243,2136.79141838492 +270.1,171040.874602808,2137.62664132471 +270.2,171103.749020636,2138.45312299921 +270.3,171166.562535725,2139.24743339376 +270.4,171229.318556279,2140.04132888626 +270.5,171292.019293574,2140.83523239316 +270.6,171354.666472722,2141.62913375428 +270.7,171417.261809991,2142.42313882924 +270.8,171479.807021649,2143.20975652282 +270.9,171542.303823965,2143.97145715704 +271,171604.753933208,2144.76491932401 +271.1,171667.159065645,2145.56022891689 +271.2,171729.520937546,2146.31294255707 +271.3,171791.841265178,2147.06719422535 +271.4,171854.121749655,2147.82131459559 +271.5,171916.363894069,2148.58272187896 +271.6,171978.568882262,2149.37621852546 +271.7,172040.737576652,2150.17023056502 +271.8,172102.870518233,2150.95887998555 +271.9,172164.967926577,2151.83257043717 +272,172227.029699832,2152.70520336424 +272.1,172289.055429879,2153.53719484176 +272.2,172351.044585196,2154.40935325817 +272.3,172412.996632088,2155.28264443396 +272.4,172474.911036861,2156.15583778251 +272.5,172536.787265821,2157.03296158408 +272.6,172598.624785274,2157.86763286923 +272.7,172660.423061525,2158.70179778069 +272.8,172722.181560881,2159.57808972737 +272.9,172783.899749648,2160.37161700049 +273,172845.577098219,2161.16556741358 +273.1,172907.213177482,2161.95947354144 +273.2,172968.80775657,2162.75337686163 +273.3,173030.360807212,2163.54727965325 +273.4,173091.872503741,2164.34121042265 +273.5,173153.343223086,2165.13368512951 +273.6,173214.77354478,2165.96875710926 +273.7,173276.164246863,2166.80227452779 +273.8,173337.516209484,2167.63585855125 +273.9,173398.830317147,2168.46944444511 +274,173460.107454357,2169.30303030302 +274.1,173521.348505618,2170.13661616162 +274.2,173582.554355434,2170.97020202022 +274.3,173643.725888309,2171.80378787806 +274.4,173704.863988748,2172.6373737753 +274.5,173765.969541256,2173.4709576223 +274.6,173827.043429961,2174.30464815572 +274.7,173888.086410651,2175.13030703983 +274.8,173949.098796775,2175.92460090336 +274.9,174010.080412156,2176.7185022338 +275,174071.030590992,2177.51211852665 +275.1,174131.948177855,2178.32603378147 +275.2,174192.831527693,2179.15990640362 +275.3,174253.678506205,2179.9933821174 +275.4,174314.486617804,2180.83489494736 +275.5,174375.253319619,2181.70777843199 +275.6,174435.976068777,2182.58075572264 +275.7,174496.652322409,2183.47479722108 +275.8,174557.279537643,2184.32566570406 +275.9,174617.855171607,2185.15901297956 +276,174678.37668143,2185.9926082075 +276.1,174738.841524242,2186.82619401191 +276.2,174799.24715717,2187.65977427305 +276.3,174859.591033399,2188.49365153966 +276.4,174919.870557079,2189.3068391502 +276.5,174980.083054594,2190.13587191664 +276.6,175040.225774102,2190.95085126192 +276.7,175100.295885529,2191.78470408273 +276.8,175160.290480576,2192.6182848267 +276.9,175220.206572714,2193.45186905457 +277,175280.041101129,2194.28554489787 +277.1,175339.790975814,2195.11200153279 +277.2,175399.4531063,2195.93422052386 +277.3,175459.024402116,2196.78663549569 +277.4,175518.501772792,2197.61995078705 +277.5,175577.882127859,2198.45325783975 +277.6,175637.162376845,2199.3074111489 +277.7,175696.339429282,2200.14637339807 +277.8,175755.410194699,2201.00808715881 +277.9,175814.371582625,2201.89994066402 +278,175873.220611503,2202.77293496962 +278.1,175931.955110941,2203.64620306651 +278.2,175990.574000341,2204.51976112755 +278.3,176049.077289603,2205.37216783093 +278.4,176107.466079128,2206.26139169082 +278.5,176165.742559813,2207.15348143682 +278.6,176223.910013052,2208.02897653514 +278.7,176281.972701828,2208.88401833724 +278.8,176339.935168455,2209.74929681206 +278.9,176397.801955949,2210.58326637659 +279,176455.577607329,2211.41714048617 +279.1,176513.26666561,2212.2293120535 +279.2,176570.87367381,2213.02269283299 +279.3,176628.403174945,2213.83586492075 +279.4,176685.859712033,2214.68949372664 +279.5,176743.24782809,2215.48995617361 +279.6,176800.572066134,2216.32669884822 +279.7,176857.836948122,2217.16548977104 +279.8,176915.046523096,2218.01837713817 +279.9,176972.20393265,2218.83258809029 +280,177029.311393346,2219.72753653333 +280.1,177086.370196714,2220.60159966356 +280.2,177143.380709247,2221.47813647416 +280.3,177200.342372408,2222.34762184604 +280.4,177257.253723682,2223.21505796038 +280.5,177314.112848441,2224.05942527653 +280.6,177370.917814468,2224.96300353278 +280.7,177427.666689546,2225.75298188915 +280.8,177484.357541457,2226.54426082894 +280.9,177540.988437983,2227.37713249942 +281,177597.557446909,2228.25431250604 +281.1,177654.062636015,2229.12814515874 +281.2,177710.502073085,2230.01100707436 +281.3,177766.873825901,2230.87371856397 +281.4,177823.175962247,2231.74293730135 +281.5,177879.406643017,2232.65492988491 +281.6,177935.564703069,2233.5667761661 +281.7,177991.649874791,2234.43636941201 +281.8,178047.662788571,2235.30970831955 +281.9,178103.604972796,2236.18297733499 +282,178159.478853855,2237.05614317905 +282.1,178215.287756135,2237.93474656679 +282.2,178271.035808911,2238.81259746816 +282.3,178326.727365497,2239.68575609173 +282.4,178382.366779676,2240.56015827728 +282.5,178437.958405231,2241.47669829117 +282.6,178493.506595943,2242.38944996125 +282.7,178549.015705597,2243.30241664268 +282.8,178604.490087974,2244.21431838759 +282.9,178659.934096857,2245.07975510257 +283,178715.352086029,2245.99142027591 +283.1,178770.748409273,2246.8697919761 +283.2,178826.127420371,2247.70083316558 +283.3,178881.493328317,2248.57784128023 +283.4,178936.849309277,2249.45102581216 +283.5,178992.197170099,2250.32535137605 +283.6,179047.537347675,2251.24604902882 +283.7,179102.868908935,2252.12060470749 +283.8,179158.189550853,2253.02845863946 +283.9,179213.495600446,2253.98354923221 +284,179268.782159562,2254.89289049475 +284.1,179324.043992916,2255.80601414291 +284.2,179379.275864585,2256.71358581137 +284.3,179434.472538647,2257.62138676216 +284.4,179489.628779178,2258.49182018005 +284.5,179544.739350256,2259.40268944513 +284.6,179599.799015957,2260.27255636176 +284.7,179654.802540359,2261.14163296184 +284.8,179709.744687539,2262.05357856037 +284.9,179764.620221575,2262.9707659984 +285,179819.423906542,2263.84680588397 +285.1,179874.150545395,2264.80578887266 +285.2,179928.795384169,2265.71961599744 +285.3,179983.354351748,2266.63246823477 +285.4,180037.824063018,2267.54967817564 +285.5,180092.201818864,2268.42395117611 +285.6,180146.485606172,2269.29295480905 +285.7,180200.674097827,2270.203854872 +285.8,180254.766613839,2271.07379781027 +285.9,180308.762717136,2271.94286029736 +286,180362.661973797,2272.85490802698 +286.1,180416.4639499,2273.76787788519 +286.2,180470.168211522,2274.6807463796 +286.3,180523.774324744,2275.59796633219 +286.4,180577.281855641,2276.47214392455 +286.5,180630.690370294,2277.34528173519 +286.6,180683.99943478,2278.22251344515 +286.7,180737.208615178,2279.08192448722 +286.8,180790.317477565,2279.95549561974 +286.9,180843.325588031,2280.82448495754 +287,180896.232747468,2281.73645629977 +287.1,180949.039832319,2282.64935011826 +287.2,181001.748982685,2283.56233305443 +287.3,181054.363602332,2284.47559763343 +287.4,181106.888358683,2285.36318655242 +287.5,181159.329182825,2286.23183560249 +287.6,181211.693269492,2287.14827570214 +287.7,181263.988842279,2288.01826217093 +287.8,181316.22431289,2288.93039873662 +287.9,181368.408093028,2289.84344768502 +288,181420.548594399,2290.75211474762 +288.1,181472.654228705,2291.70432177822 +288.2,181524.733407653,2292.66135343274 +288.3,181576.794542945,2293.5708163373 +288.4,181628.846046286,2294.52685176625 +288.5,181680.89632938,2295.44077261016 +288.6,181732.953803932,2296.34934522192 +288.7,181785.026881646,2297.30549372563 +288.8,181837.123974226,2298.21471290085 +288.9,181889.253199061,2299.12779140398 +289,181941.420666334,2300.08348347171 +289.1,181993.629860996,2301.02319011498 +289.2,182045.881641935,2301.9295756673 +289.3,182098.174241975,2302.8868343911 +289.4,182150.503267878,2303.84338509466 +289.5,182202.86170034,2304.79995680653 +289.6,182255.240188311,2305.74806870479 +289.7,182307.628761881,2306.70108748996 +289.8,182360.017450312,2307.62792299167 +289.9,182412.396282863,2308.58275221976 +290,182464.755288794,2309.53421827272 +290.1,182517.084497364,2310.44372495624 +290.2,182569.373937833,2311.3837091669 +290.3,182621.613639461,2312.34086381715 +290.4,182673.793631507,2313.25433860168 +290.5,182725.903943231,2314.19369007437 +290.6,182777.934603893,2315.15079097553 +290.7,182829.875642753,2316.06570150263 +290.8,182881.717150602,2317.02165361272 +290.9,182933.449882265,2317.94793637008 +291,182985.065597698,2318.85640282681 +291.1,183036.557065868,2319.80854620588 +291.2,183087.918064751,2320.73442443436 +291.3,183139.14338134,2321.64267408675 +291.4,183190.228811634,2322.59337281341 +291.5,183241.171099117,2323.50339279515 +291.6,183291.967332246,2324.41206819281 +291.7,183342.614603364,2325.36816469015 +291.8,183393.110004813,2326.28201164003 +291.9,183443.450628934,2327.19105364601 +292,183493.63356807,2328.14315854484 +292.1,183543.655914561,2329.09582381341 +292.2,183593.514760751,2330.04807047566 +292.3,183643.20719898,2331.03218728854 +292.4,183692.73032159,2331.98590668143 +292.5,183742.081220925,2332.93420407894 +292.6,183791.256989324,2333.92990834996 +292.7,183840.25471913,2334.88767142592 +292.8,183889.07164469,2335.79715593016 +292.9,183937.706504195,2336.74930794445 +293,183986.160298088,2337.67480588793 +293.1,184034.436297246,2338.58324102134 +293.2,184082.540042988,2339.53935156367 +293.3,184130.479347072,2340.45310021792 +293.4,184178.264291692,2341.36565170386 +293.5,184225.90708748,2342.31055199371 +293.6,184273.420711657,2343.22455603019 +293.7,184320.818149637,2344.1332761992 +293.8,184368.112386833,2345.08517281541 +293.9,184415.31640866,2346.03791615002 +294,184462.443200531,2346.98633857352 +294.1,184509.50574786,2347.97821093112 +294.2,184556.51703606,2348.94290399801 +294.3,184603.490050545,2349.89105817356 +294.4,184650.437776728,2350.88676858736 +294.5,184697.373200024,2351.84445908454 +294.6,184744.309305846,2352.75387271403 +294.7,184791.259079608,2353.71004524638 +294.8,184838.235506723,2354.61955171506 +294.9,184885.251493244,2355.57248184633 +295,184932.318473828,2356.57171781156 +295.1,184979.445224823,2357.52512540622 +295.2,185026.63782626,2358.47319327459 +295.3,185073.89966185,2359.49742089145 +295.4,185121.231418989,2360.49067461008 +295.5,185168.631088754,2361.4830205231 +295.6,185216.094045266,2362.47393303392 +295.7,185263.614437721,2363.45243759135 +295.8,185311.186377311,2364.44602258769 +295.9,185358.803975224,2365.48512613033 +296,185406.461342649,2366.44975126035 +296.1,185454.152590777,2367.39793438988 +296.2,185501.871830795,2368.39481879076 +296.3,185549.613173895,2369.39084730166 +296.4,185597.370731264,2370.35038592282 +296.5,185645.138614093,2371.3407039851 +296.6,185692.91093357,2372.29080162508 +296.7,185740.681800886,2373.23898636241 +296.8,185788.445327229,2374.26381432236 +296.9,185836.195623788,2375.25599949187 +297,185883.926807598,2376.20181641013 +297.1,185931.633101347,2377.19764784034 +297.2,185979.308917081,2378.15030414835 +297.3,186026.948858787,2379.0593021289 +297.4,186074.547722402,2380.04494584283 +297.5,186122.100495804,2380.96950932516 +297.6,186169.602358817,2381.87779844119 +297.7,186217.048677367,2382.86326895729 +297.8,186264.434903667,2383.81684635762 +297.9,186311.756492521,2384.76577970352 +298,186359.008898733,2385.83047803448 +298.1,186406.187577107,2386.83415889356 +298.2,186453.287982447,2387.82183833069 +298.3,186500.305569555,2388.88719161368 +298.4,186547.235793237,2389.89073316058 +298.5,186594.074108295,2390.87879762967 +298.6,186640.815969533,2391.91047213059 +298.7,186687.456831756,2392.9130671335 +298.8,186733.992149767,2393.9011627591 +298.9,186780.417378369,2394.93284348694 +299,186826.727972367,2395.93532226684 +299.1,186872.919390185,2396.92336325464 +299.2,186918.987576066,2397.95870182178 +299.3,186964.929921296,2398.95570574643 +299.4,187010.745378163,2399.90997698336 +299.5,187056.434459963,2400.90830068719 +299.6,187101.999240998,2401.89577362821 +299.7,187147.443356575,2402.84513251341 +299.8,187192.771999386,2403.84083163504 +299.9,187237.991437312,2404.79419012817 +300,187283.108052197,2405.74283298633 +300.1,187328.128225887,2406.73451635907 +300.2,187373.058340229,2407.72715212472 +300.3,187417.904777069,2408.68529829436 +300.4,187462.673918251,2409.68082956205 +300.5,187507.372145623,2410.63415799204 +300.6,187552.005841029,2411.58381842963 +300.7,187596.581386316,2412.62117980382 +300.8,187641.10516333,2413.64368371084 +300.9,187685.583553917,2414.62992563478 +301,187730.022939922,2415.66140536883 +301.1,187774.429703191,2416.69350648509 +301.2,187818.810225571,2417.72153563141 +301.3,187863.170888907,2418.79550950894 +301.4,187907.517835335,2419.78652807992 +301.5,187951.855724723,2420.7453625597 +301.6,187996.187333285,2421.78236764767 +301.7,188040.513553378,2422.81018677757 +301.8,188084.833393508,2423.79936239689 +301.9,188129.143978323,2424.83081027539 +302,188173.440548618,2425.86289120699 +302.1,188217.716701043,2426.89200727414 +302.2,188261.965630661,2428.00784934627 +302.3,188306.180532336,2429.03463765222 +302.4,188350.354600931,2430.07581110797 +302.5,188394.48103131,2431.15297647723 +302.6,188438.553018336,2432.22073527794 +302.7,188482.563756874,2433.24957104303 +302.8,188526.506441785,2434.32350932653 +302.9,188570.374267935,2435.31418525728 +303,188614.160430187,2436.31139772909 +303.1,188657.858123403,2437.30631215598 +303.2,188701.460542449,2438.29887468443 +303.3,188744.960882186,2439.25579114458 +303.4,188788.352337479,2440.28279088419 +303.5,188831.628103192,2441.27681176718 +303.6,188874.781374377,2442.31183992187 +303.7,188917.805709853,2443.3842148551 +303.8,188960.696152706,2444.44490273814 +303.9,189003.449445456,2445.47120127455 +304,189046.064030062,2446.54744114768 +304.1,189088.540047921,2447.59015973528 +304.2,189130.879339866,2448.61732647324 +304.3,189173.085445974,2449.64206754855 +304.4,189215.163242,2450.67193866381 +304.5,189257.117818865,2451.66822609927 +304.6,189298.954267491,2452.73534898788 +304.7,189340.6776788,2453.76674521715 +304.8,189382.293143716,2454.7900842645 +304.9,189423.805753159,2455.86756122948 +305,189465.220598053,2456.9000776824 +305.1,189506.54276932,2457.93299007956 +305.2,189547.777357881,2459.01025035995 +305.3,189588.92945466,2460.04296196891 +305.4,189630.004150578,2461.07620306781 +305.5,189671.006536558,2462.11666137204 +305.6,189711.941703521,2463.10681357475 +305.7,189752.814742391,2464.10381491267 +305.8,189793.630744089,2465.09748336383 +305.9,189834.394799538,2466.04820304107 +306,189875.11199966,2466.96461158015 +306.1,189915.787342882,2467.94829215244 +306.2,189956.425275934,2468.89572189127 +306.3,189997.02955162,2469.88379716995 +306.4,190037.603228768,2470.94710376258 +306.5,190078.148672233,2471.97393276186 +306.6,190118.667552901,2473.04196397591 +306.7,190159.16084768,2474.15334716053 +306.8,190199.628932007,2475.2321662341 +306.9,190240.072039036,2476.30370335315 +307,190280.49040188,2477.37922772029 +307.1,190320.884253655,2478.37837646933 +307.2,190361.253827472,2479.33087210847 +307.3,190401.599356446,2480.32091589982 +307.4,190441.921073689,2481.31885710208 +307.5,190482.219212316,2482.30152851319 +307.6,190522.49400544,2483.33323292614 +307.7,190562.745686174,2484.36622784317 +307.8,190602.974487631,2485.43679090082 +307.9,190643.180642926,2486.58742405418 +308,190683.364385171,2487.70438824625 +308.1,190723.525947481,2488.80430296667 +308.2,190763.665562967,2489.92628976111 +308.3,190803.783464745,2491.0431390131 +308.4,190843.879885927,2492.11062957388 +308.5,190883.955059499,2493.21706214116 +308.6,190924.009059006,2494.28946526513 +308.7,190964.041328483,2495.35805081333 +308.8,191004.050596179,2496.43579680679 +308.9,191044.034874554,2497.50630197503 +309,191083.991460283,2498.56696348495 +309.1,191123.916934253,2499.67836769593 +309.2,191163.807161694,2500.75609100527 +309.3,191203.657451485,2501.8614287556 +309.4,191243.463026234,2502.9729272286 +309.5,191283.219108546,2504.08746267369 +309.6,191322.920921026,2505.19027601644 +309.7,191362.56368628,2506.31154492055 +309.8,191402.142626913,2507.42777969329 +309.9,191441.652965531,2508.53392569235 +310,191481.089924739,2509.61490906611 +310.1,191520.448727143,2510.6503066593 +310.2,191559.724595348,2511.67407885677 +310.3,191598.91275196,2512.71173094612 +310.4,191638.008419584,2513.74368011975 +310.5,191677.006820827,2514.77269271549 +310.6,191715.903178292,2515.81008429769 +310.7,191754.692714587,2516.84181468228 +310.8,191793.370652315,2517.90513659058 +310.9,191831.932214084,2518.98220530737 +311,191870.372622498,2520.05789579698 +311.1,191908.687142946,2521.12734153084 +311.2,191946.871698795,2522.20035020039 +311.3,191984.923332514,2523.23260544631 +311.4,192022.84021684,2524.29590186465 +311.5,192060.621654778,2525.41037068582 +311.6,192098.268079601,2526.48228856757 +311.7,192135.781054848,2527.58840809876 +311.8,192173.163231544,2528.70371820712 +311.9,192210.417733002,2529.81660760427 +312,192247.5476937,2530.95971147315 +312.1,192284.556248117,2532.1198486731 +312.2,192321.44653073,2533.23778057349 +312.3,192358.221676018,2534.38404377846 +312.4,192394.884818459,2535.50067177864 +312.5,192431.43909253,2536.61084247711 +312.6,192467.887632711,2537.71696272245 +312.7,192504.233573478,2538.83854704027 +312.8,192540.48004931,2539.95035576225 +312.9,192576.630194686,2541.05669379337 +313,192612.687144082,2542.13203792723 +313.1,192648.654031978,2543.15813648358 +313.2,192684.533992852,2544.18459883715 +313.3,192720.33016118,2545.1413763322 +313.4,192756.045671442,2546.11471052551 +313.5,192791.683658116,2547.06181764447 +313.6,192827.247255679,2548.07942974689 +313.7,192862.739598611,2549.07566878226 +313.8,192898.16382129,2550.1078566457 +313.9,192933.522976233,2551.18297369434 +314,192968.819803851,2552.32966437552 +314.1,193004.056692226,2553.41533918654 +314.2,193039.235677103,2554.56628468222 +314.3,193074.358441899,2555.61667756471 +314.4,193109.426317696,2556.68673328103 +314.5,193144.440283342,2557.80479659199 +314.6,193179.401047219,2558.87847133686 +314.7,193214.309277476,2559.94761803942 +314.8,193249.165642267,2561.06167945838 +314.9,193283.970809741,2562.09572952533 +315,193318.725448052,2563.16418736301 +315.1,193353.430225349,2564.31272485645 +315.2,193388.085809785,2565.41866409877 +315.3,193422.692869511,2566.48763253606 +315.4,193457.252072678,2567.60401813937 +315.5,193491.764087438,2568.71599349713 +315.6,193526.229581942,2569.86791336764 +315.7,193560.649224342,2571.05765041445 +315.8,193595.023682789,2572.17112805454 +315.9,193629.353625434,2573.28343146917 +316,193663.639720429,2574.47173983207 +316.1,193697.882635926,2575.62100857633 +316.2,193732.083040075,2576.73017299871 +316.3,193766.241601028,2577.88428612932 +316.4,193800.358986937,2579.00072980257 +316.5,193834.435865953,2580.11186935241 +316.6,193868.472906227,2581.26204955093 +316.7,193902.470775827,2582.33804335731 +316.8,193936.430084631,2583.37108787569 +316.9,193970.351224836,2584.48112169114 +317,194004.234343829,2585.55225013207 +317.1,194038.079344193,2586.61955780691 +317.2,194071.885883699,2587.69159450837 +317.3,194105.653375313,2588.72720505132 +317.4,194139.380987278,2589.75739501665 +317.5,194173.067701217,2590.87261168648 +317.6,194206.712471628,2591.94600011534 +317.7,194240.314253009,2593.01422036549 +317.8,194273.871999859,2594.125550885 +317.9,194307.384666676,2595.23926861913 +318,194340.851207959,2596.30958454096 +318.1,194374.270578206,2597.46056897762 +318.2,194407.641731916,2598.60710830568 +318.3,194440.963623586,2599.71563077754 +318.4,194474.235207715,2600.8666056275 +318.5,194507.455438801,2602.01791192677 +318.6,194540.623271344,2603.16741689104 +318.7,194573.73765984,2604.39785231965 +318.8,194606.797558789,2605.59071561199 +318.9,194639.80192269,2606.74352905863 +319,194672.749706039,2607.97495737982 +319.1,194705.639863336,2609.16569508593 +319.2,194738.471349079,2610.27882673905 +319.3,194771.243117767,2611.46951698541 +319.4,194803.954123897,2612.6224801577 +319.5,194836.603321969,2613.77174386847 +319.6,194869.18966648,2614.96092666377 +319.7,194901.712111929,2616.11262461114 +319.8,194934.169642934,2617.22533534856 +319.9,194966.561406184,2618.41846365661 +320,194998.886746557,2619.57151251263 +320.1,195031.145207125,2620.72016935379 +320.2,195063.336529153,2621.87331696795 +320.3,195095.460652098,2622.94800778603 +320.4,195127.517713609,2623.98124794513 +320.5,195159.508019407,2625.09267080522 +320.6,195191.431911338,2626.1614073334 +320.7,195223.289731248,2627.23050389121 +320.8,195255.081820982,2628.34142109863 +320.9,195286.808522386,2629.41235505548 +321,195318.470177306,2630.51961010008 +321.1,195350.067127589,2631.70918530037 +321.2,195381.599715079,2632.85930724505 +321.3,195413.068281623,2634.00848101801 +321.4,195444.473169067,2635.16192602445 +321.5,195475.814719256,2636.27633859977 +321.6,195507.093274036,2637.38657644549 +321.7,195538.309175254,2638.54054266197 +321.8,195569.462764754,2639.65264355779 +321.9,195600.554384384,2640.76498567536 +322,195631.584375989,2641.91855710703 +322.1,195662.553081414,2643.10689307515 +322.2,195693.460842506,2644.25631107179 +322.3,195724.30800111,2645.48678436057 +322.4,195755.094899072,2646.67708790453 +322.5,195785.821878239,2647.86836348942 +322.6,195816.489280456,2649.09892948792 +322.7,195847.097447568,2650.29121823532 +322.8,195877.646721423,2651.44327229742 +322.9,195908.137443865,2652.6732565051 +323,195938.569945302,2653.86547050244 +323.1,195968.944496025,2655.05649482986 +323.2,195999.261293272,2656.24888732579 +323.3,196029.52046122,2657.36005198557 +323.4,196059.722050989,2658.46962191031 +323.5,196089.866040641,2659.62040618496 +323.6,196119.952335181,2660.73361389678 +323.7,196149.980777997,2661.84175205625 +323.8,196179.951199529,2662.99287937285 +323.9,196209.863430221,2664.14419496895 +324,196239.717300515,2665.33539997377 +324.1,196269.512640852,2666.52784971269 +324.2,196299.249281676,2667.68059253212 +324.3,196328.927053427,2668.79077054816 +324.4,196358.54578655,2669.94372643516 +324.5,196388.105311485,2671.09463294266 +324.6,196417.605458675,2672.20446897712 +324.7,196447.046058563,2673.35686287588 +324.8,196476.42694159,2674.50803366759 +324.9,196505.747938198,2675.6182865478 +325,196535.008878831,2676.80898575027 +325.1,196564.20959393,2677.99939057315 +325.2,196593.349913938,2679.14969299764 +325.3,196622.429669296,2680.37998576212 +325.4,196651.448690447,2681.57075221655 +325.5,196680.406807833,2682.76075521351 +325.6,196709.303851897,2684.0319986741 +325.7,196738.13965308,2685.26375002211 +325.8,196766.914041826,2686.45537003125 +325.9,196795.626848575,2687.68827989468 +326,196824.277903771,2688.88035808337 +326.1,196852.867037855,2690.06999208134 +326.2,196881.39408127,2691.2602931505 +326.3,196909.858864459,2692.41087133234 +326.4,196938.261224938,2693.52122842202 +326.5,196966.601055888,2694.6720500095 +326.6,196994.878326553,2695.82187134304 +326.7,197023.093082317,2696.97110816655 +326.8,197051.245444697,2698.12201930017 +326.9,197079.33561135,2699.2738088397 +327,197107.363856066,2700.42362296063 +327.1,197135.330521698,2701.65404116083 +327.2,197163.235971574,2702.84569368189 +327.3,197191.080569092,2703.99715834369 +327.4,197218.864677651,2705.18860841356 +327.5,197246.588660648,2706.37950689482 +327.6,197274.252881481,2707.5301436981 +327.7,197301.857703549,2708.72161424597 +327.8,197329.40349025,2709.87273020525 +327.9,197356.890604981,2710.98344860183 +328,197384.319411141,2712.17437192701 +328.1,197411.690272128,2713.32624877574 +328.2,197439.00355134,2714.47761567449 +328.3,197466.259612176,2715.7480149088 +328.4,197493.458818032,2716.97913179689 +328.5,197520.601532308,2718.20985599307 +328.6,197547.688118401,2719.51975421012 +328.7,197574.71893971,2720.75015342959 +328.8,197601.694359632,2721.97992243901 +328.9,197628.614741566,2723.28965322317 +329,197655.480448909,2724.52008053641 +329.1,197682.291845061,2725.75004235155 +329.2,197709.049293419,2727.02012542988 +329.3,197735.753157381,2728.25063562383 +329.4,197762.403800345,2729.48113938028 +329.5,197789.001585709,2730.75163195777 +329.6,197815.546876872,2731.94259051027 +329.7,197842.040037231,2733.13348562869 +329.8,197868.481430184,2734.36419616979 +329.9,197894.871419131,2735.55504354023 +330,197921.210367468,2736.74600469393 +330.1,197947.498624232,2737.93687939198 +330.2,197973.736466804,2739.04827678949 +330.3,197999.924086629,2740.12008835485 +330.4,198026.06158921,2741.19193960608 +330.5,198052.148994115,2742.22411538801 +330.6,198078.186234973,2743.25630791622 +330.7,198104.173159474,2744.36764807653 +330.8,198130.109543731,2745.4791830009 +330.9,198155.995149575,2746.6308061819 +331,198181.829738837,2747.8614206789 +331.1,198207.613073346,2749.09199752357 +331.2,198233.344914932,2750.32296660463 +331.3,198259.025025426,2751.6328596365 +331.4,198284.653166657,2752.86344048461 +331.5,198310.229100456,2754.09401864055 +331.6,198335.752588653,2755.36333490767 +331.7,198361.223393078,2756.59327113005 +331.8,198386.641275561,2757.78469670838 +331.9,198412.005997932,2759.05444422672 +332,198437.317322022,2760.24524901053 +332.1,198462.57500966,2761.43691754941 +332.2,198487.778822676,2762.70712563279 +332.3,198512.928522901,2763.9381844287 +332.4,198538.023872165,2765.16923520784 +332.5,198563.064632298,2766.47857329086 +332.6,198588.05056513,2767.74897697358 +332.7,198612.981432491,2769.02010869736 +332.8,198637.856996211,2770.32915910616 +332.9,198662.677018121,2771.55967017785 +333,198687.44126005,2772.79025666253 +333.1,198712.149483828,2774.06057892888 +333.2,198736.801451287,2775.33085899326 +333.3,198761.396924255,2776.52265419467 +333.4,198785.935664563,2777.79230974848 +333.5,198810.417434041,2779.02307013693 +333.6,198834.841994519,2780.2547644847 +333.7,198859.209107828,2781.52488749356 +333.8,198883.518535797,2782.75402827443 +333.9,198907.770040256,2783.94474357616 +334,198931.963383084,2785.17448961438 +334.1,198956.098339485,2786.32468076805 +334.2,198980.174729371,2787.47702137754 +334.3,199004.192421889,2788.6666162454 +334.4,199028.151335422,2789.81786044007 +334.5,199052.051437589,2790.97046970313 +334.6,199075.892745245,2792.2010375929 +334.7,199099.675324434,2793.43102435278 +334.8,199123.399277109,2794.6619043759 +334.9,199147.06470975,2795.93090778381 +335,199170.671728842,2797.16198823169 +335.1,199194.220440866,2798.39261850856 +335.2,199217.710952305,2799.66109667115 +335.3,199241.14336964,2800.85057104797 +335.4,199264.517799356,2802.00206766931 +335.5,199287.834347933,2803.23297145922 +335.6,199311.093121855,2804.42344491714 +335.7,199334.294227604,2805.61350759145 +335.8,199357.437771662,2806.84425295035 +335.9,199380.523860512,2808.07619984851 +336,199403.552600636,2809.30769377251 +336.1,199426.524098517,2810.61764799369 +336.2,199449.438460636,2811.84879399599 +336.3,199472.295793477,2813.12133122422 +336.4,199495.096203522,2814.43140265793 +336.5,199517.839797254,2815.69921437796 +336.6,199540.526681154,2816.92955303412 +336.7,199563.156961705,2818.20051598928 +336.8,199585.73074539,2819.47093918779 +336.9,199608.248138691,2820.74244124752 +337,199630.70924809,2821.97155525285 +337.1,199653.11418007,2823.16084709695 +337.2,199675.463041113,2824.35405434284 +337.3,199697.755937703,2825.5873205075 +337.4,199719.99297632,2826.81785701007 +337.5,199742.174263448,2828.00989604682 +337.6,199764.299905569,2829.23890352286 +337.7,199786.370009165,2830.50888864452 +337.8,199808.38468072,2831.78319099269 +337.9,199830.344026715,2833.09516517938 +338,199852.248153632,2834.36367059971 +338.1,199874.097167954,2835.59673727103 +338.2,199895.891176165,2836.86629903786 +338.3,199917.630284745,2838.09512061624 +338.4,199939.31460018,2839.28810231331 +338.5,199960.944229613,2840.51900822598 +338.6,199982.519282332,2841.74760832316 +338.7,200004.039869977,2842.97928833513 +338.8,200025.506106539,2844.24713826233 +338.9,200046.918108364,2845.51608313345 +339,200068.275994145,2846.7871471085 +339.1,200089.57988493,2848.09512328823 +339.2,200110.829903456,2849.40193761362 +339.3,200132.026172671,2850.67129852599 +339.4,200153.168815519,2851.98002156311 +339.5,200174.257954947,2853.28983979534 +339.6,200195.293713899,2854.56239328187 +339.7,200216.276215323,2855.87335972236 +339.8,200237.205582164,2857.18309450205 +339.9,200258.081937367,2858.45644437168 +340,200278.905403878,2859.72812131109 +340.1,200299.676104644,2860.95555710654 +340.2,200320.394162609,2862.14552428251 +340.3,200341.05970072,2863.37482330311 +340.4,200361.672841922,2864.60425665284 +340.5,200382.233709162,2865.79446699891 +340.6,200402.742425384,2867.06093396072 +340.7,200423.199113535,2868.32671143493 +340.8,200443.60389656,2869.60300177713 +340.9,200463.956897406,2870.95262560884 +341,200484.258239017,2872.26204611887 +341.1,200504.50804434,2873.53721080444 +341.2,200524.706436321,2874.88656047731 +341.3,200544.853537904,2876.15806252089 +341.4,200564.949472037,2877.43631586273 +341.5,200584.994361665,2878.78184276014 +341.6,200604.988329733,2880.05275430552 +341.7,200624.931499187,2881.3274447069 +341.8,200644.823992973,2882.67216440277 +341.9,200664.665934037,2883.93906418697 +342,200684.457445325,2885.2089036503 +342.1,200704.198649782,2886.55268895929 +342.2,200723.889670354,2887.81954566669 +342.3,200743.530629987,2889.08904732306 +342.4,200763.121651626,2890.39520718236 +342.5,200782.662858218,2891.6651402633 +342.6,200802.154372708,2892.93863429814 +342.7,200821.596318042,2894.24965939646 +342.8,200840.988817166,2895.52058213644 +342.9,200860.331993025,2896.83754530844 +343,200879.625968565,2898.18672227555 +343.1,200898.870866733,2899.49673348012 +343.2,200918.066810473,2900.84868503007 +343.3,200937.213922731,2902.19953692771 +343.4,200956.312324831,2903.54855345256 +343.5,200975.362120183,2904.86176426176 +343.6,200994.363384875,2906.16432860593 +343.7,201013.316167564,2907.43627342126 +343.8,201032.22048947,2908.74809049984 +343.9,201051.076344382,2910.01772628383 +344,201069.883698652,2911.32763185842 +344.1,201088.642492823,2912.63851036201 +344.2,201107.352657917,2913.94652818237 +344.3,201126.014124842,2915.25988540492 +344.4,201144.626824506,2916.61219181122 +344.5,201163.190687816,2917.95785852172 +344.6,201181.705645682,2919.2624792853 +344.7,201200.171629009,2920.56978239676 +344.8,201218.588568708,2921.83540950039 +344.9,201236.956395685,2923.10491385266 +345,201255.275040849,2924.3405735224 +345.1,201273.544435107,2925.56789765292 +345.2,201291.764509369,2926.75980386069 +345.3,201309.93519454,2927.95831259098 +345.4,201328.056421531,2929.18877467193 +345.5,201346.128121248,2930.42393674592 +345.6,201364.150224599,2931.73534824155 +345.7,201382.122662493,2933.04039093755 +345.8,201400.045365838,2934.34563600792 +345.9,201417.918265541,2935.69298489513 +346,201435.741292511,2937.0399005524 +346.1,201453.514377655,2938.31417242983 +346.2,201471.237451881,2939.62621487946 +346.3,201488.910446099,2940.88841678789 +346.4,201506.533291214,2942.19856771818 +346.5,201524.105918136,2943.52063314946 +346.6,201541.628257772,2944.83888987537 +346.7,201559.100241031,2946.10320585997 +346.8,201576.521798821,2947.4424676017 +346.9,201593.892862048,2948.79929481782 +347,201611.213361622,2950.11353240653 +347.1,201628.48322845,2951.38629332698 +347.2,201645.702393441,2952.68659415692 +347.3,201662.870787502,2953.95432209486 +347.4,201679.988341541,2955.27671123082 +347.5,201697.054986467,2956.60045702191 +347.6,201714.070653187,2957.89977162441 +347.7,201731.035272609,2959.21511195375 +347.8,201747.948775641,2960.56397567699 +347.9,201764.811093191,2961.87416587467 +348,201781.622156168,2963.18043018934 +348.1,201798.381895479,2964.56006248959 +348.2,201815.090242032,2965.86521069674 +348.3,201831.747126735,2967.14320464431 +348.4,201848.352480497,2968.48802707557 +348.5,201864.906234224,2969.79770733054 +348.6,201881.408318826,2971.11294371445 +348.7,201897.85866521,2972.46422039371 +348.8,201914.257204284,2973.77485147758 +348.9,201930.603866956,2975.084011286 +349,201946.898584134,2976.46295173751 +349.1,201963.141289293,2977.76810740292 +349.2,201979.331942764,2979.08397426677 +349.3,201995.470545119,2980.42821876626 +349.4,202011.557137305,2981.73789587089 +349.5,202027.591800651,2983.05343594818 +349.6,202043.574656861,2984.40480049482 +349.7,202059.50586802,2985.71532281403 +349.8,202075.385634024,2987.03153038152 +349.9,202091.21416829,2988.41077401925 +350,202106.991684376,2989.72324867046 +350.1,202122.718395839,2991.04000444331 +350.2,202138.394516237,2992.34850837934 +350.3,202154.020259127,2993.61926545296 +350.4,202169.595838065,2994.85242211093 +350.5,202185.121466611,2996.1240085845 +350.6,202200.59735832,2997.31989100314 +350.7,202216.02372675,2998.51873869689 +350.8,202231.400785458,2999.7870880327 +350.9,202246.728748003,3001.06093355277 +351,202262.00782794,3002.37320717467 +351.1,202277.238238829,3003.75860928813 +351.2,202292.420194224,3005.10846067367 +351.3,202307.553907686,3006.50032800712 +351.4,202322.639592769,3007.95681849501 +351.5,202337.677463033,3009.34146183922 +351.6,202352.667732033,3010.72893235768 +351.7,202367.610613328,3012.11339220049 +351.8,202382.506320475,3013.46765266983 +351.9,202397.355067032,3014.82303728809 +352,202412.157066554,3016.20998059184 +352.1,202426.912532601,3017.56046698318 +352.2,202441.621678729,3018.90855324135 +352.3,202456.284718495,3020.29080028333 +352.4,202470.901865457,3021.67880812787 +352.5,202485.473333172,3023.03101890613 +352.6,202499.999335198,3024.41273207685 +352.7,202514.480085092,3025.7614547602 +352.8,202528.915796411,3027.08377539594 +352.9,202543.306682712,3028.47995359364 +353,202557.652957553,3029.8296989582 +353.1,202571.954834492,3031.1413447738 +353.2,202586.212527085,3032.52298003677 +353.3,202600.42624889,3033.87468862557 +353.4,202614.596213464,3035.22724314535 +353.5,202628.722634365,3036.60884534666 +353.6,202642.805725149,3037.94872974813 +353.7,202656.845699375,3039.26091642842 +353.8,202670.8427706,3040.61210811604 +353.9,202684.79715238,3041.88858074342 +354,202698.709058273,3043.16753226381 +354.1,202712.578701837,3044.48035107176 +354.2,202726.406296629,3045.78491115731 +354.3,202740.192056206,3047.06498088017 +354.4,202753.936194126,3048.4152282899 +354.5,202767.638923946,3049.76545954946 +354.6,202781.300459223,3051.15680142409 +354.7,202794.921013514,3052.57505032065 +354.8,202808.500800378,3053.95880727317 +354.9,202822.040033371,3055.32014389258 +355,202835.53892605,3056.74487575249 +355.1,202848.997691973,3058.13076841852 +355.2,202862.416544697,3059.48541052582 +355.3,202875.795697781,3060.87299360011 +355.4,202889.13536478,3062.25910056905 +355.5,202902.435759252,3063.61698514146 +355.6,202915.697094755,3065.04505513708 +355.7,202928.919584845,3066.42819869095 +355.8,202942.103443082,3067.78065959904 +355.9,202955.24888302,3069.16457736163 +356,202968.356116386,3070.47447176727 +356.1,202981.425323296,3071.7597736453 +356.2,202994.456628069,3073.106992418 +356.3,203007.450098528,3074.41656351426 +356.4,203020.405746001,3075.73529422526 +356.5,203033.323525317,3077.12039670698 +356.6,203046.203334809,3078.47033086504 +356.7,203059.045018147,3079.86238061629 +356.8,203071.848394112,3081.31473343124 +356.9,203084.613280785,3082.69610672029 +357,203097.339496247,3084.07884729954 +357.1,203110.02685858,3085.49842733578 +357.2,203122.675185864,3086.89001774003 +357.3,203135.284296181,3088.28234029341 +357.4,203147.854007612,3089.70161712588 +357.5,203160.384138238,3091.09318977158 +357.6,203172.87450614,3092.48819287127 +357.7,203185.3249294,3093.91149732194 +357.8,203197.735226097,3095.26750878074 +357.9,203210.105214315,3096.62740725831 +358,203222.434712133,3098.00763052762 +358.1,203234.723537633,3099.31249890154 +358.2,203246.971508896,3100.58548721384 +358.3,203259.178444004,3101.93673655186 +358.4,203271.344161036,3103.24744082578 +358.5,203283.468478076,3104.56374012655 +358.6,203295.551213202,3105.9057613208 +358.7,203307.592184498,3107.26210535831 +358.8,203319.591210044,3108.66648719913 +358.9,203331.54810792,3110.13035354192 +359,203343.462696209,3111.54677570299 +359.1,203355.334792991,3112.94303864858 +359.2,203367.164216348,3114.36213111805 +359.3,203378.950784361,3115.7091377465 +359.4,203390.69431511,3116.97805831267 +359.5,203402.394626677,3118.27758827308 +359.6,203414.051537143,3119.54723729141 +359.7,203425.66486459,3120.82681324242 +359.8,203437.234427098,3122.13715367586 +359.9,203448.760042749,3123.44684224583 +360,203460.241529623,3124.76456767452 +360.1,203471.678705802,3126.19606193993 +360.2,203483.071389367,3127.58979340343 +360.3,203494.419398399,3128.99713148833 +360.4,203505.72255098,3130.42791943823 +360.5,203516.98066519,3131.85686405327 +360.6,203528.193559111,3133.29314612892 +360.7,203539.361050823,3134.8031556075 +360.8,203550.482958408,3136.27616601032 +360.9,203561.559099948,3137.74413479349 +361,203572.589293522,3139.19970301032 +361.1,203583.573357213,3140.61670326271 +361.2,203594.511109101,3142.01591439197 +361.3,203605.402367268,3143.44775822021 +361.4,203616.246949795,3144.83833929197 +361.5,203627.044674762,3146.22536027235 +361.6,203637.795360252,3147.65001635351 +361.7,203648.498824345,3149.07283257824 +361.8,203659.154885122,3150.46934455677 +361.9,203669.763360665,3151.91985936723 +362,203680.324069054,3153.33344587026 +362.1,203690.836828371,3154.72784334446 +362.2,203701.301456698,3156.15988691095 +362.3,203711.717772114,3157.54905580645 +362.4,203722.085592701,3158.91549216065 +362.5,203732.404736541,3160.34429877789 +362.6,203742.675021715,3161.742314816 +362.7,203752.896266303,3163.14377369607 +362.8,203763.068288387,3164.56202512001 +362.9,203773.190906048,3165.90628758838 +363,203783.263937367,3167.23463928497 +363.1,203793.287200426,3168.64796207698 +363.2,203803.260513304,3170.02976448686 +363.3,203813.183694085,3171.38672121228 +363.4,203823.056560848,3172.77210146901 +363.5,203832.878931675,3174.19159147296 +363.6,203842.650624647,3175.63115375642 +363.7,203852.371457845,3177.13231373127 +363.8,203862.041249351,3178.57016359398 +363.9,203871.659817245,3180.01174534314 +364,203881.226979608,3181.47246237391 +364.1,203890.742554523,3182.86421200831 +364.2,203900.206360069,3184.19459059583 +364.3,203909.618214328,3185.60366684647 +364.4,203918.977935382,3186.97968139824 +364.5,203928.285341311,3188.34075751405 +364.6,203937.540250196,3189.71899227274 +364.7,203946.742480119,3191.06918437439 +364.8,203955.891849161,3192.46093712402 +364.9,203964.988175403,3193.92390126721 +365,203974.031276937,3195.32767549784 +365.1,203983.020984976,3196.74523742351 +365.2,203991.957182007,3198.20475731303 +365.3,204000.839808706,3199.64284704232 +365.4,204009.668863934,3201.1291604601 +365.5,204018.444404737,3202.63704730267 +365.6,204027.166546348,3204.10171083487 +365.7,204035.835462172,3205.56723969057 +365.8,204044.451370686,3207.01920444003 +365.9,204053.014497269,3208.43974128958 +366,204061.525067305,3209.83165608532 +366.1,204069.983306175,3211.24420098391 +366.2,204078.38943926,3212.62781568651 +366.3,204086.743691943,3214.02585690734 +366.4,204095.046289605,3215.44994044385 +366.5,204103.297457629,3216.87517094018 +366.6,204111.497421395,3218.31951062272 +366.7,204119.646406286,3219.8225308023 +366.8,204127.744637683,3221.28684807365 +366.9,204135.792340969,3222.77191334248 +367,204143.789741525,3224.27380943063 +367.1,204151.737064733,3225.74581078039 +367.2,204159.634535975,3227.22084985982 +367.3,204167.482380632,3228.7248066649 +367.4,204175.280824087,3230.20224299363 +367.5,204183.03009172,3231.67752567138 +367.6,204190.730408915,3233.16239444786 +367.7,204198.382001052,3234.61647952075 +367.8,204205.985093514,3236.05431042705 +367.9,204213.539911682,3237.51719589675 +368,204221.046680938,3238.94195382364 +368.1,204228.505626665,3240.38396948534 +368.2,204235.916974243,3241.85577040177 +368.3,204243.280949054,3243.30140668944 +368.4,204250.597776481,3244.74580470381 +368.5,204257.867681905,3246.23403741084 +368.6,204265.090890708,3247.69310611153 +368.7,204272.267628272,3249.13240075955 +368.8,204279.398119978,3250.61131755823 +368.9,204286.482591209,3252.06119192722 +369,204293.521267345,3253.49400777135 +369.1,204300.51437377,3254.9566870233 +369.2,204307.462135865,3256.39716994866 +369.3,204314.364779011,3257.8582424342 +369.4,204321.22252859,3259.36238685311 +369.5,204328.035609985,3260.80818774324 +369.6,204334.804248576,3262.25284268887 +369.7,204341.528669746,3263.7567404433 +369.8,204348.209098877,3265.21777353436 +369.9,204354.84576135,3266.69096751347 +370,204361.438882548,3268.12876655037 +370.1,204367.988687851,3269.51116924514 +370.2,204374.495402642,3270.86757315302 +370.3,204380.959252303,3272.28213455925 +370.4,204387.380462215,3273.67106137086 +370.5,204393.75925776,3275.07409701097 +370.6,204400.09586432,3276.49928499453 +370.7,204406.390507277,3277.93638489491 +370.8,204412.643412012,3279.41659331624 +370.9,204418.854803908,3280.95017232245 +371,204425.024908346,3282.4570019721 +371.1,204431.153950708,3283.93264668163 +371.2,204437.242156376,3285.46611683771 +371.3,204443.289750732,3286.95982138188 +371.4,204449.296959156,3288.44378534734 +371.5,204455.264007032,3289.96938780529 +371.6,204461.191119741,3291.4656850165 +371.7,204467.078522665,3292.92309305618 +371.8,204472.926441185,3294.40804807792 +371.9,204478.735100684,3295.80846990167 +372,204484.504726543,3297.18513174216 +372.1,204490.235544143,3298.64761178756 +372.2,204495.927778868,3300.05481917808 +372.3,204501.581656098,3301.47482488156 +372.4,204507.197401216,3302.92658717378 +372.5,204512.775239603,3304.39338228622 +372.6,204518.315396641,3305.87466825183 +372.7,204523.818097711,3307.45476414567 +372.8,204529.283568196,3308.96408409816 +372.9,204534.712033478,3310.46946204071 +373,204540.103718938,3312.00178332851 +373.1,204545.458849957,3313.51272567242 +373.2,204550.777651919,3315.01676754123 +373.3,204556.060350204,3316.55536824406 +373.4,204561.307170195,3318.01527033104 +373.5,204566.518337273,3319.47563750381 +373.6,204571.694076819,3320.96693538287 +373.7,204576.834614217,3322.39464542492 +373.8,204581.940174847,3323.79738835049 +373.9,204587.010984092,3325.25028243396 +374,204592.047267333,3326.68335047856 +374.1,204597.049249952,3328.11901853691 +374.2,204602.01715733,3329.57531708678 +374.3,204606.951214851,3330.97956767043 +374.4,204611.851647894,3332.41221080846 +374.5,204616.718681843,3333.90876495465 +374.6,204621.552542079,3335.35795906106 +374.7,204626.353453984,3336.84091674397 +374.8,204631.121642939,3338.34967426605 +374.9,204635.857334327,3339.85879686018 +375,204640.560753529,3341.40777847777 +375.1,204645.232125927,3342.99345688018 +375.2,204649.871676903,3344.53590960684 +375.3,204654.479631838,3346.07213993902 +375.4,204659.056216115,3347.62595758449 +375.5,204663.601655115,3349.15613732162 +375.6,204668.116174221,3350.67992138829 +375.7,204672.599998813,3352.23178531909 +375.8,204677.053354273,3353.74578212256 +375.9,204681.476465984,3355.2610534356 +376,204685.869559328,3356.78009917202 +376.1,204690.232859685,3358.22223999296 +376.2,204694.566592438,3359.64007109003 +376.3,204698.870982969,3361.06914280577 +376.4,204703.146256659,3362.45866063472 +376.5,204707.392638891,3363.81601435221 +376.6,204711.610355045,3365.19917736779 +376.7,204715.799630505,3366.56284598629 +376.8,204719.960690651,3368.03812178642 +376.9,204724.093760865,3369.5729894339 +377,204728.19906653,3371.07853983386 +377.1,204732.276833027,3372.66709374956 +377.2,204736.327285737,3374.32090299521 +377.3,204740.350650044,3375.9500039811 +377.4,204744.347151327,3377.66338788235 +377.5,204748.31701497,3379.28216327109 +377.6,204752.260466354,3380.91539354509 +377.7,204756.177730861,3382.59142678955 +377.8,204760.069033873,3384.19749755 +377.9,204763.934600771,3385.79068997895 +378,204767.774656937,3387.42700500745 +378.1,204771.589427753,3388.99459066588 +378.2,204775.379138602,3390.57041119703 +378.3,204779.144014863,3392.15645352404 +378.4,204782.884281921,3393.69494677555 +378.5,204786.600165155,3395.24429759932 +378.6,204790.291889949,3396.81445023542 +378.7,204793.959681683,3398.35561685688 +378.8,204797.603765741,3399.87669350555 +378.9,204801.224367502,3401.44525979135 +379,204804.82171235,3402.93340887529 +379.1,204808.396025666,3404.40640774607 +379.2,204811.947532832,3405.89643526927 +379.3,204815.476459229,3407.37741079506 +379.4,204818.983030241,3408.84429288775 +379.5,204822.467471247,3410.40464601317 +379.6,204825.93000763,3411.91054553403 +379.7,204829.370864772,3413.44191783844 +379.8,204832.790268055,3415.07509998666 +379.9,204836.188442861,3416.70088327798 +380,204839.56561457,3418.18852579921 +380.1,204842.922008566,3419.73153432837 +380.2,204846.25785023,3421.24956480634 +380.3,204849.573364943,3422.7907685563 +380.4,204852.868778088,3424.31167689151 +380.5,204856.144315046,3425.81488876822 +380.6,204859.400201199,3427.28077877886 +380.7,204862.636661929,3428.86856706918 +380.8,204865.853922618,3430.4687688861 +380.9,204869.052208647,3432.00396776926 +381,204872.231745399,3433.53707683156 +381.1,204875.392758255,3435.15056852885 +381.2,204878.535472596,3436.70293794263 +381.3,204881.660113806,3438.2515871893 +381.4,204884.766907264,3439.80349402468 +381.5,204887.856078354,3441.28782013349 +381.6,204890.927852458,3442.76608714075 +381.7,204893.982454956,3444.29428345018 +381.8,204897.02011123,3445.75491085727 +381.9,204900.041046664,3447.25878463789 +382,204903.045486637,3448.78717012428 +382.1,204906.033656533,3450.29342549 +382.2,204909.005781733,3451.79666538367 +382.3,204911.962087618,3453.3706339588 +382.4,204914.902799571,3454.92300889472 +382.5,204917.828142973,3456.49523819514 +382.6,204920.738343206,3458.08289626975 +382.7,204923.633625652,3459.69270405137 +382.8,204926.514215693,3461.32099011512 +382.9,204929.380338711,3463.01266278986 +383,204932.232220086,3464.63578445078 +383.1,204935.070085202,3466.25975488741 +383.2,204937.89415944,3467.9068596773 +383.3,204940.704668181,3469.53779114933 +383.4,204943.501836808,3471.14237347866 +383.5,204946.285890703,3472.78864622888 +383.6,204949.057055246,3474.37185417289 +383.7,204951.815555821,3475.9791793404 +383.8,204954.561617808,3477.60724302513 +383.9,204957.295466589,3479.21500754761 +384,204960.017327547,3480.81871005463 +384.1,204962.727426063,3482.44613071384 +384.2,204965.425987519,3484.03808654359 +384.3,204968.113237297,3485.6519406331 +384.4,204970.789400779,3487.30792262188 +384.5,204973.454703345,3488.89469161808 +384.6,204976.109370379,3490.48346944693 +384.7,204978.753627262,3492.09576951868 +384.8,204981.387699375,3493.65916870497 +384.9,204984.011812101,3495.24366585294 +385,204986.626190822,3496.85040995198 +385.1,204989.231060918,3498.43766555531 +385.2,204991.826647772,3500.04689570514 +385.3,204994.41317132,3501.69751208112 +385.4,204996.990810021,3503.28065900151 +385.5,204999.559686227,3504.88875664024 +385.6,205002.119866139,3506.51682170043 +385.7,205004.671359808,3508.12374220169 +385.8,205007.214121134,3509.73189203119 +385.9,205009.748047868,3511.33961177715 +386,205012.272987055,3512.92684138096 +386.1,205014.788771067,3514.53636993126 +386.2,205017.295232233,3516.19167285386 +386.3,205019.792202882,3517.77849207794 +386.4,205022.279515343,3519.36388626497 +386.5,205024.757001946,3520.96796754493 +386.6,205027.22449502,3522.57323033001 +386.7,205029.681826894,3524.17801805183 +386.8,205032.128829897,3525.80335109475 +386.9,205034.565336359,3527.38515449988 +387,205036.991178608,3528.9902309011 +387.1,205039.406188974,3530.64142026643 +387.2,205041.810199786,3532.24733605922 +387.3,205044.203043374,3533.8561083308 +387.4,205046.584552066,3535.44222387168 +387.5,205048.954558192,3536.98806985497 +387.6,205051.312894081,3538.5151309383 +387.7,205053.659392062,3540.08638194979 +387.8,205055.993884464,3541.63245880106 +387.9,205058.316203617,3543.17918601026 +388,205060.626181849,3544.76735909946 +388.1,205062.923651491,3546.37442874054 +388.2,205065.208444871,3548.00244762034 +388.3,205067.480394318,3549.692724988 +388.4,205069.739332162,3551.35812738732 +388.5,205071.985090732,3553.00358660601 +388.6,205074.217502357,3554.64875404304 +388.7,205076.436399366,3556.23628747793 +388.8,205078.641614089,3557.80849341637 +388.9,205080.832978854,3559.41875253575 +389,205083.010325992,3561.00476726112 +389.1,205085.17348783,3562.57250850881 +389.2,205087.322296699,3564.16230881803 +389.3,205089.456584927,3565.73275462663 +389.4,205091.576184844,3567.3160415259 +389.5,205093.680928779,3568.95945990567 +389.6,205095.770649061,3570.59054493039 +389.7,205097.84517802,3572.20303812982 +389.8,205099.904347984,3573.83051868191 +389.9,205101.947991283,3575.41681564886 +390,205103.975940246,3577.04845922872 +390.1,205105.988027202,3578.72032033506 +390.2,205107.984084481,3580.34888166152 +390.3,205109.963944411,3581.97241784316 +390.4,205111.927439322,3583.62042649 +390.5,205113.874401543,3585.23456886736 +390.6,205115.804663404,3586.86833142412 +390.7,205117.718057233,3588.51391799832 +390.8,205119.61441536,3590.14082912035 +390.9,205121.493570113,3591.79080405029 +391,205123.355353823,3593.45832423823 +391.1,205125.199598819,3595.12108360692 +391.2,205127.026137428,3596.84567376691 +391.3,205128.834801982,3598.60875439704 +391.4,205130.625424808,3600.35893656284 +391.5,205132.397838237,3602.08980938133 +391.6,205134.151874597,3603.81413592542 +391.7,205135.887366218,3605.51919795749 +391.8,205137.604145429,3607.21044945617 +391.9,205139.302044558,3608.83222239667 +392,205140.980895936,3610.37902006407 +392.1,205142.640531892,3611.86543399993 +392.2,205144.280784754,3613.43344677717 +392.3,205145.901486851,3614.9809207208 +392.4,205147.502470514,3616.55368616564 +392.5,205149.083568072,3618.15766696607 +392.6,205150.644611853,3619.8075537515 +392.7,205152.185434186,3621.54304325196 +392.8,205153.705867402,3623.30781671541 +392.9,205155.205743828,3624.96602251622 +393,205156.684895796,3626.61490744156 +393.1,205158.143155632,3628.30254195127 +393.2,205159.580355668,3629.9680156095 +393.3,205160.996328231,3631.61161393509 +393.4,205162.390905652,3633.29037498564 +393.5,205163.763920259,3634.99567042009 +393.6,205165.115204382,3636.72883465869 +393.7,205166.444590349,3638.53642042766 +393.8,205167.751910491,3640.23551078431 +393.9,205169.036997136,3641.96650008096 +394,205170.299682613,3643.69296151703 +394.1,205171.539799252,3645.3161541014 +394.2,205172.757179382,3646.92701441777 +394.3,205173.951655332,3648.61632096499 +394.4,205175.123059432,3650.24498868942 +394.5,205176.27122401,3651.90119486711 +394.6,205177.395981396,3653.55007811127 +394.7,205178.497163918,3655.18679696718 +394.8,205179.574603907,3656.84429000714 +394.9,205180.628133692,3658.52582015922 +395,205181.6575856,3660.16391528942 +395.1,205182.662791963,3661.8072866184 +395.2,205183.643585109,3663.52833143559 +395.3,205184.599797367,3665.22941758773 +395.4,205185.531261066,3666.94810807444 +395.5,205186.437808536,3668.74822196676 +395.6,205187.319272106,3670.54213805287 +395.7,205188.175484105,3672.29976704714 +395.8,205189.006276863,3674.06645551802 +395.9,205189.811482707,3675.77363866592 +396,205190.590933969,3677.50647943317 +396.1,205191.344462977,3679.27625863442 +396.2,205192.071902059,3680.98232818085 +396.3,205192.773083546,3682.66723791842 +396.4,205193.447839767,3684.36420627975 +396.5,205194.09600305,3686.00430113122 +396.6,205194.717405725,3687.63862480769 +396.7,205195.311880122,3689.28171554087 +396.8,205195.879258569,3690.90861800552 +396.9,205196.419373395,3692.56257778 +397,205196.93205693,3694.24796267554 +397.1,205197.417141504,3695.93897757281 +397.2,205197.874459445,3697.69781086147 +397.3,205198.303843082,3699.47774796428 +397.4,205198.705124744,3701.22342220529 +397.5,205199.078136762,3702.99553622654 +397.6,205199.422711464,3704.75690471486 +397.7,205199.738681179,3706.50716541225 +397.8,205200.025878237,3708.24058341065 +397.9,205200.284134966,3709.96220856526 +398,205200.513283696,3711.66851023865 +398.1,205200.713156757,3713.40118326271 +398.2,205200.883586477,3715.1227175993 +398.3,205201.024405185,3716.82803891424 +398.4,205201.135445211,3718.50939010195 +398.5,205201.216538884,3720.26910468003 +398.6,205201.267518534,3721.98943098575 +398.7,205201.288216489,3723.72097170902 +398.8,205201.278465078,3725.39971067665 +398.9,205201.238096632,3727.03947205121 +399,205201.166943478,3728.64687077824 +399.1,205201.064837947,3730.33503145421 +399.2,205200.931612367,3731.96247698651 +399.3,205200.767099068,3733.64195893151 +399.4,205200.571130379,3735.32466873704 +399.5,205200.343538629,3737.03382009009 +399.6,205200.084156147,3738.793955358 +399.7,205199.792815263,3740.60186974671 +399.8,205199.469348305,3742.3486430634 +399.9,205199.113587604,3744.12172769299 +400,205198.725365487,3745.88217072498 +400.1,205198.304514285,3747.62816606952 +400.2,205197.850866327,3749.40138888558 +400.3,205197.364253942,3751.16170789103 +400.4,205196.844509458,3752.90762253365 +400.5,205196.291465206,3754.68525504896 +400.6,205195.704953514,3756.40545832797 +400.7,205195.084806712,3758.06797942359 +400.8,205194.430857129,3759.71516777301 +400.9,205193.742937093,3761.39511722131 +401,205193.020878936,3763.06176579017 +401.1,205192.264514984,3764.75607424763 +401.2,205191.473677568,3766.43236542279 +401.3,205190.648199018,3768.13897002758 +401.4,205189.787911661,3769.91793803337 +401.5,205188.892647828,3771.76724960497 +401.6,205187.962239847,3773.55788340128 +401.7,205186.996520048,3775.33252136367 +401.8,205185.99532076,3777.09108170644 +401.9,205184.958474313,3778.793401458 +402,205183.885813034,3780.48088708373 +402.1,205182.777169255,3782.19890202326 +402.2,205181.632375303,3783.86264171143 +402.3,205180.451263508,3785.55429768855 +402.4,205179.233666199,3787.31586415323 +402.5,205177.979415706,3789.06151276236 +402.6,205176.688344358,3790.86417890714 +402.7,205175.360284483,3792.71025706193 +402.8,205173.995068412,3794.49667727301 +402.9,205172.592528473,3796.31069004888 +403,205171.152496995,3798.10843504495 +403.1,205169.674806308,3799.85148998039 +403.2,205168.159288741,3801.62856166836 +403.3,205166.605776624,3803.44529847643 +403.4,205165.014102284,3805.23498028157 +403.5,205163.384098053,3807.00609100337 +403.6,205161.715596258,3808.80397439074 +403.7,205160.008429229,3810.58864274608 +403.8,205158.262429295,3812.356336029 +403.9,205156.477428786,3814.15301185706 +404,205154.65326003,3815.89658880245 +404.1,205152.789755357,3817.63920810269 +404.2,205150.886747096,3819.40006689581 +404.3,205148.944067577,3821.06367010742 +404.4,205146.961549128,3822.71368150569 +404.5,205144.939024078,3824.43890931437 +404.6,205142.876324758,3826.10628378567 +404.7,205140.773283496,3827.8016698252 +404.8,205138.629732621,3829.50758344733 +404.9,205136.445504462,3831.17283837949 +405,205134.22043135,3832.91187691577 +405.1,205131.954345612,3834.7054744136 +405.2,205129.647079578,3836.45236150809 +405.3,205127.298465578,3838.22874552311 +405.4,205124.908335941,3840.02930110208 +405.5,205122.476522995,3841.81608033804 +405.6,205120.00285907,3843.67386116301 +405.7,205117.487176496,3845.48288477803 +405.8,205114.929307601,3847.24428442514 +405.9,205112.329084715,3848.97651115867 +406,205109.686340166,3850.73265676033 +406.1,205107.000906285,3852.43604905245 +406.2,205104.2726154,3854.20086257667 +406.3,205101.50129984,3855.95860504267 +406.4,205098.686791935,3857.73302762408 +406.5,205095.828924014,3859.57334291899 +406.6,205092.927528407,3861.45374542508 +406.7,205089.982437441,3863.27986213141 +406.8,205086.993483447,3865.13540708131 +406.9,205083.960498754,3866.94249951886 +407,205080.883315691,3868.68471880596 +407.1,205077.761766587,3870.41775644715 +407.2,205074.595683772,3872.06329250086 +407.3,205071.384899574,3873.65212924348 +407.4,205068.129246323,3875.22616316103 +407.5,205064.828556348,3876.85338552527 +407.6,205061.482661978,3878.48273741899 +407.7,205058.091395543,3880.22650680277 +407.8,205054.654589371,3882.02915718413 +407.9,205051.172075792,3883.88766623954 +408,205047.643687136,3885.8212346336 +408.1,205044.069255731,3887.77934989661 +408.2,205040.448613906,3889.61337143524 +408.3,205036.781593991,3891.46906955791 +408.4,205033.068028315,3893.30399834799 +408.5,205029.307749207,3895.11724942879 +408.6,205025.500588996,3896.94396355196 +408.7,205021.646380012,3898.73925028198 +408.8,205017.744954584,3900.48397698347 +408.9,205013.796145041,3902.30395265779 +409,205009.799785642,3904.14141519256 +409.1,205005.755744724,3905.92092512194 +409.2,205001.663951236,3907.74788168247 +409.3,204997.524395531,3909.5860793601 +409.4,204993.337129368,3911.41262858178 +409.5,204989.10226591,3913.30702309761 +409.6,204984.819979728,3915.22053394682 +409.7,204980.490504866,3917.08319578725 +409.8,204976.114102695,3918.9833710893 +409.9,204971.691035383,3920.8186316497 +410,204967.221565096,3922.60606550103 +410.1,204962.705954,3924.37980801102 +410.2,204958.144464262,3926.18022802537 +410.3,204953.537358047,3927.96888913915 +410.4,204948.884897523,3929.78684252692 +410.5,204944.187344855,3931.62460827952 +410.6,204939.444962211,3933.45247944399 +410.7,204934.658011755,3935.35876638655 +410.8,204929.826755656,3937.24607644501 +410.9,204924.951456078,3939.0719882126 +411,204920.032375189,3940.9285189652 +411.1,204915.069775155,3942.79343027718 +411.2,204910.063918142,3944.61917489391 +411.3,204905.015066317,3946.52782662308 +411.4,204899.923481845,3948.39071884595 +411.5,204894.789426894,3950.28772064789 +411.6,204889.613163629,3952.2651090632 +411.7,204884.394954218,3954.17848126669 +411.8,204879.135060826,3956.10078244681 +411.9,204873.833745619,3958.047302634 +412,204868.491270765,3959.86540631485 +412.1,204863.107898429,3961.65548271621 +412.2,204857.683890778,3963.48651745044 +412.3,204852.219509979,3965.2813495656 +412.4,204846.715018197,3967.0685543236 +412.5,204841.170677598,3968.89025197073 +412.6,204835.586750351,3970.70383966489 +412.7,204829.96349862,3972.57302361417 +412.8,204824.301184572,3974.47058897812 +412.9,204818.600070373,3976.36986814458 +413,204812.86041819,3978.17520512577 +413.1,204807.08249019,3980.11505005421 +413.2,204801.266548537,3981.95056614274 +413.3,204795.4128554,3983.82544285977 +413.4,204789.521672944,3985.55305051178 +413.5,204783.593263336,3987.26367773938 +413.6,204777.627888742,3988.89279291665 +413.7,204771.625811328,3990.54681860584 +413.8,204765.58729326,3992.09949261074 +413.9,204759.512596706,3993.67478543764 +414,204753.401983832,3995.21479017308 +414.1,204747.255716803,3996.90352810256 +414.2,204741.074057786,3998.52797234599 +414.3,204734.857268948,4000.21655250256 +414.4,204728.605612455,4002.02876346167 +414.5,204722.319350473,4003.8450382011 +414.6,204715.998745169,4005.73514213889 +414.7,204709.644058709,4007.64626549032 +414.8,204703.255553259,4009.58622848469 +414.9,204696.833490986,4011.63711435808 +415,204690.378134056,4013.72104184521 +415.1,204683.889744636,4015.75267075164 +415.2,204677.368584891,4017.77766240907 +415.3,204670.814916989,4019.73690134787 +415.4,204664.229003095,4021.64248312567 +415.5,204657.611105377,4023.49635912788 +415.6,204650.961485999,4025.33609712652 +415.7,204644.280407129,4027.11766900489 +415.8,204637.568130934,4028.8869745511 +415.9,204630.824919579,4030.683759994 +416,204624.05103523,4032.51076490724 +416.1,204617.246740055,4034.40267447038 +416.2,204610.412296219,4036.35362093661 +416.3,204603.54796589,4038.25877919157 +416.4,204596.654011232,4040.23184033989 +416.5,204589.730694413,4042.23381324536 +416.6,204582.778277599,4044.17633532269 +416.7,204575.797022957,4046.15430658333 +416.8,204568.787192652,4048.10701077656 +416.9,204561.749048851,4050.01902668079 +417,204554.682853721,4051.9541570956 +417.1,204547.588869428,4053.86866963879 +417.2,204540.467358138,4055.77122586683 +417.3,204533.318582017,4057.70885816903 +417.4,204526.142803232,4059.57904170754 +417.5,204518.94028395,4061.37007725377 +417.6,204511.711286336,4063.19040175277 +417.7,204504.456072558,4065.02923978644 +417.8,204497.17490478,4066.86040688929 +417.9,204489.868045171,4068.67715636662 +418,204482.535755896,4070.50599096582 +418.1,204475.178299121,4072.37170084682 +418.2,204467.795937013,4074.31224713363 +418.3,204460.388931738,4076.22321445572 +418.4,204452.957545463,4078.0889773974 +418.5,204445.502040354,4079.94078592813 +418.6,204438.022678577,4081.81028902889 +418.7,204430.519722299,4083.63650770722 +418.8,204422.993433686,4085.49283937168 +418.9,204415.444074904,4087.36537394807 +419,204407.87190812,4089.27197030221 +419.1,204400.277195501,4091.20471077917 +419.2,204392.660199211,4093.1583992485 +419.3,204385.021181419,4095.10870631942 +419.4,204377.36040429,4097.08754057509 +419.5,204369.678129991,4099.04189100541 +419.6,204361.974620688,4100.98014296596 +419.7,204354.250138547,4102.9179871684 +419.8,204346.504945735,4104.83181524224 +419.9,204338.739304417,4106.65965316676 +420,204330.953476762,4108.47727320083 +420.1,204323.147724934,4110.30889848702 +420.2,204315.3223111,4112.13448846382 +420.3,204307.477497428,4113.99468875155 +420.4,204299.613546081,4115.86060641688 +420.5,204291.730719229,4117.72657778719 +420.6,204283.829279036,4119.7026490254 +420.7,204275.909487669,4121.69777133064 +420.8,204267.971607294,4123.6457073548 +420.9,204260.015900078,4125.62116015776 +421,204252.042628187,4127.57919816912 +421.1,204244.052053788,4129.4893766603 +421.2,204236.044439047,4131.46350808669 +421.3,204228.02004613,4133.41358451726 +421.4,204219.979137203,4135.31709496389 +421.5,204211.921974434,4137.257314985 +421.6,204203.848819987,4139.13303870127 +421.7,204195.759936031,4140.95609418556 +421.8,204187.65558473,4142.81036503483 +421.9,204179.536028253,4144.64205276118 +422,204171.401528763,4146.46786493823 +422.1,204163.252348429,4148.32864541406 +422.2,204155.088749417,4150.15986745498 +422.3,204146.910993892,4151.98549032357 +422.4,204138.719344022,4153.84450483345 +422.5,204130.514061972,4155.71867491158 +422.6,204122.29540991,4157.58958638492 +422.7,204114.063650001,4159.49647127445 +422.8,204105.819044411,4161.36705388789 +422.9,204097.561855308,4163.23239483739 +423,204089.292344857,4165.13001593414 +423.1,204081.010775225,4167.07764893081 +423.2,204072.717408578,4169.0210866539 +423.3,204064.412507083,4170.95820817449 +423.4,204056.096332905,4172.90195127131 +423.5,204047.769148212,4174.84395439775 +423.6,204039.43121517,4176.86082347458 +423.7,204031.082795944,4178.88993240548 +423.8,204022.724152496,4180.87899295982 +423.9,204014.355528508,4182.89897206062 +424,204005.977117493,4184.92665206327 +424.1,203997.589059539,4186.87604091673 +424.2,203989.191441308,4188.89530652546 +424.3,203980.784296041,4190.88880656771 +424.4,203972.367603552,4192.83725830789 +424.5,203963.941290437,4194.82019298778 +424.6,203955.505248145,4196.77515550997 +424.7,203947.05936487,4198.71993192582 +424.8,203938.603528809,4200.70155139044 +424.9,203930.137628156,4202.6553872439 +425,203921.661551107,4204.59498500532 +425.1,203913.175185856,4206.53878146574 +425.2,203904.678420598,4208.36792484252 +425.3,203896.171143528,4210.07370283224 +425.4,203887.653242842,4211.55112266982 +425.5,203879.124606735,4213.01789601051 +425.6,203870.585123401,4214.51876226242 +425.7,203862.034681036,4216.0292823865 +425.8,203853.473167835,4217.61596650638 +425.9,203844.900471992,4219.28199025212 +426,203836.316481704,4221.03001300625 +426.1,203827.721085165,4223.05018829157 +426.2,203819.114170569,4225.1208205435 +426.3,203810.495626113,4227.15401323003 +426.4,203801.865339991,4229.22189907787 +426.5,203793.223200398,4231.20825247654 +426.6,203784.56909553,4233.15485030821 +426.7,203775.902913581,4235.17706809672 +426.8,203767.224542746,4237.19808306535 +426.9,203758.533871221,4239.18370920338 +427,203749.830787201,4241.20503361429 +427.1,203741.11517888,4243.22375429867 +427.2,203732.386934454,4245.24926611221 +427.3,203723.645942118,4247.3903229753 +427.4,203714.892090067,4249.49545248396 +427.5,203706.125266495,4251.55976867668 +427.6,203697.345359599,4253.65864907799 +427.7,203688.552257573,4255.72016854777 +427.8,203679.745848612,4257.70980524114 +427.9,203670.926020911,4259.77215827117 +428,203662.092662665,4261.75528744764 +428.1,203653.24566207,4263.73939338096 +428.2,203644.384907321,4265.76488687549 +428.3,203635.510286611,4267.75284307898 +428.4,203626.621688138,4269.70198051965 +428.5,203617.719000095,4271.76311927624 +428.6,203608.802110677,4273.78499457887 +428.7,203599.870908081,4275.77326178587 +428.8,203590.9252805,4277.79946223455 +428.9,203581.96511613,4279.78634048579 +429,203572.990303166,4281.76770496752 +429.1,203564.000729804,4283.82856288354 +429.2,203554.996284237,4285.81217283842 +429.3,203545.976854662,4287.75214124354 +429.4,203536.942329272,4289.85193021275 +429.5,203527.892596264,4291.91171720079 +429.6,203518.827543833,4293.97351513191 +429.7,203509.747060173,4296.08066719742 +429.8,203500.651033479,4298.14757613812 +429.9,203491.539351947,4300.17050735207 +430,203482.411903772,4302.3187647992 +430.1,203473.268577148,4304.34337357407 +430.2,203464.109260272,4306.32884706267 +430.3,203454.933841337,4308.35341093859 +430.4,203445.742208539,4310.33734601777 +430.5,203436.534250073,4312.32052706157 +430.6,203427.309854134,4314.38941529203 +430.7,203418.068908917,4316.37772637182 +430.8,203408.811302618,4318.32334101497 +430.9,203399.53692343,4320.30863165682 +431,203390.24565955,4322.17457343496 +431.1,203380.937399173,4323.9580475686 +431.2,203371.612030493,4325.78234118285 +431.3,203362.269441705,4327.52638599989 +431.4,203352.909521005,4329.2687237863 +431.5,203343.532156588,4331.13191145078 +431.6,203334.137236649,4333.03552536165 +431.7,203324.724649382,4335.01799462276 +431.8,203315.294282984,4337.12451554537 +431.9,203305.846025648,4339.15117837637 +432,203296.37976557,4341.17438894943 +432.1,203286.895390945,4343.28072799714 +432.2,203277.392789969,4345.34971881543 +432.3,203267.871850836,4347.37371966051 +432.4,203258.332461741,4349.47700085234 +432.5,203248.774510879,4351.53906063208 +432.6,203239.197886446,4353.64009058831 +432.7,203229.602476636,4355.86430608109 +432.8,203219.988169645,4358.00704289234 +432.9,203210.354853668,4360.10874850902 +433,203200.702416899,4362.25502913229 +433.1,203191.030747534,4364.2829407416 +433.2,203181.339733768,4366.26799681308 +433.3,203171.629263796,4368.33368582521 +433.4,203161.899225813,4370.31869266847 +433.5,203152.149508013,4372.30215901653 +433.6,203142.379998593,4374.3274277749 +433.7,203132.590585747,4376.27051191948 +433.8,203122.781157671,4378.21284952583 +433.9,203112.951602559,4380.2768158613 +434,203103.101808606,4382.30088920142 +434.1,203093.231664007,4384.32397850513 +434.2,203083.341056958,4386.42910826986 +434.3,203073.429875654,4388.49256106398 +434.4,203063.49800829,4390.5968591557 +434.5,203053.54534306,4392.78275309699 +434.6,203043.57176816,4394.84789460301 +434.7,203033.577171784,4396.83187603314 +434.8,203023.561443469,4398.8969447907 +434.9,203013.524490546,4400.92117213751 +435,203003.466249199,4402.94428186188 +435.1,202993.386684666,4405.04824874204 +435.2,202983.285791241,4407.11259913354 +435.3,202973.163592272,4409.21458175929 +435.4,202963.020140164,4411.43815815533 +435.5,202952.855515035,4413.58272380424 +435.6,202942.669808263,4415.68609915329 +435.7,202932.463111429,4417.83068462242 +435.8,202922.235516113,4419.93400801058 +435.9,202911.987113898,4421.99578301096 +436,202901.717996364,4424.10100000229 +436.1,202891.428255094,4426.08661680056 +436.2,202881.117981667,4428.0300270276 +436.3,202870.787267667,4430.05528154069 +436.4,202860.436204673,4432.07941903065 +436.5,202850.064884268,4434.06353839133 +436.6,202839.673398033,4436.12836950101 +436.7,202829.261837549,4438.11316675378 +436.8,202818.830294397,4440.09668260313 +436.9,202808.378860159,4442.2012889081 +437,202797.907626416,4444.26627558142 +437.1,202787.416684749,4446.29066559155 +437.2,202776.90612674,4448.3953252292 +437.3,202766.376043971,4450.49914635545 +437.4,202755.826528022,4452.64152861909 +437.5,202745.257670474,4454.90474562511 +437.6,202734.66956291,4457.08843055425 +437.7,202724.062296911,4459.23128960082 +437.8,202713.435964057,4461.4152326098 +437.9,202702.79065593,4463.47976150202 +438,202692.126464112,4465.46425851673 +438.1,202681.443480184,4467.52838602198 +438.2,202670.741795727,4469.55271617662 +438.3,202660.021502323,4471.57620313911 +438.4,202649.282691553,4473.67981830036 +438.5,202638.525454997,4475.74355093927 +438.6,202627.749884239,4477.84677342755 +438.7,202616.956070858,4480.07006508879 +438.8,202606.144106437,4482.25368860463 +438.9,202595.314082556,4484.39694114609 +439,202584.466090798,4486.58037163132 +439.1,202573.600222742,4488.64464204066 +439.2,202562.716569972,4490.66890320248 +439.3,202551.815224067,4492.77282258733 +439.4,202540.896276609,4494.83697843167 +439.5,202529.959819181,4496.86150722636 +439.6,202519.005943362,4498.9258898747 +439.7,202508.034740735,4500.95037499145 +439.8,202497.046302881,4502.97472849559 +439.9,202486.04072138,4505.11842502347 +440,202475.018087815,4507.22235881978 +440.1,202463.978493767,4509.28654098319 +440.2,202452.922030817,4511.42999512674 +440.3,202441.848790546,4513.57327882649 +440.4,202430.758864536,4515.71687618884 +440.5,202419.652344368,4517.97941572976 +440.6,202408.529321624,4520.20227006272 +440.7,202397.389887885,4522.38573328173 +440.8,202386.234134731,4524.60858910937 +440.9,202375.062153745,4526.7121820199 +441,202363.874036508,4528.73711363512 +441.1,202352.669874602,4530.88042073759 +441.2,202341.449759606,4532.94450805515 +441.3,202330.213783104,4535.00943017403 +441.4,202318.962036676,4537.15317540534 +441.5,202307.694611903,4539.29671073016 +441.6,202296.411600368,4541.48111312519 +441.7,202285.11309365,4543.78301977656 +441.8,202273.799183333,4545.96622949104 +441.9,202262.469960996,4548.1499387617 +442,202251.125518221,4550.37185070856 +442.1,202239.76594659,4552.55376570918 +442.2,202228.391337684,4554.69776835411 +442.3,202217.001783085,4556.92041567205 +442.4,202205.597374373,4559.06406278835 +442.5,202194.17820313,4561.20844672469 +442.6,202182.744360937,4563.3913434067 +442.7,202171.295939376,4565.49470620044 +442.8,202159.833030028,4567.52057402261 +442.9,202148.355724475,4569.62364137725 +443,202136.864114297,4571.68700282755 +443.1,202125.358291076,4573.75188828629 +443.2,202113.838346394,4575.93398658269 +443.3,202102.304371831,4578.07718270098 +443.4,202090.75645897,4580.22220365905 +443.5,202079.194699391,4582.52347194959 +443.6,202067.619184676,4584.74640662493 +443.7,202056.030006406,4586.93090247483 +443.8,202044.427256162,4589.19277927162 +443.9,202032.81102552,4591.29598334876 +444,202021.181404277,4593.36125871998 +444.1,202009.538476265,4595.54323701331 +444.2,201997.882318744,4597.64699793632 +444.3,201986.213002406,4599.83186239874 +444.4,201974.530591368,4602.05310254639 +444.5,201962.835143178,4604.23627968564 +444.6,201951.12670882,4606.54144285683 +444.7,201939.405334484,4608.92166046888 +444.8,201927.671065752,4611.22277555434 +444.9,201915.92394821,4613.56600780036 +445,201904.164027442,4615.82700135931 +445.1,201892.391349032,4618.00960469999 +445.2,201880.605958564,4620.19492076171 +445.3,201868.807901623,4622.37544207667 +445.4,201856.997223792,4624.51953793007 +445.5,201845.173970657,4626.74607217338 +445.6,201833.338187801,4628.92752771932 +445.7,201821.489920809,4631.11084073735 +445.8,201809.629215264,4633.41649589867 +445.9,201797.756116752,4635.71654651003 +446,201785.870670856,4637.97952708994 +446.1,201773.97292316,4640.28274349231 +446.2,201762.062919249,4642.4640574809 +446.3,201750.140704707,4644.60699624792 +446.4,201738.206325119,4646.66732693361 +446.5,201726.259826068,4648.7573578005 +446.6,201714.301253139,4650.86718727676 +446.7,201702.330651916,4653.00411146563 +446.8,201690.348067983,4655.07114238129 +446.9,201678.353546925,4657.13701448572 +447,201666.347134326,4659.16092631834 +447.1,201654.32887577,4661.38860985719 +447.2,201642.298816841,4663.54243099544 +447.3,201630.257003124,4665.64067635793 +447.4,201618.203480202,4667.75127659887 +447.5,201606.13829366,4669.88861365757 +447.6,201594.061489083,4672.0316154156 +447.7,201581.973112054,4674.33516027994 +447.8,201569.873208159,4676.55579753607 +447.9,201557.76182298,4678.74146940163 +448,201545.639002102,4681.00369542483 +448.1,201533.50479111,4683.18740933778 +448.2,201521.359235588,4685.37486233796 +448.3,201509.20238112,4687.63319971755 +448.4,201497.03427329,4689.77723585092 +448.5,201484.854957683,4691.88517747705 +448.6,201472.664479882,4694.069553655 +448.7,201460.462885473,4696.21280333102 +448.8,201448.250220039,4698.31851182239 +448.9,201436.026529164,4700.53821643247 +449,201423.791858433,4702.68419605795 +449.1,201411.54625343,4704.83282368909 +449.2,201399.28975974,4707.13449574421 +449.3,201387.022422946,4709.39609829189 +449.4,201374.744288632,4711.6640670324 +449.5,201362.455402384,4714.08537433776 +449.6,201350.155809785,4716.46665344956 +449.7,201337.84555642,4718.85029564873 +449.8,201325.524687872,4721.3065244562 +449.9,201313.193249726,4723.60697348278 +450,201300.851287567,4725.87071425468 +450.1,201288.498846978,4728.20887904306 +450.2,201276.135973544,4730.46839271746 +450.3,201263.762712849,4732.69502449979 +450.4,201251.379110477,4735.0366742565 +450.5,201238.985212013,4737.33891990763 +450.6,201226.581063041,4739.68543237249 +450.7,201214.166709144,4742.14249554161 +450.8,201201.742195908,4744.52085194932 +450.9,201189.307568916,4746.86584101166 +451,201176.862873754,4749.28740715715 +451.1,201164.408156004,4751.63056834772 +451.2,201151.943461251,4753.93573712761 +451.3,201139.46883508,4756.31490100012 +451.4,201126.984323075,4758.62102697716 +451.5,201114.489970819,4760.89257201083 +451.6,201101.985823898,4763.27537679565 +451.7,201089.471927895,4765.57788414113 +451.8,201076.948328396,4767.84101130414 +451.9,201064.415070983,4770.22231788424 +452,201051.872201241,4772.52485262798 +452.1,201039.319764755,4774.78808468195 +452.2,201026.757807511,4777.16544288764 +452.3,201014.18637828,4779.46291253336 +452.4,201001.605529486,4781.72531757171 +452.5,200989.01531721,4784.10666098441 +452.6,200976.41580119,4786.40477303559 +452.7,200963.807044821,4788.6671824353 +452.8,200951.189115151,4791.0484980464 +452.9,200938.562082484,4793.34641176409 +453,200925.926017998,4795.61314886918 +453.1,200913.280992871,4797.99523306044 +453.2,200900.627078281,4800.29301432397 +453.3,200887.964345405,4802.55972238499 +453.4,200875.292865423,4804.89459504196 +453.5,200862.612709512,4807.11047909781 +453.6,200849.923948851,4809.2640210717 +453.7,200837.226654617,4811.52695391202 +453.8,200824.52089799,4813.73945349216 +453.9,200811.806750146,4815.93039029779 +454,200799.084282265,4818.26813248707 +454.1,200786.353565525,4820.57210426598 +454.2,200773.614671103,4822.8852648714 +454.3,200760.867670178,4825.33722292245 +454.4,200748.112633928,4827.71473240824 +454.5,200735.349633531,4830.06746859945 +454.6,200722.578740165,4832.52556664638 +454.7,200709.800025009,4834.87273520827 +454.8,200697.013559241,4837.22433609634 +454.9,200684.219414039,4839.67649220295 +455,200671.417660581,4842.05582401313 +455.1,200658.608370046,4844.40216382462 +455.2,200645.79161361,4846.82342682751 +455.3,200632.967462454,4849.16594417114 +455.4,200620.135987754,4851.51106116722 +455.5,200607.29726069,4853.8852962595 +455.6,200594.451352439,4856.22648526637 +455.7,200581.598334179,4858.53514402601 +455.8,200568.738277089,4860.95658843281 +455.9,200555.871252346,4863.29911200664 +456,200542.99733113,4865.64435877394 +456.1,200530.116584617,4868.01870002588 +456.2,200517.229083987,4870.39788787053 +456.3,200504.334900418,4872.70662820138 +456.4,200491.434105087,4875.12801758579 +456.5,200478.526769173,4877.47061492167 +456.6,200465.612963855,4879.81252848312 +456.7,200452.692760309,4882.1038819756 +456.8,200439.766229715,4884.28339816796 +456.9,200426.833443251,4886.35558075927 +457,200413.894472094,4888.57983545474 +457.1,200400.949387423,4890.7188629007 +457.2,200387.998260417,4892.90522012629 +457.3,200375.041162253,4895.1663278962 +457.4,200362.078164109,4897.51554659883 +457.5,200349.109337165,4899.94917379161 +457.6,200336.134752597,4902.52660948116 +457.7,200323.154481584,4905.02291638784 +457.8,200310.168595304,4907.53235330416 +457.9,200297.177164936,4910.06760498217 +458,200284.180261658,4912.52496740562 +458.1,200271.177956647,4914.94702885385 +458.2,200258.170321083,4917.40086270192 +458.3,200245.157426142,4919.77868202017 +458.4,200232.139343004,4922.05120682038 +458.5,200219.116142847,4924.42748442973 +458.6,200206.087896848,4926.72632394707 +458.7,200193.054676187,4929.03610555601 +458.8,200180.01655204,4931.37297965396 +458.9,200166.973595587,4933.59015343004 +459,200153.925878005,4935.73908419382 +459.1,200140.873470473,4938.07225978142 +459.2,200127.816444168,4940.33466958082 +459.3,200114.75487027,4942.64783819451 +459.4,200101.688819956,4944.98663121028 +459.5,200088.618364404,4947.28987674579 +459.6,200075.543574793,4949.64836250878 +459.7,200062.464522301,4952.18766946833 +459.8,200049.381278106,4954.64868698062 +459.9,200036.293913364,4957.07875710868 +460,200023.202496013,4959.57280654548 +460.1,200010.107084157,4962.07623356846 +460.2,199997.007725256,4964.59096113382 +460.3,199983.904456121,4967.23851056341 +460.4,199970.797302917,4969.77957143595 +460.5,199957.686281162,4972.28797293403 +460.6,199944.571395748,4974.85987718864 +460.7,199931.452644143,4977.3538588322 +460.8,199918.330022994,4979.81757612641 +460.9,199905.203528953,4982.34624536455 +461,199892.073158668,4984.76634780444 +461.1,199878.93890879,4987.18960886418 +461.2,199865.800775967,4989.68379047459 +461.3,199852.658756849,4992.13744989752 +461.4,199839.512848086,4994.53465402317 +461.5,199826.363046328,4997.0316038003 +461.6,199813.209348223,4999.45558219222 +461.7,199800.051750423,5001.8901394312 +461.8,199786.890249575,5004.34230713223 +461.9,199773.72484233,5006.68131803403 +462,199760.555525338,5008.9535599816 +462.1,199747.382295247,5011.36468946694 +462.2,199734.205148708,5013.66067894954 +462.3,199721.02408237,5015.97070113905 +462.4,199707.839092882,5018.38338914208 +462.5,199694.650176895,5020.81227679087 +462.6,199681.457331057,5023.28373475432 +462.7,199668.260552019,5025.861719752 +462.8,199655.05983643,5028.35645010954 +462.9,199641.855180939,5030.87000200497 +463,199628.646582196,5033.39405490135 +463.1,199615.434036851,5035.77260445755 +463.2,199602.217541553,5038.07610117361 +463.3,199588.997092952,5040.48900537967 +463.4,199575.772687697,5042.87207908239 +463.5,199562.544322439,5045.22755064322 +463.6,199549.311993825,5047.67880383691 +463.7,199536.075698507,5050.10214562408 +463.8,199522.835433134,5052.57689224361 +463.9,199509.591194355,5055.19467083946 +464,199496.342978819,5057.72824478651 +464.1,199483.090783177,5060.23626446359 +464.2,199469.834604078,5062.7729476143 +464.3,199456.574438172,5065.15490897765 +464.4,199443.310282108,5067.54951592215 +464.5,199430.042132535,5069.99980153477 +464.6,199416.769986104,5072.37995991351 +464.7,199403.493839464,5074.74298929674 +464.8,199390.213689264,5077.15905961642 +464.9,199376.929532154,5079.5308242719 +465,199363.641364783,5081.91528599215 +465.1,199350.349183802,5084.40685795178 +465.2,199337.05298586,5086.86687943437 +465.3,199323.752767606,5089.30106924652 +465.4,199310.448525689,5091.82866923726 +465.5,199297.140256761,5094.32560516973 +465.6,199283.827957469,5096.88136643723 +465.7,199270.511624464,5099.5393358086 +465.8,199257.191254395,5102.11926141412 +465.9,199243.866843912,5104.67288056623 +466,199230.538389664,5107.32047231743 +466.1,199217.205888301,5109.85636108993 +466.2,199203.869336473,5112.40521282132 +466.3,199190.528730828,5114.97760979093 +466.4,199177.184068018,5117.51968345562 +466.5,199163.83534469,5120.02999311618 +466.6,199150.482557495,5122.55672747083 +466.7,199137.125703083,5124.97004824535 +466.8,199123.764778103,5127.36054439296 +466.9,199110.399779204,5129.81751431381 +467,199097.030703037,5132.24055174291 +467.1,199083.65754625,5134.62985246448 +467.2,199070.280305493,5137.08475897626 +467.3,199056.898977416,5139.49917944573 +467.4,199043.513558669,5141.89336951423 +467.5,199030.124047315,5144.38902385179 +467.6,199016.730455119,5146.76474251515 +467.7,199003.332813859,5149.11262710246 +467.8,198989.931175378,5151.5612483312 +467.9,198976.525611586,5154.01783333891 +468,198963.116214457,5156.50163061557 +468.1,198949.703096031,5159.16119678563 +468.2,198936.286386999,5161.78025116181 +468.3,198922.866224418,5164.4165252609 +468.4,198909.442745396,5167.1918513137 +468.5,198896.016087041,5169.89579153062 +468.6,198882.586386463,5172.53677423864 +468.7,198869.153780768,5175.26170643341 +468.8,198855.718407066,5177.87887494058 +468.9,198842.280402465,5180.47947561977 +469,198828.839904073,5183.16458196021 +469.1,198815.397048999,5185.73922699578 +469.2,198801.951974352,5188.29251387326 +469.3,198788.504817239,5190.93342866784 +469.4,198775.055714768,5193.51208019094 +469.5,198761.604804049,5196.06548491934 +469.6,198748.15222219,5198.70611425004 +469.7,198734.698106299,5201.28765674048 +469.8,198721.242593484,5203.84922309542 +469.9,198707.785820855,5206.49454958064 +470,198694.327925518,5209.07623032789 +470.1,198680.869044583,5211.62600690706 +470.2,198667.409315158,5214.26997044718 +470.3,198653.948874351,5216.83957785195 +470.4,198640.487859272,5219.3877111103 +470.5,198627.026407027,5221.97714338562 +470.6,198613.564654726,5224.4347785105 +470.7,198600.102739477,5226.83183803819 +470.8,198586.640798388,5229.3685889676 +470.9,198573.178968568,5231.83008114072 +471,198559.717387125,5234.30863976036 +471.1,198546.256191168,5236.87830692038 +471.2,198532.795517804,5239.4279364524 +471.3,198519.335504143,5242.02784936511 +471.4,198505.876287292,5244.79350370903 +471.5,198492.41800436,5247.4504666935 +471.6,198478.960792456,5250.08446860649 +471.7,198465.504788687,5252.68956409976 +471.8,198452.050130163,5255.11012516301 +471.9,198438.596953991,5257.45790560623 +472,198425.145397281,5259.91178669345 +472.1,198411.695597139,5262.28879828897 +472.2,198398.247690675,5264.6868302439 +472.3,198384.801814998,5267.21023952116 +472.4,198371.358107215,5269.7962663317 +472.5,198357.916704435,5272.50511137717 +472.6,198344.477743766,5275.3574652306 +472.7,198331.041362316,5278.12598199372 +472.8,198317.607697195,5280.88610472355 +472.9,198304.17688551,5283.69715506773 +473,198290.74906437,5286.44155832842 +473.1,198277.324370884,5289.1257605517 +473.2,198263.902942158,5291.90089984216 +473.3,198250.484915303,5294.60302667807 +473.4,198237.070427426,5297.28594893823 +473.5,198223.659615636,5300.00166661613 +473.6,198210.252617041,5302.67716808348 +473.7,198196.84956875,5305.30522410328 +473.8,198183.45060787,5307.98408557862 +473.9,198170.055871511,5310.50869090717 +474,198156.665496781,5312.98624303729 +474.1,198143.279620787,5315.58782594319 +474.2,198129.898380639,5318.12967138721 +474.3,198116.521913445,5320.66469779501 +474.4,198103.150356313,5323.2307081275 +474.5,198089.783846351,5325.75556980796 +474.6,198076.422520669,5328.28321327043 +474.7,198063.066516374,5330.96059081516 +474.8,198049.715970575,5333.57403053277 +474.9,198036.371020349,5336.2172472353 +475,198023.031799756,5338.90671363533 +475.1,198009.698434393,5341.60912552631 +475.2,197996.371040815,5344.3447938427 +475.3,197983.049726538,5347.23146851327 +475.4,197969.734590035,5350.01267051488 +475.5,197956.425720739,5352.77668232815 +475.6,197943.123199072,5355.56996541048 +475.7,197929.827099433,5358.32284961123 +475.8,197916.537495644,5361.0464611639 +475.9,197903.254461526,5363.84541486846 +476,197889.978070899,5366.53927216728 +476.1,197876.708397585,5369.26300680476 +476.2,197863.445515405,5372.01946941572 +476.3,197850.189498179,5374.75199436768 +476.4,197836.94041973,5377.44866222734 +476.5,197823.698353877,5380.21572108663 +476.6,197810.463374443,5382.90914816977 +476.7,197797.235555247,5385.59024370188 +476.8,197784.014970111,5388.34964105322 +476.9,197770.801692857,5391.04671640009 +477,197757.595797304,5393.73939731434 +477.1,197744.397357275,5396.49183507336 +477.2,197731.20644659,5399.21925779943 +477.3,197718.02313907,5401.90294065225 +477.4,197704.847508536,5404.69950808035 +477.5,197691.67962881,5407.39333716882 +477.6,197678.519573712,5410.11811247684 +477.7,197665.367417063,5412.88509929962 +477.8,197652.223232685,5415.62538239142 +477.9,197639.087094398,5418.30469268102 +478,197625.959076024,5421.06353528658 +478.1,197612.839251383,5423.68937455609 +478.2,197599.727694297,5426.37266341671 +478.3,197586.624478587,5429.08776849693 +478.4,197573.529678073,5431.77376972674 +478.5,197560.443366578,5434.53592629616 +478.6,197547.36561792,5437.37694778521 +478.7,197534.296505923,5440.15422967723 +478.8,197521.236104407,5443.09961314766 +478.9,197508.184487192,5446.0174776836 +479,197495.1417281,5448.87537998922 +479.1,197482.107900953,5451.79438733174 +479.2,197469.08307957,5454.64333022073 +479.3,197456.067337773,5457.45913009677 +479.4,197443.060749384,5460.36373340767 +479.5,197430.063388223,5463.17243116086 +479.6,197417.075328111,5465.94775698514 +479.7,197404.096642869,5468.76735342351 +479.8,197391.127406318,5471.36427793061 +479.9,197378.16769228,5473.93424401069 +480,197365.217574575,5476.50290045659 +480.1,197352.277127024,5479.08596573354 +480.2,197339.346423449,5481.66715088162 +480.3,197326.425537671,5484.28640496305 +480.4,197313.514543509,5486.88608022867 +480.5,197300.613514787,5489.66461757443 +480.6,197287.722525324,5492.45626774928 +480.7,197274.841648942,5495.32659792483 +480.8,197261.970959461,5498.13161260466 +480.9,197249.110530703,5500.92988998994 +481,197236.260436489,5503.78383446297 +481.1,197223.42075064,5506.65752632022 +481.2,197210.591546977,5509.50619517271 +481.3,197197.77289932,5512.43176903812 +481.4,197184.964881492,5515.25994433653 +481.5,197172.167567312,5518.0604563972 +481.6,197159.381030603,5520.94699676354 +481.7,197146.605345184,5523.7688559016 +481.8,197133.840584878,5526.57427234193 +481.9,197121.086823505,5529.4566024463 +482,197108.344134886,5532.26996643673 +482.1,197095.612592842,5535.10519504303 +482.2,197082.892271195,5538.02716488993 +482.3,197070.183243764,5540.87490724787 +482.4,197057.485584373,5543.72327589633 +482.5,197044.79936684,5546.64025456131 +482.6,197032.124664775,5549.43986924532 +482.7,197019.461545703,5552.23911153439 +482.8,197006.810064608,5555.1212039662 +482.9,196994.1702636,5557.9335456099 +483,196981.542171915,5560.73456808785 +483.1,196968.925805915,5563.61648546474 +483.2,196956.321169088,5566.42962732049 +483.3,196943.72825226,5569.27895666949 +483.4,196931.147039467,5572.21020801668 +483.5,196918.577514413,5575.05379839005 +483.6,196906.019660799,5577.88749368354 +483.7,196893.473462328,5580.70370607536 +483.8,196880.938902705,5583.32764362559 +483.9,196868.415965632,5585.89179342375 +484,196855.904634813,5588.56473474057 +484.1,196843.404893949,5591.18371855036 +484.2,196830.916726744,5593.83113569505 +484.3,196818.440116902,5596.55407768681 +484.4,196805.975048125,5599.2683198823 +484.5,196793.521504117,5602.09658057692 +484.6,196781.07946858,5605.08964475694 +484.7,196768.648925217,5608.00099959159 +484.8,196756.229857732,5610.9130266687 +484.9,196743.822249828,5613.86176574651 +485,196731.426085207,5616.71975424428 +485.1,196719.041347573,5619.60712139015 +485.2,196706.668020629,5622.5963414579 +485.3,196694.306088077,5625.53710675354 +485.4,196681.955533621,5628.49262799687 +485.5,196669.616340965,5631.49736327101 +485.6,196657.28849381,5634.47991278515 +485.7,196644.97197586,5637.52939081142 +485.8,196632.666770818,5640.65243623841 +485.9,196620.372862388,5643.71189218346 +486,196608.090234271,5646.70127576783 +486.1,196595.818870172,5649.65005470944 +486.2,196583.558753793,5652.44001519046 +486.3,196571.309868837,5655.1249087153 +486.4,196559.072199008,5657.89175296966 +486.5,196546.845728008,5660.6343329558 +486.6,196534.630439541,5663.3748483477 +486.7,196522.426317309,5666.22916033473 +486.8,196510.233345016,5669.13757459261 +486.9,196498.051506364,5672.17710143999 +487,196485.880785058,5675.38433676533 +487.1,196473.721164799,5678.50293804877 +487.2,196461.57262929,5681.58967783828 +487.3,196449.435162236,5684.74218300921 +487.4,196437.308747338,5687.82973547641 +487.5,196425.193368301,5690.86237961532 +487.6,196413.089008826,5693.94762574562 +487.7,196400.995652617,5696.93630383506 +487.8,196388.913283378,5699.93839461234 +487.9,196376.841884811,5703.00126825969 +488,196364.781440619,5705.99914218459 +488.1,196352.731934505,5708.96382386589 +488.2,196340.693350173,5712.02894083361 +488.3,196328.665671325,5715.00508468283 +488.4,196316.648881664,5718.02191374778 +488.5,196304.642964894,5721.06578867015 +488.6,196292.647904717,5724.04233249909 +488.7,196280.663684837,5727.01042157875 +488.8,196268.690288957,5729.99628845866 +488.9,196256.727700779,5732.85371491166 +489,196244.775904007,5735.70352364087 +489.1,196232.834882344,5738.57946980408 +489.2,196220.904619493,5741.43725243262 +489.3,196208.985099156,5744.30979698541 +489.4,196197.076305038,5747.21168187587 +489.5,196185.17822084,5750.06850809037 +489.6,196173.290830267,5752.95928166219 +489.7,196161.414117021,5755.9623137851 +489.8,196149.548064805,5758.9436832197 +489.9,196137.692657322,5761.94176969316 +490,196125.847878275,5765.00688155844 +490.1,196114.013711368,5768.06720049384 +490.2,196102.190140303,5771.20091756056 +490.3,196090.377148784,5774.42275328005 +490.4,196078.574720513,5777.55719597203 +490.5,196066.782839193,5780.68619508803 +490.6,196055.001488528,5783.8431600348 +490.7,196043.230652221,5786.93850982295 +490.8,196031.470314453,5790.023789864 +490.9,196019.720491192,5793.16146815034 +491,196007.981280299,5796.23451931413 +491.1,195996.252866021,5799.33070475945 +491.2,195984.535518998,5802.48006243923 +491.3,195972.829596255,5805.56065693656 +491.4,195961.135541209,5808.62823312573 +491.5,195949.453883189,5811.75082956243 +491.6,195937.785206122,5814.80757963132 +491.7,195926.130098436,5817.88355431271 +491.8,195914.489148561,5820.92551489225 +491.9,195902.862944923,5823.86301661337 +492,195891.25207595,5826.75132922308 +492.1,195879.65713007,5829.73503358624 +492.2,195868.078695711,5832.67137050238 +492.3,195856.517361302,5835.64751430636 +492.4,195844.973715269,5838.6913883192 +492.5,195833.448346041,5841.7454213297 +492.6,195821.941842046,5844.86836478291 +492.7,195810.454791711,5848.10373862593 +492.8,195798.987783465,5851.2786915937 +492.9,195787.541405735,5854.43046780308 +493,195776.116246949,5857.56644954488 +493.1,195764.712895535,5860.55882516758 +493.2,195753.331939922,5863.55122640146 +493.3,195741.973968536,5866.59669977089 +493.4,195730.639569806,5869.59686996754 +493.5,195719.32933216,5872.60973134907 +493.6,195708.043844025,5875.73522490128 +493.7,195696.78369383,5878.8312194826 +493.8,195685.549470002,5882.02205445843 +493.9,195674.34176097,5885.30228745253 +494,195663.16115516,5888.51962149399 +494.1,195652.008241002,5891.74100358881 +494.2,195640.883606922,5894.94658120983 +494.3,195629.78784135,5897.97793767711 +494.4,195618.721532712,5900.99166908322 +494.5,195607.685269436,5904.05372151342 +494.6,195596.679639951,5907.06778427243 +494.7,195585.705232685,5910.09666659525 +494.8,195574.762636064,5913.20754488613 +494.9,195563.852438518,5916.31875161839 +495,195552.975228474,5919.53069360283 +495.1,195542.13159436,5922.84392760269 +495.2,195531.322124603,5926.12168064545 +495.3,195520.547407633,5929.37931561482 +495.4,195509.808031876,5932.67737569233 +495.5,195499.10458576,5935.89156909762 +495.6,195488.437657714,5939.10492013 +495.7,195477.807836165,5942.38851480845 +495.8,195467.215709541,5945.58745257034 +495.9,195456.661866271,5948.77541857867 +496,195446.146894781,5952.01153768967 +496.1,195435.6713835,5955.18779316757 +496.2,195425.235920856,5958.38662757437 +496.3,195414.841095276,5961.64285971824 +496.4,195404.487495189,5964.81220346474 +496.5,195394.175709022,5967.98999522835 +496.6,195383.906325204,5971.11383881301 +496.7,195373.679932162,5974.07299813138 +496.8,195363.497118324,5976.95114283693 +496.9,195353.358472118,5979.91084825382 +497,195343.264581971,5982.85293947323 +497.1,195333.216036313,5985.81397189179 +497.2,195323.21342357,5988.82817138854 +497.3,195313.25733217,5991.83424701463 +497.4,195303.348350542,5994.98442440757 +497.5,195293.487067114,5998.2996514106 +497.6,195283.674070312,6001.54877491892 +497.7,195273.909948566,6004.79988493672 +497.8,195264.195290302,6008.15510121677 +497.9,195254.53068395,6011.46556381475 +498,195244.916717936,6014.86543150816 +498.1,195235.353980689,6018.32113148244 +498.2,195225.843060636,6021.73795758279 +498.3,195216.384546206,6025.13749745552 +498.4,195206.979025826,6028.57403866022 +498.5,195197.627087924,6031.88146611586 +498.6,195188.329320929,6035.22067491061 +498.7,195179.086313267,6038.59659140832 +498.8,195169.898653367,6041.90740130703 +498.9,195160.766929657,6045.17500160202 +499,195151.691730565,6048.44541199513 +499.1,195142.673644518,6051.59848004768 +499.2,195133.713259945,6054.7331354406 +499.3,195124.811165273,6057.94880491461 +499.4,195115.96794893,6061.10104312124 +499.5,195107.184199345,6064.30345681605 +499.6,195098.460504944,6067.58256710598 +499.7,195089.797454157,6070.85510359878 +499.8,195081.19563541,6074.23311322069 +499.9,195072.655637131,6077.71074358957 +500,195064.17804775,6081.07998534151 +500.1,195055.763455692,6084.45546049183 +500.2,195047.412449388,6087.80824470454 +500.3,195039.125617263,6091.04362380336 +500.4,195030.903547746,6094.22132502687 +500.5,195022.746829096,6097.39759803104 +500.6,195014.656004908,6100.47548101701 +500.7,195006.631470339,6103.53963010293 +500.8,194998.673457331,6106.63523437237 +500.9,194990.782034616,6109.69013951101 +501,194982.957107716,6112.80702980473 +501.1,194975.198418939,6116.08204826809 +501.2,194967.505547553,6119.33137149978 +501.3,194959.877954275,6122.71290010795 +501.4,194952.315085054,6126.20434462102 +501.5,194944.816385835,6129.67903498369 +501.6,194937.381302568,6133.21429857252 +501.7,194930.0092812,6136.76110447292 +501.8,194922.699767678,6140.17382913438 +501.9,194915.45220795,6143.5534319891 +502,194908.266047963,6146.94305985432 +502.1,194901.140733665,6150.27622857463 +502.2,194894.075711004,6153.63387128795 +502.3,194887.070425927,6156.98809387546 +502.4,194880.124324381,6160.26674615314 +502.5,194873.236852315,6163.56237393568 +502.6,194866.407455676,6166.9942466418 +502.7,194859.635580412,6170.3622984405 +502.8,194852.920672469,6173.76341242365 +502.9,194846.262177796,6177.18930639633 +503,194839.659542341,6180.59458535727 +503.1,194833.11221205,6184.13435170623 +503.2,194826.619632872,6187.76977551852 +503.3,194820.181250753,6191.27608115571 +503.4,194813.796511643,6194.79486036737 +503.5,194807.464861487,6198.27678218461 +503.6,194801.185746234,6201.62615827472 +503.7,194794.958611832,6204.97072496375 +503.8,194788.782904227,6208.341895139 +503.9,194782.658069368,6211.65279886231 +504,194776.583553202,6215.03408197621 +504.1,194770.558801677,6218.4631556354 +504.2,194764.58326074,6221.89894479307 +504.3,194758.656376339,6225.44978725167 +504.4,194752.777594421,6229.0576355142 +504.5,194746.946360934,6232.58591321904 +504.6,194741.162121826,6236.14667987839 +504.7,194735.424323044,6239.57345788451 +504.8,194729.732410536,6242.80301271039 +504.9,194724.085830249,6245.96889688485 +505,194718.484028131,6249.19532070813 +505.1,194712.926450129,6252.40785509017 +505.2,194707.412542192,6255.69756754715 +505.3,194701.941750266,6259.04951976665 +505.4,194696.5135203,6262.52711306777 +505.5,194691.12729824,6266.15663642158 +505.6,194685.782530035,6269.94346657488 +505.7,194680.478661632,6273.63419403546 +505.8,194675.215138978,6277.33818021549 +505.9,194669.991408021,6281.03889791357 +506,194664.80691471,6284.64352831061 +506.1,194659.66110499,6288.24685380223 +506.2,194654.553424811,6291.91114179733 +506.3,194649.483320119,6295.48298111188 +506.4,194644.450236862,6299.06581837859 +506.5,194639.453620987,6302.58433709215 +506.6,194634.492918443,6305.96432332922 +506.7,194629.567575177,6309.34259959457 +506.8,194624.677037136,6312.7884944463 +506.9,194619.820750269,6316.15816443622 +507,194614.998160521,6319.57438560193 +507.1,194610.208713842,6323.05843624726 +507.2,194605.451856179,6326.60215136893 +507.3,194600.727033479,6330.1897981286 +507.4,194596.03369169,6333.73633171392 +507.5,194591.37127676,6337.10771125107 +507.6,194586.739234635,6340.36867362765 +507.7,194582.137011264,6343.72627718871 +507.8,194577.564052595,6347.06301011693 +507.9,194573.019804574,6350.37911598482 +508,194568.50371315,6353.62483866123 +508.1,194564.015224269,6356.7718318094 +508.2,194559.553783881,6359.91337742633 +508.3,194555.118837931,6363.30742719614 +508.4,194550.709832368,6366.64906734745 +508.5,194546.32621314,6370.08306981665 +508.6,194541.967426193,6373.6127539119 +508.7,194537.632917476,6377.28274776056 +508.8,194533.322132936,6381.20107644379 +508.9,194529.034518521,6385.15702050125 +509,194524.769520178,6388.87513348832 +509.1,194520.526583854,6392.48281984371 +509.2,194516.305155498,6396.09745453337 +509.3,194512.104681058,6399.68659309327 +509.4,194507.924606479,6403.34685506145 +509.5,194503.764377711,6407.00855022993 +509.6,194499.623440701,6410.76357642935 +509.7,194495.501241396,6414.67660377952 +509.8,194491.397225744,6418.73135807591 +509.9,194487.310839692,6422.67326629496 +510,194483.241529188,6426.57340695923 +510.1,194479.18874018,6430.38195247084 +510.2,194475.151918616,6434.0591657884 +510.3,194471.130510442,6437.70606783083 +510.4,194467.123961606,6441.40023896952 +510.5,194463.131718057,6445.00760624903 +510.6,194459.153225741,6448.70087968862 +510.7,194455.187930606,6452.44951253274 +510.8,194451.2352786,6456.1753263399 +510.9,194447.29471567,6460.0080293576 +511,194443.365687765,6463.68179427137 +511.1,194439.44764083,6467.08193012958 +511.2,194435.540020815,6470.34825440984 +511.3,194431.642273667,6473.60143231633 +511.4,194427.753845332,6476.7846699987 +511.5,194423.87418176,6480.04103401897 +511.6,194420.002728897,6483.32891799716 +511.7,194416.138932691,6486.77246343532 +511.8,194412.282239089,6490.59653959944 +511.9,194408.43209404,6494.62626114404 +512,194404.58794349,6498.63910950802 +512.1,194400.749233388,6502.84308868468 +512.2,194396.915409681,6507.08402075417 +512.3,194393.085918316,6511.2720039249 +512.4,194389.260205241,6515.63240777586 +512.5,194385.437716404,6519.83263214783 +512.6,194381.617897752,6523.97868444791 +512.7,194377.800195233,6528.04337386329 +512.8,194373.984054794,6531.75335789821 +512.9,194370.168922383,6535.20603652603 +513,194366.354243948,6538.67795812884 +513.1,194362.539465436,6541.90418014864 +513.2,194358.724032795,6545.19936264581 +513.3,194354.907391972,6548.61881167687 +513.4,194351.088988915,6552.21853029536 +513.5,194347.268269571,6556.08989127387 +513.6,194343.444679889,6560.25168859041 +513.7,194339.617665815,6564.44615676968 +513.8,194335.786673297,6568.62986129412 +513.9,194331.951148283,6572.76519007394 +514,194328.110536721,6576.90218170323 +514.1,194324.264284558,6580.89239182664 +514.2,194320.411837741,6584.82892735309 +514.3,194316.552642218,6588.73283937031 +514.4,194312.686143937,6592.59677410012 +514.5,194308.811788846,6596.59670158348 +514.6,194304.929022891,6600.56851058422 +514.7,194301.037292021,6604.31624520902 +514.8,194297.136042183,6607.98020425117 +514.9,194293.224719324,6611.55553930566 +515,194289.302769393,6615.08903685564 +515.1,194285.369638336,6618.62179390362 +515.2,194281.424772102,6622.03082925641 +515.3,194277.467616638,6625.29669226597 +515.4,194273.497617892,6628.55357237863 +515.5,194269.51422181,6631.99600850391 +515.6,194265.516874342,6635.52111253765 +515.7,194261.505021433,6639.0971119631 +515.8,194257.478109033,6642.74897814952 +515.9,194253.435583088,6646.5336558039 +516,194249.376889546,6650.51800505624 +516.1,194245.301474355,6654.78367792415 +516.2,194241.208783462,6659.02829024324 +516.3,194237.098262815,6663.3512226453 +516.4,194232.969358361,6667.74468698246 +516.5,194228.821516048,6672.0676291163 +516.6,194224.654181824,6676.45452889376 +516.7,194220.466801636,6680.79167161059 +516.8,194216.258821432,6684.94011834075 +516.9,194212.029687159,6689.00355314991 +517,194207.778844765,6693.0093436773 +517.1,194203.505740197,6696.87132099475 +517.2,194199.209819403,6700.74398469816 +517.3,194194.890528331,6704.65654303541 +517.4,194190.547312929,6708.61846808786 +517.5,194186.179619143,6712.68215513219 +517.6,194181.786892921,6716.76850044757 +517.7,194177.368580212,6720.78535929378 +517.8,194172.924126962,6724.84185057583 +517.9,194168.452979119,6728.91665267642 +518,194163.954582631,6732.84426741785 +518.1,194159.428383445,6736.74462859167 +518.2,194154.873827509,6740.68989301825 +518.3,194150.290360771,6744.68655039997 +518.4,194145.677429177,6748.81642791368 +518.5,194141.034478677,6752.93377947575 +518.6,194136.360955216,6756.98838935088 +518.7,194131.656304744,6761.09313399086 +518.8,194126.919973206,6765.21006006229 +518.9,194122.151406552,6769.19267970428 +519,194117.350050728,6773.1430453668 +519.1,194112.515351683,6777.03065019684 +519.2,194107.646755363,6780.90994629873 +519.3,194102.743707716,6784.87978609082 +519.4,194097.805654691,6788.95580122611 +519.5,194092.832042234,6793.0531368625 +519.6,194087.822316292,6797.29808306825 +519.7,194082.775922815,6801.63722601386 +519.8,194077.692307749,6805.96391668035 +519.9,194072.570917041,6810.3921659175 +520,194067.41119664,6814.86912447486 +520.1,194062.212592493,6819.22691859146 +520.2,194056.974550548,6823.63138317999 +520.3,194051.696516751,6827.98805874996 +520.4,194046.377937052,6832.25138151849 +520.5,194041.018257396,6836.57865891832 +520.6,194035.616923733,6840.88309822084 +520.7,194030.173382009,6845.08513201575 +520.8,194024.687078172,6849.36015818275 +520.9,194019.15745817,6853.53174743023 +521,194013.583980575,6857.54968117025 +521.1,194007.966321717,6861.56762233674 +521.2,194002.304542317,6865.60663889949 +521.3,193996.599092311,6869.61466814624 +521.4,193990.850810853,6873.69028162393 +521.5,193985.06092631,6877.65084684697 +521.6,193979.231056264,6881.50096840621 +521.7,193973.363194889,6885.36071789553 +521.8,193967.459507818,6889.27517680978 +521.9,193961.522165506,6893.09301910036 +522,193955.553338407,6896.95387496907 +522.1,193949.555196977,6900.89884514418 +522.2,193943.529911672,6904.97154029588 +522.3,193937.479652946,6909.29542561336 +522.4,193931.406591254,6913.83274832996 +522.5,193925.312897052,6918.35550711467 +522.6,193919.200740794,6922.9616045609 +522.7,193913.072292937,6927.59823709222 +522.8,193906.929723935,6932.13502490066 +522.9,193900.775204243,6936.68055007349 +523,193894.610904316,6941.19539922042 +523.1,193888.43899461,6945.60813481736 +523.2,193882.261645579,6950.0695658865 +523.3,193876.08102768,6954.54924445616 +523.4,193869.899311366,6958.92184734744 +523.5,193863.718667094,6963.34233424457 +523.6,193857.541265318,6967.771529855 +523.7,193851.369276494,6972.10589229842 +523.8,193845.204871076,6976.49395684922 +523.9,193839.05021952,6980.88557640314 +524,193832.907492281,6985.21271442011 +524.1,193826.778859814,6989.59234394615 +524.2,193820.666492575,6993.97365305051 +524.3,193814.572561018,6998.30093557522 +524.4,193808.499235598,7002.68347482351 +524.5,193802.448686771,7006.9912576087 +524.6,193796.423084993,7011.16033891738 +524.7,193790.424600717,7015.30566421453 +524.8,193784.4554044,7019.53388516536 +524.9,193778.517666496,7023.70137665865 +525,193772.61355746,7027.95900747245 +525.1,193766.745247749,7032.25826051048 +525.2,193760.914907816,7036.62160617645 +525.3,193755.124708117,7041.08940277034 +525.4,193749.376819107,7045.59827794674 +525.5,193743.673411242,7049.93296986286 +525.6,193738.016654976,7054.27410374371 +525.7,193732.408720765,7058.62507980463 +525.8,193726.851779064,7062.95423820579 +525.9,193721.348000328,7067.33685812733 +526,193715.899555011,7071.79207896078 +526.1,193710.508613571,7076.2330652338 +526.2,193705.17734646,7080.84237480684 +526.3,193699.907924135,7085.54501082684 +526.4,193694.702517051,7090.15088760439 +526.5,193689.563295663,7094.78255875302 +526.6,193684.492430426,7099.29955352789 +526.7,193679.492091796,7103.67339035863 +526.8,193674.564450226,7108.0217477062 +526.9,193669.711676173,7112.33706104831 +527,193664.935940092,7116.51478775486 +527.1,193660.239412438,7120.64089994285 +527.2,193655.624263666,7124.48197634821 +527.3,193651.092664231,7128.10208432859 +527.4,193646.646784588,7131.67803898296 +527.5,193642.288795193,7135.49763150846 +527.6,193638.020866501,7139.41501597958 +527.7,193633.845168966,7143.59143150471 +527.8,193629.763873044,7147.91412425862 +527.9,193625.779149191,7152.4616925003 +528,193621.89316786,7157.34783221981 +528.1,193618.108099508,7162.42743219632 +528.2,193614.42611459,7167.31908638484 +528.3,193610.849383561,7172.14480023266 +528.4,193607.380076875,7176.81619602624 +528.5,193604.020364989,7181.42574058806 +528.6,193600.772418357,7186.16172388346 +528.7,193597.638407434,7190.97205289802 +528.8,193594.620502676,7195.76591272237 +528.9,193591.720874537,7200.66795272594 +529,193588.941693473,7205.53640483188 +529.1,193586.28512994,7210.33872344154 +529.2,193583.753354391,7215.19412237631 +529.3,193581.348537283,7220.05739717777 +529.4,193579.072849071,7224.86907125008 +529.5,193576.928460209,7229.70388779121 +529.6,193574.917541152,7234.33854293129 +529.7,193573.042262357,7238.83191597576 +529.8,193571.304794278,7243.33444212214 +529.9,193569.70730737,7247.91605704886 +530,193568.251972089,7252.47706279905 +530.1,193566.940958889,7257.13509255764 +530.2,193565.776438226,7261.82561297411 +530.3,193564.760580555,7266.65212398271 +530.4,193563.895556331,7271.74140664519 +530.5,193563.18353601,7276.92491830053 +530.6,193562.626690045,7282.01411569014 +530.7,193562.227188894,7287.12583937641 +530.8,193561.98720301,7292.15093778877 +530.9,193561.908902848,7297.11342870594 +531,193561.994458865,7302.1366600087 +531.1,193562.246041515,7307.07977997388 +531.2,193562.665821254,7311.99614881843 +531.3,193563.255968535,7316.94223774519 +531.4,193564.018653816,7321.88034872453 +531.5,193564.95604755,7326.73087209076 +531.6,193566.070320194,7331.63921845578 +531.7,193567.363642201,7336.49897812989 +531.8,193568.838184028,7341.30260755571 +531.9,193570.496116129,7346.16866613174 +532,193572.339608959,7351.02780205551 +532.1,193574.370832975,7355.79331569454 +532.2,193576.59195863,7360.58482064552 +532.3,193579.005156381,7365.21058164068 +532.4,193581.612596682,7369.6316419008 +532.5,193584.416449988,7373.97852018008 +532.6,193587.418886754,7378.36101838967 +532.7,193590.622077437,7382.76485433751 +532.8,193594.02819249,7387.31020726645 +532.9,193597.639402369,7391.9227761757 +533,193601.457877529,7396.60322463566 +533.1,193605.485788426,7401.53948225357 +533.2,193609.725305514,7406.63796811776 +533.3,193614.178599249,7411.60654139662 +533.4,193618.847840086,7416.55818402064 +533.5,193623.73519848,7421.34099470501 +533.6,193628.842844885,7425.94931550782 +533.7,193634.172949759,7430.54803032783 +533.8,193639.727683554,7435.0507605485 +533.9,193645.509216727,7439.37772247013 +534,193651.519719733,7443.7241171577 +534.1,193657.761363027,7448.1410863447 +534.2,193664.236317064,7452.58871585444 +534.3,193670.946752299,7457.21790135142 +534.4,193677.894839187,7461.9079968375 +534.5,193685.082748184,7466.5867488659 +534.6,193692.512649745,7471.45032964177 +534.7,193700.186714324,7476.34772509802 +534.8,193708.107112378,7481.07370341845 +534.9,193716.276014361,7485.82919268838 +535,193724.695590728,7490.36876125004 +535.1,193733.368011934,7494.66029036448 +535.2,193742.295448436,7498.89344765924 +535.3,193751.480070687,7503.15931937111 +535.4,193760.924049142,7507.36904706902 +535.5,193770.629554259,7511.72162870916 +535.6,193780.59875649,7516.13173710634 +535.7,193790.833826292,7520.65656180747 +535.8,193801.336934119,7525.44486509501 +535.9,193812.110250427,7529.99184438858 +536,193823.155945671,7534.7659940632 +536.1,193834.476190307,7539.5632408249 +536.2,193846.073154788,7544.22091872996 +536.3,193857.949009571,7548.70886622637 +536.4,193870.10592511,7553.18020253504 +536.5,193882.546071861,7557.67514972149 +536.6,193895.271620279,7562.47514717451 +536.7,193908.284740818,7566.98104982531 +536.8,193921.587603935,7571.43691445951 +536.9,193935.182380085,7575.84480852295 +537,193949.071239722,7580.35343602622 +537.1,193963.256332296,7584.9301556676 +537.2,193977.739203682,7589.45315665908 +537.3,193992.520152329,7594.04529591072 +537.4,194007.598195962,7598.6577525025 +537.5,194022.971071582,7603.29562982115 +537.6,194038.635235469,7608.08500752867 +537.7,194054.585863175,7612.90130138136 +537.8,194070.816870537,7617.66650625223 +537.9,194087.321496243,7622.46156594256 +538,194104.092945681,7627.23339363758 +538.1,194121.124424241,7631.87977801117 +538.2,194138.409137313,7636.59617562197 +538.3,194155.940290284,7641.29073155129 +538.4,194173.711088545,7645.93697644531 +538.5,194191.714737484,7650.61430500633 +538.6,194209.94444249,7655.19334604971 +538.7,194228.393408954,7659.60468474948 +538.8,194247.054842263,7664.07927008547 +538.9,194265.921947807,7668.57386594157 +539,194284.987930976,7673.02119341452 +539.1,194304.245997157,7677.57380724071 +539.2,194323.689351742,7682.143168582 +539.3,194343.311200117,7686.78097058776 +539.4,194363.104747674,7691.57286726332 +539.5,194383.0631998,7696.3078592576 +539.6,194403.179761885,7700.87613576461 +539.7,194423.447639319,7705.39915025052 +539.8,194443.86003749,7709.66226281554 +539.9,194464.410161787,7713.6765228534 +540,194485.0912176,7717.59559812246 +540.1,194505.896410317,7721.64731739957 +540.2,194526.818945328,7725.81118127309 +540.3,194547.852028023,7730.24234711009 +540.4,194568.988863789,7734.84519778745 +540.5,194590.222658017,7739.68269038553 +540.6,194611.546616095,7744.86846221366 +540.7,194632.953943413,7750.20066698232 +540.8,194654.437845359,7755.36516229053 +540.9,194675.991527324,7760.56016773784 +541,194697.608194695,7765.65217050801 +541.1,194719.281052862,7770.61741965445 +541.2,194741.003307215,7775.57432214296 +541.3,194762.768163142,7780.3473799063 +541.4,194784.568826033,7784.95377246374 +541.5,194806.398501276,7789.5918762992 +541.6,194828.250394262,7794.20361441971 +541.7,194850.117710378,7798.73004196089 +541.8,194871.993655014,7803.3641037457 +541.9,194893.87143356,7807.97356123297 +542,194915.744251404,7812.61825692614 +542.1,194937.605313935,7817.41453746337 +542.2,194959.447826544,7822.14519285754 +542.3,194981.264994618,7826.71135636597 +542.4,195003.050023547,7831.26889264858 +542.5,195024.79611872,7835.80084727446 +542.6,195046.496485526,7840.32528460035 +542.7,195068.144329355,7844.9230662892 +542.8,195089.732855596,7849.53239451466 +542.9,195111.255269637,7854.17710907788 +543,195132.704776868,7858.93656926319 +543.1,195154.074582678,7863.66862573515 +543.2,195175.357892456,7868.19930772898 +543.3,195196.547911591,7872.56958204628 +543.4,195217.637845473,7876.5894382497 +543.5,195238.62089949,7880.20803092989 +543.6,195259.490279032,7883.50941543 +543.7,195280.239189488,7886.33951308026 +543.8,195300.860836246,7888.72783959982 +543.9,195321.348424697,7890.79672222128 +544,195341.695160229,7892.4711632144 +544.1,195361.894248232,7893.90484197795 +544.2,195381.938894094,7895.13935018 +544.3,195401.822303205,7896.13400358451 +544.4,195421.537680953,7897.00823002964 +544.5,195441.078232729,7897.803124423 +544.6,195460.43716392,7898.45227251024 +544.7,195479.607679917,7899.02884403143 +544.8,195498.582986108,7899.53446772036 +544.9,195517.356287883,7899.95879081353 +545,195535.92079063,7900.33929993013 +545.1,195554.26969974,7900.66573080341 +545.2,195572.3962206,7900.93297525691 +545.3,195590.2935586,7901.16622953694 +545.4,195607.95491913,7901.36900265661 +545.5,195625.373507577,7901.53982111078 +545.6,195642.542529333,7901.68605337134 +545.7,195659.455189785,7901.80793966349 +545.8,195676.104694323,7901.91319484485 +545.9,195692.484248336,7902.00481962966 +546,195708.587057213,7902.08269507807 +546.1,195724.406326343,7902.14533195017 +546.2,195739.935261115,7902.19241554746 +546.3,195755.167066919,7902.22481024197 +546.4,195770.094949144,7902.2436235022 +546.5,195784.712113179,7902.24996279711 +546.6,195799.011764412,7902.24493559569 +546.7,195812.987108234,7902.22964936691 +546.8,195826.631350032,7902.20521157973 +546.9,195839.937695198,7902.17272970314 +547,195852.899349118,7902.13331120611 +547.1,195865.509517184,7902.08806355761 +547.2,195877.761404783,7902.03809422661 +547.3,195889.648217305,7901.9845106821 +547.4,195901.163160139,7901.92842039303 +547.5,195912.299438674,7901.87093082839 +547.6,195923.0502583,7901.81314945715 +547.7,195933.408824405,7901.75618374828 +547.8,195943.368342379,7901.70114117075 +547.9,195952.922017611,7901.64912919355 +548,195962.063055489,7901.60125528564 +548.1,195970.784661404,7901.55862691599 diff --git a/content/data/LAND.csv b/content/data/LAND.csv new file mode 100644 index 0000000..d0cdef4 --- /dev/null +++ b/content/data/LAND.csv @@ -0,0 +1,140 @@ +Station: Global Means,,,,,,,,,,,,,,,,,, +Year,Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec,JanDec,DecNov,DJF,MAM,JJA,SON +1880,-0.84,-0.41,-0.48,-0.67,-0.37,-0.5,-0.49,0.06,-0.51,-0.69,-0.53,-0.55,-0.5,***,***,-0.51,-0.31,-0.58 +1881,-0.8,-0.63,-0.37,-0.28,-0.05,-1.15,-0.56,-0.28,-0.34,-0.47,-0.54,-0.13,-0.47,-0.5,-0.66,-0.23,-0.66,-0.45 +1882,0.09,-0.14,-0.1,-0.62,-0.4,-1.05,-0.74,-0.14,-0.1,-0.35,-0.42,-0.7,-0.39,-0.34,-0.06,-0.37,-0.64,-0.29 +1883,-0.71,-0.97,-0.48,-0.34,-0.38,0.41,-0.05,-0.2,-0.49,-0.6,-0.71,-0.43,-0.41,-0.43,-0.79,-0.4,0.05,-0.6 +1884,-0.64,-0.37,-0.42,-0.96,-1.22,-0.86,-0.88,0.11,-0.41,-0.81,-0.85,-1.03,-0.7,-0.65,-0.48,-0.87,-0.54,-0.69 +1885,-0.97,-0.83,-0.95,-0.91,-0.54,-0.98,-0.66,-0.21,-0.2,-0.08,-0.43,-0.03,-0.57,-0.65,-0.94,-0.8,-0.62,-0.24 +1886,-0.8,-0.87,-0.72,-0.67,-0.61,-0.89,-0.44,-0.78,-0.47,-0.91,-0.54,-0.79,-0.71,-0.64,-0.57,-0.66,-0.7,-0.64 +1887,-0.92,-1.32,-0.64,-0.89,-0.92,-0.72,-0.46,-0.31,-0.67,-0.61,-0.97,-0.71,-0.76,-0.77,-1.01,-0.81,-0.5,-0.75 +1888,-0.78,-0.86,-0.95,-0.36,-0.81,-0.61,-0.4,-0.39,-0.46,-0.32,-0.1,-0.29,-0.53,-0.56,-0.78,-0.7,-0.47,-0.29 +1889,-0.36,0.1,0.02,0.06,0.02,-0.32,-0.49,-0.65,-0.42,-0.27,-0.49,-0.47,-0.27,-0.26,-0.18,0.03,-0.48,-0.39 +1890,-0.64,-0.66,-0.65,-0.56,-0.95,-0.61,-0.63,-0.65,-0.38,-0.3,-0.79,-0.55,-0.62,-0.61,-0.59,-0.72,-0.63,-0.49 +1891,-1,-1.11,-0.55,-0.71,-0.52,-0.61,-0.78,-0.62,-0.55,-0.62,-0.61,-0.03,-0.64,-0.69,-0.89,-0.6,-0.67,-0.59 +1892,-0.67,-0.34,-0.61,-0.74,-0.72,-0.63,-0.44,-0.32,-0.52,-0.39,-0.66,-0.64,-0.56,-0.5,-0.35,-0.69,-0.46,-0.52 +1893,-1.48,-1.04,-0.62,-0.7,-0.8,-0.76,-0.25,-0.4,-0.34,-0.15,-0.18,-0.42,-0.6,-0.61,-1.05,-0.71,-0.47,-0.22 +1894,-0.9,-0.63,-0.41,-0.7,-0.72,-0.55,-0.42,-0.38,-0.48,-0.15,-0.19,-0.2,-0.48,-0.5,-0.65,-0.61,-0.45,-0.27 +1895,-0.73,-0.81,-0.52,-0.5,-0.33,-0.33,-0.58,-0.24,-0.19,-0.14,-0.19,-0.1,-0.39,-0.4,-0.58,-0.45,-0.38,-0.17 +1896,-0.25,-0.29,-0.54,-0.5,-0.48,-0.51,-0.25,-0.42,-0.15,-0.07,-0.47,-0.23,-0.35,-0.34,-0.21,-0.5,-0.4,-0.23 +1897,-0.29,-0.52,-0.34,-0.14,-0.29,-0.21,-0.15,-0.35,-0.18,-0.26,-0.02,-0.25,-0.25,-0.25,-0.35,-0.26,-0.24,-0.15 +1898,-0.14,-0.46,-0.83,-0.6,-0.65,-0.34,-0.39,-0.27,-0.05,-0.43,-0.52,-0.22,-0.41,-0.41,-0.29,-0.69,-0.33,-0.33 +1899,-0.44,-0.61,-0.37,-0.28,-0.43,-0.57,-0.34,-0.32,-0.05,-0.31,-0.04,-0.22,-0.33,-0.33,-0.42,-0.36,-0.41,-0.13 +1900,-0.56,-0.07,-0.18,-0.19,-0.19,-0.15,-0.39,-0.2,-0.11,0.11,-0.16,-0.09,-0.18,-0.19,-0.28,-0.19,-0.25,-0.05 +1901,-0.26,-0.16,-0.12,-0.12,-0.25,-0.02,-0.3,-0.27,-0.03,-0.23,-0.16,-0.25,-0.18,-0.17,-0.17,-0.16,-0.2,-0.14 +1902,-0.35,-0.09,-0.21,-0.26,-0.37,-0.39,-0.48,-0.56,-0.45,-0.5,-0.53,-0.6,-0.4,-0.37,-0.23,-0.28,-0.48,-0.5 +1903,-0.38,-0.19,-0.22,-0.6,-0.49,-0.68,-0.37,-0.48,-0.47,-0.53,-0.51,-0.65,-0.46,-0.46,-0.39,-0.44,-0.51,-0.5 +1904,-0.83,-0.8,-0.58,-0.48,-0.66,-0.52,-0.65,-0.54,-0.48,-0.56,-0.3,-0.44,-0.57,-0.59,-0.76,-0.58,-0.57,-0.44 +1905,-0.46,-1.02,-0.28,-0.36,-0.39,-0.35,-0.47,-0.31,-0.26,-0.42,-0.12,-0.28,-0.39,-0.41,-0.64,-0.34,-0.38,-0.27 +1906,-0.2,-0.36,-0.37,0.01,-0.25,-0.29,-0.28,-0.21,-0.35,-0.22,-0.56,-0.28,-0.28,-0.28,-0.28,-0.2,-0.26,-0.38 +1907,-0.51,-0.7,-0.47,-0.63,-0.63,-0.72,-0.48,-0.59,-0.43,-0.36,-0.62,-0.68,-0.57,-0.54,-0.5,-0.58,-0.6,-0.47 +1908,-0.4,-0.35,-0.54,-0.49,-0.36,-0.47,-0.43,-0.42,-0.2,-0.44,-0.62,-0.44,-0.43,-0.45,-0.48,-0.46,-0.44,-0.42 +1909,-0.81,-0.6,-0.52,-0.63,-0.61,-0.46,-0.38,-0.13,-0.22,-0.2,-0.16,-0.57,-0.44,-0.43,-0.61,-0.59,-0.32,-0.2 +1910,-0.48,-0.4,-0.49,-0.33,-0.29,-0.38,-0.26,-0.17,-0.13,-0.34,-0.56,-0.68,-0.38,-0.37,-0.48,-0.37,-0.27,-0.34 +1911,-0.68,-0.68,-0.63,-0.55,-0.41,-0.4,-0.19,-0.28,-0.29,-0.21,-0.17,-0.27,-0.4,-0.43,-0.68,-0.53,-0.29,-0.22 +1912,-0.21,-0.13,-0.45,-0.31,-0.21,-0.28,-0.52,-0.65,-0.38,-0.5,-0.45,-0.37,-0.37,-0.36,-0.2,-0.32,-0.49,-0.44 +1913,-0.48,-0.53,-0.61,-0.33,-0.65,-0.64,-0.26,-0.25,-0.25,-0.34,-0.18,0.01,-0.37,-0.41,-0.46,-0.53,-0.39,-0.25 +1914,0.11,-0.08,-0.08,-0.23,-0.05,-0.12,-0.25,-0.11,-0.11,0.09,-0.36,-0.24,-0.12,-0.1,0.01,-0.12,-0.16,-0.13 +1915,-0.2,0.04,-0.11,-0.04,-0.24,-0.25,-0.01,-0.22,-0.04,-0.12,0.01,-0.14,-0.11,-0.12,-0.13,-0.13,-0.16,-0.05 +1916,-0.1,-0.15,-0.47,-0.32,-0.38,-0.54,-0.4,-0.14,-0.21,-0.18,-0.4,-0.83,-0.34,-0.29,-0.13,-0.39,-0.36,-0.26 +1917,-0.55,-0.76,-0.81,-0.54,-0.82,-0.49,-0.03,-0.42,-0.35,-0.53,-0.35,-0.97,-0.55,-0.54,-0.71,-0.72,-0.31,-0.41 +1918,-0.66,-0.62,-0.51,-0.57,-0.8,-0.47,-0.52,-0.52,-0.21,-0.03,-0.29,-0.4,-0.47,-0.51,-0.75,-0.63,-0.5,-0.17 +1919,-0.34,-0.28,-0.16,-0.16,-0.2,-0.22,-0.13,-0.11,-0.24,-0.11,-0.46,-0.34,-0.23,-0.23,-0.34,-0.17,-0.15,-0.27 +1920,-0.15,-0.32,-0.21,-0.24,-0.36,-0.42,-0.26,-0.19,-0.2,-0.48,-0.37,-0.53,-0.31,-0.29,-0.27,-0.27,-0.29,-0.35 +1921,-0.07,-0.2,-0.15,-0.22,-0.23,-0.15,-0.03,-0.51,-0.18,-0.15,-0.31,-0.22,-0.2,-0.23,-0.27,-0.2,-0.23,-0.21 +1922,-0.44,-0.5,-0.35,-0.14,-0.42,-0.36,-0.08,-0.28,-0.18,-0.32,-0.16,-0.19,-0.29,-0.29,-0.39,-0.31,-0.24,-0.22 +1923,-0.28,-0.27,-0.28,-0.52,-0.37,-0.32,-0.54,-0.42,-0.35,-0.16,-0.08,-0.13,-0.31,-0.31,-0.25,-0.39,-0.42,-0.19 +1924,-0.32,-0.46,-0.17,-0.54,-0.32,-0.2,-0.2,-0.2,-0.11,-0.17,-0.1,-0.3,-0.26,-0.24,-0.3,-0.35,-0.2,-0.13 +1925,-0.5,-0.4,-0.29,-0.21,-0.37,-0.43,-0.43,-0.14,-0.36,-0.4,-0.07,0.13,-0.29,-0.32,-0.4,-0.29,-0.33,-0.28 +1926,0.21,0.24,0.16,-0.15,-0.4,-0.26,-0.21,-0.03,-0.03,-0.17,-0.02,-0.3,-0.08,-0.05,0.19,-0.13,-0.17,-0.07 +1927,-0.24,-0.22,-0.42,-0.39,-0.35,-0.3,-0.09,-0.3,-0.16,0.09,0.07,-0.28,-0.22,-0.22,-0.25,-0.39,-0.23,0 +1928,0.02,-0.05,-0.15,-0.14,-0.43,-0.6,-0.12,-0.09,-0.03,-0.1,0.04,-0.1,-0.15,-0.16,-0.1,-0.24,-0.27,-0.03 +1929,-0.32,-0.56,-0.4,-0.48,-0.45,-0.48,-0.43,-0.43,-0.27,-0.05,-0.09,-0.66,-0.38,-0.34,-0.33,-0.44,-0.45,-0.13 +1930,-0.28,-0.25,-0.11,-0.29,-0.22,-0.28,-0.26,-0.23,-0.18,-0.35,0.04,-0.12,-0.21,-0.26,-0.4,-0.21,-0.26,-0.16 +1931,-0.17,-0.32,-0.08,-0.33,-0.2,-0.12,0.03,0.06,-0.2,0,-0.2,0.04,-0.12,-0.14,-0.2,-0.2,-0.01,-0.13 +1932,0.3,-0.31,-0.23,0.03,-0.22,-0.5,-0.26,-0.21,0.02,0.05,-0.13,-0.17,-0.14,-0.12,0.01,-0.14,-0.32,-0.02 +1933,-0.4,-0.31,-0.29,-0.23,-0.17,-0.3,-0.16,-0.22,-0.13,-0.12,-0.4,-0.58,-0.27,-0.24,-0.29,-0.23,-0.23,-0.22 +1934,-0.18,-0.15,-0.4,-0.38,-0.03,-0.21,-0.03,0.03,-0.12,-0.09,0.01,0.05,-0.13,-0.18,-0.3,-0.27,-0.07,-0.07 +1935,-0.36,0.19,0,-0.53,-0.38,-0.25,-0.31,-0.28,-0.42,-0.09,-0.35,-0.21,-0.25,-0.23,-0.04,-0.3,-0.28,-0.29 +1936,-0.31,-0.45,-0.19,-0.06,-0.32,-0.2,0.18,-0.02,-0.04,-0.02,0,0.07,-0.11,-0.14,-0.32,-0.19,-0.01,-0.02 +1937,-0.14,0.03,-0.23,-0.22,-0.05,-0.07,-0.14,0.03,0.21,0.18,0.27,-0.11,-0.02,-0.01,-0.02,-0.17,-0.06,0.22 +1938,-0.03,-0.03,0.17,0.24,0.06,-0.15,-0.01,-0.1,0.07,0.27,0.09,-0.14,0.04,0.04,-0.06,0.16,-0.09,0.14 +1939,-0.04,-0.2,-0.38,-0.19,-0.04,-0.13,-0.16,-0.27,-0.16,-0.12,-0.19,0.31,-0.13,-0.17,-0.13,-0.2,-0.19,-0.16 +1940,-0.24,0.03,0.07,-0.01,0.03,0.13,0.18,0.06,0.18,0.03,0.03,0.2,0.06,0.07,0.03,0.03,0.12,0.08 +1941,0,0.17,-0.14,-0.02,0.07,0.11,0.24,0.02,-0.22,0.06,-0.07,0,0.02,0.03,0.12,-0.03,0.12,-0.08 +1942,0.18,-0.06,-0.04,-0.04,-0.01,0.04,0.02,0.07,0.04,-0.03,0.09,0.02,0.02,0.02,0.04,-0.03,0.04,0.03 +1943,-0.23,0.02,-0.19,-0.03,-0.13,-0.14,0.05,-0.2,0.02,0.25,0.05,0.17,-0.03,-0.04,-0.06,-0.12,-0.1,0.1 +1944,0.29,0.1,0.06,-0.11,-0.09,-0.1,0.01,0.04,0.2,0.17,-0.03,-0.23,0.03,0.06,0.19,-0.04,-0.02,0.11 +1945,-0.02,-0.18,-0.05,0.09,-0.29,-0.34,-0.26,0.16,0.03,0.01,-0.1,-0.39,-0.11,-0.1,-0.15,-0.08,-0.15,-0.02 +1946,-0.02,-0.08,-0.2,0.01,-0.03,-0.21,0.01,-0.07,-0.02,-0.18,-0.11,-0.34,-0.1,-0.11,-0.16,-0.07,-0.09,-0.11 +1947,-0.16,0.01,0.16,0.1,-0.03,-0.01,-0.05,-0.02,-0.01,0.22,0.21,-0.18,0.02,0.01,-0.16,0.08,-0.03,0.14 +1948,0.17,-0.18,-0.3,-0.13,0.02,0.04,-0.17,-0.2,0,-0.04,-0.19,-0.21,-0.1,-0.1,-0.06,-0.14,-0.11,-0.08 +1949,0.01,-0.37,-0.09,-0.26,-0.15,-0.18,-0.11,-0.13,-0.07,0,-0.06,-0.19,-0.13,-0.14,-0.19,-0.17,-0.14,-0.05 +1950,-0.32,-0.33,-0.07,-0.24,-0.23,-0.11,-0.14,-0.34,-0.19,-0.23,-0.42,-0.19,-0.23,-0.23,-0.28,-0.18,-0.2,-0.28 +1951,-0.38,-0.47,-0.14,-0.04,0.06,-0.04,-0.04,0.1,0.08,0,-0.03,0.13,-0.07,-0.09,-0.35,-0.04,0,0.01 +1952,0.08,0.11,-0.19,-0.08,-0.12,-0.1,0.04,0.09,0.13,-0.03,-0.22,-0.04,-0.03,-0.01,0.1,-0.13,0.01,-0.04 +1953,0.1,0.05,0.14,0.09,-0.05,0.01,-0.05,0.1,0.07,0.05,0,0.14,0.05,0.04,0.04,0.06,0.02,0.04 +1954,-0.32,-0.09,-0.12,-0.15,-0.2,-0.21,-0.27,-0.18,-0.17,0,0.16,-0.13,-0.14,-0.12,-0.09,-0.16,-0.22,0 +1955,0.21,-0.11,-0.39,-0.19,-0.18,-0.19,-0.17,0.09,-0.11,0,-0.25,-0.31,-0.13,-0.12,-0.01,-0.25,-0.09,-0.12 +1956,-0.25,-0.32,-0.33,-0.26,-0.3,-0.1,-0.12,-0.32,-0.15,-0.25,-0.24,-0.2,-0.24,-0.25,-0.29,-0.3,-0.18,-0.21 +1957,-0.15,-0.05,-0.08,0,-0.01,0.14,-0.12,0.13,0.1,0,0.13,0.19,0.02,-0.01,-0.13,-0.03,0.05,0.08 +1958,0.41,0.26,0.19,0.09,0.12,-0.18,0.07,-0.1,-0.07,0.1,0.08,-0.06,0.07,0.1,0.29,0.13,-0.07,0.04 +1959,0.04,0.1,0.24,0.2,0,0.08,0.1,0,-0.13,-0.1,-0.08,0.09,0.05,0.03,0.03,0.15,0.06,-0.1 +1960,0.08,0.27,-0.46,-0.2,-0.14,-0.02,-0.11,0.07,0.08,0.12,-0.1,0.17,-0.02,-0.03,0.15,-0.27,-0.02,0.03 +1961,0.09,0.22,0.03,0.13,0.17,0.12,0,0.08,0.16,0.09,0.08,-0.14,0.09,0.11,0.16,0.11,0.07,0.11 +1962,0.08,0.16,0.11,0.06,-0.11,0.05,-0.13,-0.08,0.01,0.02,0.1,0,0.02,0.01,0.04,0.02,-0.05,0.04 +1963,-0.01,0.24,-0.23,-0.19,-0.13,0.03,0.06,0.19,0.23,0.1,0.05,-0.04,0.03,0.03,0.08,-0.18,0.1,0.13 +1964,-0.06,-0.16,-0.27,-0.36,-0.33,-0.13,-0.08,-0.29,-0.36,-0.34,-0.21,-0.34,-0.24,-0.22,-0.09,-0.32,-0.17,-0.31 +1965,-0.05,-0.18,-0.12,-0.29,-0.16,-0.15,-0.26,-0.08,-0.26,-0.09,-0.13,-0.18,-0.16,-0.18,-0.19,-0.19,-0.17,-0.16 +1966,-0.22,-0.03,0.14,-0.09,-0.1,-0.04,0.12,-0.09,-0.02,-0.26,-0.05,-0.08,-0.06,-0.07,-0.15,-0.02,0,-0.11 +1967,-0.07,-0.25,0.01,-0.09,0.18,-0.12,0.06,0.03,0,0.12,0.01,0,-0.01,-0.02,-0.14,0.03,-0.01,0.04 +1968,-0.2,-0.16,0.32,-0.08,-0.18,-0.11,-0.13,-0.07,-0.26,0.07,-0.07,-0.21,-0.09,-0.07,-0.12,0.02,-0.1,-0.09 +1969,-0.15,-0.25,-0.09,0.12,0.16,0.05,-0.02,-0.09,0.02,0.09,0.09,0.34,0.02,-0.02,-0.2,0.06,-0.02,0.07 +1970,0.05,0.27,0.11,0.12,-0.05,0.12,0.09,-0.07,0.16,0.11,0.04,-0.1,0.07,0.11,0.22,0.06,0.05,0.1 +1971,-0.01,-0.14,-0.2,-0.04,-0.06,-0.2,-0.09,0.03,0.02,-0.01,-0.11,-0.05,-0.07,-0.08,-0.08,-0.1,-0.08,-0.03 +1972,-0.28,-0.31,-0.07,-0.05,-0.02,0.08,0.06,0.19,0.05,-0.03,-0.04,0.15,-0.02,-0.04,-0.21,-0.05,0.11,0 +1973,0.26,0.32,0.37,0.36,0.36,0.28,0.21,0.06,0.11,0.2,0.11,-0.01,0.22,0.23,0.24,0.36,0.19,0.14 +1974,-0.06,-0.24,-0.01,-0.07,0.02,0.01,-0.02,0.13,-0.15,-0.07,-0.07,-0.03,-0.05,-0.04,-0.1,-0.02,0.04,-0.1 +1975,0.07,0.1,0.13,0.04,0.27,0.04,0.07,-0.25,-0.03,-0.04,-0.06,-0.22,0.01,0.03,0.04,0.15,-0.05,-0.04 +1976,-0.01,-0.08,-0.31,-0.23,-0.24,-0.18,-0.17,-0.24,-0.16,-0.37,-0.16,-0.03,-0.18,-0.2,-0.11,-0.26,-0.2,-0.23 +1977,0.14,0.22,0.31,0.3,0.29,0.31,0.3,0.28,-0.09,-0.01,0.24,0.14,0.2,0.19,0.11,0.3,0.3,0.05 +1978,0.13,0.19,0.27,0.27,0.2,0.03,0.19,-0.15,0.14,0.03,0.15,0.11,0.13,0.13,0.16,0.25,0.02,0.11 +1979,0.17,-0.11,0.25,0.2,0.08,0.2,0.03,0.13,0.29,0.27,0.3,0.52,0.19,0.16,0.06,0.18,0.12,0.28 +1980,0.35,0.45,0.4,0.43,0.46,0.21,0.37,0.3,0.32,0.23,0.29,0.18,0.33,0.36,0.44,0.43,0.29,0.28 +1981,0.61,0.56,0.65,0.5,0.32,0.37,0.5,0.53,0.27,0.1,0.21,0.46,0.42,0.4,0.45,0.49,0.47,0.19 +1982,0.11,0.24,-0.02,0.02,0.24,0.03,0.17,0.07,0.09,0.01,0.12,0.41,0.12,0.13,0.27,0.08,0.09,0.07 +1983,0.48,0.4,0.46,0.4,0.47,0.27,0.2,0.45,0.55,0.33,0.32,0.17,0.38,0.4,0.43,0.44,0.31,0.4 +1984,0.23,0.16,0.37,0.14,0.46,0.04,0.18,0.27,0.26,0.21,0.1,0.02,0.2,0.22,0.19,0.32,0.16,0.19 +1985,0.31,0.01,0.26,0.2,0.21,0.26,0.02,0.34,0.25,0.12,0.08,0.13,0.18,0.17,0.11,0.22,0.21,0.15 +1986,0.37,0.52,0.38,0.43,0.33,0.12,0.14,0.2,0.02,0.11,0.11,0.2,0.24,0.24,0.34,0.38,0.15,0.08 +1987,0.42,0.52,0.24,0.37,0.29,0.54,0.58,0.26,0.35,0.33,0.28,0.55,0.39,0.36,0.38,0.3,0.46,0.32 +1988,0.65,0.47,0.61,0.49,0.61,0.58,0.43,0.56,0.55,0.54,0.17,0.38,0.5,0.52,0.56,0.57,0.52,0.42 +1989,0.25,0.45,0.44,0.42,0.18,0.14,0.48,0.51,0.53,0.43,0.22,0.4,0.37,0.37,0.36,0.35,0.38,0.39 +1990,0.52,0.41,0.85,0.64,0.55,0.46,0.61,0.41,0.3,0.51,0.52,0.47,0.52,0.52,0.44,0.68,0.5,0.44 +1991,0.49,0.61,0.47,0.72,0.41,0.68,0.62,0.55,0.62,0.34,0.32,0.32,0.51,0.52,0.52,0.53,0.62,0.43 +1992,0.49,0.4,0.53,0.23,0.25,0.28,0.06,0.13,-0.05,0.07,0.01,0.24,0.22,0.23,0.4,0.34,0.16,0.01 +1993,0.38,0.4,0.32,0.3,0.26,0.27,0.38,0.2,0.08,0.22,0.08,0.18,0.26,0.26,0.34,0.29,0.28,0.13 +1994,0.38,0.07,0.25,0.53,0.26,0.55,0.4,0.24,0.4,0.4,0.51,0.43,0.37,0.35,0.21,0.35,0.4,0.44 +1995,0.55,0.88,0.5,0.57,0.37,0.5,0.62,0.56,0.46,0.66,0.52,0.39,0.55,0.55,0.62,0.48,0.56,0.54 +1996,0.4,0.59,0.44,0.5,0.33,0.32,0.55,0.74,0.42,0.32,0.5,0.53,0.47,0.46,0.46,0.42,0.54,0.41 +1997,0.46,0.54,0.65,0.38,0.42,0.67,0.33,0.44,0.49,0.59,0.7,0.67,0.53,0.52,0.51,0.48,0.48,0.59 +1998,0.7,1.18,0.81,0.8,0.93,1.02,0.89,0.82,0.56,0.66,0.64,0.76,0.81,0.81,0.85,0.85,0.91,0.62 +1999,0.66,0.84,0.47,0.39,0.47,0.59,0.61,0.52,0.63,0.61,0.57,0.5,0.57,0.59,0.75,0.45,0.57,0.6 +2000,0.28,0.76,0.69,0.74,0.55,0.67,0.61,0.59,0.53,0.33,0.46,0.46,0.56,0.56,0.51,0.66,0.62,0.44 +2001,0.56,0.61,0.67,0.6,0.72,0.64,0.7,0.61,0.68,0.6,0.77,0.71,0.65,0.63,0.54,0.66,0.65,0.68 +2002,0.95,0.87,1.11,0.78,0.86,0.63,0.82,0.67,0.8,0.62,0.69,0.53,0.78,0.79,0.84,0.92,0.7,0.71 +2003,0.92,0.73,0.72,0.69,0.87,0.63,0.64,0.85,0.81,0.84,0.64,0.87,0.77,0.74,0.73,0.76,0.71,0.76 +2004,0.72,0.91,0.84,0.76,0.48,0.64,0.23,0.58,0.59,0.81,0.87,0.66,0.67,0.69,0.84,0.69,0.48,0.76 +2005,0.95,0.86,0.94,0.83,0.75,0.81,0.79,0.72,0.97,0.98,0.88,0.88,0.86,0.85,0.82,0.84,0.77,0.95 +2006,0.75,0.9,0.8,0.68,0.49,0.76,0.64,0.82,0.72,0.81,0.85,0.91,0.76,0.76,0.85,0.66,0.74,0.79 +2007,1.21,0.92,0.92,0.93,0.91,0.64,0.77,0.83,0.8,0.78,0.71,0.7,0.84,0.86,1.01,0.92,0.75,0.76 +2008,0.46,0.44,0.88,0.65,0.55,0.51,0.71,0.38,0.8,0.72,0.79,0.71,0.63,0.63,0.53,0.69,0.53,0.77 +2009,0.73,0.73,0.64,0.75,0.81,0.78,0.85,0.83,0.9,0.71,0.81,0.75,0.77,0.77,0.72,0.73,0.82,0.81 +2010,0.94,1.03,1.11,0.99,0.94,0.84,0.73,0.82,0.85,0.94,1,0.69,0.91,0.91,0.91,1.01,0.79,0.93 +2011,0.71,0.68,0.76,0.81,0.63,0.71,0.89,0.93,0.75,0.82,0.76,0.78,0.77,0.76,0.69,0.73,0.84,0.78 +2012,0.61,0.56,0.68,0.78,0.93,0.69,0.56,0.83,0.88,0.91,0.93,0.7,0.75,0.76,0.65,0.8,0.69,0.91 +2013,0.97,0.72,0.85,0.65,0.66,0.86,0.65,0.78,1,0.84,0.86,0.81,0.8,0.79,0.8,0.72,0.76,0.9 +2014,0.95,0.65,0.78,0.88,1.03,0.75,0.71,0.84,1.09,1.01,0.79,0.97,0.87,0.85,0.8,0.89,0.77,0.96 +2015,0.95,1.07,1.11,0.74,0.85,0.82,0.67,0.88,0.79,1.17,1.16,1.39,0.97,0.93,0.99,0.9,0.79,1.04 +2016,1.34,1.61,1.61,1.32,1.16,0.89,0.98,1.28,1.1,1.18,1.14,1.09,1.22,1.25,1.44,1.36,1.05,1.14 +2017,1.1,1.43,***,***,***,***,***,***,***,***,***,***,***,***,1.21,***,***,*** \ No newline at end of file diff --git a/content/data/LOTI.csv b/content/data/LOTI.csv new file mode 100644 index 0000000..15bf5b6 --- /dev/null +++ b/content/data/LOTI.csv @@ -0,0 +1,140 @@ +Land-Ocean: Global Means,,,,,,,,,,,,,,,,,, +Year,Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec,JanDec,DecNov,DJF,MAM,JJA,SON +1880,-0.29,-0.2,-0.18,-0.27,-0.14,-0.28,-0.23,-0.07,-0.16,-0.16,-0.18,-0.21,-0.2,***,***,-0.19,-0.19,-0.17 +1881,-0.1,-0.13,0.01,-0.03,-0.04,-0.28,-0.06,-0.02,-0.08,-0.18,-0.25,-0.15,-0.11,-0.11,-0.15,-0.02,-0.12,-0.17 +1882,0.1,0.1,0.03,-0.2,-0.17,-0.24,-0.1,0.04,0,-0.22,-0.2,-0.25,-0.09,-0.08,0.02,-0.11,-0.1,-0.14 +1883,-0.33,-0.41,-0.17,-0.24,-0.25,-0.11,-0.08,-0.12,-0.18,-0.11,-0.19,-0.18,-0.2,-0.2,-0.33,-0.22,-0.1,-0.16 +1884,-0.18,-0.11,-0.33,-0.35,-0.31,-0.37,-0.33,-0.25,-0.23,-0.21,-0.29,-0.28,-0.27,-0.26,-0.15,-0.33,-0.32,-0.24 +1885,-0.64,-0.29,-0.23,-0.44,-0.41,-0.5,-0.28,-0.27,-0.19,-0.19,-0.22,-0.05,-0.31,-0.33,-0.41,-0.36,-0.35,-0.2 +1886,-0.42,-0.45,-0.41,-0.29,-0.27,-0.39,-0.16,-0.31,-0.19,-0.25,-0.26,-0.25,-0.3,-0.29,-0.31,-0.32,-0.28,-0.23 +1887,-0.66,-0.47,-0.31,-0.37,-0.33,-0.2,-0.18,-0.27,-0.19,-0.31,-0.25,-0.37,-0.33,-0.32,-0.46,-0.33,-0.22,-0.25 +1888,-0.42,-0.41,-0.47,-0.28,-0.22,-0.2,-0.09,-0.11,-0.07,0.02,0,-0.12,-0.2,-0.22,-0.4,-0.32,-0.13,-0.02 +1889,-0.2,0.15,0.05,0.05,-0.02,-0.11,-0.04,-0.17,-0.18,-0.22,-0.3,-0.3,-0.11,-0.09,-0.06,0.02,-0.11,-0.23 +1890,-0.47,-0.48,-0.41,-0.37,-0.47,-0.27,-0.29,-0.36,-0.36,-0.22,-0.36,-0.3,-0.36,-0.36,-0.42,-0.42,-0.31,-0.31 +1891,-0.46,-0.5,-0.14,-0.25,-0.17,-0.22,-0.22,-0.21,-0.13,-0.23,-0.37,-0.02,-0.24,-0.27,-0.42,-0.19,-0.21,-0.24 +1892,-0.25,-0.14,-0.36,-0.34,-0.25,-0.19,-0.27,-0.19,-0.25,-0.16,-0.49,-0.28,-0.27,-0.24,-0.14,-0.32,-0.22,-0.3 +1893,-0.68,-0.51,-0.23,-0.32,-0.34,-0.23,-0.14,-0.23,-0.18,-0.16,-0.16,-0.37,-0.3,-0.29,-0.49,-0.3,-0.2,-0.17 +1894,-0.55,-0.31,-0.2,-0.41,-0.3,-0.43,-0.31,-0.28,-0.22,-0.16,-0.24,-0.21,-0.3,-0.31,-0.41,-0.3,-0.34,-0.21 +1895,-0.43,-0.41,-0.28,-0.22,-0.22,-0.24,-0.16,-0.15,-0.01,-0.1,-0.15,-0.11,-0.21,-0.22,-0.35,-0.24,-0.19,-0.09 +1896,-0.22,-0.14,-0.29,-0.32,-0.19,-0.13,-0.06,-0.09,-0.04,0.05,-0.15,-0.11,-0.14,-0.14,-0.16,-0.27,-0.09,-0.05 +1897,-0.22,-0.18,-0.12,0,0,-0.12,-0.04,-0.03,-0.04,-0.09,-0.16,-0.24,-0.1,-0.09,-0.17,-0.04,-0.06,-0.09 +1898,-0.06,-0.32,-0.55,-0.33,-0.35,-0.21,-0.22,-0.23,-0.18,-0.31,-0.35,-0.21,-0.28,-0.28,-0.21,-0.41,-0.22,-0.28 +1899,-0.17,-0.39,-0.33,-0.2,-0.2,-0.25,-0.13,-0.04,-0.01,0,0.13,-0.26,-0.15,-0.15,-0.26,-0.24,-0.14,0.04 +1900,-0.39,-0.07,0.03,-0.14,-0.05,-0.14,-0.08,-0.03,0.02,0.09,-0.12,-0.13,-0.08,-0.1,-0.24,-0.05,-0.08,0 +1901,-0.28,-0.05,0.06,-0.05,-0.17,-0.1,-0.08,-0.12,-0.16,-0.29,-0.16,-0.28,-0.14,-0.13,-0.16,-0.05,-0.1,-0.2 +1902,-0.19,-0.04,-0.29,-0.29,-0.32,-0.34,-0.25,-0.28,-0.21,-0.28,-0.36,-0.46,-0.28,-0.26,-0.17,-0.3,-0.29,-0.28 +1903,-0.28,-0.07,-0.22,-0.4,-0.42,-0.45,-0.3,-0.43,-0.42,-0.41,-0.39,-0.48,-0.36,-0.35,-0.27,-0.35,-0.39,-0.41 +1904,-0.64,-0.55,-0.46,-0.5,-0.5,-0.49,-0.48,-0.43,-0.46,-0.35,-0.16,-0.29,-0.44,-0.46,-0.55,-0.48,-0.47,-0.32 +1905,-0.38,-0.58,-0.25,-0.37,-0.33,-0.32,-0.24,-0.2,-0.15,-0.24,-0.09,-0.21,-0.28,-0.29,-0.42,-0.32,-0.25,-0.16 +1906,-0.31,-0.33,-0.15,-0.03,-0.21,-0.22,-0.26,-0.18,-0.25,-0.2,-0.38,-0.18,-0.22,-0.23,-0.28,-0.13,-0.22,-0.28 +1907,-0.43,-0.51,-0.23,-0.39,-0.46,-0.43,-0.36,-0.37,-0.32,-0.24,-0.51,-0.5,-0.4,-0.37,-0.37,-0.36,-0.39,-0.36 +1908,-0.46,-0.35,-0.57,-0.46,-0.4,-0.39,-0.35,-0.45,-0.33,-0.43,-0.5,-0.49,-0.43,-0.43,-0.43,-0.48,-0.4,-0.42 +1909,-0.7,-0.46,-0.52,-0.58,-0.53,-0.51,-0.43,-0.29,-0.37,-0.38,-0.31,-0.54,-0.47,-0.46,-0.55,-0.54,-0.41,-0.35 +1910,-0.43,-0.42,-0.47,-0.38,-0.33,-0.36,-0.31,-0.34,-0.37,-0.39,-0.56,-0.69,-0.42,-0.41,-0.46,-0.4,-0.34,-0.44 +1911,-0.63,-0.6,-0.62,-0.54,-0.51,-0.46,-0.41,-0.43,-0.38,-0.26,-0.2,-0.24,-0.44,-0.48,-0.64,-0.56,-0.43,-0.28 +1912,-0.26,-0.13,-0.37,-0.19,-0.19,-0.25,-0.41,-0.52,-0.47,-0.55,-0.37,-0.42,-0.34,-0.33,-0.21,-0.25,-0.39,-0.46 +1913,-0.42,-0.44,-0.43,-0.36,-0.45,-0.46,-0.35,-0.34,-0.34,-0.34,-0.18,-0.03,-0.34,-0.38,-0.43,-0.41,-0.38,-0.29 +1914,0.02,-0.13,-0.22,-0.27,-0.2,-0.23,-0.24,-0.14,-0.13,-0.05,-0.2,-0.09,-0.16,-0.15,-0.05,-0.23,-0.2,-0.13 +1915,-0.18,0.01,-0.09,0.08,-0.01,-0.15,-0.03,-0.15,-0.12,-0.22,-0.12,-0.25,-0.1,-0.09,-0.09,-0.01,-0.11,-0.16 +1916,-0.18,-0.21,-0.31,-0.24,-0.26,-0.44,-0.34,-0.26,-0.29,-0.27,-0.4,-0.77,-0.33,-0.29,-0.21,-0.27,-0.35,-0.32 +1917,-0.46,-0.52,-0.46,-0.37,-0.48,-0.4,-0.22,-0.26,-0.18,-0.35,-0.27,-0.72,-0.39,-0.39,-0.58,-0.43,-0.29,-0.26 +1918,-0.42,-0.3,-0.18,-0.38,-0.36,-0.27,-0.2,-0.25,-0.13,-0.03,-0.15,-0.3,-0.25,-0.28,-0.48,-0.31,-0.24,-0.1 +1919,-0.21,-0.19,-0.24,-0.16,-0.19,-0.27,-0.2,-0.18,-0.16,-0.15,-0.28,-0.34,-0.22,-0.21,-0.23,-0.2,-0.22,-0.2 +1920,-0.14,-0.22,-0.07,-0.25,-0.24,-0.32,-0.31,-0.28,-0.19,-0.28,-0.32,-0.46,-0.26,-0.25,-0.23,-0.19,-0.3,-0.26 +1921,-0.03,-0.2,-0.27,-0.35,-0.35,-0.3,-0.15,-0.23,-0.16,-0.05,-0.15,-0.18,-0.2,-0.23,-0.23,-0.32,-0.23,-0.12 +1922,-0.34,-0.43,-0.12,-0.2,-0.33,-0.32,-0.25,-0.3,-0.27,-0.32,-0.16,-0.16,-0.27,-0.27,-0.32,-0.22,-0.29,-0.25 +1923,-0.26,-0.36,-0.31,-0.37,-0.32,-0.22,-0.28,-0.28,-0.26,-0.12,0.04,-0.05,-0.23,-0.24,-0.26,-0.34,-0.26,-0.11 +1924,-0.23,-0.26,-0.11,-0.34,-0.18,-0.27,-0.26,-0.34,-0.29,-0.35,-0.22,-0.41,-0.27,-0.24,-0.18,-0.21,-0.29,-0.29 +1925,-0.33,-0.33,-0.22,-0.24,-0.29,-0.32,-0.29,-0.18,-0.13,-0.16,0.05,0.11,-0.19,-0.24,-0.36,-0.25,-0.26,-0.08 +1926,0.2,0.08,0.13,-0.14,-0.23,-0.24,-0.2,-0.1,-0.1,-0.11,-0.05,-0.3,-0.09,-0.05,0.13,-0.08,-0.18,-0.09 +1927,-0.28,-0.2,-0.37,-0.3,-0.24,-0.27,-0.13,-0.18,-0.05,-0.01,-0.03,-0.35,-0.2,-0.2,-0.26,-0.3,-0.19,-0.03 +1928,-0.02,-0.11,-0.28,-0.28,-0.29,-0.41,-0.21,-0.25,-0.19,-0.18,-0.09,-0.2,-0.21,-0.22,-0.16,-0.28,-0.29,-0.15 +1929,-0.46,-0.6,-0.33,-0.4,-0.38,-0.43,-0.33,-0.29,-0.24,-0.15,-0.14,-0.55,-0.36,-0.33,-0.42,-0.37,-0.35,-0.17 +1930,-0.29,-0.24,-0.08,-0.26,-0.25,-0.19,-0.16,-0.1,-0.11,-0.08,0.14,-0.09,-0.14,-0.18,-0.36,-0.2,-0.15,-0.02 +1931,-0.1,-0.21,-0.06,-0.21,-0.21,-0.05,0.01,0,-0.06,0,-0.12,-0.1,-0.09,-0.09,-0.13,-0.16,-0.02,-0.06 +1932,0.14,-0.17,-0.2,-0.07,-0.22,-0.3,-0.23,-0.23,-0.11,-0.09,-0.26,-0.22,-0.16,-0.15,-0.04,-0.16,-0.26,-0.16 +1933,-0.34,-0.32,-0.28,-0.23,-0.25,-0.32,-0.2,-0.23,-0.26,-0.24,-0.31,-0.46,-0.29,-0.27,-0.29,-0.25,-0.25,-0.27 +1934,-0.27,-0.04,-0.3,-0.26,-0.1,-0.13,-0.11,-0.1,-0.15,-0.1,-0.01,-0.08,-0.14,-0.17,-0.26,-0.22,-0.11,-0.09 +1935,-0.37,0.12,-0.13,-0.34,-0.25,-0.22,-0.19,-0.17,-0.16,-0.07,-0.28,-0.21,-0.19,-0.18,-0.11,-0.24,-0.19,-0.17 +1936,-0.29,-0.39,-0.23,-0.2,-0.16,-0.18,-0.05,-0.11,-0.05,-0.03,-0.04,-0.03,-0.15,-0.16,-0.29,-0.19,-0.12,-0.04 +1937,-0.11,0.06,-0.16,-0.17,-0.06,-0.07,-0.04,0.04,0.15,0.1,0.1,-0.12,-0.02,-0.02,-0.03,-0.13,-0.02,0.12 +1938,0,-0.03,0.06,0.05,-0.07,-0.17,-0.08,-0.04,0.04,0.11,0.02,-0.25,-0.03,-0.02,-0.05,0.01,-0.09,0.06 +1939,-0.12,-0.11,-0.19,-0.12,-0.07,-0.08,-0.05,-0.04,0.01,-0.03,0.06,0.4,-0.03,-0.08,-0.16,-0.13,-0.06,0.01 +1940,-0.15,0.07,0.12,0.17,0.06,0.05,0.11,0.01,0.12,0.08,0.13,0.19,0.08,0.1,0.11,0.12,0.06,0.11 +1941,0.13,0.23,0.06,0.11,0.11,0.05,0.15,0.15,0.03,0.25,0.13,0.14,0.13,0.13,0.19,0.09,0.12,0.13 +1942,0.26,0.05,0.13,0.14,0.14,0.11,0.02,-0.03,0,0.07,0.13,0.12,0.1,0.1,0.15,0.14,0.04,0.07 +1943,0,0.22,0.02,0.13,0.1,0,0.14,0.03,0.12,0.3,0.26,0.29,0.13,0.12,0.11,0.08,0.06,0.22 +1944,0.41,0.31,0.34,0.27,0.27,0.23,0.23,0.23,0.31,0.27,0.12,0.05,0.25,0.27,0.34,0.29,0.23,0.24 +1945,0.13,0.02,0.11,0.24,0.1,0.03,0.07,0.25,0.22,0.22,0.1,-0.09,0.12,0.13,0.07,0.15,0.12,0.18 +1946,0.15,0.06,0,0.11,-0.03,-0.16,-0.09,-0.08,-0.02,-0.06,-0.02,-0.29,-0.04,-0.02,0.04,0.02,-0.11,-0.03 +1947,-0.13,-0.07,0.05,0.04,-0.06,0,-0.05,-0.08,-0.14,0.06,-0.01,-0.18,-0.05,-0.06,-0.16,0.01,-0.05,-0.03 +1948,0.05,-0.13,-0.23,-0.09,0.08,-0.05,-0.13,-0.1,-0.1,-0.07,-0.08,-0.23,-0.09,-0.08,-0.09,-0.08,-0.09,-0.08 +1949,0.09,-0.16,-0.01,-0.07,-0.08,-0.22,-0.13,-0.08,-0.08,-0.02,-0.08,-0.19,-0.09,-0.09,-0.1,-0.06,-0.14,-0.06 +1950,-0.3,-0.26,-0.06,-0.21,-0.12,-0.06,-0.09,-0.17,-0.1,-0.2,-0.35,-0.2,-0.18,-0.18,-0.25,-0.13,-0.11,-0.22 +1951,-0.35,-0.43,-0.18,-0.1,-0.02,-0.04,0,0.05,0.08,0.06,0,0.15,-0.06,-0.09,-0.33,-0.1,0,0.05 +1952,0.16,0.13,-0.09,0.02,-0.04,-0.04,0.05,0.07,0.08,-0.03,-0.17,-0.01,0.01,0.02,0.15,-0.04,0.03,-0.04 +1953,0.09,0.16,0.11,0.2,0.08,0.08,0.03,0.08,0.06,0.05,-0.05,0.04,0.08,0.07,0.08,0.13,0.06,0.02 +1954,-0.28,-0.1,-0.12,-0.18,-0.19,-0.15,-0.16,-0.13,-0.07,-0.01,0.08,-0.18,-0.12,-0.11,-0.12,-0.16,-0.15,0 +1955,0.11,-0.21,-0.36,-0.23,-0.2,-0.08,-0.09,0.04,-0.12,-0.05,-0.28,-0.32,-0.15,-0.14,-0.09,-0.26,-0.04,-0.15 +1956,-0.17,-0.25,-0.23,-0.26,-0.28,-0.15,-0.11,-0.25,-0.21,-0.24,-0.17,-0.1,-0.2,-0.22,-0.25,-0.26,-0.17,-0.21 +1957,-0.14,-0.05,-0.05,-0.04,0.08,0.16,0.01,0.14,0.06,0.01,0.07,0.16,0.04,0.01,-0.1,0,0.11,0.05 +1958,0.39,0.24,0.1,0.01,0.08,-0.05,0.06,-0.06,-0.03,0.04,0.02,0.01,0.07,0.08,0.27,0.06,-0.02,0.01 +1959,0.06,0.1,0.19,0.17,0.06,0.02,0.06,-0.01,-0.06,-0.09,-0.09,-0.03,0.03,0.04,0.06,0.14,0.02,-0.08 +1960,-0.01,0.14,-0.36,-0.16,-0.08,0.01,-0.02,0,0.05,0.07,-0.12,0.18,-0.02,-0.04,0.04,-0.2,0,0 +1961,0.07,0.18,0.09,0.15,0.13,0.12,-0.03,0.02,0.05,0,0.03,-0.15,0.05,0.08,0.14,0.12,0.04,0.03 +1962,0.08,0.14,0.12,0.05,-0.06,0.06,-0.02,-0.02,0,-0.02,0.07,-0.01,0.03,0.02,0.02,0.04,0.01,0.01 +1963,-0.03,0.19,-0.13,-0.05,-0.09,0.03,0.08,0.25,0.2,0.16,0.15,0,0.06,0.06,0.05,-0.09,0.12,0.17 +1964,-0.06,-0.12,-0.22,-0.3,-0.25,-0.07,-0.07,-0.2,-0.28,-0.3,-0.21,-0.3,-0.2,-0.17,-0.06,-0.26,-0.11,-0.26 +1965,-0.08,-0.17,-0.11,-0.19,-0.14,-0.08,-0.12,-0.01,-0.14,-0.04,-0.06,-0.05,-0.1,-0.12,-0.18,-0.15,-0.07,-0.08 +1966,-0.16,0,0.04,-0.13,-0.1,0.02,0.09,-0.1,-0.01,-0.15,-0.02,-0.06,-0.05,-0.05,-0.07,-0.06,0,-0.06 +1967,-0.06,-0.2,0.04,-0.05,0.14,-0.08,0.01,0.02,-0.04,0.07,-0.06,-0.02,-0.02,-0.02,-0.11,0.04,-0.02,-0.01 +1968,-0.23,-0.15,0.21,-0.05,-0.1,-0.06,-0.11,-0.11,-0.18,0.12,-0.04,-0.14,-0.07,-0.06,-0.13,0.02,-0.09,-0.04 +1969,-0.11,-0.14,0,0.19,0.2,0.05,-0.01,0.03,0.1,0.11,0.12,0.27,0.07,0.03,-0.13,0.13,0.02,0.11 +1970,0.09,0.22,0.07,0.09,-0.05,-0.03,-0.04,-0.11,0.11,0.05,0.01,-0.13,0.03,0.06,0.2,0.04,-0.06,0.06 +1971,-0.02,-0.2,-0.18,-0.09,-0.06,-0.18,-0.12,-0.03,-0.01,-0.06,-0.04,-0.08,-0.09,-0.1,-0.12,-0.11,-0.11,-0.04 +1972,-0.24,-0.17,0.02,-0.01,-0.03,0.04,0.02,0.18,0.03,0.09,0.03,0.18,0.01,-0.01,-0.16,-0.01,0.08,0.05 +1973,0.28,0.3,0.25,0.25,0.25,0.16,0.09,0.02,0.06,0.12,0.06,-0.06,0.15,0.17,0.25,0.25,0.09,0.08 +1974,-0.15,-0.28,-0.05,-0.1,-0.01,-0.05,-0.03,0.11,-0.12,-0.07,-0.07,-0.09,-0.08,-0.07,-0.16,-0.05,0.01,-0.09 +1975,0.07,0.07,0.13,0.06,0.16,-0.02,-0.03,-0.2,-0.03,-0.09,-0.16,-0.17,-0.02,-0.01,0.02,0.12,-0.08,-0.09 +1976,-0.01,-0.06,-0.22,-0.1,-0.23,-0.15,-0.13,-0.18,-0.1,-0.26,-0.06,0.09,-0.12,-0.14,-0.08,-0.18,-0.15,-0.14 +1977,0.18,0.2,0.25,0.27,0.3,0.24,0.23,0.19,0.02,0.04,0.19,0.04,0.18,0.18,0.15,0.27,0.22,0.08 +1978,0.08,0.14,0.2,0.15,0.07,-0.03,0.07,-0.18,0.05,0,0.16,0.11,0.07,0.06,0.09,0.14,-0.05,0.07 +1979,0.14,-0.09,0.19,0.12,0.05,0.13,0.02,0.14,0.27,0.25,0.29,0.47,0.17,0.14,0.05,0.12,0.1,0.27 +1980,0.3,0.42,0.28,0.31,0.34,0.16,0.28,0.24,0.21,0.2,0.29,0.21,0.27,0.29,0.39,0.31,0.23,0.23 +1981,0.56,0.41,0.48,0.31,0.24,0.3,0.34,0.35,0.17,0.13,0.21,0.4,0.33,0.31,0.39,0.35,0.33,0.17 +1982,0.09,0.14,-0.02,0.09,0.15,0.04,0.13,0.08,0.15,0.13,0.14,0.42,0.13,0.13,0.21,0.08,0.08,0.14 +1983,0.51,0.4,0.42,0.3,0.35,0.17,0.15,0.3,0.38,0.14,0.3,0.16,0.3,0.32,0.45,0.36,0.21,0.27 +1984,0.3,0.17,0.28,0.08,0.33,0.04,0.16,0.15,0.19,0.14,0.04,-0.06,0.15,0.17,0.21,0.23,0.11,0.12 +1985,0.21,-0.07,0.16,0.1,0.17,0.17,-0.01,0.14,0.14,0.1,0.09,0.15,0.11,0.09,0.02,0.15,0.1,0.11 +1986,0.29,0.39,0.29,0.26,0.26,0.12,0.12,0.12,0.01,0.13,0.1,0.16,0.19,0.19,0.28,0.27,0.12,0.08 +1987,0.35,0.45,0.16,0.23,0.25,0.35,0.45,0.27,0.39,0.31,0.24,0.47,0.33,0.3,0.32,0.21,0.36,0.31 +1988,0.56,0.41,0.49,0.45,0.44,0.42,0.34,0.45,0.41,0.39,0.12,0.33,0.4,0.41,0.48,0.46,0.4,0.31 +1989,0.15,0.34,0.36,0.33,0.16,0.14,0.33,0.35,0.36,0.32,0.2,0.37,0.28,0.28,0.28,0.28,0.27,0.29 +1990,0.4,0.41,0.75,0.54,0.46,0.38,0.43,0.29,0.3,0.42,0.46,0.41,0.44,0.43,0.39,0.59,0.37,0.39 +1991,0.41,0.5,0.35,0.52,0.38,0.54,0.51,0.41,0.5,0.31,0.3,0.32,0.42,0.43,0.44,0.42,0.49,0.37 +1992,0.45,0.42,0.47,0.24,0.32,0.24,0.12,0.09,0,0.11,0.04,0.21,0.23,0.23,0.4,0.34,0.15,0.05 +1993,0.37,0.39,0.35,0.27,0.26,0.23,0.27,0.13,0.1,0.23,0.07,0.19,0.24,0.24,0.32,0.29,0.21,0.13 +1994,0.3,0.03,0.26,0.41,0.28,0.42,0.32,0.23,0.32,0.42,0.46,0.35,0.31,0.3,0.17,0.31,0.32,0.4 +1995,0.5,0.77,0.44,0.47,0.28,0.44,0.49,0.48,0.34,0.48,0.44,0.29,0.45,0.46,0.54,0.4,0.47,0.42 +1996,0.27,0.49,0.33,0.38,0.29,0.26,0.36,0.48,0.27,0.2,0.42,0.41,0.35,0.34,0.35,0.33,0.37,0.29 +1997,0.32,0.37,0.52,0.37,0.39,0.54,0.35,0.42,0.55,0.64,0.65,0.59,0.48,0.46,0.37,0.42,0.44,0.62 +1998,0.61,0.89,0.63,0.63,0.7,0.78,0.71,0.68,0.45,0.46,0.5,0.56,0.63,0.64,0.7,0.65,0.72,0.47 +1999,0.48,0.66,0.34,0.33,0.33,0.37,0.4,0.34,0.43,0.43,0.41,0.46,0.41,0.42,0.57,0.33,0.37,0.42 +2000,0.26,0.58,0.6,0.59,0.39,0.43,0.41,0.43,0.42,0.29,0.34,0.3,0.42,0.43,0.43,0.53,0.43,0.35 +2001,0.44,0.45,0.57,0.52,0.58,0.54,0.61,0.48,0.55,0.51,0.7,0.54,0.54,0.52,0.4,0.56,0.54,0.59 +2002,0.74,0.75,0.91,0.58,0.65,0.53,0.62,0.55,0.65,0.57,0.59,0.43,0.63,0.64,0.68,0.71,0.57,0.6 +2003,0.73,0.55,0.57,0.55,0.62,0.48,0.55,0.66,0.66,0.75,0.54,0.75,0.62,0.59,0.57,0.58,0.56,0.65 +2004,0.58,0.7,0.64,0.62,0.42,0.43,0.26,0.45,0.53,0.65,0.72,0.51,0.54,0.56,0.68,0.56,0.38,0.64 +2005,0.71,0.57,0.7,0.69,0.65,0.66,0.65,0.62,0.78,0.8,0.75,0.68,0.69,0.67,0.6,0.68,0.64,0.77 +2006,0.57,0.7,0.63,0.51,0.47,0.64,0.54,0.72,0.64,0.69,0.73,0.77,0.63,0.62,0.65,0.54,0.63,0.68 +2007,0.96,0.7,0.71,0.76,0.67,0.58,0.62,0.6,0.64,0.6,0.57,0.49,0.66,0.68,0.81,0.71,0.6,0.6 +2008,0.25,0.36,0.73,0.53,0.51,0.48,0.61,0.44,0.65,0.67,0.67,0.54,0.54,0.53,0.37,0.59,0.51,0.66 +2009,0.62,0.52,0.53,0.62,0.65,0.65,0.73,0.66,0.7,0.64,0.77,0.65,0.64,0.64,0.56,0.6,0.68,0.7 +2010,0.73,0.78,0.92,0.87,0.75,0.64,0.62,0.65,0.61,0.71,0.79,0.49,0.71,0.73,0.72,0.84,0.64,0.7 +2011,0.51,0.53,0.64,0.65,0.53,0.59,0.74,0.72,0.56,0.66,0.56,0.53,0.6,0.6,0.51,0.6,0.68,0.59 +2012,0.46,0.49,0.57,0.69,0.76,0.61,0.57,0.63,0.76,0.78,0.74,0.53,0.63,0.63,0.5,0.67,0.6,0.76 +2013,0.68,0.55,0.66,0.52,0.61,0.65,0.59,0.67,0.78,0.68,0.8,0.66,0.65,0.64,0.58,0.59,0.64,0.75 +2014,0.73,0.52,0.77,0.78,0.86,0.66,0.57,0.82,0.9,0.85,0.68,0.79,0.74,0.73,0.64,0.81,0.68,0.81 +2015,0.82,0.87,0.91,0.74,0.77,0.78,0.72,0.78,0.81,1.07,1,1.1,0.86,0.84,0.83,0.81,0.76,0.96 +2016,1.13,1.32,1.28,1.07,0.93,0.77,0.84,0.99,0.89,0.88,0.87,0.77,0.98,1.01,1.18,1.09,0.87,0.88 +2017,0.92,1.1,***,***,***,***,***,***,***,***,***,***,***,***,0.93,***,***,*** \ No newline at end of file diff --git a/content/global-temp.ipynb b/content/global-temp.ipynb index 280ed4b..1ee9a23 100644 --- a/content/global-temp.ipynb +++ b/content/global-temp.ipynb @@ -40,8 +40,12 @@ "%matplotlib inline\n", "import matplotlib as mpl\n", "import matplotlib.pyplot as plt\n", - "import pyodide_http\n", - "pyodide_http.patch_all()\n" + "\n", + "# run these fixes only if we're running on a JupyerLite / JupyterEverywhere platform\n", + "import sys\n", + "if (sys.platform == 'emscripten'):\n", + " import pyodide_http\n", + " pyodide_http.patch_all()\n" ] }, { @@ -53,11 +57,11 @@ "outputs": [], "source": [ "# Only land temperature averages\n", - "data1 = pd.read_csv('http://github.com/adamlamee/CODINGinK12/raw/master/data/LAND.csv', header=1).replace(to_replace=\"***\", value=np.NaN)\n", + "data1 = pd.read_csv('https://raw.githubusercontent.com/QuarkNet-HEP/coding-camp/refs/heads/main/content/data/LAND.csv', header=1).replace(to_replace=\"***\", value=np.NaN)\n", "data_LAND_AVG = data1.apply(lambda x: pd.to_numeric(x, errors='ignore'))\n", "\n", "# Combined land and ocean temperature averages (LOTI: Land Ocean Temperature Index)\n", - "data2 = pd.read_csv('http://github.com/adamlamee/CODINGinK12/raw/master/data/LOTI.csv', header=1).replace(to_replace=\"***\", value=np.NaN)\n", + "data2 = pd.read_csv('https://raw.githubusercontent.com/QuarkNet-HEP/coding-camp/refs/heads/main/content/data/LOTI.csv', header=1).replace(to_replace=\"***\", value=np.NaN)\n", "data_LAND_OCEAN_AVG = data2.apply(lambda x: pd.to_numeric(x, errors='ignore'))" ] },